about summary refs log tree commit diff
path: root/Src/hist.c
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-07-31 08:12:16 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-07-31 08:12:16 +0000
commit9bc05a5aa5dd314ba5a13909d126cd11b7f82c2b (patch)
tree408ccbaf88b6246c826af6bb7c248e6c19650dda /Src/hist.c
parenta2f2ae4f5a6790c79fc29e6f7882acd1881eea5e (diff)
downloadzsh-9bc05a5aa5dd314ba5a13909d126cd11b7f82c2b.tar.gz
zsh-9bc05a5aa5dd314ba5a13909d126cd11b7f82c2b.tar.xz
zsh-9bc05a5aa5dd314ba5a13909d126cd11b7f82c2b.zip
isalpha() -> ialpha(); avoid a compiler warning (12439)
Diffstat (limited to 'Src/hist.c')
-rw-r--r--Src/hist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/hist.c b/Src/hist.c
index da6dfaa30..5b32748b5 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -980,7 +980,7 @@ should_ignore_line(Eprog prog)
 		    zsfree(t);
 		    return 1;
 		}
-	    } while (isalpha(*b));
+	    } while (ialpha(*b));
 	}
 	zsfree(t);
     }