diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:59:34 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:59:34 +0000 |
commit | 66019557363d167b4485cae2b689562f6fad519f (patch) | |
tree | deb6b0beeed72d9b60babbd62851edc6465b7724 /lisp/bookmark.el | |
parent | 93c0e2779a11dde1064769ba12fb8bb44d6b151e (diff) | |
download | emacs-66019557363d167b4485cae2b689562f6fad519f.tar.gz |
(bookmark-write-file, bookmark-load): Delete format call inside message.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r-- | lisp/bookmark.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 119d3a7ee36..8759118191f 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -1312,7 +1312,7 @@ for a file, defaulting to the file defined by variable (save-excursion (save-window-excursion (if (>= baud-rate 9600) - (message (format "Saving bookmarks to file %s..." file))) + (message "Saving bookmarks to file %s..." file)) (set-buffer (let ((enable-local-variables nil)) (find-file-noselect file))) (goto-char (point-min)) @@ -1329,7 +1329,7 @@ for a file, defaulting to the file defined by variable (write-file file) (kill-buffer (current-buffer)) (if (>= baud-rate 9600) - (message (format "Saving bookmarks to file %s...done" file))) + (message "Saving bookmarks to file %s...done" file)) )))) @@ -1360,7 +1360,7 @@ explicitly." (save-excursion (save-window-excursion (if (and (null no-msg) (>= baud-rate 9600)) - (message (format "Loading bookmarks from %s..." file))) + (message "Loading bookmarks from %s..." file)) (set-buffer (let ((enable-local-variables nil)) (find-file-noselect file))) (goto-char (point-min)) @@ -1378,7 +1378,7 @@ explicitly." (error (format "Invalid bookmark list in %s." file)))) (kill-buffer (current-buffer))) (if (and (null no-msg) (>= baud-rate 9600)) - (message (format "Loading bookmarks from %s...done" file)))) + (message "Loading bookmarks from %s...done" file))) (error (format "Cannot read bookmark file %s." file)))) |