Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: zle wide wordchars
- X-seq: zsh-workers 21124
- From: Clint Adams <clint@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: zle wide wordchars
- Date: Fri, 8 Apr 2005 12:39:05 -0400
- Mail-followup-to: zsh-workers@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Well, I'm committing this one.
M Src/Zle/zle_main.c
M Src/init.c
M Src/params.c
* modified files
--- orig/Src/Zle/zle_main.c
+++ mod/Src/Zle/zle_main.c
@@ -101,6 +101,11 @@
/**/
mod_export int
lastchar_wide_valid;
+
+/**/
+mod_export ZLE_STRING_T zle_wordchars;
+#else
+# define zle_wordchars wordchars;
#endif
/* the bindings for the previous and for this key */
@@ -1507,6 +1512,17 @@
kungetct = 0;
}
+/**/
+mod_export void
+wordcharstrigger(void)
+{
+#ifdef ZLE_UNICODE_SUPPORT
+ zrealloc(zle_wordchars, strlen(wordchars)*MB_CUR_MAX);
+ mbsrtowcs(zle_wordchars, &wordchars, strlen(wordchars), NULL);
+ /* TODO: error handling here */
+#endif
+}
+
/* Hook functions. Used to allow access to zle parameters if zle is
* active. */
@@ -1572,6 +1588,7 @@
kungetbuf = (char *) zalloc(kungetsz = 32);
comprecursive = 0;
rdstrs = NULL;
+ wordcharstriggerptr = wordcharstrigger;
/* initialise the keymap system */
init_keymaps();
@@ -1645,6 +1662,7 @@
zlegetlineptr = NULL;
zlereadptr = fallback_zleread;
zlesetkeymapptr= noop_function_int;
+ wordcharstriggerptr = noop_function;
getkeyptr = NULL;
--- orig/Src/init.c
+++ mod/Src/init.c
@@ -1152,6 +1152,9 @@
#endif /* !LINKED_XMOD_zshQszle */
/**/
+mod_export ZleVoidFn wordcharstriggerptr = noop_function;
+
+/**/
unsigned char *
autoload_zleread(char **lp, char **rp, int ha, int con)
{
--- orig/Src/params.c
+++ mod/Src/params.c
@@ -3316,6 +3316,7 @@
zsfree(wordchars);
wordchars = x;
inittyptab();
+ wordcharstriggerptr();
}
/* Function to get value for special parameter `_' */
Messages sorted by:
Reverse Date,
Date,
Thread,
Author