changeset 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 e6daff3e246f
children 3115ae493c30
files src/dired.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);