shithub: MicroHs

Download patch

ref: af58a1fb9d7cde8f8850d801c388befe407d5687
parent: 6e5836ec346233ca9c3c25ac80482c9934c3c24e
author: Lennart Augustsson <lennart@augustsson.net>
date: Sat Jan 18 15:36:31 EST 2025

Accept _ as a lower case letter in qualified ids.

--- a/README.md
+++ b/README.md
@@ -213,6 +213,7 @@
 * `MHSCC` command use to compile C file to produce binaries.  Look at the source for more information.
 * `MHSCPPHS` command to use with `-XCPP` flag.  Defaults to `cpphs`.
 * `MHSCONF` which runtime to use, defaults to `unix-32/64` depending on your host's word size
+* `MHSEXTRACCFLAGS` extra flags passed to the C compiler
 
 ### Compiler modules
 
--- a/src/MicroHs/Lex.hs
+++ b/src/MicroHs/Lex.hs
@@ -334,7 +334,7 @@
    (ds, rs) ->
     case rs of
       '.':cs@(d:_) | isUpper d    -> upperIdent (addCol loc $ 1 + length ds) sloc (ds:qs) cs
-                   | isLower d    -> ident isIdentChar
+                   | isLower_ d   -> ident isIdentChar
                    | isOperChar d -> ident isOperChar
          where {
            ident p =