]> code.delx.au - gnu-emacs/commitdiff
* startup.el (command-line-x-option-alist): Removed options -i,
authorJan Djärv <jan.h.d@swipnet.se>
Sun, 9 Oct 2005 06:58:13 +0000 (06:58 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Sun, 9 Oct 2005 06:58:13 +0000 (06:58 +0000)
-itype, --icon-type, added -nb, --no-bitmap-icon

lisp/ChangeLog
lisp/startup.el

index 60649e23978c2803c8dd6767a19b4746fc84e77f..eb4a0f046c51e2437342d9754d129cf00a8adcb9 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-09  Jan Dj\e,Ad\e(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
index 450159b36f25209a2fbfd28dddc374078499006d..3315e7236fb9795f89c53b8d25dac20636a0d7ec 100644 (file)
@@ -121,8 +121,7 @@ This is normally copied from `default-directory' when Emacs starts.")
     ("-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 @@ This is normally copied from `default-directory' when Emacs starts.")
     ("--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)