From 8294310202fdc2204d4175daa60aa3bcf4c86b54 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Mon, 20 Mar 2006 14:40:36 +0000 Subject: 22371: use only alphanumerics and underscores as word characters with vi bindings. --- Src/Zle/zle.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Src/Zle/zle.h') diff --git a/Src/Zle/zle.h b/Src/Zle/zle.h index 055b8bac4..924006adc 100644 --- a/Src/Zle/zle.h +++ b/Src/Zle/zle.h @@ -72,6 +72,7 @@ typedef wint_t ZLE_INT_T; /* Functions that operate on ZLE_CHAR_T. */ #define ZC_ialpha iswalpha +#define ZC_ialnum iswalnum #define ZC_iblank wcsiblank #define ZC_icntrl iswcntrl #define ZC_idigit iswdigit @@ -137,6 +138,7 @@ static inline int ZS_strncmp(ZLE_STRING_T s1, ZLE_STRING_T s2, size_t l) /* Functions that operate on ZLE_CHAR_T. */ #define ZC_ialpha ialpha +#define ZC_ialpha ialnum #define ZC_iblank iblank #define ZC_icntrl icntrl #define ZC_idigit idigit -- cgit 1.4.1