about summary refs log tree commit diff
path: root/Src/utils.c
Commit message (Collapse)AuthorAgeFilesLines
* The PROMPT_SP output should be prior to the job notifications too.Wayne Davison2005-07-271-7/+7
|
* Moved the PROMPT_SP output into preprompt() so that it takes effectWayne Davison2005-07-261-0/+9
| | | | prior to things like precmd(), the mail-check output, etc.
* If getkeystring() finds a \c escape (when looking for such escapes),Wayne Davison2005-07-261-1/+3
| | | | truncate the returned string at the escape.
* Improved the function comment for getkeystring().Wayne Davison2005-07-241-10/+11
|
* Added missing "goto" in handling of 'c' escape (fix fromWayne Davison2005-07-241-0/+2
| | | | Thorsten Dahlheimer).
* 21049: Don't close process substitution file descriptors for external programmesPeter Stephenson2005-03-311-5/+6
|
* Belated commit of 20892: improvements to correct/correctall behavior.Bart Schaefer2005-03-111-13/+48
|
* 20921: using UCS-4BE instead of ISO-10646 to identify character encodingOliver Kiddle2005-03-031-3/+3
| | | | | is more portable, find more encodings in iconv completion on Solaris 20924: make error message more specific
* 20863: fix history (i)searching for UnicodePeter Stephenson2005-02-251-30/+0
|
* 20862: attempt to fix configure scripts to detect iconv properlyOliver Kiddle2005-02-241-6/+6
|
* 20844: prune trailing slashes from named directoryPeter Stephenson2005-02-221-1/+13
|
* 20759, 20760, 20765: Improve Cygwin configurationPeter Stephenson2005-02-011-2/+2
|
* c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson2005-01-141-14/+3
| | | | unposted: update version to 4.2.3-dev-1
* 20572: Allow alternative signal namesPeter Stephenson2004-11-221-21/+0
|
* Added gettempfile(), which works like a custom mkstemp() (in additionWayne Davison2004-10-211-0/+41
| | | | to the existing gettempname(), which works like a custom mktemp()).
* Made gettempname() take a prefix arg and a use_heap arg. When prefix isWayne Davison2004-10-181-9/+15
| | | | non-NULL, it uses the specified prefix instead of $TMPPREFIX.
* Made zclose() avoid calling close() when fd < 0.Wayne Davison2004-10-181-1/+2
|
* 20412, tweaked: Make test builtin more POSIX compatiblePeter Stephenson2004-10-051-4/+6
| | | | 20435: Make pattern.c not alter strings.
* 20378: Matthias B.: fix bugs joining with metafied chars.Peter Stephenson2004-09-171-3/+1
|
* 20251: integer conversion truncationPeter Stephenson2004-08-161-6/+45
| | | | | | 20258: save command status in prompt substitution update FAQ rename version to 4.2.1-dev-1
* Marked unused parameters with the new UNUSED() macro.Wayne Davison2004-06-021-2/+2
|
* Silenced two signed/unsigned comparison compiler warnings.Wayne Davison2004-05-281-2/+2
|
* Set the first character of buf to '\1' before the strftime() call soWayne Davison2004-05-051-1/+1
| | | | | we can try to distinguish a zero-length string from an error return (a minor fix to Peter's patch).
* 19877: improved test for empty strftime stringsPeter Stephenson2004-05-041-2/+12
|
* * 19869: Src/prompt.c, Src/utils.c: avoid segfault whenClint Adams2004-05-041-1/+2
| | | | | prompt-expanding '%D{%p}' or '%D{%P}' under locales with null strings for am_pm.
* 19683: Work around dllwrap problem on CygwinPeter Stephenson2004-03-251-0/+13
|
* 19308: zsh crashes with $((##))Oliver Kiddle2003-12-171-1/+4
|
* a la 19209: zcalloc -> zshcallocPeter Stephenson2003-10-291-8/+8
|
* 19168: Various problems with size of buffers and pointer usage in ztrftimePeter Stephenson2003-10-061-9/+59
|
* 19129: extra argument to typeset -T gives character for joining arrayPeter Stephenson2003-09-241-4/+18
|
* 18920: fix unset IFS bettererPeter Stephenson2003-08-011-0/+2
|
* 18916: unsetting IFS could cause segfaultPeter Stephenson2003-08-011-4/+6
|
* 18525: add manual UTF-8 conversion so \u and \U should work on more systemsOliver Kiddle2003-05-131-42/+101
|
* 18524: sepjoin !heap bug cause problem in varedPeter Stephenson2003-05-121-1/+1
|
* 18492: Provide partial fix for multios and output process substitutionPeter Stephenson2003-05-021-4/+4
| | | | asynchronicity problem. Document workarounds for remaining problems.
* Fixed zjoin() when it returns an empty string that should be allocated.Wayne Davison2003-03-251-1/+1
|
* 18376: Fix headers for wchar.h and some related gcc waringningsPeter Stephenson2003-03-241-3/+3
|
* 18359: fix bug where not enough memory was allocated if MB_LEN_MAX < 6Oliver Kiddle2003-03-181-4/+1
|
* 18343, 18348: handle \u and \U escapes for specifying unicode charactersOliver Kiddle2003-03-141-2/+90
|
* 18195: Timeouts for read builtin.Peter Stephenson2003-02-051-2/+6
|
* 18086: I don't know how this got missed out...Peter Stephenson2003-02-051-0/+4
|
* * 17810 (Martin Waitz): Src/utils.c: bung up memory leak withClint Adams2002-10-111-1/+4
| | | | POSIX.1e capabilities.
* 17503: fix various typos and spelling mistakes in source code commentsOliver Kiddle2002-08-051-1/+1
|
* 17141 plus mods: add `zle -F fd handler' feature.Peter Stephenson2002-05-211-20/+26
|
* 15746: remove (with #if) an incorrect optimization in the maildir versionBart Schaefer2002-01-061-1/+6
| | | | of mailstat().
* 16158: interpret TAB as "yes" only in spckword()Bart Schaefer2001-11-031-3/+4
| | | | 16201: introduce the PM_NAMEDDIR flag
* Fix segfault in checkrmall().Bart Schaefer2001-10-201-0/+2
|
* fix return code and tests of printf and comment above bslashquote func (16064)Oliver Kiddle2001-10-161-2/+3
|
* Removed bogus mkstemp() code.Wayne Davison2001-06-151-3/+0
|
* Use mkstemp where availablePeter Stephenson2001-06-151-0/+3
|