Mercurial > emacs
changeset 71341:012bd1b59e70
(Fdefconst): Mark variable as risky.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 13 Jun 2006 23:09:17 +0000 |
parents | 5de9b904c7ad |
children | b8939b94e16b |
files | src/eval.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Tue Jun 13 23:08:39 2006 +0000 +++ b/src/eval.c Tue Jun 13 23:09:17 2006 +0000 @@ -195,9 +195,10 @@ Lisp_Object Vmacro_declaration_function; +extern Lisp_Object Qrisky_local_variable; static Lisp_Object funcall_lambda P_ ((Lisp_Object, int, Lisp_Object*)); - + void init_eval_once () { @@ -895,6 +896,7 @@ tem = Fpurecopy (tem); Fput (sym, Qvariable_documentation, tem); } + Fput (sym, Qrisky_local_variable, Qt); LOADHIST_ATTACH (sym); return sym; }