diff options
author | Pedro Alves <palves@redhat.com> | 2016-03-09 18:24:59 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2016-03-09 18:24:59 +0000 |
commit | c5c136ea94f21e5ff968d5b402494611464c7b31 (patch) | |
tree | 3a466443ee8dd0659c9b672d21d6e9ae0b8c00bc | |
parent | 720d2e96b424bb4bb1f7021f86763ff3df078e2b (diff) | |
download | gdb-c5c136ea94f21e5ff968d5b402494611464c7b31.zip gdb-c5c136ea94f21e5ff968d5b402494611464c7b31.tar.gz gdb-c5c136ea94f21e5ff968d5b402494611464c7b31.tar.bz2 |
gdb_readline -> gdb_readline_no_editing
Name this such that it's clearer that this is not a wrapper for the
real readline, but instead a replacement that provides no command line
editing features.
gdb/ChangeLog:
2016-03-09 Pedro Alves <palves@redhat.com>
* defs.h (gdb_readline): Delete declaration.
* top.c (gdb_readline): Rename to ...
(gdb_readline_no_editing): ... this, and make static.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/defs.h | 2 | ||||
-rw-r--r-- | gdb/top.c | 7 |
3 files changed, 10 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e715c97..06d1373 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2016-03-09 Pedro Alves <palves@redhat.com> + * defs.h (gdb_readline): Delete declaration. + * top.c (gdb_readline): Rename to ... + (gdb_readline_no_editing): ... this, and make static. + +2016-03-09 Pedro Alves <palves@redhat.com> + * utils.c (prompt_for_continue): Update comments. 2016-03-09 Pedro Alves <palves@redhat.com> @@ -285,8 +285,6 @@ extern void print_transfer_performance (struct ui_file *stream, typedef void initialize_file_ftype (void); -extern char *gdb_readline (const char *); - extern char *gdb_readline_wrapper (const char *); extern char *command_line_input (const char *, int, char *); @@ -608,8 +608,9 @@ prevent_dont_repeat (void) malloc'd and should be freed by the caller. A NULL return means end of file. */ -char * -gdb_readline (const char *prompt_arg) + +static char * +gdb_readline_no_editing (const char *prompt_arg) { int c; char *result; @@ -1117,7 +1118,7 @@ command_line_input (const char *prompt_arg, int repeat, char *annotation_suffix) } else { - rl = gdb_readline (prompt); + rl = gdb_readline_no_editing (prompt); } if (annotation_level > 1 && instream == stdin) |