From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: How to insert space in minibuffer while in completing-read ? Date: Sat, 08 Mar 2008 16:24:18 -0500 Organization: UseNetServer.com Message-ID: References: <67b5f4c4-8d2f-4f44-9cc7-48453c3ddb63@d62g2000hsf.googlegroups.com> <871w6m1b0b.fsf@thalassa.informatimago.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1205012540 888 80.91.229.12 (8 Mar 2008 21:42:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 8 Mar 2008 21:42:20 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Mar 08 22:42:47 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JY6oZ-0001Gt-JK for geh-help-gnu-emacs@m.gmane.org; Sat, 08 Mar 2008 22:42:47 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JY6o1-00083u-MH for geh-help-gnu-emacs@m.gmane.org; Sat, 08 Mar 2008 16:42:13 -0500 Original-Path: shelby.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!nx02.iad01.newshosting.com!newshosting.com!208.49.83.146.MISMATCH!uns-out.usenetserver.com!news.usenetserver.com!pc02.usenetserver.com!TEKSAVVY.COM-Free-a2kHrUvQQWlmc!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:ou4LnLjOJtLdTaV/LNP6O2O3uP8= Original-X-Complaints-To: abuse@usenetserver.com Original-Lines: 14 Original-X-Trace: 1cf2447d303ca6b5d382716947 Original-Xref: shelby.stanford.edu gnu.emacs.help:156794 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:52166 Archived-At: > 2. If you don't want to use Icicles, but you do want to allow space chars in > minibuffer input, do this: > (define-key minibuffer-local-completion-map > " " 'self-insert-command)) > (define-key minibuffer-local-must-match-map > " " 'self-insert-command)) I think you mean to set those keys to nil rather than to `self-insert-command'. It may have the same result in 99% of the cases in the end, of course. Stefan