aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-06-14 20:03:23 +0000
committerRichard M. Stallman <[email protected]>1995-06-14 20:03:23 +0000
commit1e5f16fae6bff16fd65a15c3b7d84d434825f988 (patch)
tree7ad6e2e056f2745babec2b700f5a1ad61fc3690b /src/data.c
parent7602ba70889f9d430b349f3b7163f4a34af565e9 (diff)
(Flocal_variable_p): Fix backwards logical operator.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index be28445717..316bcae570 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)