diff options
| author | Karl Heuer | 1996-01-25 00:59:34 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 00:59:34 +0000 |
| commit | bd0e5b36b9bb2b3402252fb78c43505948b79fc1 (patch) | |
| tree | 51365d5f9ae086c5e2038efb1901ab7f3e333cad | |
| parent | 4bf785ba7e527fc2f82360c322dcfaa1dd367439 (diff) | |
| download | emacs-bd0e5b36b9bb2b3402252fb78c43505948b79fc1.tar.gz emacs-bd0e5b36b9bb2b3402252fb78c43505948b79fc1.zip | |
(bookmark-write-file, bookmark-load): Delete format call inside message.
| -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 | |||
| 1312 | (save-excursion | 1312 | (save-excursion |
| 1313 | (save-window-excursion | 1313 | (save-window-excursion |
| 1314 | (if (>= baud-rate 9600) | 1314 | (if (>= baud-rate 9600) |
| 1315 | (message (format "Saving bookmarks to file %s..." file))) | 1315 | (message "Saving bookmarks to file %s..." file)) |
| 1316 | (set-buffer (let ((enable-local-variables nil)) | 1316 | (set-buffer (let ((enable-local-variables nil)) |
| 1317 | (find-file-noselect file))) | 1317 | (find-file-noselect file))) |
| 1318 | (goto-char (point-min)) | 1318 | (goto-char (point-min)) |
| @@ -1329,7 +1329,7 @@ for a file, defaulting to the file defined by variable | |||
| 1329 | (write-file file) | 1329 | (write-file file) |
| 1330 | (kill-buffer (current-buffer)) | 1330 | (kill-buffer (current-buffer)) |
| 1331 | (if (>= baud-rate 9600) | 1331 | (if (>= baud-rate 9600) |
| 1332 | (message (format "Saving bookmarks to file %s...done" file))) | 1332 | (message "Saving bookmarks to file %s...done" file)) |
| 1333 | )))) | 1333 | )))) |
| 1334 | 1334 | ||
| 1335 | 1335 | ||
| @@ -1360,7 +1360,7 @@ explicitly." | |||
| 1360 | (save-excursion | 1360 | (save-excursion |
| 1361 | (save-window-excursion | 1361 | (save-window-excursion |
| 1362 | (if (and (null no-msg) (>= baud-rate 9600)) | 1362 | (if (and (null no-msg) (>= baud-rate 9600)) |
| 1363 | (message (format "Loading bookmarks from %s..." file))) | 1363 | (message "Loading bookmarks from %s..." file)) |
| 1364 | (set-buffer (let ((enable-local-variables nil)) | 1364 | (set-buffer (let ((enable-local-variables nil)) |
| 1365 | (find-file-noselect file))) | 1365 | (find-file-noselect file))) |
| 1366 | (goto-char (point-min)) | 1366 | (goto-char (point-min)) |
| @@ -1378,7 +1378,7 @@ explicitly." | |||
| 1378 | (error (format "Invalid bookmark list in %s." file)))) | 1378 | (error (format "Invalid bookmark list in %s." file)))) |
| 1379 | (kill-buffer (current-buffer))) | 1379 | (kill-buffer (current-buffer))) |
| 1380 | (if (and (null no-msg) (>= baud-rate 9600)) | 1380 | (if (and (null no-msg) (>= baud-rate 9600)) |
| 1381 | (message (format "Loading bookmarks from %s...done" file)))) | 1381 | (message "Loading bookmarks from %s...done" file))) |
| 1382 | (error (format "Cannot read bookmark file %s." file)))) | 1382 | (error (format "Cannot read bookmark file %s." file)))) |
| 1383 | 1383 | ||
| 1384 | 1384 | ||