aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-10-14 02:52:40 +0000
committerGlenn Morris <[email protected]>2007-10-14 02:52:40 +0000
commit1a825e5d29e28d772348a5a1e008743bf8d213f3 (patch)
tree00266c986b8de34c22e40977c6fe7e98d62be4bb
parent7663ea748d2b0f66c8ce64328f1ddeb3769d4f9d (diff)
(select-tags-table): Disable undo in the `*Tags Table List*' buffer.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/etags.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 95bb387c67..33ed2702a0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-14 Glenn Morris <[email protected]>
+
+ * progmodes/etags.el (select-tags-table): Disable undo in the
+ `*Tags Table List*' buffer.
+
2007-10-13 Eli Zaretskii <[email protected]>
* dired.el (dired-warn-writable): New face.
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 96af63849a..4148f327ec 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1904,7 +1904,8 @@ The list of tags tables to select from is stored in `tags-table-set-list';
see the doc of that variable if you want to add names to the list."
(interactive)
(pop-to-buffer "*Tags Table List*")
- (setq buffer-read-only nil)
+ (setq buffer-read-only nil
+ buffer-undo-list t)
(erase-buffer)
(let ((set-list tags-table-set-list)
(desired-point nil)