summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2005-12-1922082: print out uid or gid in stat if name not availablePeter Stephenson1-6/+18
2005-12-17Two changes in the HIST_SAVE_BY_COPY code: (1) preserve the groupWayne Davison1-2/+20
and permissions on the history file, and (2) fail if zsh's euid differs from the file's uid (since that would change the history file's owner).
2005-12-1522085 and back off 22075: include langinfo.h to get iconvPeter Stephenson2-10/+9
2005-12-15users/9788: add (oN) glob qualifier for no sortingPeter Stephenson1-14/+33
22076: more documentation for multibyte handling
2005-12-1521814: error handling for traps in "always" constructs.Bart Schaefer2-3/+17
2005-12-14Changed ucs4toutf8() into a static function (since it's onlyWayne Davison1-2/+1
used by this file when it's even defined).
2005-12-1422075: assume we can convert characters with wctomb() with --enable-multibytePeter Stephenson1-3/+3
2005-12-12A slightly more optimal way to fix the zle_setline() bug usingWayne Davison1-2/+1
the same zlecs-checking idiom as setline().
2005-12-12Fixed problem in zle_setline() where moving to an empty line wouldWayne Davison1-1/+1
set zlecs to -1. (Reported by Jun T.)
2005-12-1022069: completion listings didn't get unmetafiedPeter Stephenson1-7/+9
2005-12-10Just-added "return" should have returned a value.Wayne Davison1-1/+1
2005-12-0922057: don't use zsh/newuser in emulationPeter Stephenson2-1/+4
22058: tweak docs for release
2005-12-0322049: bug exiting from sourced file within functionPeter Stephenson1-1/+2
2005-11-30Fixed parsedigit() to have it use its arg instead of "lastchar".Wayne Davison1-15/+12
2005-11-30One more fix for the non-multibyte prototype generation.Wayne Davison1-0/+2
2005-11-29fix utils.c prototype generation for non multibyte buildGeoff Wing1-0/+2
2005-11-2522027: more zsh-newuser-install fixesPeter Stephenson1-6/+30
22028: WARN_CREATE_GLOBAL overeager with temporarily set variables
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
and unsigned variables.
2005-11-15Changed zlelineasstring() and zlegetline() to each return a normal charWayne Davison1-29/+25
pointer, not an unsigned char pointer. Changed stringaszleline() to take a normal char pointer for its first arg. Got rid of some unsigned-char/char pointer casts.
2005-11-15Changed zlemetaline into a normal char pointer, not unsigned char.Wayne Davison1-39/+35
Got rid of some unsigned-char/char pointer casts.
2005-11-15Changed zleread() to return a normal char pointer, not unsigned char.Wayne Davison1-8/+7
Got rid of some unsigned-char/char pointer casts.
2005-11-15The non-multibyte version of ZWS() doesn't need to force a cast anymore.Wayne Davison1-2/+2
2005-11-15Changed ztrcmp() to take normal char pointers, not unsigned char.Wayne Davison1-17/+19
2005-11-15Changed two zle functions to each return a char pointer, not anWayne Davison2-5/+5
unsigned char pointer.
2005-11-15Got rid of some unsigned-char/char pointer casts.Wayne Davison11-112/+86
2005-11-07users/9638: tweaks for FCEDIT etc.Peter Stephenson6-56/+204
21986: rewrite completion suffixes for wide characters
2005-11-04users/9618, modified: :G for global substution modifierPeter Stephenson1-6/+34
2005-11-0221978: unmetafy file nameAndrey Borzenkov1-2/+2
2005-11-0221974: memory leak with tied parametersPeter Stephenson1-1/+6
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-0121967: add ${(#)...} substitutionPeter Stephenson1-0/+43
2005-11-01I just noticed that zsh's default icntrl() macro returns true forWayne Davison1-3/+3
chars 128 - 159, so the "... ? ZWC('?') : (CHAR_VALUE | ZWC('@'))" code needed to be updated to reflect this.
2005-11-01- One minor change to handle the ZLE_STRING_T change.Wayne Davison1-13/+5
- A few brace-position twiddles.
2005-11-01- Changed a couple pointers from "char *" to "unsigned char *" inWayne Davison1-19/+16
order to match the zlemetaline's type. - A few brace-position twiddles.
2005-11-01- Improved all the "... ? ZWC('?') : (CHAR_VALUE | ZWC('@'))" codeWayne Davison1-13/+5
lines to work in both normal and multibyte mode without needing conditional code. - A couple brace-position twiddles.
2005-11-01- A few changes in light of the new ZLE_CHAR_T and ZLE_STRING_T.Wayne Davison1-20/+11
- Use idigit() in place of some former '0' - '9' range checks. - Simplified some multibyte conditional code by using ZC_icntrl() and LASTFULLCHAR.
2005-11-01Changed the non-wide version of: ZLE_CHAR_T into a "char" (formerlyWayne Davison1-4/+4
an "int"), and ZLE_STRING_T into a "char *" (formerly an "unsigned char *").
2005-11-01Changed zle_text to a "char *" to match the new ZLE_STRING_T.Wayne Davison1-2/+2
2005-11-01- Changed a bunch of iblank() calls on zleline to use ZC_iblank().Wayne Davison1-16/+16
- Changed one isalpha() call on zleline to use the new ZC_ialpha().
2005-11-01- In vireplacechars(), changed "ch" into a ZLE_INT_T.Wayne Davison1-13/+10
- Changed some islower()/isupper()/iblank() calls on zleline to use the new ZC_i<type> versions.
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
ZC_iupper, etc. - Fixed ZC_iblank to not return true when given a newline.
2005-11-01Changed some isdigit() calls to use idigit().Wayne Davison2-8/+7
2005-11-01- Added the wcsiblank() function for wide-char blank-checking thatWayne Davison1-2/+12
does not match '\n'. - Fixed a couple calls to isascii() that were passing a "char" value.
2005-11-01Added macros for iascii(), ilower(), iprint(), and iupper().Wayne Davison1-0/+5