From 46b3fc26d900c3420fb9193ab6e4d5e9354fe41e Mon Sep 17 00:00:00 2001 From: Erik Naggum Date: Tue, 23 Jul 1996 22:32:48 +0000 Subject: [PATCH] (tag-exact-file-name-match-p): Fix previous change. --- lisp/progmodes/etags.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 30d9dc84723..25cd2e6edfe 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -1240,7 +1240,7 @@ See documentation of variable `tags-file-name'." (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. -- 2.39.5