summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2012-11-0830786: do not enter interactive history editing or command execution ifBart Schaefer1-0/+6
"fc" is called from a ZLE widget.
2012-11-0830783: We don't want leading "="s to be active whenPeter Stephenson1-39/+41
tokenising strings that aren't going to be treated as command line arguments
2012-10-2530735: array substitutions aren't simple:Peter Stephenson1-0/+5
prevent crash on process substitution therein
2012-10-1130726: make shell options passed to emulate stick along with the emulationPeter Stephenson9-40/+227
2012-10-1130724: shell code optimisd to use execsimple() doesn't have a valid thisjobPeter Stephenson2-4/+31
2012-10-09users/17318: only increment the undo variable return value for thePeter Stephenson1-0/+11
first request in a row
2012-10-09users/17314: ensure an undo change numberPeter Stephenson1-10/+17
uniquely specifies a point in editing history by incrementing the value returned by the variable.
2012-10-09fix trivial typo with "functions +T"Peter Stephenson1-1/+1
2012-10-0730722: fix some cases where emulations or options were not propagated properlyPeter Stephenson5-66/+114
from the emulate command
2012-10-0730718: emulate command evaluations should apply sticky emulationPeter Stephenson1-2/+1
to autoloads, too
2012-10-0530716: make IGNORECLOSEBRACES an emulation optionPeter Stephenson1-1/+1
2012-10-0530715: use enum lextok for variables containing lexical tokensPeter Stephenson6-47/+60
2012-10-03users/17310: we can't treat < after [ as a normal character.Peter Stephenson1-2/+2
Document problem and test for case that needs to work.
2012-10-02users/17304: angle brackets aren't associated with special parsingPeter Stephenson1-2/+2
inside square brackets
2012-09-2130692: allow autoload +X -m to workPeter Stephenson1-2/+2
change to _path_files to make it load in that fashion
2012-09-2130687 with typo corrected: don't REPORTTIME if zleactivePeter Stephenson1-0/+2
2012-09-1130647, 30649: allow underscores in numeric constantsPeter Stephenson2-15/+52
2012-09-08users/17236: r and other fc output didn't metafy when listing to a filePeter Stephenson1-2/+6
other than stdout
2012-09-0630656: prevent SIGFPE in division by -1 by multiplying insteadPeter Stephenson1-3/+23
2012-08-25John Stahara: 30641: bindkey -N error report is misleadingPeter Stephenson1-1/+1
when copying keymap.
2012-08-23Jun T.: 30640: MacOS doesn't define __STDC_ISO_10646__ but we needPeter Stephenson2-3/+10
the replacement wcwidth function anyway
2012-08-2130633: "functions -T" only traces marked function, not called functionsPeter Stephenson6-8/+27
2012-08-1730629 plus unposted formatting changes:Peter Stephenson1-30/+33
support socket buffer size limit properly in ulimit; improve consistency of output and documentation and tweak formatting appropriately
2012-08-1730627: support RLIMIT_NTHR as on NetBSDPeter Stephenson2-0/+12
2012-08-16Hiramatsu Yoshifumi: 30621 patch-ab (from NetBSD pkgsrc):compilation onPeter Stephenson1-0/+2
__INTERIX
2012-08-1630169: repeat "typeset -T" with same two first arguments is not an errorPeter Stephenson1-1/+14
2012-08-1630617: rationalise replacement tgoto() prototypePeter Stephenson2-5/+8
2012-08-13Aaron Scrab: 30604: make repeating vi skip character useful by ignoringPeter Stephenson1-7/+24
character just matched
2012-08-13Aaron Schrab: 30603: repeating vi skip characters command caused bad positionPeter Stephenson1-0/+2
2012-08-07YAMAMOTO Takashi: 30599: don't use replacement wcwidth if not ISO-10646Peter Stephenson2-3/+3
2012-07-15Bart: 30560: unset ordinary array element by setting to nullPeter Stephenson1-0/+28
2012-06-3030540: typeset flag handling with SECONDSBart Schaefer1-2/+3
2012-06-2730530,30533: fix problems with COLUMNS or LINES < 1, and related issuesBart Schaefer2-2/+2
2012-06-2130518: attempt to supply tgoto() prototype when missing only.Peter Stephenson1-0/+4
For Solaris 10 and earlier.
2012-06-18Dima Kogan: 30515: fix globbing problem with large files:Peter Stephenson1-1/+3
failure owing to bad cast with large integers
2012-06-1630513: zsh/regex metafy fixes for widecharPhil Pennock1-7/+16
2012-05-22Danek: 30485: trailing garbage after signal number not recognised in killPeter Stephenson1-3/+8
2012-05-0830469: Src/builtin.c: allow reverse listing of history usingPeter Stephenson1-5/+5
fc -r, but don't allow reverse execution of commands at all.
2012-05-02unposted: fix trailing spaces from previous commitMikael Magnusson1-1/+1
2012-05-0230425 (fixed): Add localhistory/globalhistory to $ZLE_STATE as set by the ↵Mikael Magnusson1-10/+18
set-local-history zle widget
2012-05-01users/17046: don't count too many elements when splitting quoted parameterPeter Stephenson1-1/+1
substitution on null parameter
2012-04-2530455: remove max array length testPeter Stephenson1-0/+13
2012-04-22unposted: add test for valid identifier to 30431Peter Stephenson1-1/+8
2012-04-2230439: ${...:*...} with nonexistent or non-array after *Peter Stephenson1-0/+13
should return no results
2012-04-2230431 with typo in _typeset fix:Peter Stephenson2-1/+44
add ${...:|...} and ${...:*...} operators, as documented
2012-04-2130433: double backslash is not line continuation.Bart Schaefer1-1/+2
2012-04-1630413: (q-) parameter flag should quote null stringPeter Stephenson2-10/+13
(q-q) etc. should be treated as errors
2012-04-1530410 plus one other case: avoid divide-by-zero errorsPeter Stephenson1-3/+10
in TIMEFMT interpretation
2012-04-1330391: tweak to ignore DISABLED flag in new hash-based arrayuniq()Peter Stephenson1-1/+1
2012-04-1030383, users/16991 (Vaclav), users/17000: Improve speed of arrayuniq() byBart Schaefer1-3/+89
implementing a hash seive algorithm; add test to exercise it.