Re: [Fabrice Popineau] Re: Need some bug/version info
Ralf Angeli <[email protected]>
| Newsgroups | gmane.emacs.auc-tex |
|---|---|
| Message-ID | <[email protected]> |
* Ralf Angeli (2005-02-06) writes: > By implementing some brute force changes in my local font-latex.el I > already managed to make XEmacs fontify verbatim environments. > Verbatim commands are not working yet. The latter is, by the way, fallout from the bug related to shy groups in regular expressions in XEmacs 21.4.16. The following code will fail, i.e. return nil, in that XEmacs version but should work in 21.4.17 (at least it does in my checkout of the release-21-4 branch): (with-temp-buffer (insert "\\verb|foo|") (goto-char (point-min)) (re-search-forward "\\\\\\(?:verb\\)\\([^a-z]\\).*?\\(\\1\\)" nil t)) -- Ralf