comparison src/fns.c @ 13344:30e17254a280

(Fsafe_length): Add missing parentheses around & within comparison.
author Richard M. Stallman <rms@gnu.org>
date Mon, 30 Oct 1995 19:34:27 +0000
parents 70b16bce1f61
children 941c37982f37
comparison
equal deleted inserted replaced
13343:cc0f24bdfab1 13344:30e17254a280
151 for (tail = list; CONSP (tail); tail = XCONS (tail)->cdr) 151 for (tail = list; CONSP (tail); tail = XCONS (tail)->cdr)
152 { 152 {
153 if (EQ (tail, halftail) && len != 0) 153 if (EQ (tail, halftail) && len != 0)
154 break; 154 break;
155 len++; 155 len++;
156 if (len & 1 == 0) 156 if ((len & 1) == 0)
157 halftail = XCONS (halftail)->cdr; 157 halftail = XCONS (halftail)->cdr;
158 } 158 }
159 159
160 XSETINT (length, len); 160 XSETINT (length, len);
161 return length; 161 return length;