diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
commit | 8c3e9da13a3c92a7db308db8c0d81cb474ad7799 (patch) | |
tree | 88d06952aa5cc3a9c4991d9c43eb7950ff174fe1 /gnu/packages/patches/emacs-git-email-missing-parens.patch | |
parent | 5439c04ebdb7b6405f5ea2446b375f1d155a8d95 (diff) | |
parent | 0c5299200ffcd16370f047b7ccb187c60f30da34 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/patches/emacs-git-email-missing-parens.patch')
-rw-r--r-- | gnu/packages/patches/emacs-git-email-missing-parens.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/patches/emacs-git-email-missing-parens.patch b/gnu/packages/patches/emacs-git-email-missing-parens.patch new file mode 100644 index 0000000000..051e2bf1eb --- /dev/null +++ b/gnu/packages/patches/emacs-git-email-missing-parens.patch @@ -0,0 +1,27 @@ +From 820ad7eb2e919e3f880bec22bd4f737fa55c4d22 Mon Sep 17 00:00:00 2001 +From: Niklas Eklund <niklas.eklund@posteo.net> +Date: Thu, 5 May 2022 12:43:49 +0200 +Subject: [PATCH] Fix missing parens in git-email-mu4e.el + +The incorrect number of parens in this file lead to Emacs failing to +parse the file. +--- + git-email-mu4e.el | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/git-email-mu4e.el b/git-email-mu4e.el +index d5b8770..9220bf9 100644 +--- a/git-email-mu4e.el ++++ b/git-email-mu4e.el +@@ -51,7 +51,7 @@ from Lisp, enable the mode if ARG is omitted or nil." + ;; built in context feature. + (seq-filter (lambda (header) + (not (eq (car header) 'from))) +- headers) ++ headers)))) + (setq git-email-compose-email-function 'message-mail))) + + (provide 'git-email-mu4e) +-- +2.34.0 + |