diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-18 14:17:45 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-18 14:17:45 +0200 |
commit | 608f349cd29e9754279d963e33e19eb46b849882 (patch) | |
tree | 72a7e4d2df18ed4d6c96019b6b7fc37362fe8959 | |
parent | 0dc75daf1189d2327c6efa4d747fa98fcba03ea3 (diff) | |
download | emacs-608f349cd29e9754279d963e33e19eb46b849882.tar.gz emacs-608f349cd29e9754279d963e33e19eb46b849882.tar.bz2 emacs-608f349cd29e9754279d963e33e19eb46b849882.zip |
Fix checkdoc--fix-y-or-n-p query
* lisp/emacs-lisp/checkdoc.el (checkdoc--fix-y-or-n-p): Fix the
query to match what's done (bug#56053).
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index 5700afbb03e..7ae01d03b04 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -2628,7 +2628,7 @@ a space as a style error." (checkdoc-autofix-ask-replace (match-beginning 0) (match-end 0) (format-message - "`y-or-n-p' argument should end with \"? \". Fix?") + "`y-or-n-p' argument should end with \"?\". Fix?") "?\"" t)) nil (checkdoc-create-error |