civodul pushed a commit to branch master
in repository guix.
commit e7da6dd6d653d8edb35079f3aeb345406e20bea7
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Jan 5 15:36:29 2023 +0100
home: shells: Do not escape backslashes in single-quoted strings.
This is a followup to 73684dc90e013f2f0cca1097b0c944bb9aa88709.
* gnu/home/services.scm (environment-variable-shell-definitions)
[shell-single-quote]: Remove #\\ from the escape list.
---
gnu/home/services.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/home/services.scm b/gnu/home/services.scm
index 692354c644..b003c3006b 100644
--- a/gnu/home/services.scm
+++ b/gnu/home/services.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2021 Andrew Tropin <[email protected]>
;;; Copyright © 2021 Xinglu Chen <[email protected]>
-;;; Copyright © 2022 Ludovic Courtès <[email protected]>
+;;; Copyright © 2022-2023 Ludovic Courtès <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -204,7 +204,7 @@ ensures variable values are properly quoted."
(shell-single-quote
(lambda (value)
;; Single-quote VALUE to enter a literal string.
- (string-append "'" (quote-string value '(#\' #\\))
+ (string-append "'" (quote-string value '(#\'))
"'"))))
(string-append
#$@(map (match-lambda