]> git.eshelyaron.com Git - emacs.git/commitdiff
(tags-table-mode): Disable undo.
authorGlenn Morris <rgm@gnu.org>
Fri, 2 Nov 2007 08:19:17 +0000 (08:19 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 2 Nov 2007 08:19:17 +0000 (08:19 +0000)
admin/FOR-RELEASE
lisp/ChangeLog
lisp/progmodes/etags.el

index c1557d326358237feea91a042004ba7cdb85fdae..38ffd38391a58c8579ff4c2a2aa51e7e5cf161f3 100644 (file)
@@ -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
index 7bc6a68bbf02a2378ac1ab5f280d45264cd5dfc2..00448b647152243e884c3f690569514cd2b335d9 100644 (file)
@@ -1,5 +1,7 @@
 2007-11-02  Glenn Morris  <rgm@gnu.org>
 
+       * progmodes/etags.el (tags-table-mode): Disable undo.
+
        * simple.el (bad-packages-alist): Revert previous change.
 
 2007-11-01  Dan Nicolaescu  <dann@ics.uci.edu>
index 4148f327ecc852cdf25e4166ba859b09dc2f1de1..823b4e7a0581468a6dba9f6299aa820d04cc77f5 100644 (file)
@@ -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