diff options
| author | Andreas Schwab | 2004-02-08 22:38:51 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-02-08 22:38:51 +0000 |
| commit | 60a8f9289440a7fa0dcdcb1e3e3ae9af583accd8 (patch) | |
| tree | 7660aa500af1574e146b1df78d36d54176add304 | |
| parent | e314af72c88228cbc5ca6974029292f99676ce69 (diff) | |
| download | emacs-60a8f9289440a7fa0dcdcb1e3e3ae9af583accd8.tar.gz emacs-60a8f9289440a7fa0dcdcb1e3e3ae9af583accd8.zip | |
(dired-do-query-replace-regexp): Add missing
format string argument.
| -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 @@ | |||
| 1 | ;;; dired-aux.el --- less commonly used parts of dired -*-byte-compile-dynamic: t;-*- | 1 | ;;; dired-aux.el --- less commonly used parts of dired -*-byte-compile-dynamic: t;-*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985, 1986, 1992, 1994, 1998, 2000, 2001 | 3 | ;; Copyright (C) 1985, 1986, 1992, 1994, 1998, 2000, 2001, 2004 |
| 4 | ;; Free Software Foundation, Inc. | 4 | ;; Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>. | 6 | ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>. |
| @@ -2114,7 +2114,7 @@ with the command \\[tags-loop-continue]." | |||
| 2114 | (let ((buffer (get-file-buffer file))) | 2114 | (let ((buffer (get-file-buffer file))) |
| 2115 | (if (and buffer (with-current-buffer buffer | 2115 | (if (and buffer (with-current-buffer buffer |
| 2116 | buffer-read-only)) | 2116 | buffer-read-only)) |
| 2117 | (error "File `%s' is visited read-only")))) | 2117 | (error "File `%s' is visited read-only" file)))) |
| 2118 | (tags-query-replace from to delimited | 2118 | (tags-query-replace from to delimited |
| 2119 | '(dired-get-marked-files nil nil 'dired-nondirectory-p))) | 2119 | '(dired-get-marked-files nil nil 'dired-nondirectory-p))) |
| 2120 | 2120 | ||