diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2018-12-19 23:53:52 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2018-12-19 23:53:52 +0100 |
| commit | afc8cb6efc9bff82bb9ecf1ceba063160b5fdd22 (patch) | |
| tree | e80f37691d72e7cf08af15778988f858f487271c /.emacs | |
| parent | 5f2d3a3953fec19ee34bd47e98df69e0a3b9fb41 (diff) | |
| download | dotfiles-afc8cb6efc9bff82bb9ecf1ceba063160b5fdd22.tar.xz | |
Make sure frame title evaluation does not mess with query-replace
See linked bug report.
Diffstat (limited to '.emacs')
| -rw-r--r-- | .emacs | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -285,8 +285,9 @@ (setq frame-title-format '(:eval - (let ((project (my/project-name))) - (concat (when project (format "[%s] " project)) "%b")))) + (save-match-data + ((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) |
