diff options
author | Karl Fogel <kfogel@red-bean.com> | 2008-03-07 17:03:37 +0000 |
---|---|---|
committer | Karl Fogel <kfogel@red-bean.com> | 2008-03-07 17:03:37 +0000 |
commit | 9dfcb52e0be6b6bb8b7a3b9cd3f827ceb2d087f6 (patch) | |
tree | e9cafb5b907eb5f603d3492d7c78ce67dcb97ae9 /lisp | |
parent | 5daa568830d663ca1cd19c6ae679ee9472069885 (diff) | |
download | emacs-9dfcb52e0be6b6bb8b7a3b9cd3f827ceb2d087f6.tar.gz |
* emacs-cvs/lisp/bookmark.el
(bookmark-set): Make `bookmark-make-record-function' buffer-local,
not `bookmark-make-cell-function' (the old name).
Diffstat (limited to 'lisp')
-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")) |