diff options
author | Ludovic Courtès | 2012-11-29 23:16:19 +0100 |
---|---|---|
committer | Ludovic Courtès | 2012-11-29 23:16:19 +0100 |
commit | 827e5b8965dd569e241a5fef1af5527b51df5d83 (patch) | |
tree | b3559aaa519bf15ce8e8ea9c1cbc0e2cf7f7b90a | |
parent | 5a6bebf5847259c8fb8259411cd2f125cb1324bc (diff) | |
download | skribilo-827e5b8965dd569e241a5fef1af5527b51df5d83.tar.gz skribilo-827e5b8965dd569e241a5fef1af5527b51df5d83.tar.lz skribilo-827e5b8965dd569e241a5fef1af5527b51df5d83.zip |
html: Remove redundant `match' pattern.
* src/guile/skribilo/engine/html.scm (&html-generic-document): Remove
redundant pattern in `match'. Reported by Klaus Schilling
<schilling.klaus@web.de>.
-rw-r--r-- | src/guile/skribilo/engine/html.scm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/guile/skribilo/engine/html.scm b/src/guile/skribilo/engine/html.scm index f628bfa..c7484b2 100644 --- a/src/guile/skribilo/engine/html.scm +++ b/src/guile/skribilo/engine/html.scm @@ -1216,8 +1216,6 @@ (match subsections ((subsections ...) (fold loop footnotes subsections)) - (() - footnotes) (container (append footnotes (or (container-env-get container |