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.
 
 

20 lines
477 B

;;; warnings.el -- Trigger Emacs Lisp warnings -*- lexical-binding: t; -*-
;;; Commentary:
;; Trigger a checkdoc warning by omitting a period in the docstring of a
;; function. All these comments are to make checkdoc happy, which also checks
;; the general commenting style of an Emacs Lisp file.
;;; Code:
(defun foobar ()
"Does nothing really useful"
(dummy-package-foo))
(if t
(foobar 1)
(message "Hello foo"))
(provide 'warnings)
;;; warnings.el ends here