From 1a4dffcc2c2de9796c332351a412b19c7b3195fc Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 27 May 2008 12:27:36 +0000 Subject: [PATCH] use braces svn: r9975 --- collects/scribblings/framework/color.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/framework/color.scrbl b/collects/scribblings/framework/color.scrbl index c9417bff69..a012b39918 100644 --- a/collects/scribblings/framework/color.scrbl +++ b/collects/scribblings/framework/color.scrbl @@ -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.}}