diff 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
line wrap: on
line diff
--- a/src/dired.c	Tue Oct 04 15:44:37 1994 +0000
+++ b/src/dired.c	Tue Oct 04 15:45:26 1994 +0000
@@ -382,7 +382,7 @@
 	    {
 	      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);