* net/quickurl.el (quickurl-save-urls): Ensure quickurl-urls is not truncated
on printing. Fixes: debbugs:9276
This commit is contained in:
committed by
Glenn Morris
parent
71a048c16b
commit
3ca2c0150d
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user