Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 31174: zle: Make sure state changes are refreshed after init hook | Frank Terbeck | 2013-04-05 | 1 | -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 Schrab | 2013-04-03 | 1 | -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-mark | Peter Stephenson | 2013-04-02 | 1 | -1/+1 |
| | |||||
* | 31158: following a wildcard with a repetition produces a bad pattern error | Bart Schaefer | 2013-03-19 | 1 | -1/+1 |
| | |||||
* | 31140: avoid crash when hitting recursion limit | Mikael Magnusson | 2013-03-13 | 1 | -1/+2 |
| | |||||
* | 31141: Tighten NO_CLOBBER restrictions on {fd} syntax | Peter Stephenson | 2013-03-10 | 1 | -1/+8 |
| | | | | to apply only if $fd is exactly an fd and nothing else. | ||||
* | 30496: Parse argument to %F and %K as prompt sequences | Mikael Magnusson | 2013-03-10 | 1 | -14/+29 |
| | |||||
* | users/17665: add FORCE_FLOAT option | Peter Stephenson | 2013-03-05 | 3 | -0/+17 |
| | |||||
* | 31060:"+" before a flag for "functions" or | Peter Stephenson | 2013-02-22 | 1 | -4/+9 |
| | | | | "autoload" should suppress display of function body. | ||||
* | 31037: return to previous position with vi-goto-mark using `` or '' | Oliver Kiddle | 2013-02-09 | 1 | -4/+12 |
| | |||||
* | 30993: fix parameter modifier crash with :wq on empty string | Peter Stephenson | 2013-01-22 | 1 | -1/+9 |
| | |||||
* | unposted: tweak 30949 to fix buffer pointer | Bart Schaefer | 2013-01-08 | 1 | -2/+1 |
| | |||||
* | 30949: restore "read -q" behavior lost by 27188 | Bart Schaefer | 2013-01-06 | 1 | -0/+3 |
| | |||||
* | this prevent process-based features from working in their arguments | Peter Stephenson | 2012-12-21 | 1 | -2/+4 |
| | |||||
* | add missing mod_export | Peter Stephenson | 2012-12-16 | 1 | -1/+1 |
| | |||||
* | 30876: fix obscure failures to propagate non-zero status | Peter Stephenson | 2012-12-13 | 1 | -3/+3 |
| | | | | from optimised simple commands within lists | ||||
* | users/17445: fix handling of leading zeroes in floating point | Bart Schaefer | 2012-12-08 | 1 | -1/+2 |
| | |||||
* | users/17042: don't stomp the environment in "jobs -Z" unless we've first | Bart Schaefer | 2012-11-18 | 1 | -0/+2 |
| | | | | copied it to new memory. | ||||
* | 30789: Add CONTINUE_ON_ERROR for old behaviour. | Peter Stephenson | 2012-11-15 | 4 | -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 if | Bart Schaefer | 2012-11-08 | 1 | -0/+6 |
| | | | | "fc" is called from a ZLE widget. | ||||
* | 30783: We don't want leading "="s to be active when | Peter Stephenson | 2012-11-08 | 1 | -39/+41 |
| | | | | | tokenising strings that aren't going to be treated as command line arguments | ||||
* | 30735: array substitutions aren't simple: | Peter Stephenson | 2012-10-25 | 1 | -0/+5 |
| | | | | prevent crash on process substitution therein | ||||
* | 30726: make shell options passed to emulate stick along with the emulation | Peter Stephenson | 2012-10-11 | 9 | -40/+227 |
| | |||||
* | 30724: shell code optimisd to use execsimple() doesn't have a valid thisjob | Peter Stephenson | 2012-10-11 | 2 | -4/+31 |
| | |||||
* | users/17318: only increment the undo variable return value for the | Peter Stephenson | 2012-10-09 | 1 | -0/+11 |
| | | | | first request in a row | ||||
* | users/17314: ensure an undo change number | Peter Stephenson | 2012-10-09 | 1 | -10/+17 |
| | | | | | uniquely specifies a point in editing history by incrementing the value returned by the variable. | ||||
* | fix trivial typo with "functions +T" | Peter Stephenson | 2012-10-09 | 1 | -1/+1 |
| | |||||
* | 30722: fix some cases where emulations or options were not propagated properly | Peter Stephenson | 2012-10-07 | 5 | -66/+114 |
| | | | | from the emulate command | ||||
* | 30718: emulate command evaluations should apply sticky emulation | Peter Stephenson | 2012-10-07 | 1 | -2/+1 |
| | | | | to autoloads, too | ||||
* | 30716: make IGNORECLOSEBRACES an emulation option | Peter Stephenson | 2012-10-05 | 1 | -1/+1 |
| | |||||
* | 30715: use enum lextok for variables containing lexical tokens | Peter Stephenson | 2012-10-05 | 6 | -47/+60 |
| | |||||
* | users/17310: we can't treat < after [ as a normal character. | Peter Stephenson | 2012-10-03 | 1 | -2/+2 |
| | | | | Document problem and test for case that needs to work. | ||||
* | users/17304: angle brackets aren't associated with special parsing | Peter Stephenson | 2012-10-02 | 1 | -2/+2 |
| | | | | inside square brackets | ||||
* | 30692: allow autoload +X -m to work | Peter Stephenson | 2012-09-21 | 1 | -2/+2 |
| | | | | change to _path_files to make it load in that fashion | ||||
* | 30687 with typo corrected: don't REPORTTIME if zleactive | Peter Stephenson | 2012-09-21 | 1 | -0/+2 |
| | |||||
* | 30647, 30649: allow underscores in numeric constants | Peter Stephenson | 2012-09-11 | 2 | -15/+52 |
| | |||||
* | users/17236: r and other fc output didn't metafy when listing to a file | Peter Stephenson | 2012-09-08 | 1 | -2/+6 |
| | | | | other than stdout | ||||
* | 30656: prevent SIGFPE in division by -1 by multiplying instead | Peter Stephenson | 2012-09-06 | 1 | -3/+23 |
| | |||||
* | John Stahara: 30641: bindkey -N error report is misleading | Peter Stephenson | 2012-08-25 | 1 | -1/+1 |
| | | | | when copying keymap. | ||||
* | Jun T.: 30640: MacOS doesn't define __STDC_ISO_10646__ but we need | Peter Stephenson | 2012-08-23 | 2 | -3/+10 |
| | | | | the replacement wcwidth function anyway | ||||
* | 30633: "functions -T" only traces marked function, not called functions | Peter Stephenson | 2012-08-21 | 6 | -8/+27 |
| | |||||
* | 30629 plus unposted formatting changes: | Peter Stephenson | 2012-08-17 | 1 | -30/+33 |
| | | | | | support socket buffer size limit properly in ulimit; improve consistency of output and documentation and tweak formatting appropriately | ||||
* | 30627: support RLIMIT_NTHR as on NetBSD | Peter Stephenson | 2012-08-17 | 2 | -0/+12 |
| | |||||
* | Hiramatsu Yoshifumi: 30621 patch-ab (from NetBSD pkgsrc):compilation on | Peter Stephenson | 2012-08-16 | 1 | -0/+2 |
| | | | | __INTERIX | ||||
* | 30169: repeat "typeset -T" with same two first arguments is not an error | Peter Stephenson | 2012-08-16 | 1 | -1/+14 |
| | |||||
* | 30617: rationalise replacement tgoto() prototype | Peter Stephenson | 2012-08-16 | 2 | -5/+8 |
| | |||||
* | Aaron Scrab: 30604: make repeating vi skip character useful by ignoring | Peter Stephenson | 2012-08-13 | 1 | -7/+24 |
| | | | | character just matched | ||||
* | Aaron Schrab: 30603: repeating vi skip characters command caused bad position | Peter Stephenson | 2012-08-13 | 1 | -0/+2 |
| | |||||
* | YAMAMOTO Takashi: 30599: don't use replacement wcwidth if not ISO-10646 | Peter Stephenson | 2012-08-07 | 2 | -3/+3 |
| | |||||
* | Bart: 30560: unset ordinary array element by setting to null | Peter Stephenson | 2012-07-15 | 1 | -0/+28 |
| |