Mercurial > emacs
diff src/eval.c @ 71341:012bd1b59e70
(Fdefconst): Mark variable as risky.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 13 Jun 2006 23:09:17 +0000 |
| parents | e15a29aaffbd |
| children | a93787ef56ad 138027c8c982 |
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; }
