diff options
-rw-r--r-- | lisp/bookmark.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index a2a712348de..0bc2688537e 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -333,8 +333,9 @@ one element from `bookmark-alist'." "Return the bookmark record corresponding to BOOKMARK-NAME-OR-RECORD. If BOOKMARK-NAME-OR-RECORD is a string, look for the corresponding bookmark record in `bookmark-alist'; return it if found, otherwise -error. Else if BOOKMARK-NAME-OR-RECORD is already a bookmark record, -just return it." +error. If optional argument NOERROR is non-nil, return nil +instead of signaling an error. Else if BOOKMARK-NAME-OR-RECORD +is already a bookmark record, just return it." (cond ((consp bookmark-name-or-record) bookmark-name-or-record) ((stringp bookmark-name-or-record) |