From 9dfcb52e0be6b6bb8b7a3b9cd3f827ceb2d087f6 Mon Sep 17 00:00:00 2001 From: Karl Fogel Date: Fri, 7 Mar 2008 17:03:37 +0000 Subject: [PATCH] * emacs-cvs/lisp/bookmark.el (bookmark-set): Make `bookmark-make-record-function' buffer-local, not `bookmark-make-cell-function' (the old name). --- lisp/ChangeLog | 5 +++++ lisp/bookmark.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * bookmark.el (bookmark-set): Make `bookmark-make-record-function' + buffer-local, not `bookmark-make-cell-function' (the old name). + 2008-03-07 Tassilo Horn * 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")) -- 2.11.4.GIT