diff options
author | Alan Pearce | 2014-08-23 13:02:45 +0100 |
---|---|---|
committer | Alan Pearce | 2014-08-23 13:02:45 +0100 |
commit | 3764370f77fa32c2c9c793331ef35ac9d913b4d7 (patch) | |
tree | 61e2e7e7c0a662888b12b6c5286960c56bbc0c02 | |
parent | 428f237fd9aa27e271fededeb52a5a7891f257c3 (diff) | |
download | nixfiles-3764370f77fa32c2c9c793331ef35ac9d913b4d7.tar.lz nixfiles-3764370f77fa32c2c9c793331ef35ac9d913b4d7.tar.zst nixfiles-3764370f77fa32c2c9c793331ef35ac9d913b4d7.zip |
Emacs: Fix frame-title-format error when loading
-rw-r--r-- | tag-emacs/emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 2ed049b5..3f8d75ec 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1318,7 +1318,8 @@ mouse-1: Display Line and Column Mode Menu")))))) (setq frame-title-format '((:eval (capitalize invocation-name)) ": " - (:eval (if (projectile-project-p) + (:eval (if (and (fboundp #'project-project-p) + (projectile-project-p)) (projectile-project-name) (if (buffer-file-name) (abbreviate-file-name (buffer-file-name)) |