From b1a749ca8cf7dd1f49d8c79f7c65e0ec4e876747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 24 Apr 2022 01:56:12 +0200 Subject: Introduce filename-extension procedure. --- module/calp/entry-points/convert.scm | 3 ++- module/hnh/util/path.scm | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/module/calp/entry-points/convert.scm b/module/calp/entry-points/convert.scm index b1321f55..707414e5 100644 --- a/module/calp/entry-points/convert.scm +++ b/module/calp/entry-points/convert.scm @@ -2,6 +2,7 @@ :export (main) :use-module (hnh util) :use-module (hnh util options) + :use-module ((hnh util path) :select (filename-extension)) :use-module (ice-9 getopt-long) :use-module (sxml simple) :use-module (calp translation) @@ -20,7 +21,7 @@ (define (filename-to-type filename) - (let ((extension (car (reverse (string-split filename #\.))))) + (let ((extension (filename-extension filename))) (cond [(string-ci=? "ics" extension) "ical"] [(or (string-ci=? "xcal" extension) diff --git a/module/hnh/util/path.scm b/module/hnh/util/path.scm index 0aa747d0..49b53897 100644 --- a/module/hnh/util/path.scm +++ b/module/hnh/util/path.scm @@ -57,3 +57,6 @@ (define base (basename path)) (and (not (string-null? base)) (char=? #\. (string-ref base 0)))) + +(define-public (filename-extension filename) + (car (reverse (string-split filename #\.)))) -- cgit v1.2.3