diff options
| author | Richard M. Stallman | 2002-11-18 04:56:45 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-11-18 04:56:45 +0000 |
| commit | 63fe0a9878c648687441fd23fda374cc97cbf01e (patch) | |
| tree | 2aadeaac8bfe1cf18d286938f5952eab1b6669f3 | |
| parent | 4cd9f28262057a3c8911b75c114fde0d355f603c (diff) | |
| download | emacs-63fe0a9878c648687441fd23fda374cc97cbf01e.tar.gz emacs-63fe0a9878c648687441fd23fda374cc97cbf01e.zip | |
(finder-commentary): Use buffer *Finder-package*.
| -rw-r--r-- | lisp/finder.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/finder.el b/lisp/finder.el index fe3460b2169..7aaf99b811e 100644 --- a/lisp/finder.el +++ b/lisp/finder.el | |||
| @@ -273,7 +273,9 @@ FILE should be in a form suitable for passing to `locate-library'." | |||
| 273 | (let* ((str (lm-commentary (find-library-name file)))) | 273 | (let* ((str (lm-commentary (find-library-name file)))) |
| 274 | (if (null str) | 274 | (if (null str) |
| 275 | (error "Can't find any Commentary section")) | 275 | (error "Can't find any Commentary section")) |
| 276 | (pop-to-buffer "*Finder*") | 276 | ;; This used to use *Finder* but that would clobber the |
| 277 | ;; directory of categories. | ||
| 278 | (pop-to-buffer "*Finder-package*") | ||
| 277 | (setq buffer-read-only nil) | 279 | (setq buffer-read-only nil) |
| 278 | (erase-buffer) | 280 | (erase-buffer) |
| 279 | (insert str) | 281 | (insert str) |