mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-29 16:25:35 +01:00
Merge remote commit
This commit is contained in:
commit
0e7bdd1e16
2 changed files with 9 additions and 2 deletions
|
@ -3,6 +3,13 @@
|
|||
* Martin Vaeth: 31959: .gitignore, Doc/help/.cvsignore,
|
||||
Doc/help/.distfiles: missed files.
|
||||
|
||||
2013-11-12 Bart Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 31966: Util/helpfiles: skip introductory paragraphs processing
|
||||
"man zshbuiltins" by assuming that all real command names start
|
||||
with a lower case letter. Check "ztcp" file as a guess that all
|
||||
builtins were processed.
|
||||
|
||||
2013-11-12 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* Martin Vaeth: 31959: .gitignore,
|
||||
|
|
|
@ -123,7 +123,7 @@ $print = 0;
|
|||
|
||||
sub namesub {
|
||||
local($cmd) = shift;
|
||||
if ($cmd =~ /^\w+$/) {
|
||||
if ($cmd =~ /^\w*$/ && lc($cmd) eq $cmd) {
|
||||
$cmd;
|
||||
} elsif ($cmd eq '.') {
|
||||
'dot';
|
||||
|
@ -261,6 +261,6 @@ foreach $file (<*>) {
|
|||
close(LINKFILE) unless($linkfile eq '');
|
||||
|
||||
# Make one sanity check
|
||||
&Die('not all files were properly generated') unless(-r 'zmodload');
|
||||
&Die('not all files were properly generated') unless(-r 'ztcp');
|
||||
|
||||
__END__
|
||||
|
|
Loading…
Reference in a new issue