mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-10 08:01:41 +01:00
unposted: fix capitalized word in the middle of a sentence
This commit is contained in:
parent
d0366e1960
commit
8af2cbd1f2
2 changed files with 7 additions and 4 deletions
|
@ -3,11 +3,14 @@
|
|||
* 29673: Doc/Zsh/compsys.yo: Clarify what 'other' in the
|
||||
ignore-line style does.
|
||||
|
||||
* 28852: Misc/zargs, Zle/match-words-by-style: Use syntax that doesn't
|
||||
depend on SHORT_LOOPS being set.
|
||||
* 28852: Misc/zargs, Zle/match-words-by-style: Use syntax that
|
||||
doesn't depend on SHORT_LOOPS being set.
|
||||
|
||||
* unposted: Src/hist.c: fix a typo in a comment.
|
||||
|
||||
* unposted: Src/jobs.c: fix capitalized word in the middle of
|
||||
a sentence.
|
||||
|
||||
2011-08-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* Src/Modules/datetime.mdd: unposted: also fix the autofeatures.
|
||||
|
@ -15244,5 +15247,5 @@
|
|||
|
||||
*****************************************************
|
||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||
* $Revision: 1.5425 $
|
||||
* $Revision: 1.5426 $
|
||||
*****************************************************
|
||||
|
|
|
@ -2255,7 +2255,7 @@ bin_kill(char *nam, char **argv, UNUSED(Options ops), UNUSED(int func))
|
|||
}
|
||||
if (sig > SIGCOUNT) {
|
||||
zwarnnam(nam, "unknown signal: SIG%s", signame);
|
||||
zwarnnam(nam, "type kill -l for a List of signals");
|
||||
zwarnnam(nam, "type kill -l for a list of signals");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue