From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Florian Beck Newsgroups: gmane.emacs.help Subject: Sorting Order of Completion Candidates Date: Mon, 28 Feb 2011 15:29:18 +0100 Message-ID: <4D6BB13E.3040404@miszellen.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1298941266 14138 80.91.229.12 (1 Mar 2011 01:01:06 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 1 Mar 2011 01:01:06 +0000 (UTC) To: gnu-emacs-help@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Mar 01 02:01:01 2011 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.69) (envelope-from ) id 1PuDxT-0001sC-Kr for geh-help-gnu-emacs@m.gmane.org; Tue, 01 Mar 2011 02:00:59 +0100 Original-Received: from localhost ([127.0.0.1]:60811 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PuDxS-0001dZ-IP for geh-help-gnu-emacs@m.gmane.org; Mon, 28 Feb 2011 20:00:58 -0500 Original-Received: from [140.186.70.92] (port=59635 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pu46G-0008Co-Fw for help-gnu-emacs@gnu.org; Mon, 28 Feb 2011 09:29:25 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pu46F-0006wk-8C for help-gnu-emacs@gnu.org; Mon, 28 Feb 2011 09:29:24 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]:38293) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pu46F-0006wg-6n for help-gnu-emacs@gnu.org; Mon, 28 Feb 2011 09:29:23 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:49963) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1Pu46F-00082W-0I for gnu-emacs-help@gnu.org; Mon, 28 Feb 2011 09:29:23 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pu46D-0006up-RX for gnu-emacs-help@gnu.org; Mon, 28 Feb 2011 09:29:22 -0500 Original-Received: from mo-p00-ob.rzone.de ([81.169.146.160]:54207) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pu46D-0006tk-CR for gnu-emacs-help@gnu.org; Mon, 28 Feb 2011 09:29:21 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; t=1298903358; l=571; s=domk; d=streitblatt.de; h=Content-Transfer-Encoding:Content-Type:Subject:To:MIME-Version:From: Date:X-RZG-CLASS-ID:X-RZG-AUTH; bh=w3zEwhTFbcHbIr47D4v6sLSt3RQ=; b=vmmqsoZxQAC3WpVf38mXRqJV8FxbhynMhRTXbdtdrCHtDGyQbKDqdNzOeTiF6lE3wGe 4N2IXHWu6FKunfwBWxJGd1tItXWz83pzwCymPUch+D4MXkZYVOuLLYntnaY+tskaT4qlH thV09czI/eIWSXSBmemG3Suj0GhrdaZ2tVo= X-RZG-AUTH: :KmALZ0mpdbGonPxw7gDkop508XQjelhLxGYn4B74/jTNdrjLjuwMuuiy8j0BYXCkFPbaltQ= X-RZG-CLASS-ID: mo00 Original-Received: from [192.168.2.100] (p549942DE.dip.t-dialin.net [84.153.66.222]) by post.strato.de (cohen mo24) (RZmta 25.5) with ESMTPA id v0569cn1SCuhS5 for ; Mon, 28 Feb 2011 15:29:18 +0100 (MET) User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101208 Thunderbird/3.1.7 X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 X-Mailman-Approved-At: Mon, 28 Feb 2011 19:59:58 -0500 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:79596 Archived-At: While writing some code to index my notes I have run into a problem. I have a carefully crafted list of keywords sorted in order of frequency. (When assigning new keywords I want to consider the most frequent keywords first.) However > (completing-read "Prompt: " '("a" "c" "b")) gives me > Possible completions are: > a > b > c whereas I want > Possible completions are: > a > c > b If there is no option or hook, if guess I could just modify the *Completions* buffer. Any hints how/where it is set up? Many thanks in advance!