about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* 35032: Handle SIGCONT for process better.Peter Stephenson2015-05-051-1/+3
| | | | Update job status as well as process status.
* 35029: improvements to newline handling for vi-mode word movementOliver Kiddle2015-05-041-18/+33
|
* Fix two bugs in typeset_setbaseMikael Magnusson2015-05-041-3/+4
|
* 34992: POSIX fix for readonly variables.Peter Stephenson2015-04-292-5/+38
| | | | | With POSIXBUILTINS, variables can be marked readonly if unset. Also, variables can't have the readonly flag removed.
* 34989: AUTO_CD needs to call cd --.Peter Stephenson2015-04-281-0/+1
| | | | Otherwise directories looking like options do the wrong thing.
* 34979: Preserve job text when doing shell job fix.Peter Stephenson2015-04-281-1/+14
| | | | | | This handles list_pipe_text in execlist() along with other variables that are saved and restored and, in the special case of source, cleared.
* 34977: more reliable test if preprocessor is GNUPeter Stephenson2015-04-281-2/+2
|
* 34966: "whence -v" for a function reports whether the function is autoloaded ↵Barton E. Schaefer2015-04-251-3/+11
| | | | or its source file when known
* 34965: consistent use of zalloc/zrealloc/zfreeBarton E. Schaefer2015-04-251-3/+3
|
* 34961: $TZ is implicitly local in builtin strftime (originally workers/34602 ↵Barton E. Schaefer2015-04-251-1/+20
| | | | from workers/34596)
* 34961: clean up declarations of quote() and quotebreak()Barton E. Schaefer2015-04-251-3/+3
|
* 34961: replace a couple of free() with zfree() for consistencyBarton E. Schaefer2015-04-252-2/+2
|
* 34955: save and restore list_pipe_job with its friendsPeter Stephenson2015-04-241-2/+4
| | | | This is needed to stop source() messing up job control.
* 34921: handle error in recursive par_event().Peter Stephenson2015-04-171-0/+1
| | | | Here documents in an interrupted list caused bad juju.
* 34919: update interrupt parse error for ZLE cases.Peter Stephenson2015-04-172-2/+2
| | | | Covers both send-break and push-input.
* 34905: no parse error after keyboard interrupt.Peter Stephenson2015-04-173-6/+9
| | | | | | | | Handled generally, though only showing up in special nested cases. Also fix ZLE so it doesn't cancel the interrupt flag when not actually returning from a local keymap.
* 34900: assignment before an "exec".Peter Stephenson2015-04-151-7/+14
| | | | | | Without POSXIBUILTIN: restore after, so we only get side effects. With POSXIBUILTIN: keep set variable
* unposted: rewrite Nularg math handling to be like other casesPeter Stephenson2015-04-151-2/+6
|
* 34892 (slightly tweaked): math evaluation fixPeter Stephenson2015-04-151-2/+2
| | | | | An empty expression resulting from substitution includes a Nularg, which needs handling the same as an empty string.
* 34887: Fix POSIX_BUILTINS with assignment.Peter Stephenson2015-04-151-7/+21
| | | | | | | | | | | In the form var=val command special-builtin-or-func the var is restored after execution, unlike the case where "command" is absent. Clear up case in code that handles this. Add tests.
* 34851: fix thinko from 34093 that short-circuited some "whence -m" searchesBarton E. Schaefer2015-04-061-5/+7
|
* 34837: avoid loss of original file path when applying colon-modifiers in ↵Barton E. Schaefer2015-04-031-2/+2
| | | | glob qualifiers
* 34817: Catch some errors earlier when reading history.Peter Stephenson2015-03-292-1/+7
| | | | | | | | Mostly for the case of an interrupt. Don't try to process words when we know something's gone wrong. Also abort history reading earlier on an interrupt.
* 34792: langinfo: Fix pointer typeTheo Buehler2015-03-291-1/+2
|
* 34781: add implicit space after alias expansion of tokens that form words ↵Barton E. Schaefer2015-03-281-0/+10
| | | | | | without spacing fixes crash when using completion immediately following such an alias
* 34804: refine POSIX_ALIAS change to preserve old behavior of [[ ]] conditionalsBarton E. Schaefer2015-03-281-4/+1
|
* 34788: refine errflag handling in cmd_or_math()Barton E. Schaefer2015-03-271-1/+1
|
* 34784: fix old bug with history word selectionPeter Stephenson2015-03-262-11/+21
|
* 34776: improve suppression of alias expansions from history.Peter Stephenson2015-03-252-35/+12
| | | | | Now uses the mechanism in use for other forms of suppression of sections of input.
* 34759: improve implementation of last commitPeter Stephenson2015-03-222-7/+8
|
* 34758: fix yet more history / command subst interaction.Peter Stephenson2015-03-222-1/+32
| | | | | | In general we need to wind back over the history text input inside command substitution because there's no level of the input mechanism between history and the lexer.
* 34752: another fix for history expansion in cmd substPeter Stephenson2015-03-201-2/+14
|
* 34742: history expansion inside command substitution failed.Peter Stephenson2015-03-191-2/+4
| | | | Needs the case of alias expansion separating out.
* 34734: further aliasing adjustments and docBarton E. Schaefer2015-03-181-2/+8
| | | | | | | | restrict token aliasing (34641) to global aliases; tighten up POSIX_ALIASES to better match spec; update Aliasing doc to cover this and clarify older behavior 2015-03-18 Peter Stephenson <p.stephenson@samsung.com> * 34723: configure.ac: turn off fixed site function directory if
* 34653: move aborted vared lines to ZLE_VARED_ABORTEDPeter Stephenson2015-03-061-1/+3
|
* 34651: Avoid core dump if no lexical tokenPeter Stephenson2015-03-051-0/+3
|
* 34636: replace broken isprint() on Mac OS XJun-ichi Takimoto2015-03-054-3/+24
|
* 34641: make it possible to alias tokensPeter Stephenson2015-03-041-30/+41
|
* 34634: avoid infinite recursion on (/)# extendedglobBarton E. Schaefer2015-02-271-1/+2
|
* 34623: free history more often if "remetafying"Peter Stephenson2015-02-231-2/+6
|
* 34615 + 34619: Remeta one frame earlierMikael Magnusson2015-02-231-35/+30
|
* 34606: fix up nested arithmetic substitutionPeter Stephenson2015-02-221-2/+18
| | | | | | | | Arithmetic within a parameter substitution is a special case that needs fixing with the introduction of the new Inparmath token. Add test.
* 34604: Work around problem with changes in Meta characters.Peter Stephenson2015-02-221-3/+37
| | | | | | If reading in a file that contains characters that should be metafied but are not, fix up on the fly. Only need when using HIST_LEX_WORDS.
* 34590: queue_signals() around more scopes that manipulate global stateBarton E. Schaefer2015-02-202-1/+18
|
* 34587: ensure multibyte characters don't overflow.Peter Stephenson2015-02-201-0/+8
| | | | | | They could start incorporating tokens, with bad karma. Add test.
* 34568: use META_HEAPDUP when passing dlerror() string to metafy()Barton E. Schaefer2015-02-191-1/+1
|
* 34573: Safer failure to handle command substitutionPeter Stephenson2015-02-191-3/+7
|
* 34570: Another nasty command / math substituion thing.Peter Stephenson2015-02-193-51/+85
| | | | | | Mark arithmetic substitutions with tokens to make sure the substitution go knows what to do. Before it was guessing by counting the parentheses at the end.
* Fix up memory allocation for previous patchPeter Stephenson2015-02-171-4/+5
|
* 34560: Fix $(( that's actually a multiline cmd subst.Peter Stephenson2015-02-163-2/+36
|