Ubuntu lucid と emacs23 にアップグレードしたので、emacs22 がポップアップしない状況で Emacs がデバッガーをポップアップします。
たとえば、org-mode で Cc Cc を押すと、emacs22 では単に とcan do nothing useful at this location
表示されますが、emacs23 ではデバッガーが表示されます。
Debugger entered--Lisp error: (error "C-c C-c can do nothing useful at this location")
signal(error ("C-c C-c can do nothing useful at this location"))
error("C-c C-c can do nothing useful at this location")
org-ctrl-c-ctrl-c(nil)
call-interactively(org-ctrl-c-ctrl-c nil nil)
これはパターンを示しているだけです。動作は org-mode に限定されません。3分ごとに発生するので、本当にイライラします。どうすれば防ぐことができますか?
私はすでに and を使用してこれを停止しようとしましたdebug-on-error
:うまくいきませstack-trace-on-error
んでした.