mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
isalpha() -> ialpha(); avoid a compiler warning (12439)
This commit is contained in:
parent
a2f2ae4f5a
commit
9bc05a5aa5
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -980,7 +980,7 @@ should_ignore_line(Eprog prog)
|
|||
zsfree(t);
|
||||
return 1;
|
||||
}
|
||||
} while (isalpha(*b));
|
||||
} while (ialpha(*b));
|
||||
}
|
||||
zsfree(t);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue