[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53882] [PATCH 01/24] import: opam: Accept tabulations.
From: |
Maxime Devos |
Subject: |
[bug#53882] [PATCH 01/24] import: opam: Accept tabulations. |
Date: |
Wed, 23 Feb 2022 19:09:20 +0100 |
User-agent: |
Evolution 3.38.3-1 |
Julien Lepiller schreef op di 08-02-2022 om 21:14 [+0100]:
> ;; 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"))
To test this, perhaps a few spaces can be replaced by tabs
in 'test-opam-file' in tests/opam.scm?
Greetings,
Maxime.
signature.asc
Description: This is a digitally signed message part
- [bug#53882] [PATCH 18/24] gnu: Add ocaml-ppx-fail., (continued)
- [bug#53882] [PATCH 18/24] gnu: Add ocaml-ppx-fail., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 04/24] gnu: Add ocaml-typerep., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 02/24] import: opam: Factor out source import., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 10/24] gnu: Add ocaml-ppx-fixed-literal., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 07/24] gnu: Add ocaml-ppx-stable., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 08/24] gnu: Add ocmal-ppx-pipebang., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 15/24] gnu: Add ocaml-ppx-sexp-message., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 16/24] gnu: Add ocaml-splittable-random., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 21/24] gnu: Add ocaml-core-kernel., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 20/24] gnu: Add ocaml-base-bigstring., Julien Lepiller, 2022/02/08
- [bug#53882] [PATCH 01/24] import: opam: Accept tabulations.,
Maxime Devos <=