summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-03-05 12:57:16 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-03-05 12:57:16 +0000
commitd52d0ae8af9000396e685d85be69abbe1ae19ea5 (patch)
tree3fd1b0feb22d926dd99f8b87e78c140652966d69
parentbcbeac8c54f8e87a30684b88a8c00beb061f6871 (diff)
downloademacs-d52d0ae8af9000396e685d85be69abbe1ae19ea5.tar.gz
(command-line-x-option-alist): Make --border-color set the border-color
attribute, not border-width.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/startup.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7e2c66ac8d0..af4afdd5807 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-05 Juanma Barranquero <lektu@terra.es>
+
+ * startup.el (command-line-x-option-alist): Make --border-color set
+ the border-color attribute, not border-width.
+
2003-03-04 Rob Kaut <rob@siworks.com> (tiny change)
* progmodes/vhdl-mode.el (vhdl-comment-uncomment-region): Remove
diff --git a/lisp/startup.el b/lisp/startup.el
index 0d9687e1558..a9f2ffff405 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -225,7 +225,7 @@ This is normally copied from `default-directory' when Emacs starts.")
("--cursor-color" 1 x-handle-switch cursor-color)
("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t)
("--line-spacing" 1 x-handle-numeric-switch line-spacing)
- ("--border-color" 1 x-handle-switch border-width))
+ ("--border-color" 1 x-handle-switch border-color))
"Alist of X Windows options.
Each element has the form
(NAME NUMARGS HANDLER FRAME-PARAM VALUE)