From 7a75e73f884f294c979d19a520268f2a4371861b Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Wed, 6 Jul 2022 10:10:46 +0200 Subject: [PATCH] Silence checkdoc messages about docstrings of internal objects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Internal objects here don’t have and shouldn’t have documentation strings because: - There is nothing useful to specify in them. - They are not a stable API to be used. - They would pollute the source file and make it larger. --- pip-frame.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pip-frame.el b/pip-frame.el index 64f3493..d11761b 100644 --- a/pip-frame.el +++ b/pip-frame.el @@ -233,4 +233,8 @@ Any other key stops this command and executes its own command." (provide 'pip-frame) +;; Local Variables: +;; checkdoc-force-docstrings-flag: nil +;; End: + ;;; pip-frame.el ends here