summaryrefslogtreecommitdiff
path: root/Src/Zle
AgeCommit message (Expand)AuthorFilesLines
2006-01-2822169: hook function zle-keymap-select called when $KEYMAP changesPeter Stephenson1-1/+17
2006-01-13Got rid of unused-variable compiler warning when compiling aWayne Davison1-1/+1
2006-01-13Got rid of some superfluous STOUC() calls (such as the ones I addedWayne Davison2-2/+2
2006-01-12The new "eol" var was being set in singlerefresh(), but not accessed.Wayne Davison1-1/+1
2006-01-12- When mbrtowc() returns -2 when given all the remaining chars in aWayne Davison1-21/+30
2006-01-12- Use "mbs" for the multi-byte state variable name (for consistency).Wayne Davison1-5/+5
2006-01-12- When mbrtowc() returns -2 when given all the remaining chars in aWayne Davison4-31/+42
2006-01-11Tweaked the code to handle mbrtowc() converting '\0' the same way asWayne Davison1-11/+20
2006-01-11The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-5/+7
2006-01-11The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-3/+6
2006-01-09Changed the name of the "ret" variable in mb_niceformat() to "cnt"Wayne Davison1-8/+7
2006-01-09A test for (size_t)-1 needed to check for (size_t)-2 too.Wayne Davison1-1/+1
2006-01-09The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-10/+9
2006-01-09The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-15/+10
2006-01-09The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-4/+4
2006-01-09The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-3/+3
2006-01-0622124: handle bad multibyte input betterPeter Stephenson2-3/+13
2005-12-12A slightly more optimal way to fix the zle_setline() bug usingWayne Davison1-2/+1
2005-12-12Fixed problem in zle_setline() where moving to an empty line wouldWayne Davison1-1/+1
2005-12-1022069: completion listings didn't get unmetafiedPeter Stephenson1-7/+9
2005-11-30Fixed parsedigit() to have it use its arg instead of "lastchar".Wayne Davison1-15/+12
2005-11-2422014: argument-base, insert-unicode-charPeter Stephenson4-16/+75
2005-11-2122009: another double-width character fixPeter Stephenson1-0/+6
2005-11-18Got rid of two unneeded "(char *)" casts.Wayne Davison1-2/+2
2005-11-15Got rid of some compiler warnings about comparisons between signedWayne Davison1-5/+6
2005-11-15Changed zlelineasstring() and zlegetline() to each return a normal charWayne Davison1-29/+25
2005-11-15Changed zlemetaline into a normal char pointer, not unsigned char.Wayne Davison1-39/+35
2005-11-15Changed zleread() to return a normal char pointer, not unsigned char.Wayne Davison1-8/+7
2005-11-15The non-multibyte version of ZWS() doesn't need to force a cast anymore.Wayne Davison1-2/+2
2005-11-15Got rid of some unsigned-char/char pointer casts.Wayne Davison8-108/+83
2005-11-07users/9638: tweaks for FCEDIT etc.Peter Stephenson4-55/+202
2005-11-02users/9610: handle digit argument when copying wordsPeter Stephenson1-11/+29
2005-11-0221973: typo caused digitargument() not to workPeter Stephenson1-2/+2
2005-11-0121971: multibyte version of pfxlen()Peter Stephenson2-3/+43
2005-11-01I just noticed that zsh's default icntrl() macro returns true forWayne Davison1-3/+3
2005-11-01- One minor change to handle the ZLE_STRING_T change.Wayne Davison1-13/+5
2005-11-01- Changed a couple pointers from "char *" to "unsigned char *" inWayne Davison1-19/+16
2005-11-01- Improved all the "... ? ZWC('?') : (CHAR_VALUE | ZWC('@'))" codeWayne Davison1-13/+5
2005-11-01- A few changes in light of the new ZLE_CHAR_T and ZLE_STRING_T.Wayne Davison1-20/+11
2005-11-01Changed the non-wide version of: ZLE_CHAR_T into a "char" (formerlyWayne Davison1-4/+4
2005-11-01- Changed a bunch of iblank() calls on zleline to use ZC_iblank().Wayne Davison1-16/+16
2005-11-01- In vireplacechars(), changed "ch" into a ZLE_INT_T.Wayne Davison1-13/+10
2005-11-01Changed iblank() calls on zleline to use ZC_iblank().Wayne Davison1-1/+1
2005-11-01- Defined some new ZC_i<type> macros, such as ZC_ilower, ZC_inblank,Wayne Davison1-3/+13
2005-10-31Fixed a compiler warning about a signed/unsigned comparison.Wayne Davison1-3/+5
2005-10-31Fixed some compiler warnings about signed/unsigned comparisons.Wayne Davison2-5/+5
2005-10-31In parse_cadef(), the variable name oargs was re-defined in an innerWayne Davison1-2/+2
2005-10-31Use idigit() instead of range-checking '0' - '9'.Wayne Davison1-1/+1
2005-10-3021957: more wide-character refresh stuffPeter Stephenson1-103/+119
2005-10-28Got rid of a use of WEOF when MULTIBYTE_SUPPORT is not definedWayne Davison1-2/+4