aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Verona2012-12-27 16:06:54 +0100
committerJoakim Verona2012-12-27 16:06:54 +0100
commit15411109575a2c1f29238ce050d15a3fd1e21446 (patch)
tree08a16de94f8d1f07413899eea78fee942522c3c4
parentf3400afa9a17b8e00af5b5472c986ee76815b3e8 (diff)
parente06151b3968dec667e35059f236bb24186d26ac9 (diff)
downloademacs-15411109575a2c1f29238ce050d15a3fd1e21446.tar.gz
emacs-15411109575a2c1f29238ce050d15a3fd1e21446.zip
auto upstream
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-msg.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 9968c82faeb..be531be941e 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12012-12-27 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
4 non-string posting styles (bug#13285).
5
12012-12-27 Glenn Morris <rgm@gnu.org> 62012-12-27 Glenn Morris <rgm@gnu.org>
2 7
3 * plstore.el (plstore-passphrase-callback-function): 8 * plstore.el (plstore-passphrase-callback-function):
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el
index 77bb6281bc4..c967bc06565 100644
--- a/lisp/gnus/gnus-msg.el
+++ b/lisp/gnus/gnus-msg.el
@@ -1384,7 +1384,8 @@ For the \"inline\" alternatives, also see the variable
1384 (dolist (style (if styles 1384 (dolist (style (if styles
1385 (append gnus-posting-styles (list (cons ".*" styles))) 1385 (append gnus-posting-styles (list (cons ".*" styles)))
1386 gnus-posting-styles)) 1386 gnus-posting-styles))
1387 (when (string-match (pop style) gnus-newsgroup-name) 1387 (when (and (stringp (car style))
1388 (string-match (pop style) gnus-newsgroup-name))
1388 (when (setq tem (cadr (assq 'name style))) 1389 (when (setq tem (cadr (assq 'name style)))
1389 (setq user-full-name tem)) 1390 (setq user-full-name tem))
1390 (when (setq tem (cadr (assq 'address style))) 1391 (when (setq tem (cadr (assq 'address style)))