diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/emacs.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d9612db698b..cb4aad6ec95 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-03-14 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * emacs.c (standard_args): Add --no-x-resources. | ||
| 4 | (usage_message): Document that -Q implies --no-x-resources. | ||
| 5 | |||
| 1 | 2015-03-13 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2015-03-13 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | * frame.c (x_get_resource_string) [!USE_GTK]: Don't define. | 8 | * frame.c (x_get_resource_string) [!USE_GTK]: Don't define. |
diff --git a/src/emacs.c b/src/emacs.c index ca5633da2dd..d318fd4649a 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -237,6 +237,7 @@ Initialization options:\n\ | |||
| 237 | --no-init-file, -q load neither ~/.emacs nor default.el\n\ | 237 | --no-init-file, -q load neither ~/.emacs nor default.el\n\ |
| 238 | --no-loadup, -nl do not load loadup.el into bare Emacs\n\ | 238 | --no-loadup, -nl do not load loadup.el into bare Emacs\n\ |
| 239 | --no-site-file do not load site-start.el\n\ | 239 | --no-site-file do not load site-start.el\n\ |
| 240 | --no-x-resources do not load X resources\n\ | ||
| 240 | --no-site-lisp, -nsl do not add site-lisp directories to load-path\n\ | 241 | --no-site-lisp, -nsl do not add site-lisp directories to load-path\n\ |
| 241 | --no-splash do not display a splash screen on startup\n\ | 242 | --no-splash do not display a splash screen on startup\n\ |
| 242 | --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\ | 243 | --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\ |
| @@ -244,6 +245,7 @@ Initialization options:\n\ | |||
| 244 | "\ | 245 | "\ |
| 245 | --quick, -Q equivalent to:\n\ | 246 | --quick, -Q equivalent to:\n\ |
| 246 | -q --no-site-file --no-site-lisp --no-splash\n\ | 247 | -q --no-site-file --no-site-lisp --no-splash\n\ |
| 248 | --no-x-resources\n\ | ||
| 247 | --script FILE run FILE as an Emacs Lisp script\n\ | 249 | --script FILE run FILE as an Emacs Lisp script\n\ |
| 248 | --terminal, -t DEVICE use DEVICE for terminal I/O\n\ | 250 | --terminal, -t DEVICE use DEVICE for terminal I/O\n\ |
| 249 | --user, -u USER load ~USER/.emacs instead of your own\n\ | 251 | --user, -u USER load ~USER/.emacs instead of your own\n\ |
| @@ -1661,6 +1663,7 @@ static const struct standard_args standard_args[] = | |||
| 1661 | { "-quick", 0, 55, 0 }, | 1663 | { "-quick", 0, 55, 0 }, |
| 1662 | { "-q", "--no-init-file", 50, 0 }, | 1664 | { "-q", "--no-init-file", 50, 0 }, |
| 1663 | { "-no-init-file", 0, 50, 0 }, | 1665 | { "-no-init-file", 0, 50, 0 }, |
| 1666 | { "-no-x-resources", "--no-x-resources", 40, 0 }, | ||
| 1664 | { "-no-site-file", "--no-site-file", 40, 0 }, | 1667 | { "-no-site-file", "--no-site-file", 40, 0 }, |
| 1665 | { "-u", "--user", 30, 1 }, | 1668 | { "-u", "--user", 30, 1 }, |
| 1666 | { "-user", 0, 30, 1 }, | 1669 | { "-user", 0, 30, 1 }, |