# HG changeset patch # User Juri Linkov # Date 1190595558 0 # Node ID 534b1b9b7dcd43107982ec6f2bc8a5b36acee37e # Parent c7006132af9360166b3b4838e0c45e3c61bf7cda (standard_args): Change priority of "--no-splash" from 40 to 3. Add "--no-desktop" with the same priority. diff -r c7006132af93 -r 534b1b9b7dcd src/emacs.c --- a/src/emacs.c Mon Sep 24 00:43:41 2007 +0000 +++ b/src/emacs.c Mon Sep 24 00:59:18 2007 +0000 @@ -1822,7 +1822,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 }, @@ -1857,6 +1856,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 },