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.
 
 

18 lines
471 B

;;; checkdoc-elisp-mode-regression.el -- This file will confuse an improperly configured checkdoc -*- lexical-binding: t; -*-
;;; Commentary:
;; Checkdoc uses the syntax table and comment syntax of the current buffer; if
;; not set properly, it gets confused by the code below.
;;; Code:
(defun confusing-syntax ()
?{)
(defconst confusing-docstring
;; comment "a"
".")
(provide 'checkdoc-elisp-mode-regression)
;;; checkdoc-elisp-mode-regression.el ends here