# HG changeset patch # User Karl Heuer # Date 808512560 0 # Node ID c67a46e4fcef2294a48ec9f945507a26afe3ecbf # Parent be1206fc13edbfcfd02a735b362866ce91fef7e0 (sort_args): Initialize best_priority smaller than any actual priority. diff -r be1206fc13ed -r c67a46e4fcef src/emacs.c --- 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. */