aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-09-18 08:45:56 +0000
committerRichard M. Stallman <[email protected]>1994-09-18 08:45:56 +0000
commit5956f71d45bd320eeacdd01925c1f2a150bc2148 (patch)
tree87bf49ec5563fd8da8bf4ee5ca2879105534840a /src
parent239c87a1997ad89162e74d1fb99690c153b9188f (diff)
(get_minibuffer): Call Fkill_all_local_variables.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index b443ddcc74..5f866d5238 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -338,7 +338,10 @@ get_minibuffer (depth)
XCONS (tail)->car = buf;
}
else
- reset_buffer (XBUFFER (buf));
+ {
+ reset_buffer (XBUFFER (buf));
+ Fkill_all_local_variables (buf);
+ }
return buf;
}