mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Ignore print-length and print-level while formatting url-cookie data.
* lisp/url/url-cookie.el (url-cookie-write-file): Let-bind print-length and print-level to nil to avoid writing a garbled list. Fixes: debbugs:16805
This commit is contained in:
parent
ca80ebc736
commit
22441b69cb
2 changed files with 9 additions and 3 deletions
|
|
@ -104,9 +104,10 @@ telling Microsoft that."
|
|||
(insert ";; Emacs-W3 HTTP cookies file\n"
|
||||
";; Automatically generated file!!! DO NOT EDIT!!!\n\n"
|
||||
"(setq url-cookie-storage\n '")
|
||||
(pp url-cookie-storage (current-buffer))
|
||||
(insert ")\n(setq url-cookie-secure-storage\n '")
|
||||
(pp url-cookie-secure-storage (current-buffer))
|
||||
(let ((print-length nil) (print-level nil))
|
||||
(pp url-cookie-storage (current-buffer))
|
||||
(insert ")\n(setq url-cookie-secure-storage\n '")
|
||||
(pp url-cookie-secure-storage (current-buffer)))
|
||||
(insert ")\n")
|
||||
(insert "\n;; Local Variables:\n"
|
||||
";; version-control: never\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue