1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-21 18:23:59 +00:00

(tags-table-mode): Disable undo.

This commit is contained in:
Glenn Morris 2007-11-02 08:18:24 +00:00
parent b9b4d12c5f
commit 5ec19a1188
2 changed files with 5 additions and 2 deletions

View File

@ -3,6 +3,8 @@
* newcomment.el (comment-indent): Let comment-insert-comment-function,
if defined, do all the work of inserting a new comment.
* progmodes/etags.el (tags-table-mode): Disable undo.
* simple.el (bad-packages-alist): Revert previous change.
2007-11-02 Dan Nicolaescu <dann@ics.uci.edu>

View 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