(texinfo-start-menu-description): Call regexp-quote.
;;
;; We're interested in the second case.
(concat "\\* " ; so only menu entries are found
- "\\(.*\\): " (car (car new-menu-list)) "[.,\t\n]")
+ "\\(.*\\): " (regexp-quote (car (car new-menu-list)))
+ "[.,\t\n]")
end-of-menu
t)
(setcar
(if (re-search-forward
(concat
"^@node[ \t]+"
- node-name
+ (regexp-quote node-name)
".*\n" ; match node line
"\\("
"\\(\\(^@c \\|^@comment\\).*\n\\)" ; match comment line, if any