diff options
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/bookmark.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 00561fa2560..d6d0a08451b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-03-07 Karl Fogel <kfogel@red-bean.com> + + * bookmark.el (bookmark-set): Make `bookmark-make-record-function' + buffer-local, not `bookmark-make-cell-function' (the old name). + 2008-03-07 Tassilo Horn <tassilo@member.fsf.org> * doc-view.el (doc-view-bookmark-make-record): Delete obsolete diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 9badaed7f12..3d5db0de53c 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -738,7 +738,7 @@ and it removes only the first instance of a bookmark with that name from the list of bookmarks.\)" (interactive (list nil current-prefix-arg)) (or - (local-variable-p 'bookmark-make-cell-function) + (local-variable-p 'bookmark-make-record-function) (bookmark-buffer-file-name) (error "Buffer not visiting a file or directory")) |