Skip to content

Commit e0e3f2b

Browse files
committed
Don't bug out in manual-html-fix-index-2 on newer makeinfo versions
* admin/admin.el (manual-html-fix-index-2): Don't bug out if the makeinfo version doesn't include <ul>.
1 parent f133336 commit e0e3f2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin/admin.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ style=\"text-align:left\">")
617617
;; its original form.
618618
(when (or (search-forward "<ul class=\"menu\">" nil t)
619619
;; FIXME? The following search seems dangerously lax.
620-
(search-forward "<ul>"))
620+
(search-forward "<ul>" nil t))
621621
;; Convert the list that Makeinfo made into a table.
622622
(replace-match "<table style=\"float:left\" width=\"100%\">")
623623
(forward-line 1)

0 commit comments

Comments
 (0)