about summary refs log tree commit diff
path: root/Src/init.c
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-12-16 14:26:16 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-12-16 14:26:16 +0000
commit02c0df21747e5795197510f15da73bd0c287e978 (patch)
treecb14653880f6e9aed25c179c7dbc301f287e9242 /Src/init.c
parent77d48c89e05417ef40abc917ec7e2713779f8951 (diff)
downloadzsh-02c0df21747e5795197510f15da73bd0c287e978.tar.gz
zsh-02c0df21747e5795197510f15da73bd0c287e978.tar.xz
zsh-02c0df21747e5795197510f15da73bd0c287e978.zip
manual/9083
Diffstat (limited to 'Src/init.c')
-rw-r--r--Src/init.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/Src/init.c b/Src/init.c
index c53c81622..5c2a68728 100644
--- a/Src/init.c
+++ b/Src/init.c
@@ -943,7 +943,7 @@ init_bltinmods(void)
 
 #include "bltinmods.list"
 
-    load_module("zsh");
+    load_module("zsh/main");
 }
 
 /**/
@@ -965,7 +965,7 @@ noop_function_int(int nothing)
  * avoid wasting space with the fallback functions.  No other source    *
  * file needs to know which modules are linked in.                      */
 
-#ifdef LINKED_XMOD_zle
+#ifdef LINKED_XMOD_zshQszle
 
 /**/
 mod_export ZleVoidFn trashzleptr = noop_function;
@@ -978,26 +978,26 @@ mod_export ZleVoidIntFn spaceinlineptr = noop_function_int;
 /**/
 mod_export ZleReadFn zlereadptr = autoload_zleread;
 
-#else /* !LINKED_XMOD_zle */
+#else /* !LINKED_XMOD_zshQszle */
 
 mod_export ZleVoidFn trashzleptr = noop_function;
 mod_export ZleVoidFn gotwordptr = noop_function;
 mod_export ZleVoidFn refreshptr = noop_function;
 mod_export ZleVoidIntFn spaceinlineptr = noop_function_int;
-# ifdef UNLINKED_XMOD_zle
+# ifdef UNLINKED_XMOD_zshQszle
 mod_export ZleReadFn zlereadptr = autoload_zleread;
-# else /* !UNLINKED_XMOD_zle */
+# else /* !UNLINKED_XMOD_zshQszle */
 mod_export ZleReadFn zlereadptr = fallback_zleread;
-# endif /* !UNLINKED_XMOD_zle */
+# endif /* !UNLINKED_XMOD_zshQszle */
 
-#endif /* !LINKED_XMOD_zle */
+#endif /* !LINKED_XMOD_zshQszle */
 
 /**/
 unsigned char *
 autoload_zleread(char *lp, char *rp, int ha)
 {
     zlereadptr = fallback_zleread;
-    load_module("zle");
+    load_module("zsh/zle");
     return zleread(lp, rp, ha);
 }