+2003-04-06 Masatake YAMATO <jet@gyve.org>
+
+ * progmodes/etags.el (tag-find-file-of-tag): Renamed from
+ find-file-of-tag to avoid name space pollution.
+ (tag-find-file-of-tag-noselect): Likewise.
+ (etags-list-tags, etags-tags-apropos): Use
+ tag-find-file-of-tag instead of find-file-of-tag.
+
2003-04-06 Masatake YAMATO <jet@gyve.org>
* info.el (Info-goto-emacs-command-node): If command
;; Get the local value in the tags table buffer before switching buffers.
(setq goto-func goto-tag-location-function)
- (find-file-of-tag-noselect file)
+ (tag-find-file-of-tag-noselect file)
(widen)
(push-mark)
(funcall goto-func tag-info)
;; Return the buffer where the tag was found.
(current-buffer))))
-(defun find-file-of-tag-noselect (file)
+(defun tag-find-file-of-tag-noselect (file)
;; Find the right line in the specified file.
;; If we are interested in compressed-files,
;; we search files with extensions.
(error "File %s not found" file))
(set-buffer the-buffer))))
-(defun find-file-of-tag (file)
- (let ((buf (find-file-of-tag-noselect file)))
+(defun tag-find-file-of-tag (file)
+ (let ((buf (tag-find-file-of-tag-noselect file)))
(condition-case nil
(switch-to-buffer buf)
(error (pop-to-buffer buf)))))
'action (lambda (button)
(let ((tag-info (button-get button 'tag-info))
(goto-func (button-get button 'goto-func)))
- (find-file-of-tag (button-get button 'file-path))
+ (tag-find-file-of-tag (button-get button 'file-path))
(widen)
(funcall goto-func tag-info)))
'face 'tags-tag-face
'action (lambda (button)
(let ((tag-info (button-get button 'tag-info))
(goto-func (button-get button 'goto-func)))
- (find-file-of-tag (button-get button 'file-path))
+ (tag-find-file-of-tag (button-get button 'file-path))
(widen)
(funcall goto-func tag-info)))
'face 'tags-tag-face
(make-text-button pt (point)
'file-path file-path
'action (lambda (button)
- (find-file-of-tag (button-get button 'file-path))
+ (tag-find-file-of-tag (button-get button 'file-path))
;; Get the local value in the tags table
;; buffer before switching buffers.
(goto-char (point-min)))