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: reverting some 22 behavior to how 21 was Date: Wed, 18 Jul 2007 16:17:41 -0400 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1184791302 12763 80.91.229.12 (18 Jul 2007 20:41:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 18 Jul 2007 20:41:42 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jul 18 22:41:41 2007 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 1IBGL3-0005v4-U7 for geh-help-gnu-emacs@m.gmane.org; Wed, 18 Jul 2007 22:41:38 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBGL3-0001Pr-FT for geh-help-gnu-emacs@m.gmane.org; Wed, 18 Jul 2007 16:41:37 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.umontreal.ca!news.umontreal.ca.POSTED!not-for-mail Original-NNTP-Posting-Date: Wed, 18 Jul 2007 15:17:41 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:tHsjOn/t1CR0QFQylRBbBZ2kGts= Original-Lines: 36 X-Usenet-Provider: http://www.giganews.com Original-NNTP-Posting-Host: 132.204.27.213 Original-X-Trace: sv3-JZFeUroWQOP4uwvXOk6UQfBJUDDc/RVfM7Gq777U4+jjuTuWkdXapBwfv6rlPhngY24eFMP7ZhM1y6X!0JRXXWNOtokhQyIpIoBl23tykoBEhL3STWvTzWWAHWJHVLaw0u82ZMoKXV5Rz/RRLkRDFuU2XtxD!nlHvaZKH//FVPNdPhQ== Original-X-Complaints-To: abuse@umontreal.ca X-DMCA-Complaints-To: abuse@umontreal.ca X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.35 Original-Xref: shelby.stanford.edu gnu.emacs.help:150203 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:45786 Archived-At: > A couple of questions about some things that have changed > for me. > (1) In Emacs 21 I used the following .emacs lines: > (add-hook 'paragraph-indent-text-mode-hook 'flyspell-mode) > (add-hook 'paragraph-indent-text-mode-hook 'refill-mode) > However, in 22 it appears these functions now "toggle," and They've always toggled AFAIK. No change on this side. > I receive the message (e.g.): > Toggling flyspell-mode off; better pass an explicit argument. What has changed is that in Emacs-22, when the toggle turns things off, Emacs warns the user rather than doing it silently. You could do: (add-hook 'paragraph-indent-text-mode-hook (lambda () (flyspell-mode t) (refill-mode t))) > (2) Second question is about font coloring in the mini-buffer > line. Some parts are now displayed in dark blue text, e.g. if > I type M-x then that is echoed back to me in dark blue, and > then anything I type after it is gray. As I use a black terminal > background the dark blue is difficult to see; in 21 the entire > line was gray. What option can I set to change the blue text? You don't want to change that face, then. Instead you want to tell Emacs that your terminal's background is dark. See C-h v `frame-background-mode'. Stefan