diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-06-14 20:03:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-06-14 20:03:23 +0000 |
commit | 1e5f16fae6bff16fd65a15c3b7d84d434825f988 (patch) | |
tree | 7ad6e2e056f2745babec2b700f5a1ad61fc3690b | |
parent | 7602ba70889f9d430b349f3b7163f4a34af565e9 (diff) | |
download | emacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.tar.gz emacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.tar.bz2 emacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.zip |
(Flocal_variable_p): Fix backwards logical operator.
-rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index be28445717d..316bcae5704 100644 --- a/src/data.c +++ b/src/data.c @@ -1360,7 +1360,7 @@ BUFFER defaults to the current buffer.") valcontents = XSYMBOL (sym)->value; if (BUFFER_LOCAL_VALUEP (valcontents) - && SOME_BUFFER_LOCAL_VALUEP (valcontents)) + || SOME_BUFFER_LOCAL_VALUEP (valcontents)) { Lisp_Object tail, elt; for (tail = buf->local_var_alist; CONSP (tail); tail = XCONS (tail)->cdr) |