comparison src/emacs.c @ 5126:2a462149bd6a ben-lisp-object

merge
author Ben Wing <ben@xemacs.org>
date Wed, 24 Feb 2010 19:04:27 -0600
parents b5df3737028a 6f2158fa75ed
children a9c41067dd88
comparison
equal deleted inserted replaced
5125:b5df3737028a 5126:2a462149bd6a
2906 /* Skip option arguments--they are tied to the options. */ 2906 /* Skip option arguments--they are tied to the options. */
2907 if (options[from] > 0) 2907 if (options[from] > 0)
2908 from += options[from]; 2908 from += options[from];
2909 } 2909 }
2910 2910
2911 if (best < 0) 2911 assert (best >= 0);
2912 ABORT ();
2913 2912
2914 /* Copy the highest priority remaining option, with its args, to 2913 /* Copy the highest priority remaining option, with its args, to
2915 NEW_ARGV. */ 2914 NEW_ARGV. */
2916 new_argv[to++] = argv[best]; 2915 new_argv[to++] = argv[best];
2917 for (i = 0; i < options[best]; i++) 2916 for (i = 0; i < options[best]; i++)