Mercurial > emacs
diff lisp/buff-menu.el @ 735:ea0823fe7df5
*** empty log message ***
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Thu, 02 Jul 1992 02:36:29 +0000 |
parents | 8a533acedb77 |
children | 0276f8eb306f |
line wrap: on
line diff
--- a/lisp/buff-menu.el Tue Jun 30 22:41:21 1992 +0000 +++ b/lisp/buff-menu.el Thu Jul 02 02:36:29 1992 +0000 @@ -1,12 +1,12 @@ ;;; buff-menu.el --- buffer menu main function and support functions. -;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 1, or (at your option) +;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, @@ -33,6 +33,7 @@ (define-key Buffer-menu-mode-map "1" 'Buffer-menu-1-window) (define-key Buffer-menu-mode-map "f" 'Buffer-menu-this-window) (define-key Buffer-menu-mode-map "o" 'Buffer-menu-other-window) + (define-key Buffer-menu-mode-map "\C-o" 'Buffer-menu-switch-other-window) (define-key Buffer-menu-mode-map "s" 'Buffer-menu-save) (define-key Buffer-menu-mode-map "d" 'Buffer-menu-delete) (define-key Buffer-menu-mode-map "k" 'Buffer-menu-delete) @@ -66,6 +67,7 @@ \\[Buffer-menu-this-window] -- select that buffer in place of the buffer menu buffer. \\[Buffer-menu-other-window] -- select that buffer in another window, so the buffer menu buffer remains visible in its window. +\\[Buffer-menu-switch-other-window] -- switch the other window to this buffer. \\[Buffer-menu-visit-tags-table] -- visit-tags-table this buffer. \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer. \\[Buffer-menu-save] -- mark that buffer to be saved, and move down. @@ -274,6 +276,12 @@ (interactive) (switch-to-buffer-other-window (Buffer-menu-buffer t))) +(defun Buffer-menu-switch-other-window () + "Make the other window select this line's buffer. +The current window remains selected." + (interactive) + (display-buffer (Buffer-menu-buffer t))) + (defun Buffer-menu-2-window () "Select this line's buffer, with previous buffer in second window." (interactive)