summary refs log tree commit diff stats
path: root/compiler/docgen.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-04-19 09:07:01 +0200
committerAraq <rumpf_a@web.de>2013-04-19 09:07:01 +0200
commit04216fc7500e6c74f41c8f5aa743fb43a1ee65da (patch)
treea9220b54c10a33d5826ac007c34b8ffb40622f3f /compiler/docgen.nim
parent4f09794be9fb9b96728078712f01e990e0021929 (diff)
downloadNim-04216fc7500e6c74f41c8f5aa743fb43a1ee65da.tar.gz
first steps to the new parser/grammar
Diffstat (limited to 'compiler/docgen.nim')
-rw-r--r--compiler/docgen.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim
index 2b7c567c6..9c9d68f5d 100644
--- a/compiler/docgen.nim
+++ b/compiler/docgen.nim
@@ -237,7 +237,7 @@ proc genItem(d: PDoc, n, nameNode: PNode, k: TSymKind) =
     of tkSymbol: 
       dispA(result, "<span class=\"Identifier\">$1</span>", 
             "\\spanIdentifier{$1}", [toRope(esc(d.target, literal))])
-    of tkInd, tkSad, tkDed, tkSpaces, tkInvalid: 
+    of tkInd, tkSpaces, tkInvalid: 
       app(result, literal)
     of tkParLe, tkParRi, tkBracketLe, tkBracketRi, tkCurlyLe, tkCurlyRi, 
        tkBracketDotLe, tkBracketDotRi, tkCurlyDotLe, tkCurlyDotRi, tkParDotLe, 
'>148 149 150 151 152 153 154 155 156 157