diff options
Diffstat (limited to 'xroff.lex')
-rw-r--r-- | xroff.lex | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,9 +8,10 @@ %% \\ BEGIN(ESC); +^\n* /* Ignore newlines at beginning of file. */ \n BEGIN(NEW); \<!\[ BEGIN(RAW); -\<!--.*--> /* Ignore comment. */ +\<!--.*-->\n* /* Ignore comment. */ ^< printf("."); BEGIN(REQ); /* Beginning of file. */ \< printf("\\c\n."); BEGIN(REQ); . ECHO; |