]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't use `format-message' to make doc strings in erc-backend
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 24 May 2022 17:02:06 +0000 (19:02 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 24 May 2022 17:02:06 +0000 (19:02 +0200)
* lisp/erc/erc-backend.el (define-erc-response-handler): Use
`format' here instead of `format-message' since Emacs will expand
the doc string later when the user asks for help about the symbols
defined.

lisp/erc/erc-backend.el

index 4b21711da42be5fc0a144f43cfc1d8778d77ced4..4c13f4c419a9173aa69e4bf1fd10be87ccbfb45e 100644 (file)
@@ -1192,7 +1192,7 @@ Would expand to:
                         aliases))
   (let* ((hook-name (intern (format "erc-server-%s-functions" name)))
          (fn-name (intern (format "erc-server-%s" name)))
-         (hook-doc (format-message "\
+         (hook-doc (format "\
 %sHook called upon receiving a %%s server response.
 Each function is called with two arguments, the process associated
 with the response and the parsed response.  If the function returns
@@ -1203,7 +1203,7 @@ See also `%s'."
                                (concat extra-var-doc "\n\n")
                              "")
                            fn-name))
-         (fn-doc (format-message "\
+         (fn-doc (format "\
 %sHandler for a %s server response.
 PROC is the server process which returned the response.
 PARSED is the actual response as an `erc-response' struct.