0

Emacs 24 および Mac OSX Mavericks で、私の emacs ファイルは次のとおりです。

(setq debug-on-error t)
;; -- common-lisp compatibility if not added earlier in your .emacs
(require 'cl)

;; -- Tuareg mode -----------------------------------------
;; Add Tuareg to your search path
(add-to-list
 'load-path
 ;; Change the path below to be wherever you've put your tuareg installation.
 (expand-file-name "~/.elisp/tuareg"))
(require 'tuareg)
(setq auto-mode-alist 
      (append '(("\\.ml[ily]?$" . tuareg-mode))
          auto-mode-alist))

;; -- Tweaks for OS X -------------------------------------
;; Tweak for problem on OS X where Emacs.app doesn't run the right
;; init scripts when invoking a sub-shell
(cond
 ((eq window-system 'ns) ; macosx
  ;; Invoke login shells, so that .profile or .bash_profile is read
  (setq shell-command-switch "-lc")))

;; -- opam and utop setup --------------------------------
;; Setup environment variables using opam
(defun opam-vars ()
  (let* ((x (shell-command-to-string "opam config env"))
     (x (split-string x "\n"))
     (x (remove-if (lambda (x) (equal x "")) x))
     (x (mapcar (lambda (x) (split-string x ";")) x))
     (x (mapcar (lambda (x) (car x)) x))
     (x (mapcar (lambda (x) (split-string x "=")) x))
     )
    x))
(dolist (var (opam-vars))
  (setenv (car var) (substring (cadr var) 1 -1)))
;; The following simpler alternative works as of opam 1.1
;; (dolist
;;    (var (car (read-from-string
;;         (shell-command-to-string "opam config env --sexp"))))
;;  (setenv (car var) (cadr var)))
;; Update the emacs path
(setq exec-path (split-string (getenv "PATH") path-separator))
;; Update the emacs load path
(push (concat (getenv "OCAML_TOPLEVEL_PATH")
          "/../../share/emacs/site-lisp") load-path)
;; Automatically load utop.el
(autoload 'utop "utop" "Toplevel for OCaml" t)
(autoload 'utop-setup-ocaml-buffer "utop" "Toplevel for OCaml" t)
(add-hook 'tuareg-mode-hook 'utop-setup-ocaml-buffer)

このエラーを修正するための助けは素晴らしいでしょう。ありがとう!

注意事項: tuareg モードがあると言ったところ (~/.elisp/tuareg) があります。次のことを行った後、このエラーが発生し始めました。

opam install \
   async yojson core_extended core_bench \
   cohttp async_graphics cryptokit menhir

何が悪いのかわかりませんが、基本的にそれらをインストールする前に同じemacsファイルを持っていて、問題はありませんでした。現在、emacs では、ocaml ファイルを評価しようとすると、utop も適切に実行されません。

4

1 に答える 1

0

上記のように:

推測する必要がある場合は、 opam config env が関数の操作に耐性のあるものを出力していると思いますopam-vars

実行Emacs --debug-initすると、バックトレースが取得されます。

そして、その初期化ファイルを再帰的に分割して、さらに絞り込みます。

于 2015-01-24T03:11:03.990 に答える