diff options
author | monty@hundin.mysql.fi <> | 2001-10-17 19:39:39 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-10-17 19:39:39 +0300 |
commit | 0bfec316ce62bf5f46b55888a0a9d593171c4eb5 (patch) | |
tree | a99a119a594cef911c36b9e84ddb7975f5747e05 /readline | |
parent | faa51dc2854d2a2e0fe09cad44702f57d26109ae (diff) | |
download | mariadb-git-0bfec316ce62bf5f46b55888a0a9d593171c4eb5.tar.gz |
Don't do signal() on windows (Causes instability problems)
Safer, a bit faster filesort.
Code changes to avoid calls to current_thd() (faster code).
Removed all compiler warnings from readline.
Diffstat (limited to 'readline')
-rw-r--r-- | readline/bind.c | 55 | ||||
-rw-r--r-- | readline/complete.c | 25 | ||||
-rw-r--r-- | readline/display.c | 16 | ||||
-rw-r--r-- | readline/funmap.c | 10 | ||||
-rw-r--r-- | readline/histexpand.c | 5 | ||||
-rw-r--r-- | readline/histfile.c | 6 | ||||
-rw-r--r-- | readline/history.h | 4 | ||||
-rw-r--r-- | readline/histsearch.c | 2 | ||||
-rw-r--r-- | readline/isearch.c | 6 | ||||
-rw-r--r-- | readline/kill.c | 30 | ||||
-rw-r--r-- | readline/macro.c | 19 | ||||
-rw-r--r-- | readline/readline.c | 9 | ||||
-rw-r--r-- | readline/readline.h | 30 | ||||
-rw-r--r-- | readline/rltty.c | 15 | ||||
-rw-r--r-- | readline/search.c | 20 | ||||
-rw-r--r-- | readline/shell.c | 1 | ||||
-rw-r--r-- | readline/terminal.c | 21 | ||||
-rw-r--r-- | readline/tilde.c | 12 | ||||
-rw-r--r-- | readline/tilde.h | 4 | ||||
-rw-r--r-- | readline/undo.c | 9 | ||||
-rw-r--r-- | readline/util.c | 14 | ||||
-rw-r--r-- | readline/vi_mode.c | 4 |
22 files changed, 144 insertions, 173 deletions
diff --git a/readline/bind.c b/readline/bind.c index 57383239098..57e53c03a20 100644 --- a/readline/bind.c +++ b/readline/bind.c @@ -108,7 +108,7 @@ Keymap rl_binding_keymap; /* Forward declarations */ void rl_set_keymap_from_edit_mode (); -static int _rl_read_init_file (); +static int _rl_read_init_file (const char *filename, int include_level); static int glean_key_from_name (); static int substring_member_of_array (); @@ -570,10 +570,7 @@ rl_named_function (string) type of the object pointed to. One of ISFUNC (function), ISKMAP (keymap), or ISMACR (macro). */ Function * -rl_function_of_keyseq (keyseq, map, type) - char *keyseq; - Keymap map; - int *type; +rl_function_of_keyseq (const char *keyseq, Keymap map, int *type) { register int i; @@ -629,7 +626,7 @@ rl_function_of_keyseq (keyseq, map, type) static char *last_readline_init_file = (char *)NULL; /* The file we're currently reading key bindings from. */ -static char *current_readline_init_file; +static const char *current_readline_init_file; static int current_readline_init_include_level; static int current_readline_init_lineno; @@ -685,8 +682,8 @@ _rl_read_file (filename, sizep) /* Re-read the current keybindings file. */ int -rl_re_read_init_file (count, ignore) - int count, ignore; +rl_re_read_init_file (int count __attribute__((unused)), + int ignore __attribute__((unused))) { int r; r = rl_read_init_file ((char *)NULL); @@ -702,8 +699,7 @@ rl_re_read_init_file (count, ignore) If the file existed and could be opened and read, 0 is returned, otherwise errno is returned. */ int -rl_read_init_file (filename) - char *filename; +rl_read_init_file (const char *filename) { /* Default the filename. */ if (filename == 0) @@ -722,9 +718,7 @@ rl_read_init_file (filename) } static int -_rl_read_init_file (filename, include_level) - char *filename; - int include_level; +_rl_read_init_file (const char *filename, int include_level) { register int i; char *buffer, *openname, *line, *end; @@ -797,7 +791,7 @@ _rl_init_file_error (msg) /* Conditionals. */ /* Calling programs set this to have their argv[0]. */ -char *rl_readline_name = "other"; +const char *rl_readline_name = "other"; /* Stack of previous values of parsing_conditionalized_out. */ static unsigned char *if_stack = (unsigned char *)NULL; @@ -881,7 +875,7 @@ parser_if (args) /* Invert the current parser state if there is anything on the stack. */ static int parser_else (args) - char *args; +char *args __attribute__((unused)); { register int i; @@ -906,7 +900,7 @@ parser_else (args) _rl_parsing_conditionalized_out from the stack. */ static int parser_endif (args) - char *args; +char *args __attribute__((unused)); { if (if_stack_depth) _rl_parsing_conditionalized_out = if_stack[--if_stack_depth]; @@ -919,7 +913,8 @@ static int parser_include (args) char *args; { - char *old_init_file, *e; + const char *old_init_file; + char *e; int old_line_number, old_include_level, r; if (_rl_parsing_conditionalized_out) @@ -943,7 +938,7 @@ parser_include (args) /* Associate textual names with actual functions. */ static struct { - char *name; + const char *name; Function *function; } parser_directives [] = { { "if", parser_if }, @@ -1233,7 +1228,7 @@ rl_parse_and_bind (string) false. */ static struct { - char *name; + const char *name; int *value; } boolean_varlist [] = { #if defined (PAREN_MATCHING) @@ -1384,7 +1379,7 @@ rl_variable_bind (name, value) For example, `Space' returns ' '. */ typedef struct { - char *name; + const char *name; int value; } assoc_list; @@ -1418,7 +1413,7 @@ glean_key_from_name (name) /* Auxiliary functions to manage keymaps. */ static struct { - char *name; + const char *name; Keymap map; } keymap_names[] = { { "emacs", emacs_standard_keymap }, @@ -1446,7 +1441,7 @@ rl_get_keymap_by_name (name) return ((Keymap) NULL); } -char * +const char * rl_get_keymap_name (map) Keymap map; { @@ -1482,7 +1477,7 @@ rl_set_keymap_from_edit_mode () #endif /* VI_MODE */ } -char * +const char * rl_get_keymap_name_from_edit_mode () { if (rl_editing_mode == emacs_mode) @@ -1780,8 +1775,8 @@ rl_function_dumper (print_readably) rl_outstream. If an explicit argument is given, then print the output in such a way that it can be read back in. */ int -rl_dump_functions (count, key) - int count, key; +rl_dump_functions (int count __attribute__((unused)), + int key __attribute__((unused))) { if (rl_dispatching) fprintf (rl_outstream, "\r\n"); @@ -1865,8 +1860,8 @@ rl_macro_dumper (print_readably) } int -rl_dump_macros (count, key) - int count, key; +rl_dump_macros (int count __attribute__((unused)), + int key __attribute__((unused))) { if (rl_dispatching) fprintf (rl_outstream, "\r\n"); @@ -1880,7 +1875,7 @@ rl_variable_dumper (print_readably) int print_readably; { int i; - char *kname; + const char *kname; for (i = 0; boolean_varlist[i].name; i++) { @@ -1955,8 +1950,8 @@ rl_variable_dumper (print_readably) rl_outstream. If an explicit argument is given, then print the output in such a way that it can be read back in. */ int -rl_dump_variables (count, key) - int count, key; +rl_dump_variables (int count __attribute__((unused)), + int key __attribute__((unused))) { if (rl_dispatching) fprintf (rl_outstream, "\r\n"); diff --git a/readline/complete.c b/readline/complete.c index d003c2db75b..c4e33fc3f83 100644 --- a/readline/complete.c +++ b/readline/complete.c @@ -95,7 +95,7 @@ extern int rl_display_fixed; VFunction *rl_completion_display_matches_hook = (VFunction *)NULL; /* Forward declarations for functions defined and used in this file. */ -char *filename_completion_function (); +char *filename_completion_function (const char *text, int state); char **completion_matches (); #if defined (VISIBLE_STATS) @@ -186,15 +186,15 @@ int rl_completion_query_items = 100; /* The basic list of characters that signal a break between words for the completer routine. The contents of this variable is what breaks words in the shell, i.e. " \t\n\"\\'`@$><=" */ -char *rl_basic_word_break_characters = " \t\n\"\\'`@$><=;|&{("; +const char *rl_basic_word_break_characters = " \t\n\"\\'`@$><=;|&{("; /* List of basic quoting characters. */ -char *rl_basic_quote_characters = "\"'"; +const char *rl_basic_quote_characters = "\"'"; /* The list of characters that signal a break between words for rl_complete_internal. The default list is the contents of rl_basic_word_break_characters. */ -char *rl_completer_word_break_characters = (char *)NULL; +const char *rl_completer_word_break_characters = (char *)NULL; /* List of characters which can be used to quote a substring of the line. Completion occurs on the entire substring, and within the substring @@ -513,7 +513,7 @@ print_filename (to_print, full_pathname) static char * rl_quote_filename (s, rtype, qcp) char *s; - int rtype; + int rtype __attribute__((unused)); char *qcp; { char *r; @@ -1356,9 +1356,7 @@ rl_complete_internal (what_to_do) when there are no more matches. */ char ** -completion_matches (text, entry_function) - char *text; - CPFunction *entry_function; +completion_matches (const char *text, CPFunction *entry_function) { /* Number of slots in match_list. */ int match_list_size; @@ -1403,9 +1401,7 @@ completion_matches (text, entry_function) TEXT contains a partial username preceded by a random character (usually `~'). */ char * -username_completion_function (text, state) - char *text; - int state; +username_completion_function (const char *text, int state) { #if defined (__GO32__) || defined (__WIN__) || defined (__OPENNT) return (char *)NULL; @@ -1460,9 +1456,7 @@ username_completion_function (text, state) because of all the pathnames that must be followed when looking up the completion for a command. */ char * -filename_completion_function (text, state) - char *text; - int state; +filename_completion_function (const char *text, int state) { static DIR *directory = (DIR *)NULL; static char *filename = (char *)NULL; @@ -1639,8 +1633,7 @@ filename_completion_function (text, state) hit the end of the match list, we restore the original unmatched text, ring the bell, and reset the counter to zero. */ int -rl_menu_complete (count, ignore) - int count, ignore; +rl_menu_complete (int count, int ignore __attribute__((unused))) { Function *our_func; int matching_filenames, found_quote; diff --git a/readline/display.c b/readline/display.c index 25aba64ca67..004967c5dc5 100644 --- a/readline/display.c +++ b/readline/display.c @@ -79,9 +79,9 @@ extern int _rl_output_character_function (); #endif extern int _rl_backspace (); -extern char *term_clreol, *term_clrpag; -extern char *term_im, *term_ic, *term_ei, *term_DC; -extern char *term_up, *term_dc, *term_cr, *term_IC; +extern const char *term_clreol, *term_clrpag; +extern const char *term_im, *term_ic, *term_ei, *term_DC; +extern const char *term_up, *term_dc, *term_cr, *term_IC; extern int screenheight, screenwidth, screenchars; extern int terminal_can_insert, _rl_term_autowrap; @@ -141,7 +141,7 @@ int _rl_suppress_redisplay = 0; /* The stuff that gets printed out before the actual text of the line. This is usually pointing to rl_prompt. */ -char *rl_display_prompt = (char *)NULL; +const char *rl_display_prompt = (char *)NULL; /* Pseudo-global variables declared here. */ /* The visible cursor position. If you print some text, adjust this. */ @@ -315,7 +315,7 @@ rl_redisplay () register char *line; int c_pos, inv_botlin, lb_botlin, lb_linenum; int newlines, lpos, temp; - char *prompt_this_line; + const char *prompt_this_line; if (!readline_echoing_p) return; @@ -1229,8 +1229,7 @@ rl_message (va_alist) } #else /* !USE_VARARGS */ int -rl_message (format, arg1, arg2) - char *format; +rl_message (char *format, void *arg1, void *arg2) { sprintf (msg_buf, format, arg1, arg2); rl_display_prompt = msg_buf; @@ -1512,7 +1511,8 @@ cr () void _rl_redisplay_after_sigwinch () { - char *t, *oldp, *oldl, *oldlprefix; + char *t, *oldl, *oldlprefix; + const char *oldp; /* Clear the current line and put the cursor at column 0. Make sure the right thing happens if we have wrapped to a new screen line. */ diff --git a/readline/funmap.c b/readline/funmap.c index f6b86286fe0..371a9e022c9 100644 --- a/readline/funmap.c +++ b/readline/funmap.c @@ -180,9 +180,7 @@ static FUNMAP default_funmap[] = { }; int -rl_add_funmap_entry (name, function) - char *name; - Function *function; +rl_add_funmap_entry (const char *name, Function *function) { if (funmap_entry + 2 >= funmap_size) { @@ -236,7 +234,7 @@ rl_funmap_names () result = (char **)xrealloc (result, result_size * sizeof (char *)); } - result[result_index] = funmap[result_index]->name; + result[result_index] = (char*) funmap[result_index]->name; result[result_index + 1] = (char *)NULL; } @@ -245,10 +243,10 @@ rl_funmap_names () } /* Things that mean `Control'. */ -char *possible_control_prefixes[] = { +const char *possible_control_prefixes[] = { "Control-", "C-", "CTRL-", (char *)NULL }; -char *possible_meta_prefixes[] = { +const char *possible_meta_prefixes[] = { "Meta", "M-", (char *)NULL }; diff --git a/readline/histexpand.c b/readline/histexpand.c index 30c6131801d..ce90aced3be 100644 --- a/readline/histexpand.c +++ b/readline/histexpand.c @@ -87,7 +87,7 @@ char history_comment_char = '\0'; /* The list of characters which inhibit the expansion of text if found immediately following history_expansion_char. */ -char *history_no_expand_chars = " \t\n\r="; +const char *history_no_expand_chars = " \t\n\r="; /* If set to a non-zero value, single quotes inhibit history expansion. The default is 0. */ @@ -342,7 +342,8 @@ hist_error(s, start, current, errtype) char *s; int start, current, errtype; { - char *temp, *emsg; + char *temp; + const char *emsg; int ll, elen; ll = current - start; diff --git a/readline/histfile.c b/readline/histfile.c index 3325b7fc1f7..40e42de52f8 100644 --- a/readline/histfile.c +++ b/readline/histfile.c @@ -84,7 +84,8 @@ static char * history_filename (filename) char *filename; { - char *return_val, *home; + char *return_val; + const char *home; int home_len; return_val = filename ? savestring (filename) : (char *)NULL; @@ -130,11 +131,10 @@ read_history_range (filename, from, to) char *filename; int from, to; { - register int line_start, line_end; char *input, *buffer; int file, current_line; struct stat finfo; - size_t file_size; + size_t line_start, line_end, file_size; buffer = (char *)NULL; input = history_filename (filename); diff --git a/readline/history.h b/readline/history.h index 8ecce726779..9ae2ee01a7c 100644 --- a/readline/history.h +++ b/readline/history.h @@ -232,8 +232,8 @@ extern int max_input_history; extern char history_expansion_char; extern char history_subst_char; extern char history_comment_char; -extern char *history_no_expand_chars; -extern char *history_search_delimiter_chars; +extern const char *history_no_expand_chars; +extern const char *history_search_delimiter_chars; extern int history_quotes_inhibit_expansion; /* If set, this function is called to decide whether or not a particular diff --git a/readline/histsearch.c b/readline/histsearch.c index 7e98e950acb..eb17e9332e8 100644 --- a/readline/histsearch.c +++ b/readline/histsearch.c @@ -52,7 +52,7 @@ extern int history_offset; /* The list of alternate characters that can delimit a history search string. */ -char *history_search_delimiter_chars = (char *)NULL; +const char *history_search_delimiter_chars = (char *)NULL; /* Search the history for STRING, starting at history_offset. If DIRECTION < 0, then the search is through previous entries, else diff --git a/readline/isearch.c b/readline/isearch.c index ae8dce520f0..a4a294b6b20 100644 --- a/readline/isearch.c +++ b/readline/isearch.c @@ -97,7 +97,8 @@ rl_forward_search_history (sign, key) static void rl_display_search (search_string, reverse_p, where) char *search_string; - int reverse_p, where; + int reverse_p; + int where __attribute__((unused)); { char *message; int msglen, searchlen; @@ -144,8 +145,7 @@ rl_display_search (search_string, reverse_p, where) DIRECTION is which direction to search; >= 0 means forward, < 0 means backwards. */ static int -rl_search_history (direction, invoking_key) - int direction, invoking_key; +rl_search_history (int direction, int invoking_key __attribute__((unused))) { /* The string that the user types in to search for. */ char *search_string; diff --git a/readline/kill.c b/readline/kill.c index 0b4714fafa8..328c85c2270 100644 --- a/readline/kill.c +++ b/readline/kill.c @@ -82,8 +82,7 @@ static int rl_kill_ring_length; /* How to say that you only want to save a certain amount of kill material. */ int -rl_set_retained_kills (num) - int num; +rl_set_retained_kills (int num __attribute__((unused))) { return 0; } @@ -285,8 +284,8 @@ rl_backward_kill_line (direction, ignore) /* Kill the whole line, no matter where point is. */ int -rl_kill_full_line (count, ignore) - int count, ignore; +rl_kill_full_line (int count __attribute__((unused)), + int ignore __attribute__((unused))) { rl_begin_undo_group (); rl_point = 0; @@ -302,8 +301,7 @@ rl_kill_full_line (count, ignore) /* This does what C-w does in Unix. We can't prevent people from using behaviour that they expect. */ int -rl_unix_word_rubout (count, key) - int count, key; +rl_unix_word_rubout (int count, int key __attribute__((unused))) { int orig_point; @@ -336,8 +334,8 @@ rl_unix_word_rubout (count, key) into the line at all, and if you aren't, then you know what you are doing. */ int -rl_unix_line_discard (count, key) - int count, key; +rl_unix_line_discard (int count __attribute__((unused)), + int key __attribute__((unused))) { if (rl_point == 0) ding (); @@ -374,16 +372,16 @@ region_kill_internal (delete) /* Copy the text in the region to the kill ring. */ int -rl_copy_region_to_kill (count, ignore) - int count, ignore; +rl_copy_region_to_kill (int count __attribute__((unused)), + int key __attribute__((unused))) { return (region_kill_internal (0)); } /* Kill the text between the point and mark. */ int -rl_kill_region (count, ignore) - int count, ignore; +rl_kill_region (int count __attribute__((unused)), + int key __attribute__((unused))) { int r; @@ -445,8 +443,8 @@ rl_copy_backward_word (count, key) /* Yank back the last killed text. This ignores arguments. */ int -rl_yank (count, ignore) - int count, ignore; +rl_yank (int count __attribute__((unused)), + int key __attribute__((unused))) { if (rl_kill_ring == 0) { @@ -464,8 +462,8 @@ rl_yank (count, ignore) delete that text from the line, rotate the index down, and yank back some other text. */ int -rl_yank_pop (count, key) - int count, key; +rl_yank_pop (int count __attribute__((unused)), + int key __attribute__((unused))) { int l, n; diff --git a/readline/macro.c b/readline/macro.c index f3c442b41c3..b4d7835c631 100644 --- a/readline/macro.c +++ b/readline/macro.c @@ -90,7 +90,7 @@ static int current_macro_index; It is a linked list of string/index for each saved macro. */ struct saved_macro { struct saved_macro *next; - char *string; + const char *string; int sindex; }; @@ -100,11 +100,10 @@ static struct saved_macro *macro_list = (struct saved_macro *)NULL; /* Set up to read subsequent input from STRING. STRING is free ()'ed when we are done with it. */ void -_rl_with_macro_input (string) - char *string; +_rl_with_macro_input (const char *string) { _rl_push_executing_macro (); - _rl_executing_macro = string; + _rl_executing_macro = (char*) string; executing_macro_index = 0; } @@ -155,7 +154,7 @@ _rl_pop_executing_macro () if (macro_list) { macro = macro_list; - _rl_executing_macro = macro_list->string; + _rl_executing_macro = (char*) macro_list->string; executing_macro_index = macro_list->sindex; macro_list = macro_list->next; free (macro); @@ -206,8 +205,8 @@ _rl_kill_kbd_macro () definition to the end of the existing macro, and start by re-executing the existing macro. */ int -rl_start_kbd_macro (ignore1, ignore2) - int ignore1, ignore2; +rl_start_kbd_macro (int count __attribute__((unused)), + int key __attribute__((unused))) { if (_rl_defining_kbd_macro) { @@ -231,8 +230,7 @@ rl_start_kbd_macro (ignore1, ignore2) A numeric argument says to execute the macro right now, that many times, counting the definition as the first time. */ int -rl_end_kbd_macro (count, ignore) - int count, ignore; +rl_end_kbd_macro (int count, int ignore __attribute__((unused))) { if (_rl_defining_kbd_macro == 0) { @@ -251,8 +249,7 @@ rl_end_kbd_macro (count, ignore) /* Execute the most recently defined keyboard macro. COUNT says how many times to execute it. */ int -rl_call_last_kbd_macro (count, ignore) - int count, ignore; +rl_call_last_kbd_macro (int count, int key __attribute__((unused))) { if (current_macro == 0) _rl_abort_internal (); diff --git a/readline/readline.c b/readline/readline.c index 71a2320c582..8cb7885eef7 100644 --- a/readline/readline.c +++ b/readline/readline.c @@ -129,8 +129,8 @@ extern int _rl_suppress_redisplay; extern char *rl_display_prompt; /* Variables imported from complete.c. */ -extern char *rl_completer_word_break_characters; -extern char *rl_basic_word_break_characters; +extern const char *rl_completer_word_break_characters; +extern const char *rl_basic_word_break_characters; extern int rl_completion_query_items; extern int rl_complete_with_tilde_expansion; @@ -181,7 +181,7 @@ extern char *xmalloc (), *xrealloc (); /* */ /* **************************************************************** */ -char *rl_library_version = RL_LIBRARY_VERSION; +const char *rl_library_version = RL_LIBRARY_VERSION; /* A pointer to the keymap that is currently in use. By default, it is the standard emacs keymap. */ @@ -960,8 +960,7 @@ rl_universal_argument (count, key) way that you should do insertion. rl_insert () calls this function. */ int -rl_insert_text (string) - char *string; +rl_insert_text (const char *string) { register int i, l = strlen (string); diff --git a/readline/readline.h b/readline/readline.h index dba1a0fdde9..49442bf163f 100644 --- a/readline/readline.h +++ b/readline/readline.h @@ -60,7 +60,7 @@ extern UNDO_LIST *rl_undo_list; /* The data structure for mapping textual names to code addresses. */ typedef struct _funmap { - char *name; + const char *name; Function *function; } FUNMAP; @@ -286,7 +286,7 @@ extern int rl_translate_keyseq __P((char *, char *, int *)); extern char *rl_untranslate_keyseq __P((int)); extern Function *rl_named_function __P((char *)); -extern Function *rl_function_of_keyseq __P((char *, Keymap, int *)); +extern Function *rl_function_of_keyseq __P((const char *, Keymap, int *)); extern void rl_list_funmap_names __P((void)); extern char **rl_invoking_keyseqs_in_map __P((Function *, Keymap)); @@ -296,7 +296,7 @@ extern void rl_function_dumper __P((int)); extern void rl_macro_dumper __P((int)); extern void rl_variable_dumper __P((int)); -extern int rl_read_init_file __P((char *)); +extern int rl_read_init_file __P((const char *)); extern int rl_parse_and_bind __P((char *)); /* Functions for manipulating keymaps. */ @@ -306,14 +306,14 @@ extern Keymap rl_make_keymap __P((void)); extern void rl_discard_keymap __P((Keymap)); extern Keymap rl_get_keymap_by_name __P((char *)); -extern char *rl_get_keymap_name __P((Keymap)); +extern const char *rl_get_keymap_name __P((Keymap)); extern void rl_set_keymap __P((Keymap)); extern Keymap rl_get_keymap __P((void)); extern void rl_set_keymap_from_edit_mode __P((void)); -extern char *rl_get_keymap_name_from_edit_mode __P((void)); +extern const char *rl_get_keymap_name_from_edit_mode __P((void)); /* Functions for manipulating the funmap, which maps command names to functions. */ -extern int rl_add_funmap_entry __P((char *, Function *)); +extern int rl_add_funmap_entry __P((const char *, Function *)); extern void rl_initialize_funmap __P((void)); extern char **rl_funmap_names __P((void)); @@ -351,7 +351,7 @@ extern void rl_save_prompt __P((void)); extern void rl_restore_prompt __P((void)); /* Modifying text. */ -extern int rl_insert_text __P((char *)); +extern int rl_insert_text __P((const char *)); extern int rl_delete_text __P((int, int)); extern int rl_kill_text __P((int, int)); extern char *rl_copy_text __P((int, int)); @@ -392,9 +392,9 @@ extern int maybe_replace_line __P((void)); extern int rl_complete_internal __P((int)); extern void rl_display_match_list __P((char **, int, int)); -extern char **completion_matches __P((char *, CPFunction *)); -extern char *username_completion_function __P((char *, int)); -extern char *filename_completion_function __P((char *, int)); +extern char **completion_matches __P((const char *, CPFunction *)); +extern char *username_completion_function __P((const char *, int)); +extern char *filename_completion_function __P((const char *, int)); /* **************************************************************** */ /* */ @@ -403,11 +403,11 @@ extern char *filename_completion_function __P((char *, int)); /* **************************************************************** */ /* The version of this incarnation of the readline library. */ -extern char *rl_library_version; +extern const char *rl_library_version; /* The name of the calling program. You should initialize this to whatever was in argv[0]. It is used when parsing conditionals. */ -extern char *rl_readline_name; +extern const char *rl_readline_name; /* The prompt readline uses. This is set from the argument to readline (), and should not be assigned to directly. */ @@ -506,12 +506,12 @@ extern CPPFunction *rl_attempted_completion_function; /* The basic list of characters that signal a break between words for the completer routine. The initial contents of this variable is what breaks words in the shell, i.e. "n\"\\'`@$>". */ -extern char *rl_basic_word_break_characters; +extern const char *rl_basic_word_break_characters; /* The list of characters that signal a break between words for rl_complete_internal. The default list is the contents of rl_basic_word_break_characters. */ -extern char *rl_completer_word_break_characters; +extern const char *rl_completer_word_break_characters; /* List of characters which can be used to quote a substring of the line. Completion occurs on the entire substring, and within the substring @@ -520,7 +520,7 @@ extern char *rl_completer_word_break_characters; extern char *rl_completer_quote_characters; /* List of quote characters which cause a word break. */ -extern char *rl_basic_quote_characters; +extern const char *rl_basic_quote_characters; /* List of characters that need to be quoted in filenames by the completer. */ extern char *rl_filename_quote_characters; diff --git a/readline/rltty.c b/readline/rltty.c index b4d0cf127d5..ed48ce69dd7 100644 --- a/readline/rltty.c +++ b/readline/rltty.c @@ -368,13 +368,6 @@ static TIOTYPE otio; # define OUTPUT_BEING_FLUSHED(tp) 0 #endif -static void -rltty_warning (msg) - char *msg; -{ - fprintf (stderr, "readline: warning: %s\n", msg); -} - #if defined (_AIX) void setopost(tp) @@ -604,8 +597,8 @@ rl_deprep_terminal () /* **************************************************************** */ int -rl_restart_output (count, key) - int count, key; +rl_restart_output (int count __attribute__((unused)), + int key __attribute__((unused))) { int fildes = fileno (rl_outstream); #if defined (TIOCSTART) @@ -637,8 +630,8 @@ rl_restart_output (count, key) } int -rl_stop_output (count, key) - int count, key; +rl_stop_output (int count __attribute__((unused)), + int key __attribute__((unused))) { int fildes = fileno (rl_instream); diff --git a/readline/search.c b/readline/search.c index f198e7409e5..0179d8da2f1 100644 --- a/readline/search.c +++ b/readline/search.c @@ -247,8 +247,7 @@ noninc_search (dir, pchar) /* Search forward through the history list for a string. If the vi-mode code calls this, KEY will be `?'. */ int -rl_noninc_forward_search (count, key) - int count, key; +rl_noninc_forward_search (int count __attribute__((unused)), int key) { noninc_search (1, (key == '?') ? '?' : 0); return 0; @@ -257,8 +256,7 @@ rl_noninc_forward_search (count, key) /* Reverse search the history list for a string. If the vi-mode code calls this, KEY will be `/'. */ int -rl_noninc_reverse_search (count, key) - int count, key; +rl_noninc_reverse_search (int count __attribute__((unused)), int key) { noninc_search (-1, (key == '/') ? '/' : 0); return 0; @@ -267,8 +265,8 @@ rl_noninc_reverse_search (count, key) /* Search forward through the history list for the last string searched for. If there is no saved search string, abort. */ int -rl_noninc_forward_search_again (count, key) - int count, key; +rl_noninc_forward_search_again (int count __attribute__((unused)), + int key __attribute__((unused))) { if (!noninc_search_string) { @@ -282,8 +280,8 @@ rl_noninc_forward_search_again (count, key) /* Reverse search in the history list for the last string searched for. If there is no saved search string, abort. */ int -rl_noninc_reverse_search_again (count, key) - int count, key; +rl_noninc_reverse_search_again (int count __attribute__((unused)), + int key __attribute__((unused))) { if (!noninc_search_string) { @@ -352,8 +350,7 @@ rl_history_search_internal (count, direction) from the start of the line to rl_point. This is a non-incremental search. */ int -rl_history_search_forward (count, ignore) - int count, ignore; +rl_history_search_forward (int count, int ignore __attribute__((unused))) { if (count == 0) return (0); @@ -366,8 +363,7 @@ rl_history_search_forward (count, ignore) from the start of the line to rl_point. This is a non-incremental search. */ int -rl_history_search_backward (count, ignore) - int count, ignore; +rl_history_search_backward (int count, int ignore __attribute__((unused))) { if (count == 0) return (0); diff --git a/readline/shell.c b/readline/shell.c index 4d9e0064d3f..becd66e0f9a 100644 --- a/readline/shell.c +++ b/readline/shell.c @@ -26,6 +26,7 @@ # include <config.h> #endif +#include <stdio.h> #include <sys/types.h> #if defined (HAVE_UNISTD_H) diff --git a/readline/terminal.c b/readline/terminal.c index 6e94bdc4011..1d2fead7768 100644 --- a/readline/terminal.c +++ b/readline/terminal.c @@ -99,8 +99,8 @@ char PC, *BC, *UP; #endif /* __linux__ */ /* Some strings to control terminal actions. These are output by tputs (). */ -char *term_goto, *term_clreol, *term_cr, *term_clrpag, *term_backspace; -char *term_pc; +char *term_goto, *term_clreol, *term_clrpag, *term_backspace; +char *term_cr, *term_pc; /* Non-zero if we determine that the terminal can do character insertion. */ int terminal_can_insert = 0; @@ -245,8 +245,8 @@ rl_resize_terminal () } struct _tc_string { - char *tc_var; - char **tc_value; + const char *tc_var; + char **tc_value; }; /* This should be kept sorted, just in case we decide to change the @@ -291,7 +291,7 @@ get_term_capabilities (bp) { register int i; - for (i = 0; i < NUM_TC_STRINGS; i++) + for (i = 0; i < (int) NUM_TC_STRINGS; i++) *(tc_strings[i].tc_value) = tgetstr (tc_strings[i].tc_var, bp); tcap_initialized = 1; } @@ -304,7 +304,7 @@ _rl_init_terminal_io (terminal_name) screenwidth = ScreenCols (); screenheight = ScreenRows (); screenchars = screenwidth * screenheight; - term_cr = "\r"; + term_cr = (char*) "\r"; term_im = term_ei = term_ic = term_IC = (char *)NULL; term_up = term_dc = term_DC = visible_bell = (char *)NULL; @@ -322,7 +322,8 @@ _rl_init_terminal_io (terminal_name) return; #else /* !__GO32__ */ - char *term, *buffer; + const char *term; + char *buffer; int tty; Keymap xkeymap; @@ -347,7 +348,7 @@ _rl_init_terminal_io (terminal_name) screenwidth = 79; screenheight = 24; screenchars = 79 * 24; - term_cr = "\r"; + term_cr = (char*) "\r"; term_im = term_ei = term_ic = term_IC = (char *)NULL; term_up = term_dc = term_DC = visible_bell = (char *)NULL; term_ku = term_kd = term_kl = term_kr = (char *)NULL; @@ -367,7 +368,7 @@ _rl_init_terminal_io (terminal_name) UP = term_up; if (!term_cr) - term_cr = "\r"; + term_cr = (char*) "\r"; tty = rl_instream ? fileno (rl_instream) : 0; @@ -427,7 +428,7 @@ rl_get_termcap (cap) if (tcap_initialized == 0) return ((char *)NULL); - for (i = 0; i < NUM_TC_STRINGS; i++) + for (i = 0; i < (int) NUM_TC_STRINGS; i++) { if (tc_strings[i].tc_var[0] == cap[0] && strcmp (tc_strings[i].tc_var, cap) == 0) return *(tc_strings[i].tc_value); diff --git a/readline/tilde.c b/readline/tilde.c index 65a1e2f3902..05c9ed741ed 100644 --- a/readline/tilde.c +++ b/readline/tilde.c @@ -82,13 +82,13 @@ extern char *get_env_value (); /* The default value of tilde_additional_prefixes. This is set to whitespace preceding a tilde so that simple programs which do not perform any word separation get desired behaviour. */ -static char *default_prefixes[] = +static const char *default_prefixes[] = { " ~", "\t~", (char *)NULL }; /* The default value of tilde_additional_suffixes. This is set to whitespace or newline so that simple programs which do not perform any word separation get desired behaviour. */ -static char *default_suffixes[] = +static const char *default_suffixes[] = { " ", "\n", (char *)NULL }; /* If non-null, this contains the address of a function that the application @@ -106,12 +106,12 @@ CPFunction *tilde_expansion_failure_hook = (CPFunction *)NULL; /* When non-null, this is a NULL terminated array of strings which are duplicates for a tilde prefix. Bash uses this to expand `=~' and `:~'. */ -char **tilde_additional_prefixes = default_prefixes; +const char ** tilde_additional_prefixes = default_prefixes; /* When non-null, this is a NULL terminated array of strings which match the end of a username, instead of just "/". Bash sets this to `:' and `=~'. */ -char **tilde_additional_suffixes = default_suffixes; +const char **tilde_additional_suffixes = default_suffixes; /* Find the start of a tilde expansion in STRING, and return the index of the tilde which starts the expansion. Place the length of the text @@ -122,7 +122,7 @@ tilde_find_prefix (string, len) int *len; { register int i, j, string_len; - register char **prefixes = tilde_additional_prefixes; + register const char **prefixes = tilde_additional_prefixes; string_len = strlen (string); *len = 0; @@ -154,7 +154,7 @@ tilde_find_suffix (string) char *string; { register int i, j, string_len; - register char **suffixes; + register const char **suffixes; suffixes = tilde_additional_suffixes; string_len = strlen (string); diff --git a/readline/tilde.h b/readline/tilde.h index 634b95449aa..45eea1b66e5 100644 --- a/readline/tilde.h +++ b/readline/tilde.h @@ -48,12 +48,12 @@ extern CPFunction *tilde_expansion_failure_hook; /* When non-null, this is a NULL terminated array of strings which are duplicates for a tilde prefix. Bash uses this to expand `=~' and `:~'. */ -extern char **tilde_additional_prefixes; +extern const char **tilde_additional_prefixes; /* When non-null, this is a NULL terminated array of strings which match the end of a username, instead of just "/". Bash sets this to `:' and `=~'. */ -extern char **tilde_additional_suffixes; +extern const char **tilde_additional_suffixes; /* Return a new string which is the result of tilde expanding STRING. */ extern char *tilde_expand (); diff --git a/readline/undo.c b/readline/undo.c index 68710b667ed..c8f4892b774 100644 --- a/readline/undo.c +++ b/readline/undo.c @@ -174,7 +174,7 @@ _rl_fix_last_undo_of_type (type, start, end) for (rl = rl_undo_list; rl; rl = rl->next) { - if (rl->what == type) + if ((int) rl->what == type) { rl->start = start; rl->end = end; @@ -225,8 +225,8 @@ rl_modifying (start, end) /* Revert the current line to its previous state. */ int -rl_revert_line (count, key) - int count, key; +rl_revert_line (int count __attribute__((unused)), + int key __attribute__((unused))) { if (!rl_undo_list) ding (); @@ -240,8 +240,7 @@ rl_revert_line (count, key) /* Do some undoing of things that were done. */ int -rl_undo_command (count, key) - int count, key; +rl_undo_command (int count, int key __attribute__((unused))) { if (count < 0) return 0; /* Nothing to do. */ diff --git a/readline/util.c b/readline/util.c index 1dc3b664f1c..bcd8f3bc5b2 100644 --- a/readline/util.c +++ b/readline/util.c @@ -81,7 +81,7 @@ extern char *xmalloc (), *xrealloc (); in words, or 1 if it is. */ int _rl_allow_pathname_alphabetic_chars = 0; -static char *pathname_alphabetic_chars = "/-_=~.#$"; +static const char *pathname_alphabetic_chars = "/-_=~.#$"; int alphabetic (c) @@ -113,15 +113,15 @@ _rl_abort_internal () } int -rl_abort (count, key) - int count, key; +rl_abort (int count __attribute__((unused)), + int key __attribute__((unused))) { return (_rl_abort_internal ()); } int -rl_tty_status (count, key) - int count, key; +rl_tty_status (int count __attribute__((unused)), + int key __attribute__((unused))) { #if defined (TIOCSTAT) ioctl (1, TIOCSTAT, (char *)0); @@ -170,8 +170,8 @@ rl_extend_line_buffer (len) /* A function for simple tilde expansion. */ int -rl_tilde_expand (ignore, key) - int ignore, key; +rl_tilde_expand (int ignore __attribute__((unused)), + int key __attribute__((unused))) { register int start, end; char *homedir, *temp; diff --git a/readline/vi_mode.c b/readline/vi_mode.c index d62d91dada6..3db3d25cdd3 100644 --- a/readline/vi_mode.c +++ b/readline/vi_mode.c @@ -98,7 +98,7 @@ extern int rl_vi_check (); static int _rl_vi_doing_insert; /* Command keys which do movement for xxx_to commands. */ -static char *vi_motion = " hl^$0ftFt;,%wbeWBE|"; +static const char *vi_motion = " hl^$0ftFt;,%wbeWBE|"; /* Keymap used for vi replace characters. Created dynamically since rarely used. */ @@ -126,7 +126,7 @@ static int _rl_vi_last_key_before_insert; static int vi_redoing; /* Text modification commands. These are the `redoable' commands. */ -static char *vi_textmod = "_*\\AaIiCcDdPpYyRrSsXx~"; +static const char *vi_textmod = "_*\\AaIiCcDdPpYyRrSsXx~"; /* Arrays for the saved marks. */ static int vi_mark_chars[27]; |