* term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).

This commit is contained in:
Lawrence Mitchell 2010-07-22 13:09:52 +02:00 committed by Juanma Barranquero
parent a917e3f2ce
commit 47d2734f62
2 changed files with 5 additions and 1 deletions

View file

@ -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)

View file

@ -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)))