Fix eww bookmark writing
* lisp/net/eww.el (eww-write-bookmarks): Ensure that the complete bookmarks are written (bug#54612).
This commit is contained in:
parent
0e662f33e1
commit
271c03d89f
1 changed files with 3 additions and 1 deletions
|
|
@ -2053,7 +2053,9 @@ If CHARSET is nil then use UTF-8."
|
|||
(defun eww-write-bookmarks ()
|
||||
(with-temp-file (expand-file-name "eww-bookmarks" eww-bookmarks-directory)
|
||||
(insert ";; Auto-generated file; don't edit -*- mode: lisp-data -*-\n")
|
||||
(pp eww-bookmarks (current-buffer))))
|
||||
(let ((print-length nil)
|
||||
(print-level nil))
|
||||
(pp eww-bookmarks (current-buffer)))))
|
||||
|
||||
(defun eww-read-bookmarks (&optional error-out)
|
||||
"Read bookmarks from `eww-bookmarks'.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue