summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorJulien Lepiller <julien@lepiller.eu>2022-04-08 15:22:42 +0200
committerLudovic Courtès <ludo@gnu.org>2022-04-11 11:55:54 +0200
commitbe7338d4000dece2a4a4c19b414c71b7206799eb (patch)
treefad349a08257de97a4ec9fa7479511cdaadb3da8 /guix
parentd79e10b7e0b9008bdc37bf28bd46456bca7a930d (diff)
downloadguix-patches-be7338d4000dece2a4a4c19b414c71b7206799eb.tar
guix-patches-be7338d4000dece2a4a4c19b414c71b7206799eb.tar.gz
import: opam: Accept tabulations.
* guix/import/opam.scm (SP, SP2): Accept tabulation as whitespace. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix')
-rw-r--r--guix/import/opam.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/import/opam.scm b/guix/import/opam.scm
index f569c921b1..f51d17dea4 100644
--- a/guix/import/opam.scm
+++ b/guix/import/opam.scm
@@ -61,8 +61,8 @@
;; Define a PEG parser for the opam format
(define-peg-pattern comment none (and "#" (* COMMCHR) "\n"))
-(define-peg-pattern SP none (or " " "\n" comment))
-(define-peg-pattern SP2 body (or " " "\n"))
+(define-peg-pattern SP none (or " " "\n" "\t" comment))
+(define-peg-pattern SP2 body (or " " "\n" "\t"))
(define-peg-pattern QUOTE none "\"")
(define-peg-pattern QUOTE2 body "\"")
(define-peg-pattern COLON none ":")