diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-12-09 00:59:27 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-12-09 00:59:27 +0000 |
commit | 38017ce81c4c5f3853b46c0d497e4bcefdbac593 (patch) | |
tree | b97d4640aead816cab67a571f474a96e35c7ff2d /gdb/completer.h | |
parent | 75e3c1f98d4e0b3d89560b5981ade71c246b504b (diff) | |
download | gdb-38017ce81c4c5f3853b46c0d497e4bcefdbac593.zip gdb-38017ce81c4c5f3853b46c0d497e4bcefdbac593.tar.gz gdb-38017ce81c4c5f3853b46c0d497e4bcefdbac593.tar.bz2 |
2002-12-08 Elena Zannoni <ezannoni@redhat.com>
More cleanup from import of readline 4.3.
* completer.h (complete_line, readline_line_completion_function):
Update prototypes.
(line_completion_function): Removed, not used outside of completer.c.
* completer.c (readline_line_completion_function,
complete_function, line_completion_function): Use const for first
parameter.
(line_completion_function): Make static.
(filename_completer): filename_completion_function is now called
rl_filename_completion_function
* corelow.c: Include <readline/readline.h>.
* exec.c: Ditto.
* solib.c: Ditto.
* source.c: Ditto.
* symfile.c: Ditto.
* symmisc.c: Ditto.
* top.c (init_main): No need to coerce
readline_line_completion_function anymore.
* cli/cli-dump.c: Include <readline/readline.h>.
Diffstat (limited to 'gdb/completer.h')
-rw-r--r-- | gdb/completer.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/completer.h b/gdb/completer.h index b036231..7a96951 100644 --- a/gdb/completer.h +++ b/gdb/completer.h @@ -19,11 +19,9 @@ #if !defined (COMPLETER_H) #define COMPLETER_H 1 -extern char **complete_line (char *text, char *line_buffer, int point); +extern char **complete_line (const char *text, char *line_buffer, int point); -extern char *line_completion_function (char *, int, char *, int); - -extern char *readline_line_completion_function (char *text, int matches); +extern char *readline_line_completion_function (const char *text, int matches); extern char **noop_completer (char *, char *); |