| Commit message (Expand) | Author | Age | Files | Lines |
* | - pushhiststack() now takes a level value and remembers it. If it was | Wayne Davison | 2004-05-21 | 1 | -9/+21 |
* | - Added functions to push and pop the current history list, allowing | Wayne Davison | 2004-05-20 | 1 | -16/+135 |
* | Added a comment to resizehistents() to explain why the function is | Wayne Davison | 2004-05-18 | 1 | -0/+2 |
* | Fix the potential for an infinite loop in lockhistfile() if the | Wayne Davison | 2004-05-11 | 1 | -2/+4 |
* | a la 19209: zcalloc -> zshcalloc | Peter Stephenson | 2003-10-29 | 1 | -2/+2 |
* | 18941: history wrong after parse error during alias expansion | Peter Stephenson | 2003-08-11 | 1 | -0/+2 |
* | 17318: ${(z)...} added an extra space when the lexical analyser failed. | Peter Stephenson | 2002-06-14 | 1 | -0/+9 |
* | Added "savehistsiz" (for the new SAVEHIST special parameter), and used it | Wayne Davison | 2002-03-24 | 1 | -5/+9 |
* | In putoldhistentryontop(), ensure that we can't return with "next" set to | Wayne Davison | 2002-02-22 | 1 | -2/+3 |
* | Yet another fix for prepnexthistent(). | Wayne Davison | 2002-02-20 | 1 | -1/+2 |
* | Fixed a just-introduced bug in prepnexthistent() when curline is in | Wayne Davison | 2002-02-18 | 1 | -4/+5 |
* | When savehistfile() rewrites the history file, there was a potential for | Wayne Davison | 2002-02-16 | 1 | -1/+2 |
* | Optimized putoldhistentryontop() so that when resizehistents() calls it | Wayne Davison | 2002-02-16 | 1 | -14/+24 |
* | Improved resizehistents() so that it honors HISTEXPIREDUPSFIRST. | Wayne Davison | 2002-02-13 | 1 | -25/+33 |
* | 16577: don't return a single dot as the path head of a slash. | Clint Adams | 2002-02-06 | 1 | -1/+5 |
* | Improved readhistline() to reject binary data better. (16184) | Wayne Davison | 2001-10-26 | 1 | -15/+18 |
* | Fix HIST_NO_SPACE when INTERACTIVE_COMMENTS is set and we get a | Wayne Davison | 2001-10-15 | 1 | -3/+3 |
* | Fix out-of-memory on corrupt history files. | Bart Schaefer | 2001-09-24 | 1 | -25/+35 |
* | With HIST_NO_STORE, don't ignore what looks like a history command if | Wayne Davison | 2001-09-15 | 1 | -5/+11 |
* | + Changed addhistnum() to return firsthist()-1 or curhist+1 on error. | Wayne Davison | 2001-09-13 | 1 | -1/+3 |
* | When rewriting the history file, set histactive to 0 and restore it | Wayne Davison | 2001-08-07 | 1 | -0/+5 |
* | Have prepnexthistent() remove any HIST_TEMPSTORE entry that is present. | Wayne Davison | 2001-06-28 | 1 | -0/+4 |
* | Don't mark a HIST_TMPSTORE entry with HIST_OLD so that the HFILE_FAST | Wayne Davison | 2001-06-08 | 1 | -1/+1 |
* | Don't merge a HIST_TMPSTORE entry with a previous "duplicate" line. | Wayne Davison | 2001-05-19 | 1 | -3/+4 |
* | + Changed histreduceblanks() to preserve spaces at the start of the | Wayne Davison | 2001-05-15 | 1 | -14/+30 |
* | Fixed an obscure local-history bug that could make the "history" | Wayne Davison | 2001-05-10 | 1 | -4/+3 |
* | Parameter repairs, mostly for subscripting. | Bart Schaefer | 2001-04-20 | 1 | -1/+1 |
* | Slightly optimized should_ignore_line() by using getjobtext() rather | Wayne Davison | 2001-04-10 | 1 | -9/+3 |
* | properly restore noaliases in bufferwords() (13530) | Sven Wischnowsky | 2001-02-26 | 1 | -1/+2 |
* | 13280: NewImproved handling of colon modifiers w.r.t. paths | Peter Stephenson | 2001-02-19 | 1 | -24/+51 |
* | remove 13108 (trap queues); replace with signal queueing to ensure that user ... | Sven Wischnowsky | 2001-01-16 | 1 | -6/+22 |
* | Fix "vared -h" in shell scripts. | Bart Schaefer | 2000-10-21 | 1 | -2/+7 |
* | Don't call histreduceblanks() if the line didn't parse right. | Wayne Davison | 2000-10-19 | 1 | -4/+5 |
* | isalpha() -> ialpha(); avoid a compiler warning (12439) | Sven Wischnowsky | 2000-07-31 | 1 | -1/+1 |
* | Renamed shouldIgnoreLine() to should_ignore_line(). | Wayne Davison | 2000-07-20 | 1 | -2/+2 |
* | Support "builtin" in the HIST_NO_STORE check. | Wayne Davison | 2000-07-20 | 1 | -3/+6 |
* | Removed remhist() and HA_JUNKED, added an Eprog arg to hend(), and | Wayne Davison | 2000-07-19 | 1 | -25/+47 |
* | + Got rid of the spaceflag variable. | Wayne Davison | 2000-07-18 | 1 | -11/+8 |
* | Fix the gethistent() function and enhanced the reliability of the | Wayne Davison | 2000-07-17 | 1 | -9/+14 |
* | + Needed to call unmeta() in a few spots that used the HISTFILE name. | Wayne Davison | 2000-07-16 | 1 | -20/+36 |
* | condition parsing with (z) flag | Sven Wischnowsky | 2000-07-13 | 1 | -0/+4 |
* | slightly improved (z) flag for parsing conditions; recognising glob flags in ... | Sven Wischnowsky | 2000-07-13 | 1 | -6/+9 |
* | fix for (z) flag, don't take # as comment (12228) | Sven Wischnowsky | 2000-07-12 | 1 | -3/+4 |
* | AIX depenency fix (11661) | Oliver Kiddle | 2000-05-30 | 1 | -1/+1 |
* | Wayne: Fix two history bugs that were causing the | Bart Schaefer | 2000-05-30 | 1 | -20/+19 |
* | save and restore more variables in bufferwords(); move gotword() into core (1... | Sven Wischnowsky | 2000-05-23 | 1 | -1/+6 |
* | Wayne: fix for print -s when called from widget; added lines are not immediat... | Sven Wischnowsky | 2000-05-05 | 1 | -25/+44 |
* | fix for the (z) flag: report partial word (like `"foo', without a closing quo... | Sven Wischnowsky | 2000-05-03 | 1 | -0/+5 |
* | new (z) parameter flag to do shell-word splitting on the value (11113) | Sven Wischnowsky | 2000-05-03 | 1 | -3/+25 |
* | new widget copy-prev-shell-word, like copy-prev-word but uses shell parsing t... | Sven Wischnowsky | 2000-04-12 | 1 | -292/+719 |