You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
696 B

;;; local-checkdoc-variables.el -- Silence checkdoc warnings with file-local variables -*- lexical-binding: t; -*-
;;; Commentary:
;; Make sure that file-local checkdoc settings are properly propagated to
;; checkdoc process. There's only a single space between these sentences, but we
;; allow that in this file.
;;; Code:
(defun imperative-mood ()
"Uses an imperative mood, which is wrong.")
(defun arguments-in-wrong-order (a b)
"Sum B and A."
(+ a b))
;; Local Variables:
;; checkdoc-arguments-in-order-flag: nil
;; checkdoc-verb-check-experimental-flag: nil
;; sentence-end-double-space: nil
;; End:
(provide 'local-checkdoc-variables)
;;; local-checkdoc-variables.el ends here