(rmail-get-labels): Obey the MSG argument.
authorChong Yidong <cyd@stupidchicken.com>
Fri, 23 Jan 2009 19:02:24 +0000 (19:02 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 23 Jan 2009 19:02:24 +0000 (19:02 +0000)
lisp/mail/rmail.el

index dac0644..19f32ef 100644 (file)
@@ -2055,11 +2055,12 @@ If nil, that means the current message."
 It is put in comma-separated form.
 MSG, if non-nil, identifies the message number to use.
 If nil, that means the current message."
+  (or msg (setq msg rmail-current-message))
   (let (blurb attr-names keywords)
     ;; Combine the message attributes and keywords 
     ;; into a comma-separated list.
-    (setq attr-names (rmail-get-attr-names rmail-current-message)
-         keywords (rmail-get-keywords rmail-current-message))
+    (setq attr-names (rmail-get-attr-names msg)
+         keywords (rmail-get-keywords msg))
     (if (string= keywords "")
        (setq keywords nil))
     (cond