summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-06-14 20:03:23 +0000
committerRichard M. Stallman <rms@gnu.org>1995-06-14 20:03:23 +0000
commit1e5f16fae6bff16fd65a15c3b7d84d434825f988 (patch)
tree7ad6e2e056f2745babec2b700f5a1ad61fc3690b
parent7602ba70889f9d430b349f3b7163f4a34af565e9 (diff)
downloademacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.tar.gz
emacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.tar.bz2
emacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.zip
(Flocal_variable_p): Fix backwards logical operator.
-rw-r--r--src/data.c2
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)