# HG changeset patch # User Juri Linkov # Date 1191104873 0 # Node ID 28b71c901e03c5ac58ceefa5afab686b8a59505d # Parent 87875c00eb065bc3bca5f6fa61a5795cd5d60c7b (standard_args): Change priority of "--no-splash" from 40 to 3. Add "--no-desktop" with the same priority. diff -r 87875c00eb06 -r 28b71c901e03 src/emacs.c --- a/src/emacs.c Sat Sep 29 21:33:23 2007 +0000 +++ b/src/emacs.c Sat Sep 29 22:27:53 2007 +0000 @@ -1813,7 +1813,6 @@ { "-q", "--no-init-file", 50, 0 }, { "-no-init-file", 0, 50, 0 }, { "-no-site-file", "--no-site-file", 40, 0 }, - { "-no-splash", "--no-splash", 40, 0 }, { "-u", "--user", 30, 1 }, { "-user", 0, 30, 1 }, { "-debug-init", "--debug-init", 20, 0 }, @@ -1848,6 +1847,8 @@ { "-hb", "--horizontal-scroll-bars", 5, 0 }, { "-vb", "--vertical-scroll-bars", 5, 0 }, { "-color", "--color", 5, 0}, + { "-no-splash", "--no-splash", 3, 0 }, + { "-no-desktop", "--no-desktop", 3, 0 }, /* These have the same priority as ordinary file name args, so they are not reordered with respect to those. */ { "-L", "--directory", 0, 1 },