diff options
Diffstat (limited to 'emacs/guix-utils.el')
-rw-r--r-- | emacs/guix-utils.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/guix-utils.el b/emacs/guix-utils.el index 77ccb67532..823c646610 100644 --- a/emacs/guix-utils.el +++ b/emacs/guix-utils.el @@ -154,6 +154,12 @@ accessed with KEYS." (dolist (key keys val) (setq val (cdr (assq key val)))))) +(defun guix-find-file (file) + "Find FILE if it exists." + (if (file-exists-p file) + (find-file file) + (message "File '%s' does not exist." file))) + ;;; Diff |