refactor(wpcarro/emacs): Prefer tvl-depot-path reference

Instead of homegrown constants-depot (which doesn't even exist).

Change-Id: Iabb5f5f5bbb589bb07f9fc0921d75acd9396793e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4567
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
This commit is contained in:
William Carroll 2021-12-24 12:11:54 -05:00 committed by wpcarro
parent 88ed680b21
commit 286e24c76f

View file

@ -26,6 +26,7 @@
(require 'set) (require 'set)
(require 'constants) (require 'constants)
(require 'general) (require 'general)
(require 'tvl)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Constants ;; Constants
@ -59,7 +60,7 @@ Otherwise, open with `counsel-find-file'."
(defconst bookmark-whitelist (defconst bookmark-whitelist
(list (list
(make-bookmark :label "depot" (make-bookmark :label "depot"
:path constants-depot :path tvl-depot-path
:kbd "d")) :kbd "d"))
"List of registered bookmarks.") "List of registered bookmarks.")