mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-28 17:10:59 +01:00
unposted (cf. 41707): internal: Document the count==0 case of checkrmall().
This commit is contained in:
parent
d1914c5af4
commit
15bed0db40
2 changed files with 8 additions and 1 deletions
|
|
@ -2724,8 +2724,10 @@ checkrmall(char *s)
|
|||
else if (count > 0)
|
||||
fprintf(shout, "zsh: sure you want to delete all %d files in ",
|
||||
count);
|
||||
else
|
||||
else {
|
||||
/* We don't know how many files the glob will expand to; see 41707. */
|
||||
fprintf(shout, "zsh: sure you want to delete all the files in ");
|
||||
}
|
||||
nicezputs(s, shout);
|
||||
if(isset(RMSTARWAIT)) {
|
||||
fputs("? (waiting ten seconds)", shout);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue