emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111778: * net/quickurl.el (quickurl-


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111778: * net/quickurl.el (quickurl-save-urls): Ensure quickurl-urls is not truncated
Date: Wed, 13 Feb 2013 23:50:57 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111778
fixes bug: http://debbugs.gnu.org/9276
author: David Biesack <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2013-02-13 23:50:57 -0800
message:
  * net/quickurl.el (quickurl-save-urls): Ensure quickurl-urls is not truncated
  on printing.
modified:
  lisp/ChangeLog
  lisp/net/quickurl.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-14 05:45:33 +0000
+++ b/lisp/ChangeLog    2013-02-14 07:50:57 +0000
@@ -1,3 +1,8 @@
+2013-02-14  David Biesack  <address@hidden>  (tiny change)
+
+       * net/quickurl.el (quickurl-save-urls):
+       Ensure quickurl-urls is not truncated on printing.  (Bug#9276)
+
 2013-02-14  Dmitry Gutov  <address@hidden>
 
        * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase

=== modified file 'lisp/net/quickurl.el'
--- a/lisp/net/quickurl.el      2013-01-01 09:11:05 +0000
+++ b/lisp/net/quickurl.el      2013-02-14 07:50:57 +0000
@@ -272,7 +272,8 @@
 (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]