Mercurial > emacs
changeset 10505:4f7f9b9ff513
(syms_of_buffer) [DOS_NT]: Add missing ';'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 20 Jan 1995 23:40:45 +0000 |
parents | 8a1bd0598b49 |
children | a8379d78b06a |
files | src/buffer.c |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buffer.c Fri Jan 20 23:40:03 1995 +0000 +++ b/src/buffer.c Fri Jan 20 23:40:45 1995 +0000 @@ -585,11 +585,6 @@ result = Qnil; { - /* Reference each variable in the alist in our current buffer. - If inquiring about the current buffer, this gets the current values, - so store them into the alist so the alist is up to date. - If inquiring about some other buffer, this swaps out any values - for that buffer, making the alist up to date automatically. */ register Lisp_Object tail; for (tail = buf->local_var_alist; CONSP (tail); tail = XCONS (tail)->cdr) { @@ -597,9 +592,14 @@ elt = XCONS (tail)->car; - if (buf == current_buffer) - val = find_symbol_value (XCONS (elt)->car); - else + /* Reference each variable in the alist in buf. + If inquiring about the current buffer, this gets the current values, + so store them into the alist so the alist is up to date. + If inquiring about some other buffer, this swaps out any values + for that buffer, making the alist up to date automatically. */ + val = find_symbol_value (XCONS (elt)->car); + /* Use the current buffer value only if buf is the current buffer. */ + if (buf != current_buffer) val = XCONS (elt)->cdr; /* If symbol is unbound, put just the symbol in the list. */ @@ -2985,7 +2985,7 @@ "Non-nil if the visited file is a binary file.\n\ This variable is meaningful on MS-DOG and Windows NT.\n\ On those systems, it is automatically local in every buffer.\n\ -On other systems, this variable is normally always nil.") +On other systems, this variable is normally always nil."); #endif DEFVAR_PER_BUFFER ("default-directory", ¤t_buffer->directory,