]> git.eshelyaron.com Git - emacs.git/commitdiff
Maintainer line updated.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 9 Oct 2000 01:59:03 +0000 (01:59 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 9 Oct 2000 01:59:03 +0000 (01:59 +0000)
(tags-table-format-functions): Renamed from tags-table-format-hooks.

lisp/ChangeLog
lisp/progmodes/etags.el

index bc812e24830e3f952f990a302a38a6c231e0f4cf..38c6833733bbcbe6b7af2e68929e6357ea137ad4 100644 (file)
 
        * mouse.el (popup-menu): Balance parens.
 
+2000-10-08  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * mouse.el (popup-menu): Move the command call outside the loop
+       so that popup-menu returns whatever the command returns.
+
+       * progmodes/etags.el: Docstring fixes.  Maintainer line updated.
+       (initialize-new-tags-table): Use run-hook-with-args-until-success.
+       (find-tag): Use pop-to-buffer if switch-to-buffer failed.
+       (tags-table-format-functions): Renamed from tags-table-format-hooks.
+
+       * vc.el (vc-version-diff): diff-switches can be a list.
+       Use relative filenames for prettier output.
+
+       * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice) 
+       (vc-post-command-functions): Remove old-VC compatibility code.
+
+       * newcomment.el (comment-indent-default): Autoload.
+
+       * font-lock.el (font-lock-defaults): Make buffer-local.
+       (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
+       (font-lock-choose-keywords):
+       Ignore LEVEL unless KEYWORDS is a list of syms.
+       (c-keywords, c++-keywords, objc-keywords, java-keywords):
+       Don't wrap regexp-opt things in \(...\) unnecessarily.
+
+       * jit-lock.el: Don't require font-lock any more.
+       (jit-lock-functions): Make buffer-local.
+       (jit-lock-saved-fontify-buffer-function): Remove.
+       (jit-lock-mode): Remove autoload cookie.
+       Remove font-lock specific code.
+       (jit-lock-unregister): Don't bother handling complex hooks any more.
+       (jit-lock-refontify): New function.
+       (jit-lock-fontify-buffer): Use it.
+       (jit-lock-function-1): Replaced by jit-lock-fontify-now.
+       (jit-lock-fontify-now): Renamed from jit-lock-function-1.
+       Add optional args START and END.
+       Never call font-lock-fontify-region directly.
+       (jit-lock-function, jit-lock-stealth-fontify): Use it.
+
+       * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
+
 2000-10-08  Dave Love  <fx@gnu.org>
 
        * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
index b7dff737c346b65d711b1c427249441d378c2fe1..610b225a7da95ddb5a55a01e10d0fdcd3d8183a5 100644 (file)
@@ -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 @@ nil means it has not yet been computed; use `tags-table-files' to do so.")
 \f
 ;; 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 @@ One argument, the tag info returned by `snarf-tag-function'.")
   ;; 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)