summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Src/hist.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a1c922e8..c81f07817 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2000-07-31 Sven Wischnowsky <wischnow@zsh.org>
+ * 12439: Src/hist.c: isalpha() -> ialpha(); avoid a compiler
+ warning
+
* 12438: Doc/Zsh/compsys.yo: clarify manual for menu style;
select= and yes= may be given both a number and one of the long*
values at the same time
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);
}