summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2005-10-1921887: Display characters wider than one screen cell correctly.Peter Stephenson1-83/+230
2005-10-1921885: Convert some refresh macros into functions.Peter Stephenson1-153/+184
2005-10-1921882: extend prompt truncation to handle multibyte charactersPeter Stephenson2-32/+302
2005-10-1321872: job accounting in subshells was screwyPeter Stephenson1-2/+9
2005-10-1321871: replace INULL() by inull()Peter Stephenson10-22/+24
2005-10-1321870: bad INULL() definitionPeter Stephenson3-2/+43
21869: multibyte characters in %-substitutions, invalid multibyte characters in completion listings
2005-10-1121862/21863: GLOB_SUBST shouldn't swallow up backslashes in parameterPeter Stephenson5-20/+70
substitutions that don't match anything.
2005-10-0421821, 21822: fix two infinite loopsBart Schaefer1-2/+8
2005-10-0321809: need to export nicedup()Peter Stephenson1-1/+1
2005-10-02minor tidy-upsPeter Stephenson3-2/+86
2005-10-01Changed the PROMPT_SP output to use prompt-escape %# instead of just #.Wayne Davison1-2/+2
2005-09-2921784: Improved character widths for formatted multibyte character outputPeter Stephenson9-155/+444
2005-09-2921770: tweak 21760 to avoid conflicts with global bindingsBart Schaefer1-3/+2
2005-09-2721769: fix some consequences of 21730 in completion listsPeter Stephenson2-3/+5
2005-09-2621764: unmetafication mangle zle history linesPeter Stephenson1-1/+5
2005-09-2421760: fix test for sequence prefixes in the local keymap in getkeymapcmd()Bart Schaefer1-6/+12
2005-09-2321758: optimise =(<<<...) to run within the shell.Peter Stephenson1-13/+54
2005-09-22Stephen Rueger: 21744: unconditionally assume that \t or \n are not part of ↵Clint Adams1-1/+1
multi-byte characters.
2005-09-20The PROMPT_SP code now ensures that PROMPT_PERCENT is enabled whenWayne Davison1-1/+5
it uses promptexpand() to expand some percent strings. (21739)
2005-09-20unposted: fix wcsiidentPeter Stephenson1-1/+1
2005-09-2021737: unmetafy wordchars before looking for multibyte charactersPeter Stephenson1-5/+8
2005-09-2021736: improve tests for word and identifier characters with multibyte inputPeter Stephenson6-35/+97
2005-09-1721731: handle multibyte characters in prompts correctlyPeter Stephenson2-37/+133
2005-09-1721730: fix metafication of nicechar and pwdPeter Stephenson2-16/+34
2005-09-0921722: fix multibyte word stuffPeter Stephenson4-45/+86
2005-09-0921720: fix getrestchar() some morePeter Stephenson1-1/+2
2005-09-09adapted from 21719: add some mod_exportsPeter Stephenson3-4/+5
2005-09-0921717: Src/Zle/zle_misc.c: fix execute-named-command and -where-isPeter Stephenson1-1/+1
with multibyte support
2005-09-0921709 plus tweaks: use $KEYTIMEOUT for multibyte chars.Reset input state on ↵Peter Stephenson6-16/+45
invalid characters or EOF
2005-09-0621701: Negative subscripts of scalars before start were brokenPeter Stephenson1-1/+4
2005-08-2221678: Unsetting tied parameters caused various crashesPeter Stephenson1-3/+16
2005-08-1821664: unmetafy ztat() argumentAndrey Borzenkov2-20/+19
2005-08-1821663: check for string overflowAndrey Borzenkov1-4/+5
2005-08-1821661: fix glob bug introduced in 21655Peter Stephenson1-1/+1
2005-08-1721655: bug in ${..//../${..//../..}}Peter Stephenson1-23/+22
2005-08-17Got rid of an empty #ifdef/#else/#endif.Wayne Davison1-4/+0
2005-08-17Marked some #ifdef ZLE_UNICODE_SUPPORT lines (and their #endif lines)Wayne Davison2-0/+10
with /**/ so that they would get copied to the .epro file.
2005-08-16Now that ZLE_UNICODE_SUPPORT is defined by configure, tweaked theWayne Davison1-12/+8
multibyte #ifdef logic a little here to honor its setting.
2005-08-16Fixed bug in do_comp_vars() when *compprefix is a metified char.Wayne Davison1-3/+1
2005-08-1621642: remove redundant checksAndrey Borzenkov1-16/+4
2005-08-16Moved declaration of char pointer var to comply withWayne Davison1-2/+2
restrictions of standard C.
2005-08-1621631: make sure an unmetafied string is passed to ztat to determine file type.Clint Adams1-1/+8
2005-08-1521627: fix recursive ZLE from completion callAndrey Borzenkov1-3/+22
2005-08-1521622: fix recursive completion call in zrefresh()Andrey Borzenkov1-1/+6
2005-08-1521619: define wide versions of zarrdup, zputs, niceztrlen.Clint Adams3-0/+127
2005-08-1521609: fixed a readlink() call in statfullpath().Wayne Davison1-2/+4
2005-08-1521616: typoPeter Stephenson1-1/+1
2005-08-1521610: Turn on ZLE_UNICODE_SUPPORT and fix a few related problems.Peter Stephenson4-13/+35
2005-08-1521366: LONG_LIST_JOBS applies to more places where job listings are printedBart Schaefer1-8/+12
2005-08-12For gcc, use static inline functions in place of the ZS_str*Wayne Davison1-4/+16
macros so that we get type-checking without pointer-signedness warnings.