aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-04 15:45:26 +0000
committerKarl Heuer1994-10-04 15:45:26 +0000
commit617b3bfe1b9c7f44963f31f7458f841bdc279a03 (patch)
tree83372af52906d7146ef0bc07fe09c446361b2609 /src
parent1b42cf2e61a093cf8e2d04d4d6229d51052b1438 (diff)
downloademacs-617b3bfe1b9c7f44963f31f7458f841bdc279a03.tar.gz
emacs-617b3bfe1b9c7f44963f31f7458f841bdc279a03.zip
(file_name_completion): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src')
-rw-r--r--src/dired.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dired.c b/src/dired.c
index cb1a8d8b88e..cfe70d9b54f 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -382,7 +382,7 @@ file_name_completion (file, dirname, all_flag, ver_flag)
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);