]> git.wh0rd.org Git - nano.git/commitdiff
rename a variable in the strcasestr() equivalent order to match DB's
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 22 Jan 2005 19:56:16 +0000 (19:56 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 22 Jan 2005 19:56:16 +0000 (19:56 +0000)
original cleanup of it, and port the change to the multibyte version too

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2294 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/chars.c

index a68f8fada6b79f58d903746a1acc3d97cb7bebca..128a0497fb61cf8bfebafe2f440c41e546ad42d2 100644 (file)
@@ -579,9 +579,9 @@ const char *nstrcasestr(const char *haystack, const char *needle)
     assert(haystack != NULL && needle != NULL);
 
     for (; *haystack != '\0'; haystack++) {
-       const char *p = haystack, *q = needle;
+       const char *r = haystack, *q = needle;
 
-       for (; tolower(*p) == tolower(*q) && *q != '\0'; p++, q++)
+       for (; tolower(*r) == tolower(*q) && *q != '\0'; r++, q++)
            ;
 
        if (*q == '\0')
@@ -597,23 +597,23 @@ const char *mbstrcasestr(const char *haystack, const char *needle)
 {
 #ifdef NANO_WIDE
     if (!ISSET(NO_UTF8)) {
-       char *p_mb = charalloc(MB_CUR_MAX);
+       char *r_mb = charalloc(MB_CUR_MAX);
        char *q_mb = charalloc(MB_CUR_MAX);
-       wchar_t wp, wq;
+       wchar_t wr, wq;
        bool found_needle = FALSE;
 
        assert(haystack != NULL && needle != NULL);
 
        while (*haystack != '\0') {
-           const char *p = haystack, *q = needle;
-           int p_mb_len, q_mb_len;
+           const char *r = haystack, *q = needle;
+           int r_mb_len, q_mb_len;
 
            while (*q != '\0') {
-               p_mb_len = parse_mbchar(p, p_mb, NULL, NULL);
+               r_mb_len = parse_mbchar(r, r_mb, NULL, NULL);
 
-               if (mbtowc(&wp, p_mb, p_mb_len) <= 0) {
+               if (mbtowc(&wr, r_mb, r_mb_len) <= 0) {
                    mbtowc(NULL, NULL, 0);
-                   wp = (unsigned char)*p;
+                   wr = (unsigned char)*r;
                }
 
                q_mb_len = parse_mbchar(q, q_mb, NULL, NULL);
@@ -623,10 +623,10 @@ const char *mbstrcasestr(const char *haystack, const char *needle)
                    wq = (unsigned char)*q;
                }
 
-               if (towlower(wp) != towlower(wq))
+               if (towlower(wr) != towlower(wq))
                    break;
 
-               p += p_mb_len;
+               r += r_mb_len;
                q += q_mb_len;
            }
 
@@ -638,7 +638,7 @@ const char *mbstrcasestr(const char *haystack, const char *needle)
            haystack += parse_mbchar(haystack, NULL, NULL, NULL);
        }
 
-       free(p_mb);
+       free(r_mb);
        free(q_mb);
 
        return found_needle ? haystack : NULL;