]> git.eshelyaron.com Git - emacs.git/commitdiff
* bookmark.el (bookmark-maybe-message): New function to reduce code
authorKarl Fogel <kfogel@red-bean.com>
Sat, 12 Nov 2005 20:46:10 +0000 (20:46 +0000)
committerKarl Fogel <kfogel@red-bean.com>
Sat, 12 Nov 2005 20:46:10 +0000 (20:46 +0000)
  duplication: invokes `message' iff baud-rate is high enough.
  (bookmark-write-file): Use above instead of an inline conditional.
  (bookmark-load): Same.

lisp/ChangeLog
lisp/bookmark.el

index bc3bca39cc6f98f1c7331ba1e70dd54fe6168a30..ad73cf38f39a2e62bfb5d907ea152ee50125694b 100644 (file)
@@ -1,3 +1,10 @@
+2005-11-12  Karl Fogel  <kfogel@red-bean.com>
+       
+       * bookmark.el (bookmark-maybe-message): New function to reduce
+       code duplication: invokes `message' iff baud-rate is high enough. 
+       (bookmark-write-file): Use above instead of an inline conditional.
+       (bookmark-load): Same.
+       
 2005-11-12  Karl Fogel  <kfogel@red-bean.com>
 
        * bookmark.el (bookmark-write-file): Don't visit the destination
index de1bb4f6a6c94781b6c2aad3e267de65d453071e..316164694543a4e3b1dccd08d5f49a841705ee9a 100644 (file)
@@ -716,6 +716,14 @@ This expects to be called from `point-min' in a bookmark file."
 
 ;;; end file-format stuff
 
+\f
+;;; Generic helpers.
+
+(defun bookmark-maybe-message (fmt &rest args)
+  "Apply `message' to FMT and ARGS, but only if the display is fast enough."
+  (if (>= baud-rate 9600)
+      (apply 'message fmt args)))
+
 \f
 ;;; Core code:
 
@@ -1350,8 +1358,7 @@ for a file, defaulting to the file defined by variable
 (defun bookmark-write-file (file)
   (save-excursion
     (save-window-excursion
-      (if (>= baud-rate 9600)
-          (message "Saving bookmarks to file %s..." file))
+      (bookmark-maybe-message "Saving bookmarks to file %s..." file)
       (set-buffer (get-buffer-create " *Bookmarks*"))
       (goto-char (point-min))
       (delete-region (point-min) (point-max))
@@ -1370,8 +1377,8 @@ for a file, defaulting to the file defined by variable
               (write-region (point-min) (point-max) file)
             (file-error (message "Can't write %s" file)))
          (kill-buffer (current-buffer))
-         (if (>= baud-rate 9600)
-             (message "Saving bookmarks to file %s...done" file)))))))
+          (bookmark-maybe-message
+           "Saving bookmarks to file %s...done" file))))))
 
 
 (defun bookmark-import-new-list (new-list)
@@ -1437,8 +1444,8 @@ method buffers use to resolve name collisions."
   (if (file-readable-p file)
       (save-excursion
         (save-window-excursion
-          (if (and (null no-msg) (>= baud-rate 9600))
-              (message "Loading bookmarks from %s..." file))
+          (if (null no-msg)
+              (bookmark-maybe-message "Loading bookmarks from %s..." file))
           (set-buffer (let ((enable-local-variables nil))
                         (find-file-noselect file)))
           (goto-char (point-min))
@@ -1461,8 +1468,8 @@ method buffers use to resolve name collisions."
                   (bookmark-bmenu-surreptitiously-rebuild-list))
               (error "Invalid bookmark list in %s" file)))
           (kill-buffer (current-buffer)))
-       (if (and (null no-msg) (>= baud-rate 9600))
-            (message "Loading bookmarks from %s...done" file)))
+       (if (null no-msg)
+            (bookmark-maybe-message "Loading bookmarks from %s...done" file)))
     (error "Cannot read bookmark file %s" file)))