web-dev-qa-db-ja.com

OSXで--debug-initを使用してEmacsを開きます

デバッグしようとしていますwhy my .emacs does not load. エラーメッセージ。

Invalid read syntax: # ... Start Emacs with
the `--debug-init' option to view a complete error backtrace.

私の質問は:どうすればいいですか?私がこれまで試したのはこれです。

open -a --debug-init Emacs.app

Unable to find application named '--debug-init'

open -a Emacs.app --debug-init

open: unrecognized option `--debug-init'

ホームディレクトリにemacs設定ファイルがあります。

10
r4.

私は現在Macを使用していないため、確認できませんが、これは機能するはずです。

open -a /Applications/Emacs.app --args --debug-init

注:SnowLeopard以降が必要です。

編集:これを試すこともできます:

/Applications/Emacs.app/Contents/MacOS/emacs --debug-init

それでもうまくいかない場合は、「emacs」の「E」を大文字にしてみてください。 (Emacs.appが内部でどのように構成されているかはわかりませんが、コア実行可能ファイルはおそらく2つのうちの1つである必要があります。)

15
oboewan42