From cab0a4925702c7f435d61310a6ac1b4c0c81e533 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Delafond?= Date: Fri, 5 Mar 2021 10:35:25 +0100 Subject: elisp: correctly disable font-locking for non-keyword through buffer-local font-lock-defaults Reformat the entire file while at it, and make flycheck happy --- conf/cvelist.el | 45 ++++++++++++++++++++++++++++----------------- 1 file changed, 28 insertions(+), 17 deletions(-) diff --git a/conf/cvelist.el b/conf/cvelist.el index 5e34f12a05..dcca731fbb 100644 --- a/conf/cvelist.el +++ b/conf/cvelist.el @@ -1,24 +1,32 @@ -;; Major mode for Debian's CVE list -;; -;; Can be enabled via -;; -;; (autoload 'debian-cvelist-mode "cvelist.el" -;; "Major mode for debian CVE lists" t) -;; (setq auto-mode-alist -;; (cons '("list" . debian-cvelist-mode) auto-mode-alist)) +;;; cvelist --- Major mode for Debian's CVE list +;;; +;;; Commentary: +;;; only useful for security-tracker-team/security-tracker.git's data/CVE/list +;;; +;;; Code: +;;; Guido Günther +;;; Moritz Muehlenhoff +;;; Sébastien Delafond +;;; +;;; Can be enabled via: +;;; +;;; (autoload 'debian-cvelist-mode "cvelist.el" +;;; "Major mode for debian CVE lists" t) +;;; (setq auto-mode-alist +;;; (cons '("list" . debian-cvelist-mode) auto-mode-alist)) (defun debian-cvelist-insert-not-for-us () - "Insert NOT-FOR-US keyword" + "Insert NOT-FOR-US keyword." (interactive) (insert "\tNOT-FOR-US: ")) (defun debian-cvelist-insert-note () - "Insert NOTE comment" + "Insert NOTE comment." (interactive) (insert "\tNOTE: ")) (defun debian-cvelist-cvesearch () - "Look up a CVE ID at the MITRE website" + "Look up a CVE ID at the MITRE website." (interactive) (browse-url (concat "https://cve.mitre.org/cgi-bin/cvename.cgi?name=" (thing-at-point 'symbol)))) @@ -31,7 +39,8 @@ "Keymap for `debian-cvelist-mode'.") (defvar debian-cvelist-font-lock-keywords - '(("^CVE-[0-9]\\{4\\}-[0-9X]\\{4,7\\}" (0 font-lock-function-name-face) ;; face for CVE keyword + '(("^CVE-[0-9]\\{4\\}-[0-9X]\\{4,7\\}" + (0 font-lock-function-name-face) ;; face for CVE keyword ("(\\(.+\\))$" nil nil (1 font-lock-warning-face))) ;; face for the rest of the line ("D[LS]A-[0-9]\\{4,5\\}-[0-9]" . font-lock-function-name-face) ("#[0-9]\\{1,7\\}" . font-lock-type-face) @@ -40,24 +49,26 @@ ("^\t\\(RESERVED\\|NOT-FOR-US\\|REJECTED\\)" . font-lock-keyword-face) ("\\" . font-lock-warning-face) ("\\" . font-lock-constant-face)) - "Keyword highlighting for `debian-cvelist-mode'") + "Keyword highlighting for `debian-cvelist-mode'.") (defun debian-cvelist-is-cve () + "Checks if a current line is a CVE description." (save-excursion (beginning-of-line) (looking-at "[[:space:]]*CVE-"))) (defun debian-cvelist-indent-line () - "Indent current line as debian CVE list" + "Indent current line as debian CVE list." (beginning-of-line) (if (debian-cvelist-is-cve) (indent-line-to 0) (indent-line-to 8))) (define-derived-mode debian-cvelist-mode fundamental-mode "debian-cvelist" - "A major mode for editing data/CVE/list in the Debian secure-testing repo." - (setq-local font-lock-defaults '(debian-cvelist-font-lock-keywords nil)) - (setq font-lock-keywords-only t) + "A major mode for editing data/CVE/list in the Debian + secure-tracker repository." + (setq-local font-lock-defaults '(debian-cvelist-font-lock-keywords t)) (setq indent-line-function 'debian-cvelist-indent-line)) (provide 'debian-cvelist) +;;; cvelist.el ends here -- cgit v1.2.3