diff options
author | Kenichi Handa <handa@m17n.org> | 2010-10-20 09:46:21 +0900 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2010-10-20 09:46:21 +0900 |
commit | cf5314c93a722b73cbf0f3607bea152d79c3df7b (patch) | |
tree | 0722bb3e26bbf3dbfec1b8d240ea1e1bf16989f2 /lisp/emacs-lisp/unsafep.el | |
parent | 52ce289046a06a2ed342a796dbf3050e51dcb615 (diff) | |
parent | 7c3f6228fffbbd96f7a85e1617c9d99d178d605b (diff) | |
download | emacs-cf5314c93a722b73cbf0f3607bea152d79c3df7b.tar.gz emacs-cf5314c93a722b73cbf0f3607bea152d79c3df7b.tar.bz2 emacs-cf5314c93a722b73cbf0f3607bea152d79c3df7b.zip |
merge emacs-23
Diffstat (limited to 'lisp/emacs-lisp/unsafep.el')
-rw-r--r-- | lisp/emacs-lisp/unsafep.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/unsafep.el b/lisp/emacs-lisp/unsafep.el index 851a1f7652b..a62f8de4010 100644 --- a/lisp/emacs-lisp/unsafep.el +++ b/lisp/emacs-lisp/unsafep.el @@ -101,15 +101,13 @@ in the parse.") (dolist (x '(;;Special forms and catch if or prog1 prog2 progn while unwind-protect ;;Safe subrs that have some side-effects - ding error message minibuffer-message random read-minibuffer - signal sleep-for string-match throw y-or-n-p yes-or-no-p + ding error random signal sleep-for string-match throw ;;Defsubst functions from subr.el caar cadr cdar cddr ;;Macros from subr.el - save-match-data unless when with-temp-message + save-match-data unless when ;;Functions from subr.el that have side effects - read-passwd split-string replace-regexp-in-string - play-sound-file)) + split-string replace-regexp-in-string play-sound-file)) (put x 'safe-function t)) ;;;###autoload |