]> git.eshelyaron.com Git - emacs.git/commitdiff
(sort_args): Initialize best_priority smaller than any
authorKarl Heuer <kwzh@gnu.org>
Tue, 15 Aug 1995 18:49:20 +0000 (18:49 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 15 Aug 1995 18:49:20 +0000 (18:49 +0000)
actual priority.

src/emacs.c

index 949ec1f5ee919309c1bf05c884da64e227eb8a3f..ef84e0aac04dc09a8967267a0f96bf81fcfa29f3 100644 (file)
@@ -1081,7 +1081,7 @@ sort_args (argc, argv)
   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.  */