diff options
| author | Simon Tatham <anakin@pobox.com> | 1999-09-12 15:38:06 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 1999-09-12 15:38:06 +0000 |
| commit | 9972b0f0d1ce6e08ce6f9505980c9c889ae994bc (patch) | |
| tree | cb867829840d4746c10d0fdba6409f1cf256d5c9 /error.c | |
| parent | d3c026f08f629659b5efe23fe8bffd3cf9b845f6 (diff) | |
| download | halibut-9972b0f0d1ce6e08ce6f9505980c9c889ae994bc.zip halibut-9972b0f0d1ce6e08ce6f9505980c9c889ae994bc.tar.gz halibut-9972b0f0d1ce6e08ce6f9505980c9c889ae994bc.tar.bz2 halibut-9972b0f0d1ce6e08ce6f9505980c9c889ae994bc.tar.xz | |
More development...
[originally from svn r220]
Diffstat (limited to 'error.c')
| -rw-r--r-- | error.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -96,6 +96,11 @@ static void do_error(int code, va_list ap) { sprintf(error, "expected `{' after command"); flags = FILEPOS; break; + case err_commenteof: + fpos = *va_arg(ap, filepos *); + sprintf(error, "end of file unexpected inside `\\#{...}' comment"); + flags = FILEPOS; + break; case err_kwexprbr: fpos = *va_arg(ap, filepos *); sprintf(error, "expected `}' after cross-reference"); |