diff options
| author | Richard M. Stallman | 1995-01-13 08:24:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-13 08:24:35 +0000 |
| commit | 84b2b0a7f28531094247b8d15be60a52d24cdebd (patch) | |
| tree | a97c7452258276f745f259c829de7721e0c6cf0b | |
| parent | 0b03ce3a17259c56ed922ae5fe9776ec75cbb38b (diff) | |
| download | emacs-84b2b0a7f28531094247b8d15be60a52d24cdebd.tar.gz emacs-84b2b0a7f28531094247b8d15be60a52d24cdebd.zip | |
Fix previous change.
| -rw-r--r-- | lisp/buff-menu.el | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 7924e6a6a4a..e786fae147c 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el | |||
| @@ -485,15 +485,16 @@ The R column contains a % for buffers that are read-only." | |||
| 485 | (indent-to 27 1) | 485 | (indent-to 27 1) |
| 486 | (princ mode)) | 486 | (princ mode)) |
| 487 | (indent-to 40 1) | 487 | (indent-to 40 1) |
| 488 | (or file | ||
| 489 | ;; No visited file. Check local value of | ||
| 490 | ;; list-buffers-directory. | ||
| 491 | (save-excursion | ||
| 492 | (set-buffer buffer) | ||
| 493 | (if (and (boundp 'list-buffers-directory) | ||
| 494 | list-buffers-directory) | ||
| 495 | (setq file list-buffers-directory)))) | ||
| 488 | (if file | 496 | (if file |
| 489 | (princ file) | 497 | (princ file)) |
| 490 | ;; No visited file. Check local value of | ||
| 491 | ;; list-buffers-directory. | ||
| 492 | (save-excursion | ||
| 493 | (set-buffer buffer) | ||
| 494 | (if (and (boundp list-buffers-directory) | ||
| 495 | list-buffers-directory) | ||
| 496 | (princ list-buffers-directory)))) | ||
| 497 | (princ "\n")))) | 498 | (princ "\n")))) |
| 498 | (setq bl (cdr bl))))) | 499 | (setq bl (cdr bl))))) |
| 499 | ;; DESIRED-POINT doesn't have to be set; it is not when the | 500 | ;; DESIRED-POINT doesn't have to be set; it is not when the |