diff options
| author | Richard M. Stallman | 1994-09-18 08:45:56 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-18 08:45:56 +0000 |
| commit | 5956f71d45bd320eeacdd01925c1f2a150bc2148 (patch) | |
| tree | 87bf49ec5563fd8da8bf4ee5ca2879105534840a /src | |
| parent | 239c87a1997ad89162e74d1fb99690c153b9188f (diff) | |
| download | emacs-5956f71d45bd320eeacdd01925c1f2a150bc2148.tar.gz emacs-5956f71d45bd320eeacdd01925c1f2a150bc2148.zip | |
(get_minibuffer): Call Fkill_all_local_variables.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index b443ddcc740..5f866d52381 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -338,7 +338,10 @@ get_minibuffer (depth) | |||
| 338 | XCONS (tail)->car = buf; | 338 | XCONS (tail)->car = buf; |
| 339 | } | 339 | } |
| 340 | else | 340 | else |
| 341 | reset_buffer (XBUFFER (buf)); | 341 | { |
| 342 | reset_buffer (XBUFFER (buf)); | ||
| 343 | Fkill_all_local_variables (buf); | ||
| 344 | } | ||
| 342 | 345 | ||
| 343 | return buf; | 346 | return buf; |
| 344 | } | 347 | } |