summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/texinfo/info/echo-area.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/texinfo/info/echo-area.c')
-rw-r--r--gnu/usr.bin/texinfo/info/echo-area.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/usr.bin/texinfo/info/echo-area.c b/gnu/usr.bin/texinfo/info/echo-area.c
index f3e7a04f5af..4642a28e095 100644
--- a/gnu/usr.bin/texinfo/info/echo-area.c
+++ b/gnu/usr.bin/texinfo/info/echo-area.c
@@ -1,7 +1,7 @@
/* echo-area.c -- How to read a line in the echo area.
- $Id: echo-area.c,v 1.1 1997/08/01 22:00:07 kstailey Exp $
+ $Id: echo-area.c,v 1.2 1999/01/11 16:38:07 espie Exp $
- Copyright (C) 1993, 97 Free Software Foundation, Inc.
+ Copyright (C) 1993, 97, 98 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -938,11 +938,9 @@ DECLARE_INFO_COMMAND (ea_possible_completions, _("List possible completions"))
int limit, count, max_label = 0;
initialize_message_buffer ();
- printf_to_message_buffer
- (_("There %s %d "), completions_found_index == 1 ? _("is") : _("are"),
- completions_found_index);
- printf_to_message_buffer
- (_("completion%s:\n"), completions_found_index == 1 ? "" : "s");
+ printf_to_message_buffer (completions_found_index == 1
+ ? _("One completion:\n")
+ : _("%d completions:\n"));
/* Find the maximum length of a label. */
for (i = 0; i < completions_found_index; i++)