Mercurial > emacs
changeset 6504:c867b9af8de4
(read_minibuf): Use assignment instead of initialization.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 23 Mar 1994 22:55:24 +0000 |
parents | 7c566d0e4b3d |
children | ce4fbb055f87 |
files | src/minibuf.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/minibuf.c Wed Mar 23 22:55:01 1994 +0000 +++ b/src/minibuf.c Wed Mar 23 22:55:24 1994 +0000 @@ -204,8 +204,9 @@ 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;