* net/quickurl.el (quickurl-save-urls): Ensure quickurl-urls is not truncated

on printing.

Fixes: debbugs:9276
This commit is contained in:
David Biesack
2013-02-13 23:50:57 -08:00
committed by Glenn Morris
parent 71a048c16b
commit 3ca2c0150d
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
* net/quickurl.el (quickurl-save-urls):
Ensure quickurl-urls is not truncated on printing. (Bug#9276)
2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
* progmodes/ruby-mode.el (ruby-parse-partial): Don't increase

View File

@@ -272,7 +272,8 @@ It also restores point after the `read'."
(defun quickurl-save-urls ()
"Save the contents of `quickurl-urls' to `quickurl-url-file'."
(with-temp-buffer
(let ((standard-output (current-buffer)))
(let ((standard-output (current-buffer))
(print-length nil))
(princ quickurl-prefix)
(pp quickurl-urls)
(princ quickurl-postfix)