about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* add mod_export in a couple of places where it was missingOliver Kiddle2001-05-232-2/+2
|
* 14419: glibc 2.2.3 rlimits enumClint Adams2001-05-211-1/+12
|
* 14401: workaround for script execution under CygwinAndrey Borzenkov2001-05-202-4/+4
|
* Added some array-assignment boundary checks.Wayne Davison2001-05-201-2/+7
|
* Fix, test and comment unsetting and resetting of special tied parametersPeter Stephenson2001-05-191-0/+6
|
* Don't merge a HIST_TMPSTORE entry with a previous "duplicate" line.Wayne Davison2001-05-191-3/+4
| | | | Also, don't call addhistnode() on a HIST_TMPSTORE entry.
* The function addhistnode() is no longer called for a HIST_TMPSTOREWayne Davison2001-05-191-2/+2
| | | | | entry, so I removed the checking for that flag. Also, freehistdata() now avoids calling removehashnode() on a HIST_TMPSTORE entry.
* Fix re-set of integer special params after unset.Bart Schaefer2001-05-192-16/+12
|
* fix zmodload -uf for not-yet-loaded functionPeter Stephenson2001-05-181-3/+5
|
* try to make ${(e)..} work for complicated parameter expansions in the value; ↵Sven Wischnowsky2001-05-181-2/+13
| | | | this means: keep Qstring tokens unchanged if they are inside double quotes and tokenizing patterns in parameter expansions (14381)
* Signal queuing tweak.Bart Schaefer2001-05-171-0/+3
|
* more fixage for expansion: just convert the command line to the original ↵Sven Wischnowsky2001-05-161-6/+24
| | | | when expansion shouldn't or couldn't do something sensible on the line (14359)
* Added HIST_TMPSTORE define.Wayne Davison2001-05-151-0/+1
|
* + Changed histreduceblanks() to preserve spaces at the start of theWayne Davison2001-05-151-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()).
* Changed addhistnode() to not displace an already-hashed command withWayne Davison2001-05-151-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).
* (14350)Sven Wischnowsky2001-05-151-8/+25
|
* 14348: fix globalexport with typeset -gPeter Stephenson2001-05-151-1/+1
|
* calculate the length of the region to map (for mapped zwc files) correctly, ↵Sven Wischnowsky2001-05-151-4/+6
| | | | including the offset-page-boundary-adjustment (14346)
* set list_pipe_job only for real pipelines (14327)Sven Wischnowsky2001-05-141-1/+1
|
* 14314: writing const variable under cygwinPeter Stephenson2001-05-111-3/+3
|
* Fixed an obscure local-history bug that could make the "history"Wayne Davison2001-05-101-4/+3
| | | | command output something that was slightly wrong. (14304)
* users/3872: rename inet_* routines to avoid clash with Solaris 7 headers.Andrey Borzenkov2001-05-101-32/+52
|
* barf if a empty string is given as one of the separators for _values (14293)Sven Wischnowsky2001-05-101-1/+1
|
* Back off 14140 (tokenize comma)Peter Stephenson2001-05-091-1/+0
|
* add -S option to specify separator between values and their arguments; make ↵Sven Wischnowsky2001-05-081-11/+28
| | | | _values add the value-separator as a suffix for most types of actions (14257)
* Fixes from Andrej for zpty on cygwinPeter Stephenson2001-05-081-1/+6
|
* print space/backspace when reacing the last column while printing ↵Sven Wischnowsky2001-05-082-2/+8
| | | | descriptions and the like to avoid a cursor positioning bug depending on the kind of terminal (autowrap) (14251)
* Prevent "no multi-letter values" error on values of '\:' and '' in compvalues().Bart Schaefer2001-05-061-2/+3
|
* 14214Sven Wischnowsky2001-05-031-1/+4
|
* Make X{$~foo}Y where $foo contains commas behave as expectedPeter Stephenson2001-05-021-0/+1
|
* remove quotes when looking at arguments in comparguments (14198)Sven Wischnowsky2001-05-021-0/+6
|
* Use BDIGBUFSIZE in two other placesPeter Stephenson2001-05-011-2/+2
|
* Bart 14144: fix compilation problem on current Cygwin 1.3.1 (macros wereAndrey Borzenkov2001-04-301-3/+23
| | | | | changed to external variables and cannot be used to initialize static array). Modified by me __CYGWIN -> __CYGWIN__
* BDIGBUFSIZE for binary conversions.Bart Schaefer2001-04-283-3/+5
|
* 14125: remove static incleanup flag because it is unusedClint Adams2001-04-262-20/+0
|
* 14123: don't include curses.h in termcap.c if term.h doesn't need itClint Adams2001-04-261-1/+3
|
* Another HAVE_TERM* compilation tweak.Bart Schaefer2001-04-261-13/+22
|
* rename -W option to -w, add new -W option which makes _arguments complete ↵Sven Wischnowsky2001-04-261-1/+6
| | | | options even after options that get their argument in the same word; new _guard function for conditionally displaying messages (14105)
* fix a sizeof() to strlen()Sven Wischnowsky2001-04-251-1/+1
|
* Fix term* linkage _again_.Bart Schaefer2001-04-242-1/+3
|
* Subscripting optimization and error checking.Bart Schaefer2001-04-244-13/+23
|
* 14077: revert clint's build patches on 19.04.2001Andrey Borzenkov2001-04-237-35/+4
|
* Fix subscripting bug with backslash-double-quote.Bart Schaefer2001-04-232-9/+11
|
* Fix bug in (kK) subscript flags.Bart Schaefer2001-04-221-9/+13
|
* 14065: decrease termcap/terminfo parameter fishinessClint Adams2001-04-223-1/+9
|
* More term*.h inclusion un-confusion.Bart Schaefer2001-04-211-12/+16
|
* More parameter/subscript cleanup.Bart Schaefer2001-04-213-18/+54
|
* 14055: include termio.h in termcap.c for the benefit of Solaris 8Clint Adams2001-04-201-7/+13
|
* 14053: add $termcap special parameterClint Adams2001-04-202-1/+245
|
* Parameter repairs, mostly for subscripting.Bart Schaefer2001-04-205-51/+97
|