diff options
author | Glenn Morris <rgm@gnu.org> | 2014-01-03 19:18:33 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-01-03 19:18:33 -0800 |
commit | a71324ccb69f9e3af5b1c613a60111c8f3885ce0 (patch) | |
tree | da3815a17cc7e0849a9089bdde045b20f649a26c /admin/admin.el | |
parent | 86c6e8fadaa84ae1faac7d3e177e6ad37a629e98 (diff) | |
download | emacs-a71324ccb69f9e3af5b1c613a60111c8f3885ce0.tar.gz |
* admin/admin.el (manual-html-fix-index-2): Fix minor Texinfo 4 issue
with start of detailed menu.
Diffstat (limited to 'admin/admin.el')
-rw-r--r-- | admin/admin.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/admin/admin.el b/admin/admin.el index 8f21cedfce5..847a06e35d1 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -508,9 +508,6 @@ style=\"text-align:left\">") ;; The Emacs and Elisp manual have some text at the ;; start of the detailed menu that is not part of the menu. ;; Other manuals do not. - ;; FIXME Texinfo 4 branch does not handle this correctly. - ;; See eg s/emacs/manual/html_node/eintr/index.html - ;; start of "Detailed Node Listing". (if (re-search-forward "in one step:" (line-end-position 3) t) (forward-line 1)) (insert "</p>\n") @@ -568,7 +565,12 @@ style=\"text-align:left\">") (replace-match " </td></tr></table>\n <h3>Detailed Node Listing</h3>\n\n" t t) (search-forward "<p>") - (search-forward "<p>" nil t) + ;; FIXME Fragile! + ;; The Emacs and Elisp manual have some text at the + ;; start of the detailed menu that is not part of the menu. + ;; Other manuals do not. + (if (looking-at "Here are some other nodes") + (search-forward "<p>")) (goto-char (match-beginning 0)) (skip-chars-backward "\n ") (setq open-td nil) |