changeset 18325:65986b1a2cd6

(complete-symbol): New function. (complete-tag): Definition deleted. (esc-map): Bind M-TAB to compete-symbol.
author Richard M. Stallman <rms@gnu.org>
date Thu, 19 Jun 1997 02:49:41 +0000
parents e28140c58ed8
children 9b24a22cd872
files lisp/bindings.el
diffstat 1 files changed, 11 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/bindings.el	Thu Jun 19 02:47:38 1997 +0000
+++ b/lisp/bindings.el	Thu Jun 19 02:49:41 1997 +0000
@@ -215,16 +215,21 @@
 
 (make-variable-buffer-local 'indent-tabs-mode)
 
-;; This is here to avoid autoloading etags on M-TAB.
-;; M-x visit-tags-table will autoload etags, which will redefine complete-tag.
-(defun complete-tag ()
+(define-key esc-map "\t" 'complete-symbol)
+
+(defun complete-symbol ()
   "Perform tags completion on the text around point.
 Completes to the set of names listed in the current tags table.
 The string to complete is chosen in the same way as the default
 for \\[find-tag] (which see)."
-  (interactive)
-  (error (substitute-command-keys
-	  "No tags table loaded.  Try \\[visit-tags-table].")))
+  (interactive "P")
+  (if arg
+      (if (fboundp 'complete-tag)
+	  (complete-tag)
+	;; Don't autoload etags if we have no tags table.
+	(error (substitute-command-keys
+		"No tags table loaded; use \\[visit-tags-table] to load one")))
+    (info-complete-symbol)))
 
 ;; Reduce total amount of space we must allocate during this function
 ;; that we will not need to keep permanently.