1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-13 13:41:01 +02:00

isalpha() -> ialpha(); avoid a compiler warning (12439)

This commit is contained in:
Sven Wischnowsky 2000-07-31 08:12:16 +00:00
parent a2f2ae4f5a
commit 9bc05a5aa5
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2000-07-31 Sven Wischnowsky <wischnow@zsh.org> 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; * 12438: Doc/Zsh/compsys.yo: clarify manual for menu style;
select= and yes= may be given both a number and one of the long* select= and yes= may be given both a number and one of the long*
values at the same time values at the same time

View file

@ -980,7 +980,7 @@ should_ignore_line(Eprog prog)
zsfree(t); zsfree(t);
return 1; return 1;
} }
} while (isalpha(*b)); } while (ialpha(*b));
} }
zsfree(t); zsfree(t);
} }