]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify eldoc-message
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 20 Aug 2017 21:26:45 +0000 (00:26 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 20 Aug 2017 21:42:41 +0000 (00:42 +0300)
* lisp/emacs-lisp/eldoc.el (eldoc-message): Simplify.
Don't use ARGS because no callers pass them.  Discussed in bug#27230.

lisp/emacs-lisp/eldoc.el

index bca40ab87da4fbee5694a075fb4b0825234d9dba..8c165461988f00829e4b0e66b87fcaa08bcfa85a 100644 (file)
@@ -276,19 +276,12 @@ Otherwise work like `message'."
           (force-mode-line-update)))
     (apply 'message format-string args)))
 
-(defun eldoc-message (&optional format-string &rest args)
-  "Display FORMAT-STRING formatted with ARGS as an ElDoc message.
+(defun eldoc-message (&optional string)
+  "Display STRING as an ElDoc message if it's non-nil.
 
-Store the message (if any) in `eldoc-last-message', and return it."
+Also store it in `eldoc-last-message' and return that value."
   (let ((omessage eldoc-last-message))
-    (setq eldoc-last-message
-         (cond ((eq format-string eldoc-last-message) eldoc-last-message)
-               ((null format-string) nil)
-               ;; If only one arg, no formatting to do, so put it in
-               ;; eldoc-last-message so eq test above might succeed on
-               ;; subsequent calls.
-               ((null args) format-string)
-               (t (apply #'format-message format-string args))))
+    (setq eldoc-last-message string)
     ;; In emacs 19.29 and later, and XEmacs 19.13 and later, all messages
     ;; are recorded in a log.  Do not put eldoc messages in that log since
     ;; they are Legion.