diff options
author | Ludovic Courtès | 2020-08-01 12:40:39 +0200 |
---|---|---|
committer | Ludovic Courtès | 2020-08-01 17:00:12 +0200 |
commit | ddb2e47d8ed4d6d6508d342c0718492f99db64d4 (patch) | |
tree | 051389241f5d3a7bf4696bc7543550e0068e6256 /tests/location.test | |
parent | acbd354ca0a32a5a551869a3650c9d265b83b204 (diff) | |
download | skribilo-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/location.test')
-rw-r--r-- | tests/location.test | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/location.test b/tests/location.test index e4d1402..8d0e2c6 100644 --- a/tests/location.test +++ b/tests/location.test @@ -18,14 +18,14 @@ ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. (define-module (tests location) - :use-module (skribilo ast) - :use-module (skribilo reader) - :use-module (skribilo evaluator) - :use-module (skribilo package base) - :use-module (skribilo location) - :use-module (srfi srfi-1) - :use-module (srfi srfi-64) - :use-module (ice-9 match)) + #:use-module (skribilo ast) + #:use-module (skribilo reader) + #:use-module (skribilo evaluator) + #:use-module (skribilo package base) + #:use-module (skribilo location) + #:use-module (srfi srfi-1) + #:use-module (srfi srfi-64) + #:use-module (ice-9 match)) (cond-expand (guile-2 (begin)) (else (use-modules (ice-9 syncase)))) |