Function: 2C-enlarge-window-horizontally

2C-enlarge-window-horizontally is an interactive and byte-compiled function defined in two-column.el.gz.

Signature

(2C-enlarge-window-horizontally ARG)

Documentation

Make current window ARG columns wider.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/two-column.el.gz
(defun 2C-enlarge-window-horizontally (arg)
  "Make current window ARG columns wider."
  (interactive "p")
  (enlarge-window arg t)
  (and (2C-other)
       (setq 2C-window-width (+ 2C-window-width arg))
       (set-buffer (2C-other))
       (setq 2C-window-width (- 2C-window-width arg))))