]> git.eshelyaron.com Git - emacs.git/commitdiff
Mark some user options that can get evalled as risky.
authorGlenn Morris <rgm@gnu.org>
Sat, 30 Jan 2016 19:36:41 +0000 (11:36 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 30 Jan 2016 19:36:41 +0000 (11:36 -0800)
* 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.

lisp/allout.el
lisp/emacs-lisp/edebug.el
lisp/gnus/message.el
lisp/progmodes/gud.el
lisp/vc/ediff-mult.el

index 15a8a1117389ffe3391c1e724fa94a6ce8e44430..49bdc06fbb0bac983a0b999b6f1373d8c4d58f3c 100644 (file)
@@ -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"
index 5b841e88165389c519f86f6e1b1dd54df7185ae8..e8484fa1f94693304441ca504b9d53b4ee7f4602 100644 (file)
@@ -225,6 +225,7 @@ After execution is resumed, the error is signaled again."
   "If non-nil, an expression to test for at every stop point.
 If the result is non-nil, then break.  Errors are ignored."
   :type 'sexp
+  :risky t
   :group 'edebug)
 
 (defcustom edebug-sit-for-seconds 1
index 51dcc1a909fbb0bde63feb6afcdfee1fe5e58343..f175036e96f8c8a7709e92c338a20c91b38a8524 100644 (file)
@@ -1073,6 +1073,7 @@ If a function, the result from the function will be used instead.
 If a form, the result from the form will be used instead."
   :version "23.2"
   :type 'sexp
+  :risky t
   :link '(custom-manual "(message)Insertion Variables")
   :group 'message-insertion)
 
@@ -1287,6 +1288,7 @@ The value should be an expression to test whether the problem will
 actually occur."
   :group 'message-sending
   :link '(custom-manual "(message)Mail Variables")
+  :risky t
   :type 'sexp)
 
 ;;;###autoload
index 1a0385e167eebeceae287759d7c341e9b9c09a9e..7843efdf158b903e2b75a31c3a040199447ff23d 100644 (file)
@@ -3421,6 +3421,7 @@ it if ARG is omitted or nil."
 Forms in the list are combined with AND.  The default is to display
 only tooltips in the buffer containing the overlay arrow."
   :type 'sexp
+  :risky t
   :group 'gud
   :group 'tooltip)
 
index 9c763d4a232300cd0869503663390be13a128159..7f0db5d45dcd6a94e462dc03b7a7c002a328c4b3 100644 (file)
@@ -174,7 +174,8 @@ directories.")
 (defcustom ediff-default-filtering-regexp nil
   "The default regular expression used as a filename filter in multifile comparisons.
 Should be a sexp.  For instance (car ediff-filtering-regexp-history) or nil."
-  :type 'sexp
+  :type 'sexp                           ; yuck - why not just a regexp?
+  :risky t
   :group 'ediff-mult)
 
 ;; This has the form ((meta-buf regexp dir1 dir2 dir3 merge-auto-store-dir)