We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 062da70 commit 67903f5Copy full SHA for 67903f5
lisp/bookmark.el
@@ -1678,7 +1678,8 @@ for a file, defaulting to the file defined by variable
1678
;; Rather than a single call to `pp' we make one per bookmark.
1679
;; Apparently `pp' has a poor algorithmic complexity, so this
1680
;; scales a lot better. bug#4485.
1681
- (dolist (i bookmark-alist) (pp i (current-buffer)))
+ (let ((pp-default-function #'pp-28))
1682
+ (dolist (i bookmark-alist) (pp i (current-buffer))))
1683
(insert ")\n")
1684
;; Make sure the specified encoding can safely encode the
1685
;; bookmarks. If it cannot, suggest utf-8-emacs as default.
0 commit comments