aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2011-08-13 10:55:53 +0200
committerAndreas Schwab2011-08-13 10:55:53 +0200
commit1bca59fe757d359e3c36d3de1c8ec19ed90be49c (patch)
tree74de5e3deb25e86209923f236538b4f32d0ee287
parent62f1ca498cf11a3fa9b707c115673ea7b298e957 (diff)
downloademacs-1bca59fe757d359e3c36d3de1c8ec19ed90be49c.tar.gz
emacs-1bca59fe757d359e3c36d3de1c8ec19ed90be49c.zip
* lisp/gnus/gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
copy-list.
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-score.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 8fc250d1dcb..660bc8966e7 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12011-08-13 Andreas Schwab <schwab@linux-m68k.org>
2
3 * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
4 copy-list.
5
12011-08-12 Sam Steingold <sds@gnu.org> 62011-08-12 Sam Steingold <sds@gnu.org>
2 7
3 * gnus-score.el (gnus-score-find-alist): Keep the score files already 8 * gnus-score.el (gnus-score-find-alist): Keep the score files already
diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el
index 099d06d6439..eb7234a811e 100644
--- a/lisp/gnus/gnus-score.el
+++ b/lisp/gnus/gnus-score.el
@@ -2864,7 +2864,7 @@ The list is determined from the variable `gnus-score-file-alist'."
2864 (when gnus-score-use-all-scores 2864 (when gnus-score-use-all-scores
2865 ;; Get the initial score files for this group. 2865 ;; Get the initial score files for this group.
2866 (when funcs 2866 (when funcs
2867 (setq score-files (copy-list (gnus-score-find-alist group)))) 2867 (setq score-files (copy-sequence (gnus-score-find-alist group))))
2868 ;; Add any home adapt files. 2868 ;; Add any home adapt files.
2869 (let ((home (gnus-home-score-file group t))) 2869 (let ((home (gnus-home-score-file group t)))
2870 (when home 2870 (when home