aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2007-02-25 09:24:29 +0000
committerAndreas Schwab2007-02-25 09:24:29 +0000
commitf215a02f44f5dd04f597e6db5a02af74ead095be (patch)
tree060e20518efc4997f4b4c25a7d44e86723578728
parentf252c2ad23cc2a516124bdb312515828185f4df7 (diff)
downloademacs-f215a02f44f5dd04f597e6db5a02af74ead095be.tar.gz
emacs-f215a02f44f5dd04f597e6db5a02af74ead095be.zip
(hack-one-local-variable-eval-safep): Correct handling
of edebug-form-spec property value. Reported by Johan Bockgård <bojohan+mail@dd.chalmers.se>.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/files.el3
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6180d2d7415..6cc6088f170 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12007-02-25 Andreas Schwab <schwab@suse.de>
2
3 * files.el (hack-one-local-variable-eval-safep): Correct handling
4 of edebug-form-spec property value. Reported by Johan Bockg,Ae(Brd
5 <bojohan+mail@dd.chalmers.se>.
6
12007-02-25 Carsten Dominik <dominik@science.uva.nl> 72007-02-25 Carsten Dominik <dominik@science.uva.nl>
2 8
3 * textmodes/org.el (org-table-overlay-coordinates) 9 * textmodes/org.el (org-table-overlay-coordinates)
diff --git a/lisp/files.el b/lisp/files.el
index 6d5b101d3c1..adec33ef77b 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2787,7 +2787,8 @@ It is dangerous if either of these conditions are met:
2787 ;; During bootstrapping, edebug-basic-spec might not be 2787 ;; During bootstrapping, edebug-basic-spec might not be
2788 ;; defined yet. 2788 ;; defined yet.
2789 (and (fboundp 'edebug-basic-spec) 2789 (and (fboundp 'edebug-basic-spec)
2790 (edebug-basic-spec val)))))) 2790 (hack-one-local-variable-quotep val)
2791 (edebug-basic-spec (nth 1 val)))))))
2791 ;; Allow expressions that the user requested. 2792 ;; Allow expressions that the user requested.
2792 (member exp safe-local-eval-forms) 2793 (member exp safe-local-eval-forms)
2793 ;; Certain functions can be allowed with safe arguments 2794 ;; Certain functions can be allowed with safe arguments