summaryrefslogtreecommitdiff
path: root/src/dired.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-10-04 15:45:26 +0000
committerKarl Heuer <kwzh@gnu.org>1994-10-04 15:45:26 +0000
commitbb7f140573797d7dc7c2a7da7a59138356752d63 (patch)
tree1932d9d9b5110c20e733b3829d7a496bc90d2dc1 /src/dired.c
parent22e6deeba3a44edee287185e7977ccea447603b4 (diff)
downloademacs-bb7f140573797d7dc7c2a7da7a59138356752d63.tar.gz
(file_name_completion): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src/dired.c')
-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)
{
Lisp_Object regexps;
Lisp_Object zero;
- XFASTINT (zero) = 0;
+ XSETFASTINT (zero, 0);
/* Ignore this element if it fails to match all the regexps. */
for (regexps = Vcompletion_regexp_list; CONSP (regexps);