diff options
| author | Lars Ingebrigtsen <larsi@gnus.org> | 2012-02-20 09:07:54 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-02-20 09:07:54 +0000 |
| commit | e838e2ac2fa90fd579fa3816fe2216f7dc662bb4 (patch) | |
| tree | 1947b52a71622b12c1e030bdeaa55f0bba1bfd3a /lisp/gnus/gnus-msg.el | |
| parent | 1e54a73bf0dd19d2b7797d1648e9ee442a5a7bf1 (diff) | |
| download | emacs-e838e2ac2fa90fd579fa3816fe2216f7dc662bb4.tar.gz | |
gnus-msg.el: Fix bug with `C-u a' on topics (bug#10843)
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
| -rw-r--r-- | lisp/gnus/gnus-msg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index f92dc5e91d0..bf75f94c195 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -640,7 +640,7 @@ a news." (if (= 1 (prefix-numeric-value arg)) (gnus-group-completing-read "Newsgroup" nil (gnus-read-active-file-p)) - (gnus-group-group-name)) + (or (gnus-group-group-name) "")) "")) ;; make sure last viewed article doesn't affect posting styles: (gnus-article-copy)) |
