]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_minibuf): Use assignment instead of initialization.
authorKarl Heuer <kwzh@gnu.org>
Wed, 23 Mar 1994 22:55:24 +0000 (22:55 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 23 Mar 1994 22:55:24 +0000 (22:55 +0000)
src/minibuf.c

index 03acbc4da51558f070ea3c3770d15c75a47cd91e..d7da13d57b7aef502ed410e5f63752bce619471a 100644 (file)
@@ -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;