Mercurial > emacs
changeset 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 | be1206fc13ed |
children | 9d994b0faaa3 |
files | src/emacs.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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. */