aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 8954b1364b6..0afff9a9374 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1132,7 +1132,7 @@ See documentation of variable `tags-file-name'."
1132 (point))))) 1132 (point)))))
1133 (princ (if (looking-at "[^\n]+\001") 1133 (princ (if (looking-at "[^\n]+\001")
1134 ;; There is an explicit tag name; use that. 1134 ;; There is an explicit tag name; use that.
1135 (buffer-substring (point) 1135 (buffer-substring (1+ (point)) ;skip \177
1136 (progn (skip-chars-forward "^\001") 1136 (progn (skip-chars-forward "^\001")
1137 (point))) 1137 (point)))
1138 tag))) 1138 tag)))