summaryrefslogtreecommitdiff
path: root/module/srfi/srfi-19.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-01-10 23:52:15 +0100
committerLudovic Courtès <ludo@gnu.org>2010-01-11 01:21:14 +0100
commit6734191c6822d41920c322d83fa0e17221d95dc3 (patch)
tree57d3e5a00c2af0169e24504e70905ae90fc12532 /module/srfi/srfi-19.scm
parente6251e7bd98fbc64e9dbf489c8afaf426af46919 (diff)
downloadguile-6734191c6822d41920c322d83fa0e17221d95dc3.tar.gz
Remove unused top-level variables.
* module/ice-9/runq.scm (fork-strips): Remove. * module/language/assembly.scm (*block-alignment*): Remove. * module/language/assembly/disassemble.scm (disassemble-objects, simplify): Remove. * module/srfi/srfi-18.scm (mutex-owners): Remove. * module/srfi/srfi-19.scm (leap-year?): Remove. * module/system/base/compile.scm (dsu-sort): Remove. * module/texinfo.scm (ascii->char): Remove. * module/texinfo/html.scm (ignored?): Remove. * module/texinfo/indexing.scm (def-name): Remove. * module/texinfo/plain-text.scm (ignore): Remove.
Diffstat (limited to 'module/srfi/srfi-19.scm')
-rw-r--r--module/srfi/srfi-19.scm3
1 files changed, 0 insertions, 3 deletions
diff --git a/module/srfi/srfi-19.scm b/module/srfi/srfi-19.scm
index 8a86b35fa..6148b55b2 100644
--- a/module/srfi/srfi-19.scm
+++ b/module/srfi/srfi-19.scm
@@ -738,9 +738,6 @@
(or (= (modulo year 400) 0)
(and (= (modulo year 4) 0) (not (= (modulo year 100) 0)))))
-(define (leap-year? date)
- (priv:leap-year? (date-year date)))
-
;; Map 1-based month number M to number of days in the year before the
;; start of month M (in a non-leap year).
(define priv:month-assoc '((1 . 0) (2 . 31) (3 . 59) (4 . 90)