;;; Taken from .emacs.el Mon Jun 12 21:33:40 1995 AED, and rewritten with (let... (defun flip-flop-and-change-windows () "Swap window sizes; move into the other window. This function enables one to have two windows visible, but with one reduced to two lines." (interactive) (let ((current-window-height (window-height)) (new-window-height nil) (delta-window-height nil)) (other-window 1) (setq new-window-height (window-height)) (setq delta-window-height (- current-window-height new-window-height)) (enlarge-window delta-window-height)))