Emacs: Fix frame-title-format error when loading
Alan Pearce alan@alanpearce.co.uk
Sat, 23 Aug 2014 13:02:45 +0100
1 files changed, 2 insertions(+), 1 deletions(-)
jump to
M tag-emacs/emacs.d/init.el → tag-emacs/emacs.d/init.el
@@ -1318,7 +1318,8 @@ ;;;; Windows & Frames (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))