]> git.eshelyaron.com Git - emacs.git/commitdiff
(gnus-article-copy-string): Say what data we copied; (gnus-html-wash-tags): Remove...
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 4 Sep 2010 15:24:35 +0000 (15:24 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sat, 4 Sep 2010 15:24:35 +0000 (15:24 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-agent.el
lisp/gnus/gnus-art.el
lisp/gnus/gnus-html.el

index c18cf19aaedce249889b5985ac303e3cb67a30dc..d5cdb241bec088cfa4edd7fbaa87714a8c22ee57 100644 (file)
@@ -1,5 +1,13 @@
 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
+       files exist before trying to read them.
+
+       * gnus-html.el (gnus-html-wash-tags): Remove even more white space
+       around <pre_int>.
+
+       * gnus-art.el (gnus-article-copy-string): Say what data we copied.
+
        * nnmh.el (nnmh-request-list-1): Optimize for speed.
 
 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
index 96a62e61552feb971c086f08127ebda30bbb22f7..c5232819379f2f30d33992ce736374d77f6ff65e 100644 (file)
@@ -2108,13 +2108,15 @@ doesn't exist, to valid the overview buffer."
 (defun gnus-agent-load-alist (group)
   "Load the article-state alist for GROUP."
   ;; Bind free variable that's used in `gnus-agent-read-agentview'.
-  (let ((gnus-agent-read-agentview group)
-       (file-name-coding-system nnmail-pathname-coding-system))
-    (setq gnus-agent-article-alist
-          (gnus-cache-file-contents
-           (gnus-agent-article-name ".agentview" group)
-           'gnus-agent-file-loading-cache
-           'gnus-agent-read-agentview))))
+  (let* ((gnus-agent-read-agentview group)
+        (file-name-coding-system nnmail-pathname-coding-system)
+        (agentview (gnus-agent-article-name ".agentview" group)))
+    (when (file-exists-p agentview)
+      (setq gnus-agent-article-alist
+           (gnus-cache-file-contents
+            agentview
+            'gnus-agent-file-loading-cache
+            'gnus-agent-read-agentview)))))
 
 (defun gnus-agent-read-agentview (file)
   "Load FILE and do a `read' there."
index 944e65dfe8e5c810f643e7ca8e97ad81ebac8ace..bfdb9bd6b638d24bf315fd205f28aa763fae54da 100644 (file)
@@ -7949,7 +7949,8 @@ url is put as the `gnus-button-url' overlay property on the button."
     (when data
       (with-temp-buffer
        (insert data)
-       (copy-region-as-kill (point-min) (point-max))))))
+       (copy-region-as-kill (point-min) (point-max))
+       (message "Copied %s" data)))))
 
 ;;; Internal functions:
 
index e14d109d6ed35147041aef4f79e32bc7864ea35d..f7eb05bf8b7f95e4d6b0b0940dc90502911ff2e3 100644 (file)
@@ -112,7 +112,7 @@ fit these criteria."
 (defun gnus-html-wash-tags ()
   (let (tag parameters string start end images url)
     (goto-char (point-min))
-    (while (re-search-forward " *<pre_int> *</pre_int>\n" nil t)
+    (while (re-search-forward " *<pre_int> *</pre_int> *\n" nil t)
       (replace-match "" t t))
     (goto-char (point-min))
     (while (re-search-forward "<\\([^ />]+\\)\\([^>]*\\)>" nil t)