Mercurial > emacs
changeset 65938:64dda345009b
* startup.el (command-line-x-option-alist): Removed options -i,
-itype, --icon-type, added -nb, --no-bitmap-icon
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Sun, 09 Oct 2005 06:58:13 +0000 |
parents | 019725b1d671 |
children | ba4c1a7f880b |
files | lisp/ChangeLog lisp/startup.el |
diffstat | 2 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Oct 09 06:57:00 2005 +0000 +++ b/lisp/ChangeLog Sun Oct 09 06:58:13 2005 +0000 @@ -1,3 +1,8 @@ +2005-10-09 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> + + * startup.el (command-line-x-option-alist): Removed options -i, + -itype, --icon-type, added -nb, --no-bitmap-icon + 2005-10-09 Nick Roberts <nickrob@snap.net.nz> * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
--- a/lisp/startup.el Sun Oct 09 06:57:00 2005 +0000 +++ b/lisp/startup.el Sun Oct 09 06:58:13 2005 +0000 @@ -121,8 +121,7 @@ ("-bg" 1 x-handle-switch background-color) ("-background" 1 x-handle-switch background-color) ("-ms" 1 x-handle-switch mouse-color) - ("-itype" 0 x-handle-switch icon-type t) - ("-i" 0 x-handle-switch icon-type t) + ("-nb" 0 x-handle-switch icon-type nil) ("-iconic" 0 x-handle-iconic) ("-xrm" 1 x-handle-xrm-switch) ("-cr" 1 x-handle-switch cursor-color) @@ -143,7 +142,7 @@ ("--foreground-color" 1 x-handle-switch foreground-color) ("--background-color" 1 x-handle-switch background-color) ("--mouse-color" 1 x-handle-switch mouse-color) - ("--icon-type" 0 x-handle-switch icon-type t) + ("--no-bitmap-icon" 0 x-handle-switch icon-type nil) ("--iconic" 0 x-handle-iconic) ("--xrm" 1 x-handle-xrm-switch) ("--cursor-color" 1 x-handle-switch cursor-color)