about summary refs log tree commit diff
path: root/Src/params.c
Commit message (Collapse)AuthorAgeFilesLines
* 23440: Make $param[(R)value] substitute the empty string on failurePeter Stephenson2007-05-211-1/+20
|
* 23437: typo noted by WaynePeter Stephenson2007-05-141-1/+1
|
* 23436: consistency with null strings in local variablesPeter Stephenson2007-05-131-10/+38
| | | | unposted: Phil Pennock: POSIX RE's are extended
* 23273: fix bad patterns in reverse array subscriptingPeter Stephenson2007-04-131-228/+226
|
* 23159 plus minor doc tweaks: leave BAUD parameter unset by defaultPeter Stephenson2007-02-081-3/+10
|
* 23152: make ztrcmp() respect MULTIBYTEPeter Stephenson2007-02-061-1/+1
| | | | make sorting of printed hash tables more consistent
* 22952: fix some argument delimiters to work with multibyte charactersPeter Stephenson2006-11-021-11/+12
|
* 22686: unset array if assigning numeric parameterPeter Stephenson2006-09-111-41/+32
|
* 22684: improve getkeystring() interface and make printf do octal escapesPeter Stephenson2006-09-101-2/+2
|
* 22578: ensure HISTCHARS/histchars never contains non-ASCII charactersPeter Stephenson2006-08-021-4/+15
|
* 22544: Improve use of ztype tests for multibyte characters. AddPeter Stephenson2006-07-101-8/+5
| | | | | POSIX_IDENTIFIERS option to control allowability of multibyte alphanumeric characters in parameter and module names.
* 22524: searchable parameter subscripts with multibyte chars,Peter Stephenson2006-06-271-24/+167
| | | | a few other fixes
* 22518: Initial go at making parameter subscriptsPeter Stephenson2006-06-261-24/+128
| | | | use multibyte characters.
* 22483: add $sysparams to zsh/systemPeter Stephenson2006-06-051-2/+2
|
* 22474: use variable argument lists to improve error message handlingPeter Stephenson2006-05-301-30/+28
|
* Changed some structures to avoid gcc's type-punned warnings.Wayne Davison2006-03-071-179/+179
|
* 22321: optimize 22318.Bart Schaefer2006-03-061-14/+15
|
* 22284: add --disable-dynamic-nss configure switch to disable use of ↵Clint Adams2006-02-191-1/+1
| | | | getpw*(), getgr*(), initgroups() functions.
* 22198: do always set HOME in native emulationPeter Stephenson2006-02-071-0/+11
|
* 22195: don't set HOME in the shellPeter Stephenson2006-02-061-4/+1
|
* users/9638: tweaks for FCEDIT etc.Peter Stephenson2005-11-071-1/+0
| | | | 21986: rewrite completion suffixes for wide characters
* 21974: memory leak with tied parametersPeter Stephenson2005-11-021-1/+6
|
* 21871: replace INULL() by inull()Peter Stephenson2005-10-131-6/+6
|
* 21736: improve tests for word and identifier characters with multibyte inputPeter Stephenson2005-09-201-1/+0
|
* adapted from 21719: add some mod_exportsPeter Stephenson2005-09-091-2/+3
|
* 21701: Negative subscripts of scalars before start were brokenPeter Stephenson2005-09-061-1/+4
|
* 21678: Unsetting tied parameters caused various crashesPeter Stephenson2005-08-221-3/+16
|
* 21575 plus unposted: Add WARN_CREATE_GLOBAL optionPeter Stephenson2005-08-081-7/+20
|
* The parsing of \c in $foo[(pws:\c:)1] should treat \c as an unknownWayne Davison2005-07-241-1/+1
| | | | | escape (resulting in a literal "c"), not remove the sequence (from a patch by Thorsten Dahlheimer).
* * 21124: Src/Zle/zle_main.c, Src/init.c, Src/params.c: have zle cache aClint Adams2005-04-081-0/+1
| | | | | wide-char version of WORDCHARS each time it's changed (when ZLE_UNICODE_SUPPORT is defined).
* 20959: fix crash unloading zsh/parameter and test the fixPeter Stephenson2005-03-101-1/+6
|
* Got rid of "unused parameter" compiler warning for nullsethashfn().Wayne Davison2005-01-211-1/+1
|
* c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson2005-01-141-1/+1
| | | | unposted: update version to 4.2.3-dev-1
* 20605: Use separate structure with get/set/unset methods fro parameters.Peter Stephenson2004-12-071-150/+273
| | | | Separate justification width of parameters from base/precision.
* users/8219: add $HISTCMDPeter Stephenson2004-11-161-0/+1
|
* - Call saveandpophiststack() with its new writeflags arg.Wayne Davison2004-10-011-1/+2
|
* Silence unused-parameter warnings from the compiler.Wayne Davison2004-10-011-2/+2
|
* 20391: SHLVL wasn't updated in environmentPeter Stephenson2004-09-201-2/+2
|
* 20378: Matthias B.: fix bugs joining with metafied chars.Peter Stephenson2004-09-171-1/+1
|
* 20331: Use internal zlong variables for consistencyPeter Stephenson2004-09-091-5/+22
| | | | 20332: Add WIDGETSTYLE zle parameter
* 20141: Crash restoring exported special parametersPeter Stephenson2004-07-071-38/+43
|
* 20076, 20084: { ... } always { ... } syntax.Peter Stephenson2004-06-221-0/+2
|
* Marked unused parameters with the new UNUSED() macro.Wayne Davison2004-06-021-42/+42
|
* - Added missing struct initializers to two last-in-list values.Wayne Davison2004-05-281-5/+7
| | | | - Fixed a few signed/unsigned comparisons.
* Added a call to saveandpophiststack(0) to endparamscope() to enableWayne Davison2004-05-211-0/+1
| | | | the new auto-pop feature.
* 19971: Fix environment nastiness in zexecve()Peter Stephenson2004-05-211-1/+2
|
* 19712, 19740: allow assigning to associations with i and r subscript flagsOliver Kiddle2004-04-061-1/+8
|
* 19707: negative index into arrays should return scalar and not one element arrayOliver Kiddle2004-03-301-1/+2
|
* unposted: make 19655 a bit saferPeter Stephenson2004-03-181-0/+1
|
* 19655, 19656, 19657: Memory leaks spotted by valgrind.Peter Stephenson2004-03-181-0/+1
| | | | Also bug with multiple math function autoloads.