diff options
| author | David Biesack | 2013-02-13 23:50:57 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-02-13 23:50:57 -0800 |
| commit | 3ca2c0150d5e482b62d368cf1633ff1587af6ce0 (patch) | |
| tree | 01674bd0e64043033a4e1ca456f8522f6d2c06cf | |
| parent | 71a048c16b1a3c8708c161b38e52155b77d0ea60 (diff) | |
| download | emacs-3ca2c0150d5e482b62d368cf1633ff1587af6ce0.tar.gz emacs-3ca2c0150d5e482b62d368cf1633ff1587af6ce0.zip | |
* net/quickurl.el (quickurl-save-urls): Ensure quickurl-urls is not truncated
on printing.
Fixes: debbugs:9276
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/quickurl.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6daf062814e..362567cbe41 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change) | ||
| 2 | |||
| 3 | * net/quickurl.el (quickurl-save-urls): | ||
| 4 | Ensure quickurl-urls is not truncated on printing. (Bug#9276) | ||
| 5 | |||
| 1 | 2013-02-14 Dmitry Gutov <dgutov@yandex.ru> | 6 | 2013-02-14 Dmitry Gutov <dgutov@yandex.ru> |
| 2 | 7 | ||
| 3 | * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase | 8 | * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase |
diff --git a/lisp/net/quickurl.el b/lisp/net/quickurl.el index ce9ef55f499..1de9feb1341 100644 --- a/lisp/net/quickurl.el +++ b/lisp/net/quickurl.el | |||
| @@ -272,7 +272,8 @@ It also restores point after the `read'." | |||
| 272 | (defun quickurl-save-urls () | 272 | (defun quickurl-save-urls () |
| 273 | "Save the contents of `quickurl-urls' to `quickurl-url-file'." | 273 | "Save the contents of `quickurl-urls' to `quickurl-url-file'." |
| 274 | (with-temp-buffer | 274 | (with-temp-buffer |
| 275 | (let ((standard-output (current-buffer))) | 275 | (let ((standard-output (current-buffer)) |
| 276 | (print-length nil)) | ||
| 276 | (princ quickurl-prefix) | 277 | (princ quickurl-prefix) |
| 277 | (pp quickurl-urls) | 278 | (pp quickurl-urls) |
| 278 | (princ quickurl-postfix) | 279 | (princ quickurl-postfix) |