Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 24275: fixes for multibyte characters on Solaris | Peter Stephenson | 2007-12-17 | 1 | -0/+16 |
| | |||||
* | users/11419: zle copy-region-as-kill <string> | Peter Stephenson | 2007-04-19 | 1 | -6/+31 |
| | | | | adds text to the kill ring | ||||
* | 22924: a couple more metafy_line()/unmetafy_line() problems | Peter Stephenson | 2006-10-30 | 1 | -18/+18 |
| | |||||
* | Add two widges for user control of auto-suffix remove/keep. | Bart Schaefer | 2006-10-16 | 1 | -0/+9 |
| | |||||
* | rationalise mb<->wc conversions to use restartable form | Peter Stephenson | 2006-08-03 | 1 | -1/+5 |
| | |||||
* | 22575: multibyte fixes for bslashquote(), getzlequery() | Peter Stephenson | 2006-08-01 | 1 | -27/+19 |
| | |||||
* | Got rid of some superfluous STOUC() calls (such as the ones I added | Wayne Davison | 2006-01-13 | 1 | -1/+1 |
| | | | | for the arg of calls to nicechar(), which doesn't need this). | ||||
* | - When mbrtowc() returns -2 when given all the remaining chars in a | Wayne Davison | 2006-01-12 | 1 | -21/+30 |
| | | | | | | | | string, set an end-of-line flag and avoid calling mbrtowc() again for any of the incomplete characters that remain in the string. - Use "mbs" for the multi-byte state variable name (for consistency). - Use the new MB_INVALID and MB_INCOMPLETE defines for the size_t -1 and -2 values (respectively). | ||||
* | Changed the name of the "ret" variable in mb_niceformat() to "cnt" | Wayne Davison | 2006-01-09 | 1 | -8/+7 |
| | | | | | | | because "ret" is usually used for a variable name to hold the return value of the function. Also, changed the test when checking for a \0 to only check if "cnt" is 0, since we must always change a value of 0 to 1. | ||||
* | The return value of mbrtowc() is a size_t (unsigned), so don't | Wayne Davison | 2006-01-09 | 1 | -4/+4 |
| | | | | | | assign it to an int and then check if it's > 0, as that won't work on a system where an int is larger than a size_t. Also, we needed to use STOUC() on a char value passed to nicechar(). | ||||
* | Changed zlelineasstring() and zlegetline() to each return a normal char | Wayne Davison | 2005-11-15 | 1 | -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. | ||||
* | - One minor change to handle the ZLE_STRING_T change. | Wayne Davison | 2005-11-01 | 1 | -13/+5 |
| | | | | - A few brace-position twiddles. | ||||
* | Fixed some compiler warnings about signed/unsigned comparisons. | Wayne Davison | 2005-10-31 | 1 | -2/+2 |
| | |||||
* | 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT; | Peter Stephenson | 2005-10-28 | 1 | -7/+7 |
| | | | | use multibyte versions of nicechar wherever possible. | ||||
* | 21890: fix segmentation error in left prompt truncation and a couple of minor | Peter Stephenson | 2005-10-19 | 1 | -1/+2 |
| | | | | inconsistencies | ||||
* | 21784: Improved character widths for formatted multibyte character output | Peter Stephenson | 2005-09-29 | 1 | -4/+61 |
| | |||||
* | 21603: wchar/multibyte conversion of cursor position when at end of line | Peter Stephenson | 2005-08-12 | 1 | -2/+7 |
| | |||||
* | c.f. 21590: metafy_line()/unmetafy_line() now support wide characters | Peter Stephenson | 2005-08-10 | 1 | -53/+176 |
| | |||||
* | 21541: remove some warnings from ZLE_UNICODE_SUPPORT | Peter Stephenson | 2005-07-28 | 1 | -2/+14 |
| | |||||
* | 20872: fix ZS_{icntrl,tolower} vs. ZC_{incntrl,tolower} confusion | Andrey Borzenkov | 2005-02-26 | 1 | -2/+2 |
| | |||||
* | 20869: more small Unicode tweaks | Peter Stephenson | 2005-02-25 | 1 | -3/+3 |
| | |||||
* | 20863: fix history (i)searching for Unicode | Peter Stephenson | 2005-02-25 | 1 | -11/+59 |
| | |||||
* | 20854: more Unicode stuff. | Peter Stephenson | 2005-02-23 | 1 | -39/+35 |
| | |||||
* | 20845: fix mbstate_t usage in getrestchar | Andrey Borzenkov | 2005-02-22 | 1 | -3/+3 |
| | |||||
* | Andrej: 20838: get ZLE_UNICODE_SUPPORT basically working | Peter Stephenson | 2005-02-22 | 1 | -7/+8 |
| | |||||
* | 20822: Initial code for Unicode/multibyte input | Peter Stephenson | 2005-02-18 | 1 | -7/+7 |
| | | | | 20823: Debugging test in stat wrong for 64-bit systems | ||||
* | 20752: fix access to ZLE parameters | Peter Stephenson | 2005-01-26 | 1 | -4/+12 |
| | |||||
* | 20750: fix hang with 20742 | Peter Stephenson | 2005-01-26 | 1 | -2/+9 |
| | |||||
* | 20742: More Unicode conversion stuff. | Peter Stephenson | 2005-01-25 | 1 | -80/+237 |
| | |||||
* | * 20736: Src/Zle/zle_utils.c: change zlegetline() to return a metafied string. | Clint Adams | 2005-01-22 | 1 | -7/+2 |
| | |||||
* | * 2073x: Src/Zle/zle_utils.c, Src/hist.c: modify zlegetline() and zlegetline | Clint Adams | 2005-01-22 | 1 | -1/+26 |
| | | | | | caller so that the octet-based and wide-character versions should return the same string. | ||||
* | * 20718: Src/Zle/zle_utils.c: minor cleanup for proto-Unicode stuff. | Clint Adams | 2005-01-16 | 1 | -6/+1 |
| | |||||
* | c.f. 20675: improve zle as a basis for Unicode. | Peter Stephenson | 2005-01-14 | 1 | -48/+79 |
| | | | | unposted: update version to 4.2.3-dev-1 | ||||
* | Marked unused parameters with the new UNUSED() macro. | Wayne Davison | 2004-06-02 | 1 | -3/+3 |
| | |||||
* | zsh-users/7160: Check and fix mod_export entries. | Peter Stephenson | 2004-03-12 | 1 | -1/+1 |
| | |||||
* | a la 19209: zcalloc -> zshcalloc | Peter Stephenson | 2003-10-29 | 1 | -1/+1 |
| | |||||
* | 18139: Improve $killring interface; can now change length. Empty | Peter Stephenson | 2003-01-27 | 1 | -6/+12 |
| | | | | | strings in $killring are ignored when yank-popping. Yank-popping is more consistent about looping and using the original cutbuffer. | ||||
* | avoid adding empty strings to the kill ring (13767) | Sven Wischnowsky | 2001-03-26 | 1 | -0/+3 |
| | |||||
* | Andrej: Dynamic loading on cygwin | Peter Stephenson | 2000-08-02 | 1 | -1/+1 |
| | |||||
* | AIX dependency fixes | Oliver Kiddle | 2000-07-04 | 1 | -1/+1 |
| | |||||
* | scrolling in completion lists and menu-selection, version1 | Sven Wischnowsky | 2000-04-17 | 1 | -14/+19 |
| | |||||
* | Updated from list as far as 10376 | Peter Stephenson | 2000-04-01 | 1 | -43/+49 |
| | |||||
* | Initial revision | Tanaka Akira | 1999-04-15 | 1 | -0/+650 |