diff src/emacs.c @ 12861:c67a46e4fcef

(sort_args): Initialize best_priority smaller than any actual priority.
author Karl Heuer <kwzh@gnu.org>
date Tue, 15 Aug 1995 18:49:20 +0000
parents 89d5e3a554de
children ec9ae189a275
line wrap: on
line diff
--- a/src/emacs.c	Tue Aug 15 12:31:33 1995 +0000
+++ b/src/emacs.c	Tue Aug 15 18:49:20 1995 +0000
@@ -1081,7 +1081,7 @@
   while (to < argc)
     {
       int best = -1;
-      int best_priority = -2;
+      int best_priority = -9999;
 
       /* Find the highest priority remaining option.
 	 If several have equal priority, take the first of them.  */