aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-02 08:19:17 +0000
committerGlenn Morris2007-11-02 08:19:17 +0000
commit6da047e7418803afa986aa01f34abda32cfd40cc (patch)
treed0f5160efdf57d04898994e20e9328b3a8371bbf
parentb51404df27391fdfd7e152b1656b3d9c1fe21394 (diff)
downloademacs-6da047e7418803afa986aa01f34abda32cfd40cc.tar.gz
emacs-6da047e7418803afa986aa01f34abda32cfd40cc.zip
(tags-table-mode): Disable undo.
-rw-r--r--admin/FOR-RELEASE4
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/etags.el5
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
42of 20070912, emails are bouncing) or someone else who can reproduce this. 42of 20070912, emails are bouncing) or someone else who can reproduce this.
43http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg01497.html 43http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg01497.html
44 44
45** TAGS buffer generates spurious undo warnings
46Waiting for recipe to produce these warnings.
47http://lists.gnu.org/archive/html/bug-gnu-emacs/2007-09/msg00070.html
48
49** emacs-22.1 with GTK problems (with patches) 45** emacs-22.1 with GTK problems (with patches)
50Only outstanding issue seems to be whether Solaris 2.6 GTK can be 46Only outstanding issue seems to be whether Solaris 2.6 GTK can be
51supported in the absence of recursive mutexes, via a change to 47supported 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 @@
12007-11-02 Glenn Morris <rgm@gnu.org> 12007-11-02 Glenn Morris <rgm@gnu.org>
2 2
3 * progmodes/etags.el (tags-table-mode): Disable undo.
4
3 * simple.el (bad-packages-alist): Revert previous change. 5 * simple.el (bad-packages-alist): Revert previous change.
4 6
52007-11-01 Dan Nicolaescu <dann@ics.uci.edu> 72007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
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'.")
277(defun tags-table-mode () 277(defun tags-table-mode ()
278 "Major mode for tags table file buffers." 278 "Major mode for tags table file buffers."
279 (interactive) 279 (interactive)
280 (setq major-mode 'tags-table-mode) 280 (setq major-mode 'tags-table-mode
281 (setq mode-name "Tags Table") 281 mode-name "Tags Table"
282 buffer-undo-list t)
282 (initialize-new-tags-table)) 283 (initialize-new-tags-table))
283 284
284;;;###autoload 285;;;###autoload