aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorErik Naggum1996-07-23 22:32:48 +0000
committerErik Naggum1996-07-23 22:32:48 +0000
commit46b3fc26d900c3420fb9193ab6e4d5e9354fe41e (patch)
tree4da8b4a0494dd9091eead553696fbba052388c1f /lisp
parent5a3d3a1674e3cf97baf4defdc182cf8bb8b76c00 (diff)
downloademacs-46b3fc26d900c3420fb9193ab6e4d5e9354fe41e.tar.gz
emacs-46b3fc26d900c3420fb9193ab6e4d5e9354fe41e.zip
(tag-exact-file-name-match-p): Fix previous change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/etags.el2
1 files changed, 1 insertions, 1 deletions
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'."
1240 1240
1241(defun tag-exact-file-name-match-p (tag) 1241(defun tag-exact-file-name-match-p (tag)
1242 (and (looking-at ",") 1242 (and (looking-at ",")
1243 (save-excursion (backward-char (length tag))) 1243 (save-excursion (backward-char (length tag))
1244 (looking-at "\f\n")))) 1244 (looking-at "\f\n"))))
1245 1245
1246;; t if point is in a tag line with a tag containing TAG as a substring. 1246;; t if point is in a tag line with a tag containing TAG as a substring.