aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-10-14 02:52:58 +0000
committerGlenn Morris2007-10-14 02:52:58 +0000
commit9099b37326fe09c2ed2763aefbcba7176583bf9d (patch)
tree5efcdd82cfddcdeffedffd73d46296332720cd85
parentcedb4d8bb7691e6e1a2cbe16b98ca765fe988f83 (diff)
downloademacs-9099b37326fe09c2ed2763aefbcba7176583bf9d.tar.gz
emacs-9099b37326fe09c2ed2763aefbcba7176583bf9d.zip
(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 98e3df74030..17f4f89ee22 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-10-14 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/etags.el (select-tags-table): Disable undo in the
4 `*Tags Table List*' buffer.
5
12007-10-13 Glenn Morris <rgm@gnu.org> 62007-10-13 Glenn Morris <rgm@gnu.org>
2 7
3 * progmodes/octave-mod.el (octave-looking-at-kw): Add doc string. 8 * progmodes/octave-mod.el (octave-looking-at-kw): Add doc string.
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 96af63849a4..4148f327ecc 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';
1904see the doc of that variable if you want to add names to the list." 1904see the doc of that variable if you want to add names to the list."
1905 (interactive) 1905 (interactive)
1906 (pop-to-buffer "*Tags Table List*") 1906 (pop-to-buffer "*Tags Table List*")
1907 (setq buffer-read-only nil) 1907 (setq buffer-read-only nil
1908 buffer-undo-list t)
1908 (erase-buffer) 1909 (erase-buffer)
1909 (let ((set-list tags-table-set-list) 1910 (let ((set-list tags-table-set-list)
1910 (desired-point nil) 1911 (desired-point nil)