From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Vitalie Spinu Newsgroups: gmane.emacs.devel Subject: Re: Undocumented breaking change in minibuffer behavior Date: Thu, 15 Mar 2012 09:22:57 +0100 Organization: EUR Message-ID: <87k42mb7dq.fsf@gmail.com> References: <8762e730uq.fsf@gmail.com> <87fwdb82pa.fsf@gnu.org> <94ntq1psd.fsf@fencepost.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1331833402 29342 80.91.229.3 (15 Mar 2012 17:43:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 15 Mar 2012 17:43:22 +0000 (UTC) Cc: emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 15 18:43:21 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1S8Eho-00030d-G7 for ged-emacs-devel@m.gmane.org; Thu, 15 Mar 2012 18:43:16 +0100 Original-Received: from localhost ([::1]:52031 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S8Ehn-0006aZ-NL for ged-emacs-devel@m.gmane.org; Thu, 15 Mar 2012 13:43:15 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:33714) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S85y7-0006GZ-LB for emacs-devel@gnu.org; Thu, 15 Mar 2012 04:23:37 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S85xj-0005wE-2w for emacs-devel@gnu.org; Thu, 15 Mar 2012 04:23:31 -0400 Original-Received: from mail-ey0-f169.google.com ([209.85.215.169]:63449) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S85xf-0005uO-CB; Thu, 15 Mar 2012 04:23:03 -0400 Original-Received: by eaal1 with SMTP id l1so1550709eaa.0 for ; Thu, 15 Mar 2012 01:23:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:organization:references:date:in-reply-to :message-id:user-agent:mime-version:content-type; bh=3K5cmrGtl3Ybf02Y6WxATICRhVrq48FzyEBKQ8Gg3Ro=; b=lj0GE1dhxOXedo+SFu7KVIebUbmme1xNbGhlBAk2UWP+rBpQK+tmhxbMDYE6fji0V3 u4t47a+NxOB3jgQCu+oG2RyTK9+X6E2QhsQddm1jOeaSCG7VmGz38dx/lbva7kTFCGb8 QSTbCtC/9f7J3pTZC9Ij9xSyjtsDChTu39jlhlnRZIbrBAM/z+8zUJI+sR0IOK93opSZ XrBdQ3t6n68uVQywmm/iFqHF+Puy4iArsYHISgNlvOGSfYlxJAGQzoQRb3A975i1P1x/ Ph4XBJx4N3a/mgqP9FEPpZ+NxiZtJJ7cS0FOpWgpgDPCNy82ifCYlbR+P2W3C7zwt5Fz rpMA== Original-Received: by 10.14.207.200 with SMTP id n48mr790163eeo.71.1331799780202; Thu, 15 Mar 2012 01:23:00 -0700 (PDT) Original-Received: from localhost (e138158.upc-e.chello.nl. [213.93.138.158]) by mx.google.com with ESMTPS id n55sm4228073eef.6.2012.03.15.01.22.58 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 15 Mar 2012 01:22:59 -0700 (PDT) In-Reply-To: <94ntq1psd.fsf@fencepost.gnu.org> (Glenn Morris's message of "Wed, 14 Mar 2012 23:55:30 -0400") User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/23.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.215.169 X-Mailman-Approved-At: Thu, 15 Mar 2012 13:43:14 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:149088 Archived-At: >>>> Glenn Morris >>>> on Wed, 14 Mar 2012 23:55:30 -0400 wrote: > Bug fixes are usually not NEWSworthy, and it never occurred to me that > anyone would actually want the previous behaviour. I expect there are plenty of people who are setting truncate-lines globally to t, and who will spot the change. So a line in a news probably won't harm. > It would be easy to change it so that eg truncate-lines = 'nomini > means "truncate lines unless in a minibuffer". I realized that I would also prefer the new default with the exception of IDO completion. So I modified Johan's advice to work for IDO only: (add-hook 'ido-minibuffer-setup-hook (lambda () (setq truncate-lines (default-value 'truncate-lines)))) Thanks, Vitalie.