]> git.eshelyaron.com Git - emacs.git/commitdiff
; * bookmark.el: Minor cleanup
authorEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:36:30 +0000 (19:36 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:36:30 +0000 (19:36 +0100)
lisp/bookmark.el

index 197523256ad8f6edc3f31ee6c849355ad8c9e79e..53e8bf14fc4473bba522f84baa6ed718ae276f4d 100644 (file)
@@ -1505,16 +1505,10 @@ If called from menubar, select OLD-NAME from a menu and prompt for NEW-NAME."
   (if (bookmark-time-to-save-p)
       (bookmark-save)))
 
-
 ;;;###autoload
 (defun bookmark-insert (bookmark-name)
   "Insert the text of the file pointed to by bookmark BOOKMARK-NAME.
-BOOKMARK-NAME is a bookmark name (a string), not a bookmark record.
-
-You may have a problem using this function if the value of variable
-`bookmark-alist' is nil.  If that happens, you need to load in some
-bookmarks.  See help on function `bookmark-load' for more about
-this."
+BOOKMARK-NAME is a bookmark name (a string), not a bookmark record."
   (interactive (list (bookmark-completing-read "Insert bookmark contents")))
   (bookmark-maybe-load-default-file)
   (let ((orig-point (point))
@@ -1526,7 +1520,6 @@ this."
     (push-mark)
     (goto-char orig-point)))
 
-
 ;;;###autoload
 (defun bookmark-delete (bookmark-name &optional batch)
   "Delete BOOKMARK-NAME from the bookmark list.