diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-04-11 05:10:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-04-11 05:10:40 +0000 |
commit | 7775acb8ee2e35ccb8ce1838a232d046bc26341f (patch) | |
tree | af74b84b0767da259173da3567d5920d87cc8f94 /lisp/startup.el | |
parent | 3fed86ffd78e6fa03293d702ed1a1520f7f1dda5 (diff) | |
download | emacs-7775acb8ee2e35ccb8ce1838a232d046bc26341f.tar.gz |
(command-line-x-option-alist):
--title sets only the title. Allow -title as alias too.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 1fd2b37de67..2de8380c17b 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -164,6 +164,7 @@ This is normally copied from `default-directory' when Emacs starts.") ("-d" 1 x-handle-display) ("-display" 1 x-handle-display) ("-name" 1 x-handle-name-rn-switch) + ("-title" 1 x-handle-switch title) ("-rn" 1 x-handle-name-rn-switch) ("-T" 1 x-handle-switch name) ("-r" 0 x-handle-switch reverse t) @@ -191,7 +192,7 @@ This is normally copied from `default-directory' when Emacs starts.") ("--border-width" 1 x-handle-numeric-switch border-width) ("--display" 1 x-handle-display) ("--name" 1 x-handle-name-rn-switch) - ("--title" 1 x-handle-name-rn-switch) + ("--title" 1 x-handle-switch title) ("--reverse-video" 0 x-handle-switch reverse t) ("--font" 1 x-handle-switch font) ("--internal-border" 1 x-handle-numeric-switch internal-border-width) |