view lisp/term/vt200.el @ 2442:f692546797f9

(map-y-or-n-p): Make bindings of user-defined keys be each a vector containing the user's binding, rather than 'user. Check (vectorp DEF) and call the vector's elt, rather than checking (eq 'user DEF) and calling something completely random.
author Roland McGrath <roland@gnu.org>
date Wed, 31 Mar 1993 22:20:33 +0000
parents c2dbf1fe0506
children e010fc52b552
line wrap: on
line source

(defun terminal-80-columns ()
  (interactive)
  (send-string-to-terminal "\033[?3l")
  (set-frame-width 80))

(defun terminal-132-columns ()
  (interactive)
  (send-string-to-terminal "\033[?3h")
  (set-frame-width 132))