Function: 2C-other
2C-other is a byte-compiled function defined in two-column.el.gz.
Signature
(2C-other &optional REQ)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/two-column.el.gz
;;;;; base functions ;;;;;
;; The access method for the other buffer. This tries to remedy against
;; lost local variables and lost buffers.
(defun 2C-other (&optional req)
(or (if 2C-mode
(or (prog1
(marker-buffer 2C-mode)
(setq mode-line-format 2C-mode-line-format))
;; The associated buffer somehow got killed.
(progn
;; The other variables may later be useful if the user
;; reestablishes the association.
(kill-local-variable '2C-mode)
(kill-local-variable 'mode-line-format)
nil)))
(if req (error "You must first set two-column minor mode"))))