diff options
author | David MacKenzie <djm@cygnus> | 1993-08-05 02:52:17 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1993-08-05 02:52:17 +0000 |
commit | 8bf66be8aa5ddcaec7c574fe3c3b6bf722e1f5d0 (patch) | |
tree | 483bfbd3b302bc4e97a7f317e2066706bda31a72 /ld/ldlex.l | |
parent | ebdb7db7829b329441bec6d07555f03393a67f16 (diff) | |
download | gdb-8bf66be8aa5ddcaec7c574fe3c3b6bf722e1f5d0.zip gdb-8bf66be8aa5ddcaec7c574fe3c3b6bf722e1f5d0.tar.gz gdb-8bf66be8aa5ddcaec7c574fe3c3b6bf722e1f5d0.tar.bz2 |
add missing newlines in messages
Diffstat (limited to 'ld/ldlex.l')
-rw-r--r-- | ld/ldlex.l | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -429,7 +429,7 @@ lex_push_file (file, name) { if (include_stack_ptr >= MAX_INCLUDE_DEPTH) { - einfo("%F:includes nested too deeply"); + einfo("%F:includes nested too deeply\n"); } file_name_stack[include_stack_ptr] = name; include_stack[include_stack_ptr] = YY_CURRENT_BUFFER; @@ -489,7 +489,7 @@ lex_redirect (string) yy_init = 0 ; if (include_stack_ptr >= MAX_INCLUDE_DEPTH) { - einfo("%F: macros nested too deeply"); + einfo("%F: macros nested too deeply\n"); } file_name_stack[include_stack_ptr] = "redirect"; include_stack[include_stack_ptr] = YY_CURRENT_BUFFER; @@ -592,7 +592,7 @@ comment() if ( c == EOF ) { - einfo( "%F%P :EOF in comment"); + einfo( "%F%P :EOF in comment\n"); break; } } |