Mercurial > emacs
changeset 32324:581b490bcb94
Maintainer line updated.
(tags-table-format-functions): Renamed from tags-table-format-hooks.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 09 Oct 2000 01:58:38 +0000 |
parents | 4e67c00e093a |
children | d627ec021756 |
files | lisp/progmodes/etags.el |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/etags.el Mon Oct 09 01:03:32 2000 +0000 +++ b/lisp/progmodes/etags.el Mon Oct 09 01:58:38 2000 +0000 @@ -3,6 +3,7 @@ ;; Free Software Foundation, Inc. ;; Author: Roland McGrath <roland@gnu.org> +;; Maintainer: FSF ;; Keywords: tools ;; This file is part of GNU Emacs. @@ -190,8 +191,8 @@ ;; Hooks for file formats. -(defvar tags-table-format-hooks '(etags-recognize-tags-table - tags-recognize-empty-tags-table) +(defvar tags-table-format-functions '(etags-recognize-tags-table + tags-recognize-empty-tags-table) "Hook to be called in a tags table buffer to identify the type of tags table. The functions are called in order, with no arguments, until one returns non-nil. The function should make buffer-local bindings @@ -242,7 +243,7 @@ ;; are global. ;; Value is t if we have found a valid tags table buffer. - (run-hook-with-args-until-success 'tags-table-format-hooks)) + (run-hook-with-args-until-success 'tags-table-format-functions)) ;;;###autoload (defun visit-tags-table (file &optional local)