Mercurial > emacs
comparison src/dired.c @ 9302:4c75b1a56398
(file_name_completion): Don't use XFASTINT as an lvalue.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 15:45:26 +0000 |
parents | 391441a19e1e |
children | dfcf54257f10 |
comparison
equal
deleted
inserted
replaced
9301:e6daff3e246f | 9302:4c75b1a56398 |
---|---|
380 | 380 |
381 if (!passcount) | 381 if (!passcount) |
382 { | 382 { |
383 Lisp_Object regexps; | 383 Lisp_Object regexps; |
384 Lisp_Object zero; | 384 Lisp_Object zero; |
385 XFASTINT (zero) = 0; | 385 XSETFASTINT (zero, 0); |
386 | 386 |
387 /* Ignore this element if it fails to match all the regexps. */ | 387 /* Ignore this element if it fails to match all the regexps. */ |
388 for (regexps = Vcompletion_regexp_list; CONSP (regexps); | 388 for (regexps = Vcompletion_regexp_list; CONSP (regexps); |
389 regexps = XCONS (regexps)->cdr) | 389 regexps = XCONS (regexps)->cdr) |
390 { | 390 { |