From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: John Mastro Newsgroups: gmane.emacs.help Subject: Re: line-spacing in the minibuffer/echo area Date: Mon, 12 Oct 2015 12:48:14 -0700 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1444679332 32315 80.91.229.3 (12 Oct 2015 19:48:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 12 Oct 2015 19:48:52 +0000 (UTC) Cc: Nick Helm To: "help-gnu-emacs@gnu.org" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Oct 12 21:48:51 2015 Return-path: Envelope-to: geh-help-gnu-emacs@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 1Zlj5R-00079v-SH for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Oct 2015 21:48:46 +0200 Original-Received: from localhost ([::1]:58272 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zlj5R-0001DT-HJ for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Oct 2015 15:48:45 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45715) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zlj5H-0001DO-Uy for help-gnu-emacs@gnu.org; Mon, 12 Oct 2015 15:48:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zlj5G-0004Uk-1V for help-gnu-emacs@gnu.org; Mon, 12 Oct 2015 15:48:35 -0400 Original-Received: from mail-yk0-x231.google.com ([2607:f8b0:4002:c07::231]:33901) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zlj5F-0004Ug-TN for help-gnu-emacs@gnu.org; Mon, 12 Oct 2015 15:48:33 -0400 Original-Received: by ykdg206 with SMTP id g206so143563088ykd.1 for ; Mon, 12 Oct 2015 12:48:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=1iQ/7T1Xi9YFrbv30rL71TBjw6dToWCUPVJVHX6vthE=; b=zxHw3v6D0ms6rhijZOsfF2LaQ+zOmzN/XeBDldZAVWbPqzvQI07n/wp2t1O0t/9O4H bNhshjfcgsp1FISXRrUAa2p6a7A9R7dM2A0h3XfWsCeeC1Sec0B77QWqgbXIN2PKPgep fW18oCjNw86v9Tbk85MBaoNdN3TbB1MqKH3ASaziq6OlEOQcQ8QkOdnffaYYNpwkt3Fp 1/kWy8Y0zQiw2RQIb4OKt3OPS8kt0VVgWmbDvvB79GHGGjENDodOF5uEf2V9vww5lWn2 f9QCEoW9UqO99R3J6q6c3z8aFmLL6EEr/nQ0zjv9tUmQCDcb9ZJ9C5OpYNv7B8gpIUWO odDQ== X-Received: by 10.129.31.69 with SMTP id f66mr22040694ywf.174.1444679313369; Mon, 12 Oct 2015 12:48:33 -0700 (PDT) Original-Received: by 10.37.214.143 with HTTP; Mon, 12 Oct 2015 12:48:14 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4002:c07::231 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:107595 Archived-At: Nick Helm wrote: > How do I change the line-spacing in the minibuffer/echo area? And > then, how do I make that change persistent? > > I have this in my init.el > > (setq-default line-spacing 2) > > which works well for most windows and buffers, but not the minibuffer or > echo area. That works for me on Emacs 25 (and I see Michael Heerdegen tested on 23.4 and 24.5 as well). I'm not sure why it doesn't work for you, but you could try this, which is also how you would do it if you only wanted it to affect the minibuffer: (defun my-minibuffer-line-spacing () (setq-local line-spacing 2)) (add-hook 'minibuffer-setup-hook #'my-minibuffer-line-spacing) -- john