aboutsummaryrefslogtreecommitdiffstats
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1994-03-23 22:55:24 +0000
committerKarl Heuer <[email protected]>1994-03-23 22:55:24 +0000
commit1e62748e6a8bd99a6e0a785090d85dd741ff7682 (patch)
treefbd0d2dc81c7156748f3fb12d2358dd8d3ceddf3 /src/minibuf.c
parent153a17b788f3f9ae2eba606fcc2fce2db542e589 (diff)
(read_minibuf): Use assignment instead of initialization.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 03acbc4da5..d7da13d57b 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -204,8 +204,9 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
CONSP (buf_list);
buf_list = XCONS (buf_list)->cdr)
{
- Lisp_Object other_buf = XCONS (XCONS (buf_list)->car)->cdr;
+ Lisp_Object other_buf;
+ other_buf = XCONS (XCONS (buf_list)->car)->cdr;
if (XTYPE (XBUFFER (other_buf)->directory) == Lisp_String)
{
current_buffer->directory = XBUFFER (other_buf)->directory;