emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100863: * term/vt100.el (vt100-wide-


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100863: * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
Date: Thu, 22 Jul 2010 13:09:52 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100863
author: Lawrence Mitchell  <address@hidden>
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Thu 2010-07-22 13:09:52 +0200
message:
  * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
modified:
  lisp/ChangeLog
  lisp/term/vt100.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-07-21 04:40:47 +0000
+++ b/lisp/ChangeLog    2010-07-22 11:09:52 +0000
@@ -1,3 +1,7 @@
+2010-07-22  Lawrence Mitchell  <address@hidden>
+
+       * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
+
 2010-07-21  Michael Albinus  <address@hidden>
 
        * net/tramp.el (tramp-get-ls-command)

=== modified file 'lisp/term/vt100.el'
--- a/lisp/term/vt100.el        2010-05-03 02:29:46 +0000
+++ b/lisp/term/vt100.el        2010-07-22 11:09:52 +0000
@@ -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)))
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]