diff options
author | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:38:51 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:38:51 +0000 |
commit | 60a8f9289440a7fa0dcdcb1e3e3ae9af583accd8 (patch) | |
tree | 7660aa500af1574e146b1df78d36d54176add304 /lisp/dired-aux.el | |
parent | e314af72c88228cbc5ca6974029292f99676ce69 (diff) | |
download | emacs-60a8f9289440a7fa0dcdcb1e3e3ae9af583accd8.tar.gz |
(dired-do-query-replace-regexp): Add missing
format string argument.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r-- | lisp/dired-aux.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 0a3fa220248..fe8e33cfd48 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -1,6 +1,6 @@ ;;; dired-aux.el --- less commonly used parts of dired -*-byte-compile-dynamic: t;-*- -;; Copyright (C) 1985, 1986, 1992, 1994, 1998, 2000, 2001 +;; Copyright (C) 1985, 1986, 1992, 1994, 1998, 2000, 2001, 2004 ;; Free Software Foundation, Inc. ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>. @@ -2114,7 +2114,7 @@ with the command \\[tags-loop-continue]." (let ((buffer (get-file-buffer file))) (if (and buffer (with-current-buffer buffer buffer-read-only)) - (error "File `%s' is visited read-only")))) + (error "File `%s' is visited read-only" file)))) (tags-query-replace from to delimited '(dired-get-marked-files nil nil 'dired-nondirectory-p))) |