diff options
| author | Richard M. Stallman | 1995-06-14 20:03:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-14 20:03:23 +0000 |
| commit | 1e5f16fae6bff16fd65a15c3b7d84d434825f988 (patch) | |
| tree | 7ad6e2e056f2745babec2b700f5a1ad61fc3690b /src | |
| parent | 7602ba70889f9d430b349f3b7163f4a34af565e9 (diff) | |
| download | emacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.tar.gz emacs-1e5f16fae6bff16fd65a15c3b7d84d434825f988.zip | |
(Flocal_variable_p): Fix backwards logical operator.
Diffstat (limited to 'src')
| -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.") | |||
| 1360 | 1360 | ||
| 1361 | valcontents = XSYMBOL (sym)->value; | 1361 | valcontents = XSYMBOL (sym)->value; |
| 1362 | if (BUFFER_LOCAL_VALUEP (valcontents) | 1362 | if (BUFFER_LOCAL_VALUEP (valcontents) |
| 1363 | && SOME_BUFFER_LOCAL_VALUEP (valcontents)) | 1363 | || SOME_BUFFER_LOCAL_VALUEP (valcontents)) |
| 1364 | { | 1364 | { |
| 1365 | Lisp_Object tail, elt; | 1365 | Lisp_Object tail, elt; |
| 1366 | for (tail = buf->local_var_alist; CONSP (tail); tail = XCONS (tail)->cdr) | 1366 | for (tail = buf->local_var_alist; CONSP (tail); tail = XCONS (tail)->cdr) |