diff options
| author | Juri Linkov | 2007-09-24 00:59:41 +0000 |
|---|---|---|
| committer | Juri Linkov | 2007-09-24 00:59:41 +0000 |
| commit | 16706228c14254b529aca686b13f6002314b52bc (patch) | |
| tree | b49e892b161f89e979f803c260959b6e8f8d2e54 /src | |
| parent | 5bf9d07a07f8d203c90d537a085d0629a468d583 (diff) | |
| download | emacs-16706228c14254b529aca686b13f6002314b52bc.tar.gz emacs-16706228c14254b529aca686b13f6002314b52bc.zip | |
(standard_args): Change priority of "--no-splash"
from 40 to 3. Add "--no-desktop" with the same priority.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/emacs.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8356d0ea04f..97adc89995a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-09-24 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 | |||
| 1 | 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru> | 6 | 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 7 | ||
| 3 | * alloc.c (gc_sweep): Check cons cell mark bits word by word | 8 | * 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[] = | |||
| 1822 | { "-q", "--no-init-file", 50, 0 }, | 1822 | { "-q", "--no-init-file", 50, 0 }, |
| 1823 | { "-no-init-file", 0, 50, 0 }, | 1823 | { "-no-init-file", 0, 50, 0 }, |
| 1824 | { "-no-site-file", "--no-site-file", 40, 0 }, | 1824 | { "-no-site-file", "--no-site-file", 40, 0 }, |
| 1825 | { "-no-splash", "--no-splash", 40, 0 }, | ||
| 1826 | { "-u", "--user", 30, 1 }, | 1825 | { "-u", "--user", 30, 1 }, |
| 1827 | { "-user", 0, 30, 1 }, | 1826 | { "-user", 0, 30, 1 }, |
| 1828 | { "-debug-init", "--debug-init", 20, 0 }, | 1827 | { "-debug-init", "--debug-init", 20, 0 }, |
| @@ -1857,6 +1856,8 @@ struct standard_args standard_args[] = | |||
| 1857 | { "-hb", "--horizontal-scroll-bars", 5, 0 }, | 1856 | { "-hb", "--horizontal-scroll-bars", 5, 0 }, |
| 1858 | { "-vb", "--vertical-scroll-bars", 5, 0 }, | 1857 | { "-vb", "--vertical-scroll-bars", 5, 0 }, |
| 1859 | { "-color", "--color", 5, 0}, | 1858 | { "-color", "--color", 5, 0}, |
| 1859 | { "-no-splash", "--no-splash", 3, 0 }, | ||
| 1860 | { "-no-desktop", "--no-desktop", 3, 0 }, | ||
| 1860 | /* These have the same priority as ordinary file name args, | 1861 | /* These have the same priority as ordinary file name args, |
| 1861 | so they are not reordered with respect to those. */ | 1862 | so they are not reordered with respect to those. */ |
| 1862 | { "-L", "--directory", 0, 1 }, | 1863 | { "-L", "--directory", 0, 1 }, |