From 1e62748e6a8bd99a6e0a785090d85dd741ff7682 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 23 Mar 1994 22:55:24 +0000 Subject: [PATCH] (read_minibuf): Use assignment instead of initialization. --- src/minibuf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/minibuf.c b/src/minibuf.c index 03acbc4da51..d7da13d57b7 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; -- 2.39.5