summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--Src/hashtable.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fc7a3cedf..762b77507 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,
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;