Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-11-16 | Makefile: Define $(INFODIR) based on $(SHAREDIR) | EuAndreh | 1 | -1/+1 | |
2022-08-12 | .gitignore: Add public/ | EuAndreh | 1 | -2/+1 | |
2022-08-12 | Makefile: Generate HTML from Texinfo in "public" target | EuAndreh | 1 | -6/+8 | |
2022-08-12 | doc/guile-heredoc.texi: Init basic documentation skeleton | EuAndreh | 1 | -0/+105 | |
2022-08-12 | tests/heredoc.scm: Keep max column width at 80 | EuAndreh | 1 | -1/+2 | |
2022-08-12 | Makefile: Fix "public" target dependencies | EuAndreh | 1 | -1/+5 | |
2022-08-12 | Makefile: Stop generating PDFs | EuAndreh | 1 | -6/+2 | |
2022-08-05 | tests/heredoc.scm: Add test for (enable-syntax) macro | EuAndreh | 3 | -4/+23 | |
Test both compiled and non-compiled variants of the test in order to stress the scenarios of *when* the read-macro is set. Also change the (eval-when ...) case used: - "compile": for when the code is being compiled only, and before its execution; - "eval": for the the code is being evaluated only, during its execution. Also from the Guile manual (via 'info (guile)Loading'): Changing ‘current-reader’ is typically useful to introduce local syntactic changes, such that code following the ‘fluid-set!’ call is read using the newly installed reader. The ‘current-reader’ change should take place at evaluation time when the code is evaluated, or at compilation time when the code is compiled: (eval-when (compile eval) (fluid-set! current-reader my-own-reader)) The ‘eval-when’ form above ensures that the ‘current-reader’ change occurs at the right time. | |||||
2022-05-17 | doc/: Setup Texinfo documentation skeleton | EuAndreh | 4 | -4/+30 | |
2022-05-17 | src/xyz/euandreh/heredoc.scm: Add (enable-syntax) macro | EuAndreh | 1 | -1/+6 | |
2022-05-17 | src/xyz/euandreh/heredoc.scm: Rename (heredoc-reader ...) to (reader ...) | EuAndreh | 2 | -4/+4 | |
2022-05-17 | Update references to src/heredoc.scm | EuAndreh | 4 | -16/+16 | |
2022-05-17 | git mv src/heredoc.scm src/xyz/euandreh/ | EuAndreh | 1 | -0/+0 | |
2022-05-17 | Add first workikng version, with proper Makefile with "install" target | EuAndreh | 4 | -0/+498 | |