fix(wpcarro/emacs): Debug bookmark-open

also add missing dependency on project.el

Change-Id: I4648f07eb31888c9c4bd6c094543b8d8ee05225a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5287
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
This commit is contained in:
William Carroll 2022-02-14 13:46:16 -08:00 committed by clbot
parent 5d09aa53dd
commit d052ab21fd

View file

@ -13,6 +13,7 @@
;; Dependencies
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'project)
(require 'general)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@ -28,7 +29,7 @@
(defun bookmark-open (b)
"Open bookmark, B, as either a project directory or a regular directory."
(with-temp-buffer
(cd path)
(cd (bookmark-path b))
(call-interactively #'project-find-file)))
(defun bookmark-install-kbd (b)