From e7da6dd6d653d8edb35079f3aeb345406e20bea7 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 5 Jan 2023 15:36:29 +0100 Subject: 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(-) (limited to 'gnu/home') 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 ;;; Copyright © 2021 Xinglu Chen -;;; Copyright © 2022 Ludovic Courtès +;;; Copyright © 2022-2023 Ludovic Courtès ;;; ;;; 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 -- cgit v1.2.3