From 2c70c9923e328040c5dd32173610b28234ab5a0a Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 15 Aug 1995 18:49:20 +0000 Subject: [PATCH] (sort_args): Initialize best_priority smaller than any actual priority. --- src/emacs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emacs.c b/src/emacs.c index 949ec1f5ee9..ef84e0aac04 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -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. */ -- 2.39.2