aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLawrence Mitchell2010-07-22 13:09:52 +0200
committerJuanma Barranquero2010-07-22 13:09:52 +0200
commit47d2734f62f57ca04ee58b2d124dc74b84e816d8 (patch)
treebcc359792eead74196625c3d92b1ef1a45a50d17
parenta917e3f2ce852d163be7a7b8716985ec956b6305 (diff)
downloademacs-47d2734f62f57ca04ee58b2d124dc74b84e816d8.tar.gz
emacs-47d2734f62f57ca04ee58b2d124dc74b84e816d8.zip
* term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/term/vt100.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5ead7c3856a..2ef5d1509c0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-07-22 Lawrence Mitchell <wence@gmx.li>
2
3 * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
4
12010-07-21 Michael Albinus <michael.albinus@gmx.de> 52010-07-21 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * net/tramp.el (tramp-get-ls-command) 7 * net/tramp.el (tramp-get-ls-command)
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 @@
45 "Toggle 132/80 column mode for vt100s. 45 "Toggle 132/80 column mode for vt100s.
46With positive argument, switch to 132-column mode. 46With positive argument, switch to 132-column mode.
47With negative argument, switch to 80-column mode." 47With negative argument, switch to 80-column mode."
48 :global t :initial-value (= (frame-width) 132) 48 :global t :init-value (= (frame-width) 132)
49 (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l")) 49 (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
50 (set-frame-width terminal-frame (if vt100-wide-mode 132 80))) 50 (set-frame-width terminal-frame (if vt100-wide-mode 132 80)))
51 51