From d052ab21fdceffd6829af3bc5ef7ad08a678ae58 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Mon, 14 Feb 2022 13:46:16 -0800 Subject: 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 Autosubmit: wpcarro --- users/wpcarro/emacs/.emacs.d/wpc/bookmark.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el b/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el index 2fa9b5de80..ab9169a078 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/bookmark.el @@ -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) -- cgit 1.4.1