aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2007-09-29 22:28:16 +0000
committerJuri Linkov2007-09-29 22:28:16 +0000
commitbb378f19e2f7d941e96894f6e67368af77d90bde (patch)
treeb448819b41f9315a06f5ba28fcc15155e7a56589
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.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/emacs.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cbba8f5d3d5..0c79acd6b45 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12007-09-29 Juri Linkov <juri@jurta.org>
2
3 * emacs.c (standard_args): Change priority of "--no-splash"
4 from 40 to 3. Add "--no-desktop" with the same priority.
5
12007-09-27 Jason Rumney <jasonr@gnu.org> 62007-09-27 Jason Rumney <jasonr@gnu.org>
2 7
3 * makefile.w32-in (LIBS): Add COMCTL32. 8 * makefile.w32-in (LIBS): Add COMCTL32.
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 },