From 8564aa5c0d77999138e4f46b496e2bbc2f48f718 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Tue, 30 May 2000 03:43:27 +0000 Subject: Wayne: Fix two history bugs that were causing the failure of `print -s'. --- Src/Modules/parameter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src/Modules/parameter.c') diff --git a/Src/Modules/parameter.c b/Src/Modules/parameter.c index e46b14108..55fca09ac 100644 --- a/Src/Modules/parameter.c +++ b/Src/Modules/parameter.c @@ -1059,7 +1059,7 @@ scanpmhistory(HashTable ht, ScanFunc func, int flags) { struct param pm; int i = addhistnum(curhist, -1, HIST_FOREIGN); - Histent he = quietgethistent(i, GETHIST_UPWARD); + Histent he = gethistent(i, GETHIST_UPWARD); char buf[40]; pm.flags = PM_SCALAR | PM_READONLY; @@ -1096,7 +1096,7 @@ histwgetfn(Param pm) LinkList l = newlinklist(), ll; LinkNode n; int i = addhistnum(curhist, -1, HIST_FOREIGN), iw; - Histent he = quietgethistent(i, GETHIST_UPWARD); + Histent he = gethistent(i, GETHIST_UPWARD); ll = bufferwords(NULL, NULL, NULL); for (n = firstnode(ll); n; incnode(n)) -- cgit 1.4.1