changeset 109486:03b090e66a1a

* term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 22 Jul 2010 13:09:52 +0200
parents bb9894b5234f
children 2d68a79d5213
files lisp/ChangeLog lisp/term/vt100.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Jul 21 11:37:35 2010 +0200
+++ b/lisp/ChangeLog	Thu Jul 22 13:09:52 2010 +0200
@@ -1,3 +1,7 @@
+2010-07-22  Lawrence Mitchell  <wence@gmx.li>
+
+	* term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
+
 2010-07-21  Michael Albinus  <michael.albinus@gmx.de>
 
 	* net/tramp.el (tramp-get-ls-command)
--- a/lisp/term/vt100.el	Wed Jul 21 11:37:35 2010 +0200
+++ b/lisp/term/vt100.el	Thu Jul 22 13:09:52 2010 +0200
@@ -45,7 +45,7 @@
   "Toggle 132/80 column mode for vt100s.
 With positive argument, switch to 132-column mode.
 With negative argument, switch to 80-column mode."
-  :global t :initial-value (= (frame-width) 132)
+  :global t :init-value (= (frame-width) 132)
   (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
   (set-frame-width terminal-frame (if vt100-wide-mode 132 80)))