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 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/pep.scm
ref='/guix/log/gnu/home/services/media.scm?id=c1004ce1d5c8927972c54f04369e991a302b7d97&showmsg=1'>Expand)
AgeCommit message (Expand)Author
Author
2023-03-16home: services: kodi, znc, ssh-agent: Use 'match-record'....* gnu/home/services/media.scm (home-kodi-services): Use 'match-record' instead of 'match'. * gnu/home/services/messaging.scm (home-znc-services): Likewise. * gnu/home/services/ssh.scm (home-ssh-agent-services): Likewise. Ludovic Courtès
2023-03-16home: services: kodi: Remove host-side use of (shepherd support)....This is a followup to 70056b1b2beebbc9f8ea2c34eacc57f379368ab3, which inadvertently pulled in (shepherd support) on the host side. * gnu/home/services/media.scm (home-kodi-services): Change 'command' and 'logfile' to gexps. Add 'modules' field to 'shepherd-service'. Ludovic Courtès
2023-03-16gnu: home: services: Add home-kodi-service-type....* gnu/home/services/media.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * po/guix/POTFILES.in: Likewise. * doc/guix.texi (Media Home Services): Document it in new subsection. Jan (janneke) Nieuwenhuizen