From bd0e5b36b9bb2b3402252fb78c43505948b79fc1 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 25 Jan 1996 00:59:34 +0000 Subject: [PATCH] (bookmark-write-file, bookmark-load): Delete format call inside message. --- lisp/bookmark.el | 8 ++++---- 1 file 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)))) -- 2.39.2