2007-08-11 Michael Snyder * completer.c: Spelling fix in comments. Index: completer.c =================================================================== RCS file: /cvs/src/src/gdb/completer.c,v retrieving revision 1.19 diff -p -r1.19 completer.c *** completer.c 10 Aug 2007 20:35:09 -0000 1.19 --- completer.c 11 Aug 2007 20:07:29 -0000 *************** filename_completer (char *text, char *wo *** 182,188 **** /* 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 readline. FIXME. */ ! /* Insure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = ""; #endif --- 182,188 ---- /* 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 readline. FIXME. */ ! /* Ensure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = ""; #endif *************** complete_line (const char *text, char *l *** 461,467 **** { list = complete_on_cmdlist (cmdlist, p, word); } ! /* Insure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = gdb_completer_command_word_break_characters; --- 461,467 ---- { list = complete_on_cmdlist (cmdlist, p, word); } ! /* Ensure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = gdb_completer_command_word_break_characters; *************** complete_line (const char *text, char *l *** 485,491 **** a subcommand (e.g. "info "). */ list = complete_on_cmdlist (*c->prefixlist, p, word); ! /* Insure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = gdb_completer_command_word_break_characters; --- 485,491 ---- a subcommand (e.g. "info "). */ list = complete_on_cmdlist (*c->prefixlist, p, word); ! /* Ensure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = gdb_completer_command_word_break_characters; *************** complete_line (const char *text, char *l *** 551,557 **** list = complete_on_cmdlist (result_list, q, word); ! /* Insure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = gdb_completer_command_word_break_characters; --- 551,557 ---- list = complete_on_cmdlist (result_list, q, word); ! /* Ensure that readline does the right thing with respect to inserting quotes. */ rl_completer_word_break_characters = gdb_completer_command_word_break_characters;