summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2002-05-06Detect variant tgetent() return value and test for it correctly.Bart Schaefer1-3/+3
2002-05-06Split tokenize() into shtokenize() and zshtokenize()Bart Schaefer3-8/+22
to improve SH_GLOB handling, particularly in completion
2002-04-2517046: Src/math.c: OCTAL_ZEROES with a `0' on its own wasPeter Stephenson1-2/+3
swallowing up too many characters.
2002-04-2517040: Src/Modules/tcp.c: AF_INET6 wasn't copied into thePeter Stephenson2-3/+4
socket structure for IPv6. 17041: Src/Modules/zftp.c: Minor but fatal typos creating a data connection for zftp using IPv6.
2002-04-25remove one half of 17029; the part for zstyle wasn't right (17035)Sven Wischnowsky1-1/+0
2002-04-24fix two memory leaks (found by Felix): pre-compiled patterns when ↵Sven Wischnowsky2-0/+2
re-defining styles and compredirs-copies in comp_wrapper() (17029)
2002-04-1817011: Src/Modules/tcp.c, Src/Modules/zftp.c: restorePeter Stephenson2-4/+4
freehostent() incorrectly removed in 16172.
2002-04-17Alexandre Duret-Lutz: 16930: Src/cond.c, Test/C02cond.ztst:Peter Stephenson1-1/+5
Careful with long filenames in internal condition test; fix block file test for `-f'.
2002-04-17make compvalues unquote the string from the line like comparguments does (16998)Sven Wischnowsky1-3/+20
2002-04-16treat backslashed bangs in double quotes specially in get_comp_string(), ↵Sven Wischnowsky1-0/+6
they are more like $s there (16990)
2002-04-0816942: Allow zero-length matches in parameter substitutions.Peter Stephenson1-2/+2
2002-03-24Made SAVEHIST a special parameter.Wayne Davison1-0/+20
2002-03-24Added "savehistsiz" (for the new SAVEHIST special parameter), and used itWayne Davison1-5/+9
in place of getiparam("SAVEHIST").
2002-03-24Got rid of unused-variable compiler warning.Wayne Davison1-2/+2
2002-03-1916862: allow print's -s and -z options to be used with -fOliver Kiddle1-59/+99
2002-03-13remove that -T option to compdef again and instead use comma-separated ↵Sven Wischnowsky1-0/+1
sub-contexts both for function and style lookup (16819)
2002-03-07Fix parsing of binary infix operators of test builtin.Bart Schaefer1-2/+2
2002-03-07don't try to build the redirection string for the loops (for, foreach, ↵Sven Wischnowsky1-1/+1
select) (16776)
2002-03-0516767: Src/Zle/zle_hist.c, Doc/Zsh/zle.yo, Doc/Zsh/contrib.yo,Peter Stephenson1-23/+115
Functions/Zle/copy-earlier-word: Enhance insert-last-word to pick different lines from the history (including the current line) and different words from that line. Add copy-earlier-word as suggested by Dominik Vogt to copy words from either the current line, or (following an insert-last-word) a previous history line.
2002-03-0416759: Src/builtin.c: from Eric Norum <eric.norum@usask.ca>:Peter Stephenson1-5/+7
cd prints output whenever the target directory is not obvious to the user. This confuses scripts, so restrict it to interactive mode.
2002-03-01add $redirections array to completion system parameters, containing ↵Sven Wischnowsky5-25/+74
information about all redirections on the line; make this and compstate[redirect] contain the file descriptor number (16751)
2002-02-25allow nterruption of empty while-loops with ^C (16711)Sven Wischnowsky1-31/+47
2002-02-25make _guard use `_mesage -e'; make `_message -e' use $curtag as a default; ↵Sven Wischnowsky1-4/+0
change uses of _guard (16708)
2002-02-22Improved the output of the "history" command with a 1-line history buffer,Wayne Davison1-10/+15
and also improved the error handling of explicitly-specified first/last values.
2002-02-22In putoldhistentryontop(), ensure that we can't return with "next" set toWayne Davison1-2/+3
the value we just put on top.
2002-02-2216620, 16697: add a and n parameter expansion flagsOliver Kiddle2-51/+100
2002-02-20Yet another fix for prepnexthistent().Wayne Davison1-1/+2
2002-02-2016619, 16676: add -c, -l and -p options to the dirs builtinOliver Kiddle1-21/+28
2002-02-1916673: add langinfo module as an interface to locale information.Clint Adams3-0/+566
2002-02-1916635: make sure we display lists in singlelinezle modeGeoff Wing1-2/+2
2002-02-18Fixed a just-introduced bug in prepnexthistent() when curline is inWayne Davison1-4/+5
the list.
2002-02-18allow an argument containing only a single colon as a separator between ↵Sven Wischnowsky1-0/+2
options to _arguments and specs (16669)
2002-02-18fix group handling nothing should now possibly be added to the wrong group ↵Sven Wischnowsky1-27/+19
again (16668)
2002-02-16When savehistfile() rewrites the history file, there was a potential forWayne Davison1-1/+2
losing the entire history file if we couldn't lock the file for reading (it timed out) but we could lock the file for write (and wrote nothing).
2002-02-16Optimized putoldhistentryontop() so that when resizehistents() calls itWayne Davison1-14/+24
repeatedly while HIST_EXPIRE_DUPS_FIRST is set, it doesn't re-scan the already-checked hist items (avoiding potentially slow operation).
2002-02-13Improved resizehistents() so that it honors HISTEXPIREDUPSFIRST.Wayne Davison1-25/+33
2002-02-12Silenced a compiler warning.Wayne Davison1-1/+1
2002-02-12The minimum size of histsiz (aka HISTSIZE) should be 1, not 2.Wayne Davison1-2/+2
2002-02-07fix for displaying matches in groups via _describe; go back to displaying ↵Sven Wischnowsky1-1/+10
one match per line when lines get too long (16582)
2002-02-0616577: don't return a single dot as the path head of a slash.Clint Adams1-1/+5
2002-02-0416556: No error on `print >&-'.Bart Schaefer1-10/+17
2002-01-3116494: extract outermost words with negative arguments to %_ and add %^Oliver Kiddle1-7/+46
2002-01-3116493: correct typosOliver Kiddle1-7/+7
2002-01-3116492: add RPROMPT2 variable for right prompts in multi-line commandsOliver Kiddle2-3/+9
2002-01-31* 16527: Src/Zle/zle_refresh.c: Don't lose the rprompt whenAndrew Main1-1/+1
clearing an otherwise-blank line.
2002-01-2716503: warn on fclose or fflush errors in bin_print.Clint Adams1-76/+84
2002-01-2616435: Fix core dump in `hash'.Bart Schaefer1-1/+1
2002-01-2216487: Src/glob.c: bug in 16486 when a qualifier in a setPeter Stephenson1-1/+1
consisted only of flags which were handled globally.
2002-01-2216486: Doc/Zsh/expn.yo, Src/glob.c, Src/pattern.c: supportPeter Stephenson2-493/+660
(#q...) EXTENDED_GLOB syntax for qualifiers. May be chained, ignored by pattern matching code.
2002-01-22add new generic fake style and changes to the C-code for that (different ↵Sven Wischnowsky5-50/+43
implementation of compadd -x) (16483)