aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasatake YAMATO2004-05-21 07:25:07 +0000
committerMasatake YAMATO2004-05-21 07:25:07 +0000
commita6e7bdf1717c7d99f9ce3f48c8f34439455ddd1b (patch)
tree923a2977e3b8fa277c4b14cef3cde7f5aec2d816
parent4cecf0322bc2268d273c18614fe941ca19600aa2 (diff)
downloademacs-a6e7bdf1717c7d99f9ce3f48c8f34439455ddd1b.tar.gz
emacs-a6e7bdf1717c7d99f9ce3f48c8f34439455ddd1b.zip
* progmodes/etags.el (tags-apropos, list-tags): Require apropos.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/etags.el2
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 43028f03e69..2fce46e2fa6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-05-21 Masatake YAMATO <jet@gyve.org>
2
3 * progmodes/etags.el (tags-apropos, list-tags): Require
4 apropos.
5
12004-05-20 Luc Teirlinck <teirllm@auburn.edu> 62004-05-20 Luc Teirlinck <teirllm@auburn.edu>
2 7
3 * locate.el (locate-prompt-for-command): Shorten first line of 8 * locate.el (locate-prompt-for-command): Shorten first line of
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index ef5d1eba998..49294d6625c 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1866,6 +1866,7 @@ directory specification."
1866 (or gotany 1866 (or gotany
1867 (error "File %s not in current tags tables" file))))) 1867 (error "File %s not in current tags tables" file)))))
1868 (with-current-buffer "*Tags List*" 1868 (with-current-buffer "*Tags List*"
1869 (require 'apropos)
1869 (apropos-mode) 1870 (apropos-mode)
1870 (setq buffer-read-only t))) 1871 (setq buffer-read-only t)))
1871 1872
@@ -1884,6 +1885,7 @@ directory specification."
1884 (funcall tags-apropos-function regexp)))) 1885 (funcall tags-apropos-function regexp))))
1885 (etags-tags-apropos-additional regexp)) 1886 (etags-tags-apropos-additional regexp))
1886 (with-current-buffer "*Tags List*" 1887 (with-current-buffer "*Tags List*"
1888 (require 'apropos)
1887 (apropos-mode) 1889 (apropos-mode)
1888 ;; apropos-mode is derived from fundamental-mode and it kills 1890 ;; apropos-mode is derived from fundamental-mode and it kills
1889 ;; all local variables. 1891 ;; all local variables.