We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7272901 commit 2697962Copy full SHA for 2697962
lisp/gnus/gnus-util.el
@@ -468,7 +468,8 @@ displayed in the echo area."
468
(gnus-add-timestamp-to-message
469
(if (or (and (null ,format-string) (null ,args))
470
(progn
471
- (setq str (apply 'format ,format-string ,args))
+ (setq str (apply #'format-message ,format-string
472
+ ,args))
473
(zerop (length str))))
474
(prog1
475
(and ,format-string str)
@@ -506,7 +507,7 @@ inside loops."
506
507
;; We have to do this format thingy here even if the result isn't
508
;; shown - the return value has to be the same as the return value
509
;; from `message'.
- (apply 'format args)))
510
+ (apply #'format-message args)))
511
512
(defun gnus-final-warning ()
513
(when (and (consp gnus-action-message-log)
0 commit comments