# HG changeset patch # User Karl Heuer # Date 905442378 0 # Node ID 17a79bc7bfe132a2fb4c464c1b7088b951cba4aa # Parent b3821a9c287309ea124cc04ea6ea2113814c9178 (dired-mark-files-containing-regexp): Fix previous change. diff -r b3821a9c2873 -r 17a79bc7bfe1 lisp/dired.el --- 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)))) )))