summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-08-23 20:56:55 +0200
committerGeorg Brandl <georg@python.org>2012-08-23 20:56:55 +0200
commitd0dbc3fbca48d291c64ab5f59623bfb90dfbb1ae (patch)
tree994f0c2e22e6887a95b76e114097855bdb7860c1
parent76f42ce0475ba4e129c02f251c2fcab0fad1f862 (diff)
parent70fcc6f8a6b6b2761a802d372af98dae1bd429cb (diff)
downloadpygments-d0dbc3fbca48d291c64ab5f59623bfb90dfbb1ae.tar.gz
Merged in greghendershott/pygments-main (pull request #101)
-rw-r--r--tests/examplefiles/example.rkt10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/examplefiles/example.rkt b/tests/examplefiles/example.rkt
index b87f7bf2..a3e4a29e 100644
--- a/tests/examplefiles/example.rkt
+++ b/tests/examplefiles/example.rkt
@@ -1,9 +1,5 @@
#lang racket
-;; Note: This Racket file has some deliberate errors (such as invalid
-;; number literals) to demonstrate the lexer correctly highlighting
-;; them as errors.
-
; Single-line comment style.
;; Single-line comment style.
@@ -40,7 +36,6 @@ Multi-line comment style ...
#b1/1
#b1e-1
#b101
- #b2 ;highlight as error
;; #d
#d-1.23
@@ -51,7 +46,6 @@ Multi-line comment style ...
#d-1/2
#d1
#d-1
- #dZ ;highlight as error
;; No # reader prefix -- same as #d
-1.23
@@ -72,7 +66,6 @@ Multi-line comment style ...
#e-1
#e1/2
#e-1/2
- #eZ ;highlight as error
;; #i always float
#i-1.23
@@ -83,7 +76,6 @@ Multi-line comment style ...
#i-1/2
#i1
#i-1
- #iZ ;highlight as error
;; #o
#o777.777
@@ -94,12 +86,10 @@ Multi-line comment style ...
#o-3/7
#o777
#o-777
- #o8 ;highlight as error
;; #x
#x-f.f
#xf.f
#x-f
#xf
- #xG ;highlight as error
)