replace it with an empty string.
(read_next_line): Pass "command" as annotation suffix to
command_line_input.
+Mon Nov 28 14:53:21 1994 Stan Shebs (shebs@andros.cygnus.com)
+
+ * top.c (command_line_input): If annotation suffix is NULL,
+ replace it with an empty string.
+ (read_next_line): Pass "command" as annotation suffix to
+ command_line_input.
+
Mon Nov 28 11:03:14 1994 J.T. Conklin (jtc@rtl.cygnus.com)
* config/rs6000/tm-rs6000.h (setpgrp): move defn from here...
char *nline;
char got_eof = 0;
+ /* The annotation suffix must be non-NULL. */
+ if (annotation_suffix == NULL)
+ annotation_suffix = "";
+
if (annotation_level > 1 && instream == stdin)
{
local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
else
prompt_ptr = NULL;
- p = command_line_input (prompt_ptr, instream == stdin, NULL);
+ p = command_line_input (prompt_ptr, instream == stdin, "command");
/* Not sure what to do here. */
if (p == NULL)