about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* 31441: use array to decide which forms of pattern are enabledPeter Stephenson2013-06-013-91/+177
|
* 31419: Add time zone and year to string formatted time output from zstatPeter Stephenson2013-05-211-2/+2
|
* upon "read" of a short line, assign all variables passed as arguments.Barton Schaefer2013-05-201-1/+1
| | | | | It was noted that (print 1 2 | read one two three four) assigned values only to $one and $two except in the case where EOF was reached.
* Unused function attribute fix for clang compilationMihai Moldovan2013-05-101-1/+1
|
* 31376: Make sure every execve() is prefixed by winch_unblock()Frank Terbeck2013-05-051-0/+6
| | | | This was suggested by Bart Schaefer in 31375.
* Revert "31372: Do not block SIGWINCH for child processes"Frank Terbeck2013-05-051-3/+1
| | | | | | This reverts commit f8ab02ad5f4226e46ab54e681a3e0404fdc1a9a6. As Bart suggested in 31375.
* 31372: Do not block SIGWINCH for child processesBart Schaefer2013-05-051-1/+3
| | | | Something similar may also be needed in the zpty and clone modules.
* 31361: handle negative optno ("no" prefix used)Bart Schaefer2013-04-301-3/+4
| | | | when storing options with parseopts_insert() for sticky contexts
* 31353: fix handling of floating point in ternaryBart Schaefer2013-04-301-1/+2
|
* 31350: block SIGWINCH nearly all the time, exceptBart Schaefer2013-04-305-0/+28
| | | | | when about to calculate prompts or do synchronous read, so syscalls are not interrupted by window size changes.
* 31272: Avoid double free, get_compctl should not free its arguments.Bart Schaefer2013-04-201-1/+0
|
* users/17754: failing to retie an arrayPeter Stephenson2013-04-101-1/+1
| | | | and colon-separated scalar shouldn't be a fatal error
* 31246: make a separate patch level header for releasesPeter Stephenson2013-04-091-2/+6
|
* 31172: Let vared define custom init and finish hooksFrank Terbeck2013-04-051-7/+14
| | | | | | | | | | | Using this, you can do things like this in a more straight-forward manner: foo-init() { CURSOR=0; } zle -N foo-init foo=$'Some longer\nbuffer with\nmultiple lines.' vared -i foo-init foo
* 31174: zle: Make sure state changes are refreshed after init hookFrank Terbeck2013-04-051-2/+2
| | | | | | | If `zrefresh' is not called _after_ the zle-line-init hook, any changes made to the editor's state (be it changes to $CURSOR or $BUFFER or called widgets like `clear-screen') will only be picked up after the first character is typed into the editor.
* Generate patch level using `git describe`Aaron Schrab2013-04-031-4/+4
| | | | | | | | | | | | | | Generate the patch level using `git describe` rather than relying on the CVS $Revision$. Need to use the `--tags` option, since currently there are no annotated tags. The `--long` option should be used so that the output will always be in the 'tag-commits-hash' format rather than just naming a tag when that would fully describe the current commit. Since changes to the patchlevel could now be caused by changes to any file, force the rule to be called every time that `make` is run. Only update the file when there are actually changes to prevent unnecessary rebuilding of other build products (currently just `params.o` and `zsh`).
* Jun. T: typo in vi-goto-markPeter Stephenson2013-04-021-1/+1
|
* 31158: following a wildcard with a repetition produces a bad pattern errorBart Schaefer2013-03-191-1/+1
|
* 31140: avoid crash when hitting recursion limitMikael Magnusson2013-03-131-1/+2
|
* 31141: Tighten NO_CLOBBER restrictions on {fd} syntaxPeter Stephenson2013-03-101-1/+8
| | | | to apply only if $fd is exactly an fd and nothing else.
* 30496: Parse argument to %F and %K as prompt sequencesMikael Magnusson2013-03-101-14/+29
|
* users/17665: add FORCE_FLOAT optionPeter Stephenson2013-03-053-0/+17
|
* 31060:"+" before a flag for "functions" orPeter Stephenson2013-02-221-4/+9
| | | | "autoload" should suppress display of function body.
* 31037: return to previous position with vi-goto-mark using `` or ''Oliver Kiddle2013-02-091-4/+12
|
* 30993: fix parameter modifier crash with :wq on empty stringPeter Stephenson2013-01-221-1/+9
|
* unposted: tweak 30949 to fix buffer pointerBart Schaefer2013-01-081-2/+1
|
* 30949: restore "read -q" behavior lost by 27188Bart Schaefer2013-01-061-0/+3
|
* this prevent process-based features from working in their argumentsPeter Stephenson2012-12-211-2/+4
|
* add missing mod_exportPeter Stephenson2012-12-161-1/+1
|
* 30876: fix obscure failures to propagate non-zero statusPeter Stephenson2012-12-131-3/+3
| | | | from optimised simple commands within lists
* users/17445: fix handling of leading zeroes in floating pointBart Schaefer2012-12-081-1/+2
|
* users/17042: don't stomp the environment in "jobs -Z" unless we've firstBart Schaefer2012-11-181-0/+2
| | | | copied it to new memory.
* 30789: Add CONTINUE_ON_ERROR for old behaviour.Peter Stephenson2012-11-154-3/+10
| | | | | New behaviour is for scripts to exit on error instead of returning to top level and executing the next command.
* 30786: do not enter interactive history editing or command execution ifBart Schaefer2012-11-081-0/+6
| | | | "fc" is called from a ZLE widget.
* 30783: We don't want leading "="s to be active whenPeter Stephenson2012-11-081-39/+41
| | | | | tokenising strings that aren't going to be treated as command line arguments
* 30735: array substitutions aren't simple:Peter Stephenson2012-10-251-0/+5
| | | | prevent crash on process substitution therein
* 30726: make shell options passed to emulate stick along with the emulationPeter Stephenson2012-10-119-40/+227
|
* 30724: shell code optimisd to use execsimple() doesn't have a valid thisjobPeter Stephenson2012-10-112-4/+31
|
* users/17318: only increment the undo variable return value for thePeter Stephenson2012-10-091-0/+11
| | | | first request in a row
* users/17314: ensure an undo change numberPeter Stephenson2012-10-091-10/+17
| | | | | uniquely specifies a point in editing history by incrementing the value returned by the variable.
* fix trivial typo with "functions +T"Peter Stephenson2012-10-091-1/+1
|
* 30722: fix some cases where emulations or options were not propagated properlyPeter Stephenson2012-10-075-66/+114
| | | | from the emulate command
* 30718: emulate command evaluations should apply sticky emulationPeter Stephenson2012-10-071-2/+1
| | | | to autoloads, too
* 30716: make IGNORECLOSEBRACES an emulation optionPeter Stephenson2012-10-051-1/+1
|
* 30715: use enum lextok for variables containing lexical tokensPeter Stephenson2012-10-056-47/+60
|
* users/17310: we can't treat < after [ as a normal character.Peter Stephenson2012-10-031-2/+2
| | | | Document problem and test for case that needs to work.
* users/17304: angle brackets aren't associated with special parsingPeter Stephenson2012-10-021-2/+2
| | | | inside square brackets
* 30692: allow autoload +X -m to workPeter Stephenson2012-09-211-2/+2
| | | | change to _path_files to make it load in that fashion
* 30687 with typo corrected: don't REPORTTIME if zleactivePeter Stephenson2012-09-211-0/+2
|
* 30647, 30649: allow underscores in numeric constantsPeter Stephenson2012-09-112-15/+52
|