summary refs log tree commit diff stats
path: root/compiler/rst.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-04-26 01:16:50 +0200
committerAraq <rumpf_a@web.de>2012-04-26 01:16:50 +0200
commitce1138dfa74ec6f304fee6e5a96ab217020740cb (patch)
tree67c4a4a09077f4cd02f6ec1bd15c0810480d84bc /compiler/rst.nim
parentafd8ca2f156aa76f621145fe0040f7da8be7b126 (diff)
downloadNim-ce1138dfa74ec6f304fee6e5a96ab217020740cb.tar.gz
some code formating
Diffstat (limited to 'compiler/rst.nim')
-rwxr-xr-xcompiler/rst.nim16
1 files changed, 8 insertions, 8 deletions
diff --git a/compiler/rst.nim b/compiler/rst.nim
index 168ac4496..395c27119 100755
--- a/compiler/rst.nim
+++ b/compiler/rst.nim
@@ -776,10 +776,10 @@ proc parseInline(p: var TRstParser, father: PRstNode) =
   of tkAdornment, tkOther, tkWhite: 
     addSon(father, newLeaf(p))
     inc(p.idx)
-  else: assert(false)
+  else: nil
   
 proc getDirective(p: var TRstParser): string = 
-  if (p.tok[p.idx].kind == tkWhite) and (p.tok[p.idx + 1].kind == tkWord): 
+  if p.tok[p.idx].kind == tkWhite and p.tok[p.idx+1].kind == tkWord: 
     var j = p.idx
     inc(p.idx)
     result = p.tok[p.idx].symbol
@@ -788,7 +788,7 @@ proc getDirective(p: var TRstParser): string =
       if p.tok[p.idx].symbol == "::": break 
       add(result, p.tok[p.idx].symbol)
       inc(p.idx)
-    if (p.tok[p.idx].kind == tkWhite): inc(p.idx)
+    if p.tok[p.idx].kind == tkWhite: inc(p.idx)
     if p.tok[p.idx].symbol == "::": 
       inc(p.idx)
       if (p.tok[p.idx].kind == tkWhite): inc(p.idx)
@@ -814,8 +814,8 @@ proc parseComment(p: var TRstParser): PRstNode =
         else: 
           nil
         inc(p.idx)
-  else: 
-    while not (p.tok[p.idx].kind in {tkIndent, tkEof}): inc(p.idx)
+  else:
+    while p.tok[p.idx].kind notin {tkIndent, tkEof}: inc(p.idx)
   result = nil
 
 type 
@@ -941,9 +941,9 @@ proc isLineBlock(p: TRstParser): bool =
 
 proc predNL(p: TRstParser): bool = 
   result = true
-  if (p.idx > 0): 
-    result = (p.tok[p.idx - 1].kind == tkIndent) and
-        (p.tok[p.idx - 1].ival == currInd(p))
+  if p.idx > 0:
+    result = p.tok[p.idx-1].kind == tkIndent and
+        p.tok[p.idx-1].ival == currInd(p)
   
 proc isDefList(p: TRstParser): bool = 
   var j = tokenAfterNewline(p)