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/hashtable.c | |
| parent | 19014: add alias -s suf=handler (diff) | |
| download | zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar.gz zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar.bz2 zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar.lz zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar.xz zsh-8e359a669e064f16d9a3767a805da28af171d5e7.tar.zst zsh-8e359a669e064f16d9a3767a805da28af171d5e7.zip | |
19020: fix printaliasnode
Diffstat (limited to 'Src/hashtable.c')
| -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; |
