# HG changeset patch # User Roland McGrath # Date 772835078 0 # Node ID 215cfbab6d725b97e85c6aa8d5d3f6d99ad31a3c # Parent 6099d3d43685b6cdaaf1c02f24c953e728f4f314 (tag-exact-match-p): Fix typo in last change. diff -r 6099d3d43685 -r 215cfbab6d72 lisp/progmodes/etags.el --- a/lisp/progmodes/etags.el Tue Jun 28 20:21:43 1994 +0000 +++ b/lisp/progmodes/etags.el Tue Jun 28 20:24:38 1994 +0000 @@ -1150,7 +1150,7 @@ (defun tag-exact-match-p (tag) ;; The match is really exact if there is an explicit tag name. (or (and (eq (char-after (point)) ?\001) - (eq (char-after (- (point) (length tag)) ?\177))) + (eq (char-after (- (point) (length tag) 1)) ?\177)) ;; We are not on the explicit tag name, but perhaps it follows. (looking-at (concat "[^\177\n]*\177" (regexp-quote tag) "\001")) ;; We also call it "exact" if it is surrounded by symbol boundaries.