]> git.wh0rd.org Git - nano.git/commitdiff
comment addition, minor cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 28 Dec 2003 03:56:04 +0000 (03:56 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 28 Dec 2003 03:56:04 +0000 (03:56 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1605 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c
src/search.c

index b2e5ed235df34ad6a2c74c09afdcd444b7607328..5ff94c9e53f7c2a42f343708eedb0a23854c7353 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -64,7 +64,11 @@ CVS code -
 - global.c:
   shortcut_init()
        - Allow WHEREIS_NEXT_KEY to be used in view mode. (DLR)
-- nano,c:
+- nano.c:
+  do_int_spell_fix()
+       - Add comment explaining why findnextstr() is called with
+         bracket_mode set to TRUE even though we aren't doing a bracket
+         search. (DLR)
   do_para_operation()
        - Convert to use the new low-level input functions. (DLR)
   main()
index 351125ee7c810d3b0dea1df7a763b0bace7b7a4c..484edc5f1ddf76c0fdd25ccd583f12f740e0354f 100644 (file)
@@ -1566,7 +1566,9 @@ int do_int_spell_fix(const char *word)
 
     search_last_line = FALSE;
 
-    /* We find the first whole-word occurrence of word. */
+    /* We find the first whole-word occurrence of word.  We call
+       findnextstr() with bracket_mode set to TRUE in order to disable
+       search wrapping. */
     while (findnextstr(TRUE, TRUE, fileage, -1, word, 0))
        if (is_whole_word(current_x, current->data, word)) {
            edit_refresh();
index ef1ea8f1541e5507ff1d7357229424d250ef0ed0..8b1c9f76b1faec959ed0602b8f75ff96a9bdf9b0 100644 (file)
@@ -986,7 +986,7 @@ int do_find_bracket(void)
 
     while (1) {
        search_last_line = 0;
-       if (findnextstr(1, 1, current, current_x, regexp_pat, 0) != NULL) {
+       if (findnextstr(TRUE, TRUE, current, current_x, regexp_pat, 0) != NULL) {
            have_search_offscreen |= search_offscreen;
 
            /* found identical bracket */