diff options
| author | Masatake YAMATO | 2005-10-25 12:02:47 +0000 |
|---|---|---|
| committer | Masatake YAMATO | 2005-10-25 12:02:47 +0000 |
| commit | fc50a3be61dca43ffe9a855b4679a42d91c33ead (patch) | |
| tree | 94357a6bc36d74ca32d1f99e0027ddb67b3a286e | |
| parent | c7b5b94b1f537bf6d178c9af6101d83fa28b0c06 (diff) | |
| download | emacs-fc50a3be61dca43ffe9a855b4679a42d91c33ead.tar.gz emacs-fc50a3be61dca43ffe9a855b4679a42d91c33ead.zip | |
(dired-virtual): Don't use `dired-insert-headerline'.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/dired-x.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d95571394d5..c38eb58672c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-10-25 Masatake YAMATO <jet@gyve.org> | ||
| 2 | |||
| 3 | * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'. | ||
| 4 | |||
| 1 | 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change) | 5 | 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change) |
| 2 | 6 | ||
| 3 | * play/blackbox.el (blackbox-redefine-key): New function. | 7 | * play/blackbox.el (blackbox-redefine-key): New function. |
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index 50c52f0ab6b..7c6adbe8448 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el | |||
| @@ -678,7 +678,9 @@ you can relist single subdirs using \\[dired-do-redisplay]." | |||
| 678 | ;; decent subdir headerline: | 678 | ;; decent subdir headerline: |
| 679 | (goto-char (point-min)) | 679 | (goto-char (point-min)) |
| 680 | (or (looking-at dired-subdir-regexp) | 680 | (or (looking-at dired-subdir-regexp) |
| 681 | (dired-insert-headerline default-directory)) | 681 | (insert " " |
| 682 | (directory-file-name (file-name-directory default-directory)) | ||
| 683 | ":\n")) | ||
| 682 | (dired-mode dirname (or switches dired-listing-switches)) | 684 | (dired-mode dirname (or switches dired-listing-switches)) |
| 683 | (setq mode-name "Virtual Dired" | 685 | (setq mode-name "Virtual Dired" |
| 684 | revert-buffer-function 'dired-virtual-revert) | 686 | revert-buffer-function 'dired-virtual-revert) |