From 820ad7eb2e919e3f880bec22bd4f737fa55c4d22 Mon Sep 17 00:00:00 2001 From: Niklas Eklund 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 ='submit' value='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/gcc-5-source-date-epoch-1.patch
3764c803ceffc4f
AgeCommit message (Expand)Author
Efraim Flashner
2021-09-28tests: go: Fix typo....* tests/go.scm (fixture-go-mod-unparseable): Rename this… (fixture-go-mod-unparsable): …to this. Adjust the only caller. Tobias Geerinckx-Rice
2021-09-01import: go: Improve error handling....* guix/import/go.scm (go-module->guix-package*): Handle errors, remove memoize. (go-module-recursive-import): Remove 'guard', add memoize. * guix/scripts/import/go.scm (guix-import-go): Adjust. * tests/go.scm: Adjust. Signed-off-by: Ludovic Courtès <ludo@gnu.org> zimoun
2021-07-18import: go: Upgrade go.mod parser....Upgrade the go.mod parser to handle the full go.mod spec, and to gracefully handle unexpected/malformed syntax. Restructure parser usage, making the parse tree available for other uses. guix/import/go.scm (parse-go.mod): Parse using (ice-9 peg) instead of regex matching for more robustness. Return a list of directives. (go.mod-directives): New procedure. (go.mod-requirements): Likewise. (go-module->guix-package): Use it. (%go.mod-replace-directive-rx): Remove unused variable. tests/go.scm (testing-parse-mod): Adjust accordingly. (go.mod-requirements) (fixture-go-mod-unparseable) (fixture-go-mod-retract) (fixture-go-mod-strings): New variables. ("parse-go.mod: simple") ("parse-go.mod: comments and unparseable lines") ("parse-go.mod: retract") ("parse-go.mod: raw strings and quoted strings") ("parse-go.mod: complete"): New tests. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Sarah Morgensen
2021-07-17tests/go: Remove unused variable....* tests/go.scm: Delete extraneous newline. (fixture-latest-for-go-check): Remove variable. Maxim Cournoyer