changeset 16625:b24b7ef8573b

(etags-file-of-tag): Expand the file name using the truename of default-directory.
author Richard M. Stallman <rms@gnu.org>
date Sat, 07 Dec 1996 20:38:40 +0000
parents cd1a0e1e6975
children abde29194979
files lisp/progmodes/etags.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/etags.el	Sat Dec 07 20:36:21 1996 +0000
+++ b/lisp/progmodes/etags.el	Sat Dec 07 20:38:40 1996 +0000
@@ -1001,7 +1001,8 @@
 (defun etags-file-of-tag ()
   (save-excursion
     (re-search-backward "\f\n\\([^\n]+\\),[0-9]*\n")
-    (buffer-substring (match-beginning 1) (match-end 1))))
+    (expand-file-name (buffer-substring (match-beginning 1) (match-end 1))
+		      (file-truename default-directory))))
 
 
 (defun etags-tags-completion-table ()