about summary refs log tree commit diff
path: root/Src/Zle/zle_main.c
Commit message (Collapse)AuthorAgeFilesLines
...
* 24240: make vared check for trailing garbage earlierPeter Stephenson2007-12-131-0/+4
|
* 23924: Improve synchronising of character attributes with otherGeoff Wing2007-10-191-0/+2
| | | | output routines
* 23665: autoloading of module features and related tweaksPeter Stephenson2007-07-061-6/+7
|
* 23488: tidy up module interface and documentationPeter Stephenson2007-05-291-2/+2
|
* see 23479: add initial features support for modulesPeter Stephenson2007-05-281-3/+24
|
* 23433: fix shift for ZMAXTIMEOUTPeter Stephenson2007-05-131-1/+1
|
* 23159 plus minor doc tweaks: leave BAUD parameter unset by defaultPeter Stephenson2007-02-081-0/+1
|
* 22981: Zvi Har'el: bad call from 22952Peter Stephenson2006-11-081-1/+1
| | | | 22980: add hook array for special functions
* 22924: a couple more metafy_line()/unmetafy_line() problemsPeter Stephenson2006-10-301-0/+1
|
* 22765: rename some MB_ macros to WC_ for consistency.Peter Stephenson2006-09-231-2/+2
|
* 22727: "use 'exit' to exit" was suboptimalPeter Stephenson2006-09-171-0/+1
|
* 22676, 22678: extend sched and make it able to run events when waiting forPeter Stephenson2006-09-101-153/+306
| | | | input
* 22556: Multibyte separators and delimitersPeter Stephenson2006-07-241-12/+20
|
* 22474: use variable argument lists to improve error message handlingPeter Stephenson2006-05-301-12/+11
|
* Made implied "int" on new static variable explicit (which silencesWayne Davison2006-05-301-1/+1
| | | | gcc).
* 22464: bad recursion if error in prompt substitutionPeter Stephenson2006-05-261-4/+9
|
* 22431: set WIDGET etc. more consistently when executing zle functionsPeter Stephenson2006-04-251-4/+14
|
* Changed some structures to avoid gcc's type-punned warnings.Wayne Davison2006-03-071-3/+3
|
* - When mbrtowc() returns -2 when given all the remaining chars in aWayne Davison2006-01-121-7/+7
| | | | | | | | 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-111-3/+6
| | | | | 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.
* 22014: argument-base, insert-unicode-charPeter Stephenson2005-11-241-0/+1
|
* Changed zleread() to return a normal char pointer, not unsigned char.Wayne Davison2005-11-151-8/+7
| | | | Got rid of some unsigned-char/char pointer casts.
* 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT;Peter Stephenson2005-10-281-8/+8
| | | | use multibyte versions of nicechar wherever possible.
* minor tidy-upsPeter Stephenson2005-10-021-1/+0
|
* 21784: Improved character widths for formatted multibyte character outputPeter Stephenson2005-09-291-4/+4
|
* 21736: improve tests for word and identifier characters with multibyte inputPeter Stephenson2005-09-201-19/+0
|
* 21720: fix getrestchar() some morePeter Stephenson2005-09-091-1/+2
|
* 21709 plus tweaks: use $KEYTIMEOUT for multibyte chars.Reset input state on ↵Peter Stephenson2005-09-091-9/+38
| | | | invalid characters or EOF
* c.f. 21590: metafy_line()/unmetafy_line() now support wide charactersPeter Stephenson2005-08-101-0/+5
|
* Fixes from Thorsten Dahlheimer.Peter Stephenson2005-08-091-0/+13
| | | | | | 21578: mkmakemod.sh didn't exit on cleanup. 21582: fix failure status of zmodload -R. 21583: fix circularity test of zmodload -A.
* 21541: remove some warnings from ZLE_UNICODE_SUPPORTPeter Stephenson2005-07-281-2/+3
|
* Moving the PROMPT_SP code earlier in the scheme of things so thatWayne Davison2005-07-261-23/+1
| | | | it can take affect prior to things like the mail-check output.
* Implement the new PROMPT_SP option.Wayne Davison2005-07-151-1/+23
|
* * 21125: Src/Zle/zle_main.c: do an initial conversion when zle is loaded.Clint Adams2005-04-081-0/+1
|
* * 21124: Src/Zle/zle_main.c, Src/init.c, Src/params.c: have zle cache aClint Adams2005-04-081-0/+18
| | | | | wide-char version of WORDCHARS each time it's changed (when ZLE_UNICODE_SUPPORT is defined).
* 21042: limitations with execute-named-commandPeter Stephenson2005-03-211-0/+2
|
* 20978: don't propagate EOF from recursive editsPeter Stephenson2005-03-151-1/+1
|
* 20869: more small Unicode tweaksPeter Stephenson2005-02-251-2/+2
|
* 20861: Fix statusline in Unicode, apart from isearchPeter Stephenson2005-02-241-3/+3
|
* 20854: more Unicode stuff.Peter Stephenson2005-02-231-5/+5
|
* 20845: fix mbstate_t usage in getrestcharAndrey Borzenkov2005-02-221-10/+5
|
* Andrej: 20838: get ZLE_UNICODE_SUPPORT basically workingPeter Stephenson2005-02-221-3/+5
|
* 20822: Initial code for Unicode/multibyte inputPeter Stephenson2005-02-181-17/+134
| | | | 20823: Debugging test in stat wrong for 64-bit systems
* 20752: fix access to ZLE parametersPeter Stephenson2005-01-261-1/+1
|
* 20742: More Unicode conversion stuff.Peter Stephenson2005-01-251-10/+11
|
* c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson2005-01-141-20/+27
| | | | unposted: update version to 4.2.3-dev-1
* In zleread(), initialize the first byte of the "line" buffer to '\0'Wayne Davison2004-10-171-0/+1
| | | | | so that functions such as magicspace() won't be accessing uninitialized memory when they look at "line".
* 20398: allow clean exit from within widget functionPeter Stephenson2004-09-211-1/+7
|
* 20388: tweak ignoreeof behavior on user-defined widgets to match docs.Bart Schaefer2004-09-201-1/+7
|
* 20387: revised algorithm for the fix in 20363.Bart Schaefer2004-09-201-15/+9
|