changeset 15775:2f589e0f2c7a

(tag-exact-file-name-match-p): Fix previous change.
author Erik Naggum <erik@naggum.no>
date Tue, 23 Jul 1996 22:32:48 +0000
parents e3cfe2afed17
children 6018e01d4466
files lisp/progmodes/etags.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/etags.el	Tue Jul 23 20:01:33 1996 +0000
+++ b/lisp/progmodes/etags.el	Tue Jul 23 22:32:48 1996 +0000
@@ -1240,7 +1240,7 @@
 
 (defun tag-exact-file-name-match-p (tag)
   (and (looking-at ",")
-       (save-excursion (backward-char (length tag)))
+       (save-excursion (backward-char (length tag))
 		       (looking-at "\f\n"))))
 
 ;; t if point is in a tag line with a tag containing TAG as a substring.