From: Karl Heuer Date: Tue, 15 Aug 1995 18:49:20 +0000 (+0000) Subject: (sort_args): Initialize best_priority smaller than any X-Git-Tag: emacs-19.34~2999 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2c70c9923e328040c5dd32173610b28234ab5a0a;p=emacs.git (sort_args): Initialize best_priority smaller than any actual priority. --- 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. */