summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2001-05-28another attempt at fixing the job problem from 14327; make execpline() reset ↵Sven Wischnowsky2-1/+10
list_pipe_job to zero if it would be set for a job started in the background (14503)
2001-05-28HPUX & Solaris notes.Bart Schaefer2-1/+10
2001-05-2714492: new prompt themeClint Adams3-1/+80
2001-05-2614488Wayne Davison1-0/+7
2001-05-26Fixed acceptandinfernexthistory() to work when called repeatedly.Wayne Davison1-373/+433
Also changed it to not accept the line if the infer fails. Ignore transient edits in the history when searching for an inference and grabbing the next line (affecting acceptandinfernexthistory(), infernexthistory(), and acceptlineanddownhistory()).
2001-05-2614489: workaround for find bug on ReliantUNIXAndrey Borzenkov2-1/+7
2001-05-26Improve "make check" test for -b condition when /dev cannot be searched.Bart Schaefer2-3/+12
2001-05-26The complete 3.0.8 ChangeLog, for posterity.Bart Schaefer1-23/+1264
2001-05-2514479: apt-get --reinstallClint Adams2-0/+5
2001-05-24FAQ changes for 4.0.1 from BartPeter Stephenson2-95/+110
2001-05-24I guess I was supposed to commit 14411.Bart Schaefer2-4/+11
2001-05-23Revise zmodload -u test.Bart Schaefer2-12/+33
2001-05-23add mod_export in a couple of places where it was missingOliver Kiddle3-2/+6
2001-05-2214430: handle cleanup better in Test/ztst.zshPeter Stephenson2-12/+42
2001-05-21correct mess from bad mergeClint Adams1-13/+0
2001-05-2114419: glibc 2.2.3 rlimits enumClint Adams2-1/+30
2001-05-21fix to include + options in tag order (14416)Oliver Kiddle2-1/+5
2001-05-21unposted: quote $@ in calls to _argumentsClint Adams2-2/+7
2001-05-21make use of _arguments in _set (14409)Oliver Kiddle2-7/+27
2001-05-21Version 4.0.1-pre-5Peter Stephenson1-2/+2
2001-05-21Workaround rm -f hang on unwriteable file in CygwinPeter Stephenson2-2/+7
2001-05-21add Test/E01options.ztst to .distfiles; fix ChangeLog for last options testsPeter Stephenson2-1/+9
2001-05-20ChangeLog entry ofr 14396Peter Stephenson1-0/+8
2001-05-20Handle line wrapping in ZTST_hashmark.Bart Schaefer2-0/+5
2001-05-2014401: workaround for script execution under CygwinAndrey Borzenkov8-14/+22
2001-05-20last half of 14390Wayne Davison1-0/+5
2001-05-20Added some array-assignment boundary checks.Wayne Davison1-2/+7
2001-05-19Fix, test and comment unsetting and resetting of special tied parametersPeter Stephenson3-1/+37
2001-05-19tweaked commentsPeter Stephenson1-2/+2
2001-05-1914389Wayne Davison1-0/+6
2001-05-19Don't merge a HIST_TMPSTORE entry with a previous "duplicate" line.Wayne Davison1-3/+4
Also, don't call addhistnode() on a HIST_TMPSTORE entry.
2001-05-19The function addhistnode() is no longer called for a HIST_TMPSTOREWayne Davison1-2/+2
entry, so I removed the checking for that flag. Also, freehistdata() now avoids calling removehashnode() on a HIST_TMPSTORE entry.
2001-05-19Fix re-set of integer special params after unset.Bart Schaefer3-16/+15
2001-05-18More options tests: finished properly this timePeter Stephenson1-3/+8
2001-05-18More options tests and a ztst.zsh fix for ksharraysPeter Stephenson2-3/+404
2001-05-18Tweak zmodload tests, fix fd 8.Bart Schaefer3-4/+12
2001-05-18fix zmodload -uf for not-yet-loaded functionPeter Stephenson2-3/+10
2001-05-18try to make ${(e)..} work for complicated parameter expansions in the value; ↵Sven Wischnowsky2-2/+20
this means: keep Qstring tokens unchanged if they are inside double quotes and tokenizing patterns in parameter expansions (14381)
2001-05-18Add zmodload tests.Bart Schaefer3-1/+152
2001-05-1814378: more programs that process .texClint Adams2-1/+6
2001-05-17* 14377: Completion/Unix/Command/_cvs: support new .cvspass formatTanaka Akira2-1/+6
introduced by cvs-1.11.1.
2001-05-17typo with compset in _lpPeter Stephenson2-1/+5
2001-05-17Signal queuing tweak.Bart Schaefer2-0/+10
2001-05-1614362: more modprobe stuffClint Adams2-2/+21
2001-05-1614361: better modprobe completionClint Adams2-3/+35
2001-05-16more fixage for expansion: just convert the command line to the original ↵Sven Wischnowsky2-6/+30
when expansion shouldn't or couldn't do something sensible on the line (14359)
2001-05-1514357Wayne Davison1-0/+5
2001-05-15Added HIST_TMPSTORE define.Wayne Davison1-0/+1
2001-05-15+ Changed histreduceblanks() to preserve spaces at the start of theWayne Davison1-14/+30
line when HISTIGNORESPACE is set. + Flag a history entry with HIST_TMPSTORE when should_ignore_line() returns true (instead of dropping it from the history immediately). + Get rid of old HIST_TMPSTORE entries when a new command is entered. + The hist-file-reading code now handles destroying a foreign duplicate (when marked as duplicate by addhistnode()).
2001-05-15Changed addhistnode() to not displace an already-hashed command withWayne Davison1-2/+3
one that is marked HIST_TMPSTORE. Also changed the function to not ever destroy the entry we're currently adding (the caller now destroys the newly-added entry, if it so desires).