aboutsummaryrefslogtreecommitdiff
path: root/ld/ldlex.l
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1993-08-05 02:52:17 +0000
committerDavid MacKenzie <djm@cygnus>1993-08-05 02:52:17 +0000
commit8bf66be8aa5ddcaec7c574fe3c3b6bf722e1f5d0 (patch)
tree483bfbd3b302bc4e97a7f317e2066706bda31a72 /ld/ldlex.l
parentebdb7db7829b329441bec6d07555f03393a67f16 (diff)
downloadgdb-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.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/ldlex.l b/ld/ldlex.l
index ef1275b..29445c7 100644
--- a/ld/ldlex.l
+++ b/ld/ldlex.l
@@ -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;
}
}