emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b12d22f 1/2: Don't ask the user to make a bug report on missing a


From: Lars Ingebrigtsen
Subject: master b12d22f 1/2: Don't ask the user to make a bug report on missing arglists
Date: Thu, 4 Feb 2021 06:26:09 -0500 (EST)

branch: master
commit b12d22f6afd75d7556e301304c0529936828cf2b
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Don't ask the user to make a bug report on missing arglists
    
    * lisp/help-fns.el (help-fns--signature): Don't ask the user to
    make a bug report (bug#30223) because the symbol may very well be
    one that the user has defined themselves.
    (help-fns-function-description-header): Ditto.
---
 lisp/help-fns.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index da90519..b03a440 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -533,7 +533,7 @@ suitable file is found, return nil."
                     (format "\nMacro: %s"
                             (help--docstring-quote
                              (format-kbd-macro real-def))))
-                   (t "[Missing arglist.  Please make a bug report.]")))
+                   (t "[Missing arglist.]")))
              ;; Insert "`X", not "(\` X)", when documenting `X.
              (use1 (replace-regexp-in-string
                     "\\`(\\\\=\\\\\\\\=` \\([^\n ]*\\))\\'"
@@ -839,7 +839,7 @@ Returns a list of the form (REAL-FUNCTION DEF ALIASED 
REAL-DEF)."
                 (t "")))
 
     (if (and aliased (not (fboundp real-def)))
-       (princ ",\nwhich is not defined.  Please make a bug report.")
+       (princ ",\nwhich is not defined.")
       (with-current-buffer standard-output
        (save-excursion
          (save-match-data



reply via email to

[Prev in Thread] Current Thread [Next in Thread]