summaryrefslogtreecommitdiff
path: root/lisp/term
diff options
context:
space:
mode:
authorLawrence Mitchell <wence@gmx.li>2010-07-22 13:09:52 +0200
committerJuanma Barranquero <lekktu@gmail.com>2010-07-22 13:09:52 +0200
commit47d2734f62f57ca04ee58b2d124dc74b84e816d8 (patch)
treebcc359792eead74196625c3d92b1ef1a45a50d17 /lisp/term
parenta917e3f2ce852d163be7a7b8716985ec956b6305 (diff)
* term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/vt100.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/vt100.el b/lisp/term/vt100.el
index 017c976ed51..24561fe835f 100644
--- a/lisp/term/vt100.el
+++ b/lisp/term/vt100.el
@@ -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)))