From 908e2e09d08c8058f40295096aec9251944875ca Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 28 May 2022 14:57:55 +0300 Subject: [PATCH] Fix commands used to produce on-line HTML docs * admin/admin.el (manual-meta-string): Only include the first line, and move the rest... (manual-links-string): ...to this new string. (manual-html-fix-headers): Don't remove the ', see gnu.org ticket #1840138. --- admin/admin.el | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/admin/admin.el b/admin/admin.el index a6cb33017ef..57d5afb23b7 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -340,11 +340,13 @@ Optional argument TYPE is type of output (nil means all)." \"https://www.w3.org/TR/html4/loose.dtd\">\n\n") (defconst manual-meta-string - " - + "\n") + +(defconst manual-links-string + " -\n\n") +\n") (defconst manual-style-string "\n") @@ -475,6 +477,12 @@ the @import directive." (delete-region opoint (point)) (search-forward "\n") + (delete-region opoint (point)) + (search-forward "") (goto-char (match-beginning 0)) (delete-region opoint (point)) -- 2.39.2