diff options
| author | Erik Naggum | 1996-07-23 22:32:48 +0000 |
|---|---|---|
| committer | Erik Naggum | 1996-07-23 22:32:48 +0000 |
| commit | 46b3fc26d900c3420fb9193ab6e4d5e9354fe41e (patch) | |
| tree | 4da8b4a0494dd9091eead553696fbba052388c1f /lisp | |
| parent | 5a3d3a1674e3cf97baf4defdc182cf8bb8b76c00 (diff) | |
| download | emacs-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.el | 2 |
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. |