Source of Nothingness - xyzzy lisp :

* xyzzy lisp :

XTAGSの内容に絶対パスを許すには
関数 tags-setup-buffer の (looking-at "#USE \\(\\(../\\)+\\)$") の正規表現を変えるだけでよいみたい。
絶対パスまではいらないのでこんなのでお茶を濁す。

--- tags.l~	Sun Jun 08 03:02:44 2003
+++ tags.l	Mon Mar 06 00:23:06 2006
@@ -71,7 +71,7 @@
     (save-excursion
       (set-buffer buffer)
       (goto-char (point-min))
-      (when (looking-at "#USE \\(\\(../\\)+\\)$")
+      (when (looking-at "#USE \\(\\(../\\)+.*\\)$")
 	(let ((d (namestring (match-string 1))))
 	  (setq buffer (or (find-tags-buffer d)
 			   (create-tags-buffer d)))

update : 2006-03-06 (Mon) 00:27:16