diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2003-05-14 15:09:14 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-05-14 15:09:14 +0000 |
commit | 62719196b27496c3cc4ff97a92fc03627b1bab38 (patch) | |
tree | e3d8dbd8126d1717a09272c0fcbf1125ecc4b975 /Src/init.c | |
parent | 2b744cb21d87de89495d2e66843946008c98f556 (diff) | |
download | zsh-62719196b27496c3cc4ff97a92fc03627b1bab38.tar.gz zsh-62719196b27496c3cc4ff97a92fc03627b1bab38.tar.xz zsh-62719196b27496c3cc4ff97a92fc03627b1bab38.zip |
18536: EMACS and VI compatibility options
Diffstat (limited to 'Src/init.c')
-rw-r--r-- | Src/init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Src/init.c b/Src/init.c index e3a6bda3a..06558e918 100644 --- a/Src/init.c +++ b/Src/init.c @@ -1112,6 +1112,8 @@ mod_export ZleVoidFn refreshptr = noop_function; mod_export ZleVoidIntFn spaceinlineptr = noop_function_int; /**/ mod_export ZleReadFn zlereadptr = autoload_zleread; +/**/ +mod_export ZleVoidIntFn zlesetkeymapptr = noop_function_int; #else /* !LINKED_XMOD_zshQszle */ @@ -1124,6 +1126,7 @@ mod_export ZleReadFn zlereadptr = autoload_zleread; mod_export ZleReadFn zlereadptr = fallback_zleread; # endif /* !UNLINKED_XMOD_zshQszle */ +mod_export ZleVoidIntFn zlesetkeymapptr = noop_function_int; #endif /* !LINKED_XMOD_zshQszle */ /**/ |