diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2006-03-20 15:22:55 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2006-03-20 15:22:55 +0000 |
| commit | 7b92878c24cb3ae68abb8facbbb3088a6fed7bdd (patch) | |
| tree | 7265b52b0570a7a7f12ad8ed21891c78bcd36d6c | |
| parent | 22371: use only alphanumerics and underscores as word characters with vi bind... (diff) | |
| download | zsh-7b92878c24cb3ae68abb8facbbb3088a6fed7bdd.tar zsh-7b92878c24cb3ae68abb8facbbb3088a6fed7bdd.tar.gz zsh-7b92878c24cb3ae68abb8facbbb3088a6fed7bdd.tar.bz2 zsh-7b92878c24cb3ae68abb8facbbb3088a6fed7bdd.tar.lz zsh-7b92878c24cb3ae68abb8facbbb3088a6fed7bdd.tar.xz zsh-7b92878c24cb3ae68abb8facbbb3088a6fed7bdd.tar.zst zsh-7b92878c24cb3ae68abb8facbbb3088a6fed7bdd.zip | |
thinko fix
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Src/Zle/zle.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ 2006-03-20 Clint Adams <clint@zsh.org> - * 22371: Src/Zle/zle.h, Src/Zle/zle_word.c: use + * 22371, 22372: Src/Zle/zle.h, Src/Zle/zle_word.c: use only alphanumerics and underscores as word characters with vi bindings. diff --git a/Src/Zle/zle.h b/Src/Zle/zle.h index 924006adc..7e08a8ad9 100644 --- a/Src/Zle/zle.h +++ b/Src/Zle/zle.h @@ -138,7 +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_ialnum ialnum #define ZC_iblank iblank #define ZC_icntrl icntrl #define ZC_idigit idigit |
