2007-08-11 Michael Snyder <msnyder@access-company.com>

* completer.c: Spelling fix in comments.
This commit is contained in:
Michael Snyder 2007-08-11 20:08:37 +00:00
parent 2f964f43a7
commit 489f05169b
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2007-08-11 Michael Snyder <msnyder@access-company.com>
* completer.c: Spelling fix in comments.
2007-08-10 Michael Snyder <msnyder@access-company.com> 2007-08-10 Michael Snyder <msnyder@access-company.com>
* gdbtypes.c: Coding standard cleanup. * gdbtypes.c: Coding standard cleanup.

View File

@ -182,7 +182,7 @@ filename_completer (char *text, char *word)
/* There is no way to do this just long enough to affect quote inserting /* There is no way to do this just long enough to affect quote inserting
without also affecting the next completion. This should be fixed in without also affecting the next completion. This should be fixed in
readline. FIXME. */ readline. FIXME. */
/* Insure that readline does the right thing /* Ensure that readline does the right thing
with respect to inserting quotes. */ with respect to inserting quotes. */
rl_completer_word_break_characters = ""; rl_completer_word_break_characters = "";
#endif #endif
@ -461,7 +461,7 @@ complete_line (const char *text, char *line_buffer, int point)
{ {
list = complete_on_cmdlist (cmdlist, p, word); list = complete_on_cmdlist (cmdlist, p, word);
} }
/* Insure that readline does the right thing with respect to /* Ensure that readline does the right thing with respect to
inserting quotes. */ inserting quotes. */
rl_completer_word_break_characters = rl_completer_word_break_characters =
gdb_completer_command_word_break_characters; gdb_completer_command_word_break_characters;
@ -485,7 +485,7 @@ complete_line (const char *text, char *line_buffer, int point)
a subcommand (e.g. "info "). */ a subcommand (e.g. "info "). */
list = complete_on_cmdlist (*c->prefixlist, p, word); list = complete_on_cmdlist (*c->prefixlist, p, word);
/* Insure that readline does the right thing /* Ensure that readline does the right thing
with respect to inserting quotes. */ with respect to inserting quotes. */
rl_completer_word_break_characters = rl_completer_word_break_characters =
gdb_completer_command_word_break_characters; gdb_completer_command_word_break_characters;
@ -551,7 +551,7 @@ complete_line (const char *text, char *line_buffer, int point)
list = complete_on_cmdlist (result_list, q, word); list = complete_on_cmdlist (result_list, q, word);
/* Insure that readline does the right thing /* Ensure that readline does the right thing
with respect to inserting quotes. */ with respect to inserting quotes. */
rl_completer_word_break_characters = rl_completer_word_break_characters =
gdb_completer_command_word_break_characters; gdb_completer_command_word_break_characters;