Function: checkdoc-get-keywords
checkdoc-get-keywords is a byte-compiled function defined in
checkdoc.el.gz.
Signature
(checkdoc-get-keywords)
Documentation
Return a list of package keywords for the current file.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
(defun checkdoc-get-keywords ()
"Return a list of package keywords for the current file."
(save-excursion
(goto-char (point-min))
(when (re-search-forward "^;; Keywords: \\(.*\\)$" nil t)
(split-string (match-string-no-properties 1) ", " t))))