diff options
Diffstat (limited to 'scan.c')
-rw-r--r-- | scan.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -367,7 +367,10 @@ again: return TQUESTION; case ':': nextchar(s); - return TCOLON; + if (s->chr != ':') + return TCOLON; + nextchar(s); + return TCOLONCOLON; case ';': nextchar(s); return TSEMICOLON; |