summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2018-12-20 19:38:19 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2018-12-20 19:38:19 +0100
commit099a55227eb03a7485ddbffc02b5504b94d347a7 (patch)
tree157dded98aaf510667a9ae043aec7624d1df3ec8
parentafc8cb6efc9bff82bb9ecf1ceba063160b5fdd22 (diff)
downloaddotfiles-099a55227eb03a7485ddbffc02b5504b94d347a7.tar.xz
Fix bugfix
No idea how I let this one slide.
-rw-r--r--.emacs6
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs b/.emacs
index f039442..171371f 100644
--- a/.emacs
+++ b/.emacs
@@ -285,9 +285,9 @@
(setq frame-title-format
'(:eval
- (save-match-data
- ((let ((project (my/project-name)))
- (concat (when project (format "[%s] " project)) "%b"))))))
+ (save-match-data ; cf. bug#33697
+ (let ((project (my/project-name)))
+ (concat (when project (format "[%s] " project)) "%b")))))
;; TODO: fringe fun: hideshowvis, git gutter…
;; TODO: decruftify mode-line (e.g. remove superflous parens)