aboutsummaryrefslogtreecommitdiff
path: root/tests/ast.test
diff options
context:
space:
mode:
authorLudovic Courtès2020-08-01 12:40:39 +0200
committerLudovic Courtès2020-08-01 17:00:12 +0200
commitddb2e47d8ed4d6d6508d342c0718492f99db64d4 (patch)
tree051389241f5d3a7bf4696bc7543550e0068e6256 /tests/ast.test
parentacbd354ca0a32a5a551869a3650c9d265b83b204 (diff)
downloadskribilo-ddb2e47d8ed4d6d6508d342c0718492f99db64d4.tar.gz
skribilo-ddb2e47d8ed4d6d6508d342c0718492f99db64d4.tar.lz
skribilo-ddb2e47d8ed4d6d6508d342c0718492f99db64d4.zip
Write '#:use-module', '#:export', etc. instead of ':use-module', etc.
Changes made by running: for i in $(git ls-tree -r HEAD --name-only) ; do sed -i $i -e's/:use-module/#:use-module/g ; s/:autoload/#:autoload/g ; s/:export/#:export/g' ; done
Diffstat (limited to 'tests/ast.test')
-rw-r--r--tests/ast.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/ast.test b/tests/ast.test
index 596d9d3..8b8db48 100644
--- a/tests/ast.test
+++ b/tests/ast.test
@@ -18,12 +18,12 @@
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(define-module (tests ast)
- :use-module (ice-9 match)
- :use-module (skribilo ast)
- :use-module (skribilo package base)
- :use-module (srfi srfi-1)
- :use-module (srfi srfi-64)
- :use-module (ice-9 match))
+ #:use-module (ice-9 match)
+ #:use-module (skribilo ast)
+ #:use-module (skribilo package base)
+ #:use-module (srfi srfi-1)
+ #:use-module (srfi srfi-64)
+ #:use-module (ice-9 match))
(define (tree-map proc tree)
;; Map PROC over TREE.