diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2006-10-19 08:50:00 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-10-19 08:50:00 +0000 |
| commit | ee5ba733a8cf401195c0a35700ebcc7bba868cd2 (patch) | |
| tree | dc6be3d7f0d95a8e321b5ae0fd296095f60cef29 | |
| parent | 22885: fix problems with multibyte tokenized strings (diff) | |
| download | zsh-ee5ba733a8cf401195c0a35700ebcc7bba868cd2.tar zsh-ee5ba733a8cf401195c0a35700ebcc7bba868cd2.tar.gz zsh-ee5ba733a8cf401195c0a35700ebcc7bba868cd2.tar.bz2 zsh-ee5ba733a8cf401195c0a35700ebcc7bba868cd2.tar.lz zsh-ee5ba733a8cf401195c0a35700ebcc7bba868cd2.tar.xz zsh-ee5ba733a8cf401195c0a35700ebcc7bba868cd2.tar.zst zsh-ee5ba733a8cf401195c0a35700ebcc7bba868cd2.zip | |
unposted: typo in 22885
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Src/utils.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2006-10-19 Peter Stephenson <pws@csr.com> + * unposted: Src/utils.c: EOF in ur-22885 should be WEOF. + * unposted: Completion/Unix/Command/_todo.sh: more places where we complete priorities and contexts. diff --git a/Src/utils.c b/Src/utils.c index 3658e615f..ed4abe3f1 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -4015,7 +4015,7 @@ mb_metacharlenconv(const char *s, wint_t *wcp) */ if (itok(*s)) { if (wcp) - *wcp = EOF; + *wcp = WEOF; return 1; } |
