aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/bug-reference.el
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2008-06-21 20:30:00 +0000
committerGlenn Morris <[email protected]>2008-06-21 20:30:00 +0000
commit321d9c42c4496b1bdd444df79499673604396d7c (patch)
tree0a47a74139ca628bb97bd1799c426d3300d95c56 /lisp/progmodes/bug-reference.el
parent231f8f3f112875f5bb028079ed1538ea6413aaff (diff)
(bug-reference-fontify): Revert previous change that saved match data.
Diffstat (limited to 'lisp/progmodes/bug-reference.el')
-rw-r--r--lisp/progmodes/bug-reference.el23
1 files changed, 11 insertions, 12 deletions
diff --git a/lisp/progmodes/bug-reference.el b/lisp/progmodes/bug-reference.el
index d98604a2af..26ae2d57cc 100644
--- a/lisp/progmodes/bug-reference.el
+++ b/lisp/progmodes/bug-reference.el
@@ -77,18 +77,17 @@ There is no default setting for this, it must be set per file.")
;; Remove old overlays.
(bug-reference-unfontify beg-line end-line)
(goto-char beg-line)
- (save-match-data
- (while (and (< (point) end-line)
- (re-search-forward bug-reference-bug-regexp end-line 'move))
- (when (or (not bug-reference-prog-mode)
- ;; This tests for both comment and string syntax.
- (nth 8 (syntax-ppss)))
- (let ((overlay (make-overlay (match-beginning 0) (match-end 0)
- nil t nil)))
- (overlay-put overlay 'category 'bug-reference)
- (overlay-put overlay 'bug-reference-url
- (format bug-reference-url-format
- (match-string-no-properties 1))))))))))
+ (while (and (< (point) end-line)
+ (re-search-forward bug-reference-bug-regexp end-line 'move))
+ (when (or (not bug-reference-prog-mode)
+ ;; This tests for both comment and string syntax.
+ (nth 8 (syntax-ppss)))
+ (let ((overlay (make-overlay (match-beginning 0) (match-end 0)
+ nil t nil)))
+ (overlay-put overlay 'category 'bug-reference)
+ (overlay-put overlay 'bug-reference-url
+ (format bug-reference-url-format
+ (match-string-no-properties 1)))))))))
;; Taken from button.el.
(defun bug-reference-push-button (&optional pos use-mouse-action)