>From 34835cbca81f5c80a11d7488820822d4ce121c79 Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Wed, 3 Feb 2016 21:44:39 +0100 Subject: [PATCH] Another fix for file name regexp in TeX-documentation-texdoc * tex.el (TeX-documentation-texdoc): Add `space' and `()' to file name regexp for Windows paths. --- tex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tex.el b/tex.el index 1b955fe..b7077fc 100644 --- a/tex.el +++ b/tex.el @@ -6125,7 +6125,7 @@ show." (while (re-search-forward ;; XXX: XEmacs doesn't support character classes in ;; regexps, like "[:alnum:]". - "^ *\\([0-9]+\\) +\\([-~/a-zA-Z0-9_.${}#%,:\\]+\\)" nil t) + "^ *\\([0-9]+\\) +\\([-~/a-zA-Z0-9_.${}#%,:\\ ()]+\\)" nil t) (push (cons (match-string 1) (match-string 2)) list)))) (unwind-protect (cond -- 2.7.0