diff options
| author | Karl Heuer | 1994-03-23 22:55:24 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-03-23 22:55:24 +0000 |
| commit | 1e62748e6a8bd99a6e0a785090d85dd741ff7682 (patch) | |
| tree | fbd0d2dc81c7156748f3fb12d2358dd8d3ceddf3 /src | |
| parent | 153a17b788f3f9ae2eba606fcc2fce2db542e589 (diff) | |
| download | emacs-1e62748e6a8bd99a6e0a785090d85dd741ff7682.tar.gz emacs-1e62748e6a8bd99a6e0a785090d85dd741ff7682.zip | |
(read_minibuf): Use assignment instead of initialization.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) | |||
| 204 | CONSP (buf_list); | 204 | CONSP (buf_list); |
| 205 | buf_list = XCONS (buf_list)->cdr) | 205 | buf_list = XCONS (buf_list)->cdr) |
| 206 | { | 206 | { |
| 207 | Lisp_Object other_buf = XCONS (XCONS (buf_list)->car)->cdr; | 207 | Lisp_Object other_buf; |
| 208 | 208 | ||
| 209 | other_buf = XCONS (XCONS (buf_list)->car)->cdr; | ||
| 209 | if (XTYPE (XBUFFER (other_buf)->directory) == Lisp_String) | 210 | if (XTYPE (XBUFFER (other_buf)->directory) == Lisp_String) |
| 210 | { | 211 | { |
| 211 | current_buffer->directory = XBUFFER (other_buf)->directory; | 212 | current_buffer->directory = XBUFFER (other_buf)->directory; |