summaryrefslogtreecommitdiff
path: root/lisp/bookmark.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-25 00:59:34 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-25 00:59:34 +0000
commitbd0e5b36b9bb2b3402252fb78c43505948b79fc1 (patch)
tree51365d5f9ae086c5e2038efb1901ab7f3e333cad /lisp/bookmark.el
parent4bf785ba7e527fc2f82360c322dcfaa1dd367439 (diff)
downloademacs-bd0e5b36b9bb2b3402252fb78c43505948b79fc1.tar.gz
(bookmark-write-file, bookmark-load): Delete format call inside message.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r--lisp/bookmark.el8
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))))