]> git.eshelyaron.com Git - emacs.git/commitdiff
Gnus format-message typo fix
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 25 Aug 2015 07:04:42 +0000 (00:04 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 25 Aug 2015 07:05:04 +0000 (00:05 -0700)
* lisp/gnus/gnus-util.el (gnus-format-message):
Fix typo when running in older Emacs.

lisp/gnus/gnus-util.el

index 8dd8ea95c04bd1626f2722a442adaca554bc92ff..54cf099e0781473954f9c45de71af70c874a990e 100644 (file)
@@ -1977,7 +1977,7 @@ to case differences."
 (if (fboundp 'format-message)
     (defalias 'gnus-format-message 'format-message)
   ;; for Emacs < 25, and XEmacs, don't worry about quote translation.
-  (defalias 'gnus-format-message 'format-message))
+  (defalias 'gnus-format-message 'format))
 
 ;; Simple check: can be a macro but this way, although slow, it's really clear.
 ;; We don't use `bound-and-true-p' because it's not in XEmacs.