about summary refs log tree commit diff
path: root/Src/hist.c
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-02-26 09:43:08 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-02-26 09:43:08 +0000
commit85de1eae0bbd3e94fa73cb56cb847d3edff99f59 (patch)
treec1c434a4f55d12c090116d672b87ce418a44def1 /Src/hist.c
parent40e13049874fcb801295849509fc4128fa1c91d9 (diff)
downloadzsh-85de1eae0bbd3e94fa73cb56cb847d3edff99f59.tar.gz
zsh-85de1eae0bbd3e94fa73cb56cb847d3edff99f59.tar.xz
zsh-85de1eae0bbd3e94fa73cb56cb847d3edff99f59.zip
properly restore noaliases in bufferwords() (13530)
Diffstat (limited to 'Src/hist.c')
-rw-r--r--Src/hist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/hist.c b/Src/hist.c
index 138cb1bf5..0f4fbb9d2 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -2151,6 +2151,7 @@ bufferwords(LinkList list, char *buf, int *index)
 {
     int num = 0, cur = -1, got = 0, ne = noerrs, ocs = cs, oll = ll;
     int owb = wb, owe = we, oadx = addedx, ozp = zleparse, onc = nocomments;
+    int ona = noaliases;
     char *p;
 
     if (!list)
@@ -2226,7 +2227,7 @@ bufferwords(LinkList list, char *buf, int *index)
     }
     if (cur < 0 && num)
 	cur = num - 1;
-    noaliases = 0;
+    noaliases = ona;
     strinend();
     inpop();
     errflag = 0;