Remove opam-install variable and assertion
The `prelude/assert` for the existence of the `opam-install` directory was failing. I believe this assertion would have been failing sooner, but a bug in my initialization was preventing Emacs from evaluating `wpc-ocaml.el`. It seems that I removed whatever was jamming the initialization and as such, I uncovered some more bugs. Let this serve as a reminder that just because it hasn't bitten you yet, doesn't mean that your software doesn't have a bug.
This commit is contained in:
parent
59be1ee981
commit
b843e0f8f6
1 changed files with 1 additions and 9 deletions
|
@ -22,17 +22,10 @@
|
||||||
(prelude/assert
|
(prelude/assert
|
||||||
(prelude/executable-exists? "opam"))
|
(prelude/executable-exists? "opam"))
|
||||||
|
|
||||||
(defvar opam-installs "~/.opam/4.08.0/share/emacs/site-lisp"
|
|
||||||
"Path to the Ocaml PAckage Manager installations.")
|
|
||||||
|
|
||||||
(defvar opam-user-setup "~/.emacs.d/opam-user-setup.el"
|
(defvar opam-user-setup "~/.emacs.d/opam-user-setup.el"
|
||||||
"File for the OPAM Emacs integration.")
|
"File for the OPAM Emacs integration.")
|
||||||
|
|
||||||
(prelude/assert
|
(prelude/assert (f-file? opam-user-setup))
|
||||||
(f-file? opam-user-setup))
|
|
||||||
|
|
||||||
(prelude/assert
|
|
||||||
(f-dir? opam-installs))
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Configuration
|
;; Configuration
|
||||||
|
@ -45,7 +38,6 @@
|
||||||
;; ocamlformat
|
;; ocamlformat
|
||||||
(require 'opam-user-setup "~/.emacs.d/opam-user-setup.el")
|
(require 'opam-user-setup "~/.emacs.d/opam-user-setup.el")
|
||||||
(require 'ocamlformat)
|
(require 'ocamlformat)
|
||||||
(add-to-list 'load-path opam-installs)
|
|
||||||
|
|
||||||
(provide 'wpc-ocaml)
|
(provide 'wpc-ocaml)
|
||||||
;;; wpc-ocaml.el ends here
|
;;; wpc-ocaml.el ends here
|
||||||
|
|
Loading…
Reference in a new issue