about summary refs log tree commit diff
path: root/Src/Zle/zle_refresh.c
Commit message (Collapse)AuthorAgeFilesLines
* Got rid of unused-variable compiler warning when compiling aWayne Davison2006-01-131-1/+1
| | | | non-multibyte zsh.
* The new "eol" var was being set in singlerefresh(), but not accessed.Wayne Davison2006-01-121-1/+1
|
* - When mbrtowc() returns -2 when given all the remaining chars in aWayne Davison2006-01-121-9/+18
| | | | | | | | 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).
* The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison2006-01-091-3/+3
| | | | | 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.
* 22009: another double-width character fixPeter Stephenson2005-11-211-0/+6
|
* 21971: multibyte version of pfxlen()Peter Stephenson2005-11-011-2/+0
|
* I just noticed that zsh's default icntrl() macro returns true forWayne Davison2005-11-011-3/+3
| | | | | chars 128 - 159, so the "... ? ZWC('?') : (CHAR_VALUE | ZWC('@'))" code needed to be updated to reflect this.
* - Improved all the "... ? ZWC('?') : (CHAR_VALUE | ZWC('@'))" codeWayne Davison2005-11-011-13/+5
| | | | | | lines to work in both normal and multibyte mode without needing conditional code. - A couple brace-position twiddles.
* 21957: more wide-character refresh stuffPeter Stephenson2005-10-301-103/+119
|
* Got rid of a use of WEOF when MULTIBYTE_SUPPORT is not definedWayne Davison2005-10-281-2/+4
| | | | (which fixed a signed vs unsigned comparison compiler warning).
* 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT;Peter Stephenson2005-10-281-16/+16
| | | | use multibyte versions of nicechar wherever possible.
* 21942: another extra-wide character fixPeter Stephenson2005-10-281-5/+29
|
* 21936: bug deleting extra-wide characterPeter Stephenson2005-10-251-0/+6
|
* 21930: handle extra-wide characters at end of linePeter Stephenson2005-10-241-32/+38
|
* remove a couple of TODOsPeter Stephenson2005-10-211-5/+1
|
* Got rid of a pointer-type warning by adding a definition for aWayne Davison2005-10-191-1/+3
| | | | | REFRESH_CHAR type and using it to define nullchr (it was using ZLE_INT_T).
* 21887: Display characters wider than one screen cell correctly.Peter Stephenson2005-10-191-83/+230
|
* 21885: Convert some refresh macros into functions.Peter Stephenson2005-10-191-153/+184
|
* 21731: handle multibyte characters in prompts correctlyPeter Stephenson2005-09-171-12/+37
|
* 21622: fix recursive completion call in zrefresh()Andrey Borzenkov2005-08-151-1/+6
|
* Changed several instances of ZWC() used on a string to ZWS().Wayne Davison2005-08-111-3/+3
|
* 21593: character arrays wrongly declared with ZLE_UNICODE_SUPPORTPeter Stephenson2005-08-101-1/+1
|
* c.f. 21590: metafy_line()/unmetafy_line() now support wide charactersPeter Stephenson2005-08-101-10/+61
|
* correct 20928Peter Stephenson2005-03-041-1/+1
|
* 20928: null terminate screen lines in zle_refresh.cPeter Stephenson2005-03-041-2/+8
|
* 20869: more small Unicode tweaksPeter Stephenson2005-02-251-1/+2
|
* 20861: Fix statusline in Unicode, apart from isearchPeter Stephenson2005-02-241-7/+10
|
* 20857: rewrite zle_refresh to use wide characters.Andrey Borzenkov2005-02-231-169/+210
|
* 20854: more Unicode stuff.Peter Stephenson2005-02-231-2/+2
|
* 20752: fix access to ZLE parametersPeter Stephenson2005-01-261-1/+1
|
* * 20751: Src/Zle/zle_refresh.c: use '?' for character conversion errorClint Adams2005-01-261-2/+2
|
* * 20747: some wide char support in the zle refresh code.Clint Adams2005-01-261-16/+36
|
* c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson2005-01-141-9/+9
| | | | unposted: update version to 4.2.3-dev-1
* 20126: tidy up before 4.2.1Peter Stephenson2004-07-021-1/+3
| | | | 20127: tweaked version of Wayne's patch to reexand prompts
* Marked unused parameters with the new UNUSED() macro.Wayne Davison2004-06-021-2/+2
|
* Silenced one signed/unsigned comparison compiler warning.Wayne Davison2004-05-281-1/+1
|
* a la 19209: zcalloc -> zshcallocPeter Stephenson2003-10-291-2/+2
|
* 18476: Fix menu selection on Linux consoleAndrey Borzenkov2003-05-051-1/+1
|
* 18306: fix redisplay of rprompt when line shortensGeoff Wing2003-02-271-1/+1
|
* 17390: new zle parameters $PREDISPLAY, $POSTDISPLAYPeter Stephenson2002-07-011-22/+58
|
* 16635: make sure we display lists in singlelinezle modeGeoff Wing2002-02-191-2/+2
|
* * 16527: Src/Zle/zle_refresh.c: Don't lose the rprompt whenAndrew Main2002-01-311-1/+1
| | | | clearing an otherwise-blank line.
* 16063: add transientrprompt option to remove right prompt fromGeoff Wing2001-10-241-8/+31
| | | | display when accepting commands
* Don't segv if we were displaying n lines and screen wasGeoff Wing2001-08-151-1/+1
| | | | resized to less than n lines
* 15621: display of status line was being mucked up; continuationGeoff Wing2001-08-151-119/+190
| | | | markers "<...." and "<....>" weren't being display properly
* Initial revisionTanaka Akira1999-04-151-0/+1116