diff options
author | Glenn Morris <rgm@gnu.org> | 2016-01-30 11:36:41 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-01-30 11:36:41 -0800 |
commit | 2a5233c3c44d3ae6183d8b766f1a86083c318119 (patch) | |
tree | f479c55f58e63e2b6ef492cf70a1c3207e2e6eb4 /lisp/allout.el | |
parent | 39b166fc43a37d1731a194c06deacba571894847 (diff) | |
download | emacs-2a5233c3c44d3ae6183d8b766f1a86083c318119.tar.gz |
Mark some user options that can get evalled as risky.
* lisp/allout.el (allout-title):
* lisp/emacs-lisp/edebug.el (edebug-global-break-condition):
* lisp/gnus/message.el (message-mailer-swallows-blank-line):
* lisp/progmodes/gud.el (gud-tooltip-display):
* lisp/vc/ediff-mult.el (ediff-default-filtering-regexp):
Mark as risky.
Diffstat (limited to 'lisp/allout.el')
-rw-r--r-- | lisp/allout.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index 15a8a111738..49bdc06fbb0 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -797,9 +797,9 @@ numbers are always used." :group 'allout) ;;;_ - allout-title (defcustom allout-title '(or buffer-file-name (buffer-name)) - "Expression to be evaluated to determine the title for LaTeX -formatted copy." + "Expression to evaluate to determine the title for LaTeX formatted copy." :type 'sexp + :risky t :group 'allout) ;;;_ - allout-line-skip (defcustom allout-line-skip ".05cm" |