master 94646751192: compile.el: Fix last change
Ulrich Müller <[email protected]>
| Newsgroups | gmane.emacs.diffs |
|---|---|
| Message-ID | <[email protected]> |
branch: master commit 946467511922f9b5918b29cb807835459dd86dea Author: Ulrich Müller <[email protected]> Commit: Ulrich Müller <[email protected]> compile.el: Fix last change * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist): ?\N{BULLET} cannot be used during bootstrap. --- lisp/progmodes/compile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 8d5a5df766a..235648e6f56 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -500,7 +500,7 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) ;; 4 | void test(int i, int j, void *ptr, int k); ;; Match first line. - (group-n 9 (+ " ")) (| ?* ?\N{BULLET}) space (* nonl) (+ (any "\r\n")) + (group-n 9 (+ " ")) (| ?* ?\u2022) space (* nonl) (+ (any "\r\n")) ;; Match second line. (backref 9) " "