use braces

svn: r9975

original commit: 1a4dffcc2c2de9796c332351a412b19c7b3195fc
This commit is contained in:
Eli Barzilay 2008-05-27 12:27:36 +00:00
parent 55404de327
commit e3d6faf898

View File

@ -51,11 +51,11 @@
No edit to the buffer can change the tokenization of the buffer prior
to the token immediately preceding the edit. In the following
example this invariant does not hold. If the buffer contains:
@verbatim["\" 1 2 3"]
@verbatim{" 1 2 3}
and the tokenizer treats the unmatched " as its own token (a string
error token), and separately tokenizes the 1 2 and 3, an edit to make
the buffer look like:
@verbatim["\" 1 2 3\""]
@verbatim{" 1 2 3"}
would result in a single string token modifying previous tokens. To
handle these situations, get-token must treat the first line as a
single token.}}