From 16706228c14254b529aca686b13f6002314b52bc Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Mon, 24 Sep 2007 00:59:41 +0000 Subject: [PATCH] (standard_args): Change priority of "--no-splash" from 40 to 3. Add "--no-desktop" with the same priority. --- src/ChangeLog | 5 +++++ src/emacs.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 8356d0ea04f..97adc89995a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-09-24 Juri Linkov + + * emacs.c (standard_args): Change priority of "--no-splash" + from 40 to 3. Add "--no-desktop" with the same priority. + 2007-09-23 Dmitry Antipov * alloc.c (gc_sweep): Check cons cell mark bits word by word diff --git a/src/emacs.c b/src/emacs.c index 55475e57799..46d07b19936 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1822,7 +1822,6 @@ struct standard_args standard_args[] = { "-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 @@ struct standard_args standard_args[] = { "-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 }, -- 2.39.2