aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/29.1/02_all_modeline.patch')
-rw-r--r--emacs/29.1/02_all_modeline.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/emacs/29.1/02_all_modeline.patch b/emacs/29.1/02_all_modeline.patch
deleted file mode 100644
index d51a79e..0000000
--- a/emacs/29.1/02_all_modeline.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Avoid spurious whitespace in the modeline
-Patch backported from master branch
-https://debbugs.gnu.org/58183
-
-commit 8c3338f6ba354218aee12c223d778be4180f892b
-Author: Ulrich Müller <ulm@gentoo.org>
-Date: Fri Jul 28 12:21:42 2023 +0200
-
- Avoid spurious whitespace in the modeline of emacsclient frames
-
- * lisp/bindings.el (mode-line-client): Compute 'help-echo text
- property in advance. (Bug#58183)
-
---- emacs-29/lisp/bindings.el
-+++ emacs-29/lisp/bindings.el
-@@ -226,9 +226,9 @@ mode-line-mule-info
- (put 'mode-line-mule-info 'risky-local-variable t)
-
- (defvar mode-line-client
-- `(""
-- (:propertize ("" (:eval (if (frame-parameter nil 'client) "@" "")))
-- help-echo ,(purecopy "emacsclient frame")))
-+ `(:eval
-+ (if (frame-parameter nil 'client)
-+ ,(propertize "@" 'help-echo (purecopy "emacsclient frame"))))
- "Mode line construct for identifying emacsclient frames.")
- ;; Autoload if this file no longer dumped.
- ;;;###autoload