diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-08-15 15:47:53 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-08-15 15:47:53 +0000 |
commit | 8b3558c5ed7a042c212296650eb5d452e2444395 (patch) | |
tree | c7fd8b8c5f0b2329aa823688ef8fc43648aa7399 | |
parent | 821c0fd80d084b5c4d047e18649c74c86eac0b9d (diff) | |
download | zsh-8b3558c5ed7a042c212296650eb5d452e2444395.tar.gz zsh-8b3558c5ed7a042c212296650eb5d452e2444395.tar.xz zsh-8b3558c5ed7a042c212296650eb5d452e2444395.zip |
21616: typo
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Src/Zle/zle_misc.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 5c1fd9137..52ae1586d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,8 @@ 2005-08-15 Peter Stephenson <pws@csr.com> + * c.f. 21616: Src/zle_misc.c: "unmetafy_line" typo. + * 21610: Src/system.h, Src/Zle/zle_hist.c, Src/Zle/zle_keymap.c, Src/Zle/zle_misc.c: Turn on ZLE_UNICODE_SUPPORT by default where allowed; fix suffix removal; fix metafication when removing diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c index 58345ac05..6b79f431c 100644 --- a/Src/Zle/zle_misc.c +++ b/Src/Zle/zle_misc.c @@ -1117,7 +1117,7 @@ iremovesuffix(ZLE_CHAR_T c, int keep) * called from completion. (It may not be since * we may decide to remove the suffix later.) */ - umetafy_line(); + unmetafy_line(); } sprintf(buf, "%d", suffixlen[0]); |