]> git.wh0rd.org Git - nano.git/commitdiff
Take out the unneeded case sensitive and reverse stuff from -tiny
authorChris Allegretta <chrisa@asty.org>
Tue, 2 Oct 2001 03:54:40 +0000 (03:54 +0000)
committerChris Allegretta <chrisa@asty.org>
Tue, 2 Oct 2001 03:54:40 +0000 (03:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@813 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
search.c
utils.c

index 8b42c41e65f8bd4958e58351d595dd6a69a6b978..c81ce09dd08ee782b4a72e894d2f53807aace920 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,6 +29,7 @@ CVS code -
        - Readded DISABLE_CURPOS because in certain instances (like
          all the "Search Wrapper" lines) the cursor position will
          be different yet we don't want the cursor position displayed.
+       - Take control-space out of -tiny build, unneeded.
 - cut.c:
   cut_marked_segment()
        - Add magic line when cutting a selection including filebot
index 64cbb327444de810674f0a17aeb0a6296772bab6..a10ebbea7e0b2b06d2ec249d922308804b2a2963 100644 (file)
--- a/search.c
+++ b/search.c
@@ -233,7 +233,7 @@ filestruct *findnextstr(int quiet, int bracket_mode, filestruct * begin, int beg
 {
     filestruct *fileptr;
     char *searchstr, *rev_start = NULL, *found = NULL;
-    int current_x_find;
+    int current_x_find = 0;
 
     fileptr = current;
 
@@ -297,7 +297,9 @@ filestruct *findnextstr(int quiet, int bracket_mode, filestruct * begin, int beg
            return NULL;
        }
 #endif
-    } else {   /* reverse search */
+    } 
+#ifndef NANO_SMALL
+    else {     /* reverse search */
 
        current_x_find = current_x - 1;
 
@@ -359,6 +361,7 @@ filestruct *findnextstr(int quiet, int bracket_mode, filestruct * begin, int beg
        }
 #endif
     }
+#endif /* NANO_SMALL */
 
     /* Set globals now that we are sure we found something */
     current = fileptr;
diff --git a/utils.c b/utils.c
index 112e8c45836f87962a38273c15c98d81be5cf345..2c59711b040e235c611cb0d3404216f0c7700792 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -74,7 +74,6 @@ char *revstrcasestr(char *haystack, char *needle, char *rev_start)
     }
     return 0;
 }
-#endif /* NANO_SMALL */
 
 /* This is now mutt's version (called mutt_stristr) because it doesn't
    use memory allocation to do a simple search (yuck). */
@@ -96,6 +95,7 @@ char *strcasestr(char *haystack, char *needle)
     }
     return NULL;
 }
+#endif /* NANO_SMALL */
 
 char *strstrwrapper(char *haystack, char *needle, char *rev_start)
 {
@@ -130,22 +130,22 @@ char *strstrwrapper(char *haystack, char *needle, char *rev_start)
        return 0;
     }
 #endif
-    if (ISSET(CASE_SENSITIVE)) {
 #ifndef NANO_SMALL
+    if (ISSET(CASE_SENSITIVE)) {
        if (ISSET(REVERSE_SEARCH))
            return revstrstr(haystack, needle, rev_start);
         else
-#endif
            return strstr(haystack,needle);
 
     } else {
-#ifndef NANO_SMALL
        if (ISSET(REVERSE_SEARCH))
            return revstrcasestr(haystack, needle, rev_start);
        else
 #endif
            return strcasestr(haystack, needle);
+#ifndef NANO_SMALL
     }
+#endif
 }
 
 /* Thanks BG, many ppl have been asking for this... */