Fix completion for R5RS Scheme. See https://github.com/ashinn/scheme-complete/issues/1 --- scheme-complete-master/scheme-complete.el.orig 2015-12-25 21:59:09.896909029 +0100 +++ scheme-complete-master/scheme-complete.el 2015-12-25 21:59:17.924993998 +0100 @@ -591,7 +591,7 @@ '((exact->inexact (lambda (z) z)) (inexact->exact (lambda (z) z))) (mapcar #'(lambda (x) - (list x (scheme-env-lookup *scheme-r7rs-info* x))) + (scheme-env-lookup *scheme-r7rs-info* x)) *scheme-r5rs-bindings*)))) *scheme-r5rs-info*) 39c038d8524a56729f123f19f80'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/accounts.scm
AgeCommit message (Expand)Author
2022-01-01system: Allow 'chfn' to change the user's full name....Fixes <https://issues.guix.gnu.org/52539>. Reported by Jacob First <jacob.first@member.fsf.org>. * gnu/build/accounts.scm (allocate-passwd): Add comment as to why 'real-name' is taken from PREVIOUS. Add (not system?) to the condition. * gnu/system.scm (operating-system-etc-service) <login.defs>: Add "CHFN_RESTRICT". * gnu/system.scm (%setuid-programs): Add "chfn". * gnu/system/pam.scm (base-pam-services): Add "chfn". * doc/guix.texi (User Accounts): Document it. Ludovic Courtès