1
0
mirror of https://github.com/zsh-users/zsh synced 2024-07-08 19:55:44 +00:00

19020: fix printaliasnode

This commit is contained in:
Peter Stephenson 2003-09-03 13:41:25 +00:00
parent 3ffb3ad2f2
commit 8e359a669e
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2003-09-03 Peter Stephenson <pws@csr.com>
* 19020: Src/hashtable.c: printaliasnode was screwed up by 19014.
* 19014: Completion/Zsh/Command/_alias,
Completion/Zsh/Type/.distfiles, Completion/Zsh/Type/_aliases,
Completion/Zsh/Type/_command_names,

View File

@ -1119,7 +1119,7 @@ printaliasnode(HashNode hn, int printflags)
printf("suffix ");
else if (a->flags & ALIAS_GLOBAL)
printf("globally ");
printf (" aliased to ");
printf ("aliased to ");
nicezputs(a->text, stdout);
putchar('\n');
return;
@ -1134,7 +1134,7 @@ printaliasnode(HashNode hn, int printflags)
printf(" global");
else
printf("n");
printf(" alias for");
printf(" alias for ");
nicezputs(a->text, stdout);
putchar('\n');
return;