diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-05-05 23:06:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-05 23:47:48 +0200 |
commit | 75a25d9c2abecf815041945ab90d9dc1fffbdcf2 (patch) | |
tree | eab0e91502a89a4c5dbd49d5588dc291082d40e3 | |
parent | 8749f31485888c587c6f88a0a7bdd48cc9e8c9b8 (diff) |
read-print: Recognize 'wrap-program' and 'wrap-script' as special forms.
* guix/read-print.scm (%special-forms): Add 'wrap-program' and
'wrap-script'.
-rw-r--r-- | guix/read-print.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/read-print.scm b/guix/read-print.scm index 83b9a61b35..fa44e933b0 100644 --- a/guix/read-print.scm +++ b/guix/read-print.scm @@ -335,6 +335,8 @@ expressions and blanks that were read." ('with-output-to-file 2) ('with-input-from-file 2) ('with-directory-excursion 2) + ('wrap-program 2) + ('wrap-script 2) ;; (gnu system) and (gnu services). ('operating-system 1) |