diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-10-30 19:34:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-10-30 19:34:27 +0000 |
commit | 641392d945881530d79dca5c7cf276f56e5836e0 (patch) | |
tree | ca051bf7438630adc7a478b613dfee6146f5d22a /src/fns.c | |
parent | 4699b0216fa207175436ad19b36081a126f03f2e (diff) | |
download | emacs-641392d945881530d79dca5c7cf276f56e5836e0.tar.gz |
(Fsafe_length): Add missing parentheses around & within comparison.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c index 1bcb963e20f..2e282011e75 100644 --- a/src/fns.c +++ b/src/fns.c @@ -153,7 +153,7 @@ which is at least the number of distinct elements.") if (EQ (tail, halftail) && len != 0) break; len++; - if (len & 1 == 0) + if ((len & 1) == 0) halftail = XCONS (halftail)->cdr; } |