aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorJuri Linkov2007-09-29 22:28:16 +0000
committerJuri Linkov2007-09-29 22:28:16 +0000
commitbb378f19e2f7d941e96894f6e67368af77d90bde (patch)
treeb448819b41f9315a06f5ba28fcc15155e7a56589 /src/emacs.c
parent4da4d9bb7688ab848ca8f7038c40da2263303599 (diff)
downloademacs-bb378f19e2f7d941e96894f6e67368af77d90bde.tar.gz
emacs-bb378f19e2f7d941e96894f6e67368af77d90bde.zip
(standard_args): Change priority of "--no-splash"
from 40 to 3. Add "--no-desktop" with the same priority.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c
index b356faa68ae..4910244fd81 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1813,7 +1813,6 @@ struct standard_args standard_args[] =
1813 { "-q", "--no-init-file", 50, 0 }, 1813 { "-q", "--no-init-file", 50, 0 },
1814 { "-no-init-file", 0, 50, 0 }, 1814 { "-no-init-file", 0, 50, 0 },
1815 { "-no-site-file", "--no-site-file", 40, 0 }, 1815 { "-no-site-file", "--no-site-file", 40, 0 },
1816 { "-no-splash", "--no-splash", 40, 0 },
1817 { "-u", "--user", 30, 1 }, 1816 { "-u", "--user", 30, 1 },
1818 { "-user", 0, 30, 1 }, 1817 { "-user", 0, 30, 1 },
1819 { "-debug-init", "--debug-init", 20, 0 }, 1818 { "-debug-init", "--debug-init", 20, 0 },
@@ -1848,6 +1847,8 @@ struct standard_args standard_args[] =
1848 { "-hb", "--horizontal-scroll-bars", 5, 0 }, 1847 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1849 { "-vb", "--vertical-scroll-bars", 5, 0 }, 1848 { "-vb", "--vertical-scroll-bars", 5, 0 },
1850 { "-color", "--color", 5, 0}, 1849 { "-color", "--color", 5, 0},
1850 { "-no-splash", "--no-splash", 3, 0 },
1851 { "-no-desktop", "--no-desktop", 3, 0 },
1851 /* These have the same priority as ordinary file name args, 1852 /* These have the same priority as ordinary file name args,
1852 so they are not reordered with respect to those. */ 1853 so they are not reordered with respect to those. */
1853 { "-L", "--directory", 0, 1 }, 1854 { "-L", "--directory", 0, 1 },