From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: [alinsoar@voila.fr: EVAL and partial-completion-mode] Date: Mon, 05 Mar 2007 17:23:03 -0500 Message-ID: References: <874pozny4j.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1173133509 23508 80.91.229.12 (5 Mar 2007 22:25:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 5 Mar 2007 22:25:09 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org To: Chong Yidong Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 05 23:25:02 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HOLc3-0001zV-Pd for ged-emacs-devel@m.gmane.org; Mon, 05 Mar 2007 23:25:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HOLc3-00016h-Dn for ged-emacs-devel@m.gmane.org; Mon, 05 Mar 2007 17:24:59 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HOLbs-00012J-Ao for emacs-devel@gnu.org; Mon, 05 Mar 2007 17:24:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HOLbr-00010v-Kp for emacs-devel@gnu.org; Mon, 05 Mar 2007 17:24:47 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HOLbr-00010Y-EW for emacs-devel@gnu.org; Mon, 05 Mar 2007 17:24:47 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HOLbr-00033B-1g for emacs-devel@gnu.org; Mon, 05 Mar 2007 17:24:47 -0500 Original-Received: from [127.0.0.1] (helo=localhost) by fencepost.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HOLaC-0006mf-7V; Mon, 05 Mar 2007 17:23:04 -0500 X-Spook: AMW CipherTAC-2000 spies militia JFK KGB Commecen Honduras X-Ran: [m-G+F (Chong Yidong's message of "Mon, 05 Mar 2007 17:06:52 -0500") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:67386 Archived-At: Chong Yidong wrote: > Richard Stallman writes: > >> Would someone please fix this, then ack? > > I don't think partial-completion-mode has ever worked for this (i.e., > completing Lisp symbols in M-:), has it? It may not be trivial to add > this functionality. I think it's just because TAB is bound to lisp-complete-symbol in M-:, which uses read-expression-map. Enabling recursive minibuffers, PC-lisp-complete-symbol works as it should in this example. (define-key read-expression-map "\t" 'PC-lisp-complete-symbol) would get the desired behaviour.