Mercurial > emacs
changeset 23225:17a79bc7bfe1
(dired-mark-files-containing-regexp): Fix previous change.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 10 Sep 1998 15:46:18 +0000 |
parents | b3821a9c2873 |
children | f16c96435677 |
files | lisp/dired.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/dired.el Thu Sep 10 15:45:17 1998 +0000 +++ b/lisp/dired.el Thu Sep 10 15:46:18 1998 +0000 @@ -2175,7 +2175,7 @@ (goto-char (point-min)) (re-search-forward regexp nil t))) (with-temp-buffer - (insert-buffer-contents fn) + (insert-file-contents fn) (goto-char (point-min)) (re-search-forward regexp nil t)))) )))