Remove f.el references

This commit is contained in:
Henrik Lissner 2017-02-25 02:11:24 -05:00
parent 7ed243a398
commit a0305418ae
6 changed files with 15 additions and 14 deletions

View file

@ -16,9 +16,9 @@
;; (lambda (&rest _)
;; (let* ((project-path (doom-project-root))
;; (hash (gethash project-path bower-conf))
;; (package-file (f-expand "bower.json" project-path))
;; (package-file (expand-file-name "bower.json" project-path))
;; deps)
;; (awhen (and (not hash) (f-exists? package-file)
;; (awhen (and (not hash) (file-exists-p package-file)
;; (ignore-errors (json-read-file package-file)))
;; (puthash project-path it bower-conf)))
;; t))