# HG changeset patch # User Eli Zaretskii # Date 1099740419 0 # Node ID 5c8dcdd5f8bc75d6e13ad54cc2f814316223a28d # Parent 13661731eef0b74375fda6597f3f15d154434926 (tempo-match-finder): Use [:word:] instead of "^\\b", to solve a bug whereby tags with 'b' don't match. diff -r 13661731eef0 -r 5c8dcdd5f8bc lisp/tempo.el --- a/lisp/tempo.el Sat Nov 06 10:01:56 2004 +0000 +++ b/lisp/tempo.el Sat Nov 06 11:26:59 2004 +0000 @@ -172,7 +172,7 @@ (defvar tempo-marks nil "A list of marks to jump to with `\\[tempo-forward-mark]' and `\\[tempo-backward-mark]'.") -(defvar tempo-match-finder "\\b\\([^\\b]+\\)\\=" +(defvar tempo-match-finder "\\b\\([[:word:]]+\\)\\=" "The regexp or function used to find the string to match against tags. If `tempo-match-finder is a string, it should contain a regular