about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* isalpha() -> ialpha(); avoid a compiler warning (12439)Sven Wischnowsky2000-07-311-1/+1
|
* 12436: Doc/Zsh/invoke.yo, Src/init.c: Make -b behave likeAndrew Main2000-07-301-10/+10
| | | | | | | the csh -b, permitting more options to be stacked after it and take effect. Make -b take effect depending on SH_OPTION_LETTERS, consistent with all the other single-letter options, rather than having a clashing check of emulation type.
* 12434: Doc/Zsh/invoke.yo, Src/init.c, Src/options.c, Src/zsh.h,Andrew Main2000-07-304-22/+132
| | | | | | | | Src/zsh.mdd: Allow options to be specified on the zsh command line in the form of GNU-style long options. Also handle --version and --help. Do not permit extra option letters to be stacked after `-whatever-' (they used to be ignored). Exit if the command line specifies an option name that doesn't exist.
* The `wait' builtin accepts only PIDs it can find in the job table.Bart Schaefer2000-07-281-1/+7
|
* 12421: extra tab in Makemod.in.inPeter Stephenson2000-07-281-1/+1
|
* 12411, 12419: Andrej: environment handling with fewer assumptionsPeter Stephenson2000-07-283-203/+388
|
* 12415: fix bug in last patch when quoting metafied field separator.Peter Stephenson2000-07-271-0/+2
|
* 12414: vared quotes separators when editing arraysPeter Stephenson2000-07-273-13/+81
|
* compdescribe shouldn't use the sets after failed initialisationSven Wischnowsky2000-07-271-2/+2
|
* Belatedly fold in 12162, to replace command subst with eval.Bart Schaefer2000-07-261-1/+2
|
* fix parsing of `time' without a command (12337)Sven Wischnowsky2000-07-211-3/+7
|
* Renamed shouldIgnoreLine() to should_ignore_line().Wayne Davison2000-07-201-2/+2
|
* Support "builtin" in the HIST_NO_STORE check.Wayne Davison2000-07-201-3/+6
|
* Removed remhist() and HA_JUNKED, added an Eprog arg to hend(), andWayne Davison2000-07-191-25/+47
| | | | | added the shouldIgnoreLine() function that hend() now calls to figure out if it needs to save the line or not.
* Call hend() with a NULL arg.Wayne Davison2000-07-191-1/+1
|
* Pass the new Eprog argument to hend().Wayne Davison2000-07-191-2/+2
|
* Removed call to remhist().Wayne Davison2000-07-192-4/+0
|
* If an alias starts with a space, set aliasspaceflag to 1 instead ofWayne Davison2000-07-191-3/+2
| | | | calling remhist().
* Define aliasspaceflag, and init it in parse_event().Wayne Davison2000-07-191-1/+5
|
* a bit of security for a VARARR() (12314)Sven Wischnowsky2000-07-191-1/+1
|
* don't let duplicate matches keep us from recognising exact matches if they ↵Sven Wischnowsky2000-07-181-1/+1
| | | | produce the same string on the line (12297)
* Changed several references to curhist into curline.histnum so thatWayne Davison2000-07-181-5/+7
| | | | | they would work right even if we didn't store the current command in the history.
* + Got rid of the spaceflag variable.Wayne Davison2000-07-181-11/+8
| | | | | | | | | | + Make sure that the curline.histnum variable is accurate at the end of our history processing, even if we read in some foreign history and/or if we replaced the prior line because it was a duplicate of the current one. This enables the history (fc -l) command to work properly, even if the current command was HIST_NO_SPACE-ed away. + Don't allow remhist() to remove the last line in the history if we didn't store the current command.
* Removed the spaceflag variable.Wayne Davison2000-07-182-32/+41
|
* don't treat non-option arguments as options (12266)Sven Wischnowsky2000-07-171-1/+1
|
* Fix the gethistent() function and enhanced the reliability of theWayne Davison2000-07-171-9/+14
| | | | SHARE_HISTORY option.
* + Needed to call unmeta() in a few spots that used the HISTFILE name.Wayne Davison2000-07-161-20/+36
| | | | | | + The non-HAVE_LINK code in lockhistfile() was broken in a number of ways. + Added an extra unlink() call to the HAVE_LINK code in lockhistfile() since (Linix at least says that) O_EXCL over NFS is broken.
* 12247: internal hostnam variable removed in favour of $HOSTPeter Stephenson2000-07-133-7/+11
|
* condition parsing with (z) flagSven Wischnowsky2000-07-131-0/+4
|
* 12242: based on code from Fr. Br. George (George V Kouryachy):Peter Stephenson2000-07-131-162/+331
| | | | use negative integers in prompt to count from other end of string
* fix for _arguments with single-letter options: recognize option-strings with ↵Sven Wischnowsky2000-07-131-3/+4
| | | | multiple options; in _main_complete stop trying completers when one called _message, don't display warnings in such cases (12241)
* fix zle widget -n num with num>9 (12238)Sven Wischnowsky2000-07-131-35/+216
|
* slightly improved (z) flag for parsing conditions; recognising glob flags in ↵Sven Wischnowsky2000-07-132-8/+16
| | | | conditions still doesn't work (12237)
* fix for (z) flag, don't take # as comment (12228)Sven Wischnowsky2000-07-122-4/+5
|
* 12222: handle EINTR for multios helper processesPeter Stephenson2000-07-111-2/+16
|
* 12220: message for missing autoload functionPeter Stephenson2000-07-111-0/+3
|
* 12193: Rather than replace @RLIMITS_INC_H@ with /dev/null on platforms whereBart Schaefer2000-07-071-5/+7
| | | | | | getrlimit() is not found, replace it with nothing and append /dev/null to the awk command in rlimits.mdd, so that we don't end up with a dependency of rlimits.h on /dev/null (which can cause rlimits.h to be needlessly remade).
* AIX dependency fixesOliver Kiddle2000-07-043-3/+6
|
* shut compiler upPeter Stephenson2000-07-041-1/+1
|
* 12149: guard against undefined h_errno in zftpPeter Stephenson2000-07-041-0/+4
|
* 12138: setting arrays in math contextPeter Stephenson2000-07-031-13/+29
|
* 12121: stopmsg in precmdPeter Stephenson2000-07-031-4/+10
|
* change format style with warnings tag, don't add descriptions as matches; ↵Sven Wischnowsky2000-07-033-8/+32
| | | | make a-a-i-n-h in menu selection work even without matches (12134)
* fix for `foo () print bar' (function definitions without braces) (12125)Sven Wischnowsky2000-06-291-1/+2
|
* quote brace-strings (12113)Sven Wischnowsky2000-06-291-8/+12
|
* 12112: Don't make namedirs out of hash elements.Bart Schaefer2000-06-281-1/+3
|
* fix for list-colors handling (12107)Sven Wischnowsky2000-06-281-1/+4
|
* make a-a-i-n-h in menu selection work with one match; better undo behaviour ↵Sven Wischnowsky2000-06-283-4/+13
| | | | for menu selection (12093)
* Andrej: don't close slave if not yet open (12084)Sven Wischnowsky2000-06-271-1/+0
|
* Andrej: 12081: zpty under cygwinPeter Stephenson2000-06-271-2/+6
|