From b503bb0f2aa4a865f780e60842cb81cc058a7405 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Thu, 10 Mar 2016 14:38:52 -0700 Subject: [PATCH] ffi/build.scm (update-html-index): Do not strip the mit-scheme- prefix. The plugin Makefile.ams install --no-split .html to the same name as the .info by default. (The .info goes in a shared info/ directory and thus needs the prefix.) --- src/ffi/build.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ffi/build.scm b/src/ffi/build.scm index 5b0abc438..cd0624633 100644 --- a/src/ffi/build.scm +++ b/src/ffi/build.scm @@ -113,8 +113,7 @@ USA. (string=? "html" (pathname-type (car files))) (string-prefix? "mit-scheme-" (pathname-name (car files)))) - (let ((name (string-tail (pathname-name (car files)) - (string-length "mit-scheme-"))) + (let ((name (pathname-name (car files))) (title (read-html-title (car files)))) (cons (cons name title) names.titles)) names.titles)) -- 2.25.1