From ae6c23ae2c516ac7f65286ee48aedf15e0a4b176 Mon Sep 17 00:00:00 2001 From: Andrey Borzenkov Date: Sat, 26 Feb 2005 07:40:54 +0000 Subject: 20872: fix ZS_{icntrl,tolower} vs. ZC_{incntrl,tolower} confusion --- Src/Zle/zle_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src/Zle/zle_utils.c') diff --git a/Src/Zle/zle_utils.c b/Src/Zle/zle_utils.c index 59cd1be95..5d63a9ebc 100644 --- a/Src/Zle/zle_utils.c +++ b/Src/Zle/zle_utils.c @@ -578,10 +578,10 @@ getzlequery(int yesno) if (yesno) { if (c == ZWC('\t')) c = ZWC('y'); - else if (ZS_icntrl(c) || c == ZLEEOF) + else if (ZC_icntrl(c) || c == ZLEEOF) c = ZWC('n'); else - c = ZS_tolower(c); + c = ZC_tolower(c); } /* echo response and return */ if (c != ZWC('\n')) -- cgit 1.4.1