From 87d2b5a22c795f827e5cf7d865cf10f02e2f4ef3 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 25 Oct 1999 13:31:08 +0000 Subject: [PATCH] (Info-build-node-completions): Add '("*") to the completion list. --- lisp/info.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/info.el b/lisp/info.el index 0d381ab6976..c48e2800cf3 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -982,6 +982,7 @@ If FORK is a string, it is the name to use for the new buffer." (cons (list (buffer-substring (match-beginning 1) (match-end 1))) compl)))))))) + (setq compl (cons '("*") compl)) (setq Info-current-file-completions compl)))) (defun Info-restore-point (hl)