Function: help-fns--var-risky
help-fns--var-risky is a byte-compiled function defined in
help-fns.el.gz.
Signature
(help-fns--var-risky VARIABLE)
Source Code
;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-fns--var-risky (variable)
;; Can be both risky and safe, eg auto-fill-function.
(when (risky-local-variable-p variable)
(princ " This variable may be risky if used as a \
file-local variable.\n")
(when (assq variable safe-local-variable-values)
(princ (substitute-quotes
" However, you have added it to \
`safe-local-variable-values'.\n")))))