diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2003-09-03 13:41:25 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-09-03 13:41:25 +0000 |
commit | 8e359a669e064f16d9a3767a805da28af171d5e7 (patch) | |
tree | d72ac600748ad61e02a05c6252d0082d189e944c /Src | |
parent | 3ffb3ad2f2f733fbee58e21dc6aab23827ab8d49 (diff) | |
download | zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar.gz zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar.xz zsh-8e359a669e064f16d9a3767a805da28af171d5e7.zip |
19020: fix printaliasnode
Diffstat (limited to 'Src')
-rw-r--r-- | Src/hashtable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/hashtable.c b/Src/hashtable.c index faa858532..f23a68fc2 100644 --- a/Src/hashtable.c +++ b/Src/hashtable.c @@ -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; |