From 6da047e7418803afa986aa01f34abda32cfd40cc Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 2 Nov 2007 08:19:17 +0000 Subject: [PATCH] (tags-table-mode): Disable undo. --- admin/FOR-RELEASE | 4 ---- lisp/ChangeLog | 2 ++ lisp/progmodes/etags.el | 5 +++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index c1557d32635..38ffd38391a 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -42,10 +42,6 @@ from 2007-08-27. Impossible to procede without more input from OP (as of 20070912, emails are bouncing) or someone else who can reproduce this. http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg01497.html -** TAGS buffer generates spurious undo warnings -Waiting for recipe to produce these warnings. -http://lists.gnu.org/archive/html/bug-gnu-emacs/2007-09/msg00070.html - ** emacs-22.1 with GTK problems (with patches) Only outstanding issue seems to be whether Solaris 2.6 GTK can be supported in the absence of recursive mutexes, via a change to diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7bc6a68bbf0..00448b64715 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2007-11-02 Glenn Morris + * progmodes/etags.el (tags-table-mode): Disable undo. + * simple.el (bad-packages-alist): Revert previous change. 2007-11-01 Dan Nicolaescu diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 4148f327ecc..823b4e7a058 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -277,8 +277,9 @@ One argument, the tag info returned by `snarf-tag-function'.") (defun tags-table-mode () "Major mode for tags table file buffers." (interactive) - (setq major-mode 'tags-table-mode) - (setq mode-name "Tags Table") + (setq major-mode 'tags-table-mode + mode-name "Tags Table" + buffer-undo-list t) (initialize-new-tags-table)) ;;;###autoload -- 2.11.4.GIT