From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Angelo Graziosi Newsgroups: gmane.emacs.help Subject: Re: About how misspelled word are displayed Date: Sat, 13 May 2017 00:14:51 +0200 Message-ID: <93224ad6-b08b-ad39-6a0e-1e03f42b19ad@alice.it> References: <3993ee96-42e7-e597-f7d0-306003faa235@alice.it> <4bf8d1cf-5287-f74e-d6c5-938bbf295d6c@alice.it> <557766eb-48c0-4eaf-8c08-459b2376da8c@default> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1494627324 5368 195.159.176.226 (12 May 2017 22:15:24 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 12 May 2017 22:15:24 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.0 To: Drew Adams , help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat May 13 00:15:19 2017 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d9IqF-0001Gr-2M for geh-help-gnu-emacs@m.gmane.org; Sat, 13 May 2017 00:15:19 +0200 Original-Received: from localhost ([::1]:55475 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9IqK-00031m-Bc for geh-help-gnu-emacs@m.gmane.org; Fri, 12 May 2017 18:15:24 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9Ipt-00031N-P8 for help-gnu-emacs@gnu.org; Fri, 12 May 2017 18:14:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9Ipq-00059e-LW for help-gnu-emacs@gnu.org; Fri, 12 May 2017 18:14:57 -0400 Original-Received: from smtp201.alice.it ([82.57.200.97]:15975) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9Ipq-00058C-90 for help-gnu-emacs@gnu.org; Fri, 12 May 2017 18:14:54 -0400 Original-Received: from [192.168.1.102] (79.35.224.245) by smtp201.alice.it (8.6.060.43) (authenticated as angelo.graziosi@alice.it) id 58E37286252A0AB5; Sat, 13 May 2017 00:14:52 +0200 In-Reply-To: Content-Language: en-US X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 82.57.200.97 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.help:113014 Archived-At: Il 12/05/2017 22:41, Drew Adams ha scritto: >> IOW, we now have not only Customize writing to your `custom-file' >> or init file; we have also the package system doing that. >> >> It's questionable whether that's a great idea - a question that was >> discussed briefly on emacs-devel@gnu.org:... >> >> One of the Emacs maintainers asked there whether we shouldn't use a >> different file for this. But AFAIK that thread went nowhere. >> >> An earlier thread also broached the question somewhat:... > > See also this thread, even earlier. As soon as the package system > started writing to user init files (or `custom-file') people raised > the question of making it use another file or files. > > http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00375.html > Thanks for all your clarification. Finally I found where to customize: Customize Group: flyspell, and then I found the flyspell-duplicate/incorrect options. Now my custom.el (after a few tries) is: $ cat custom.el [...] (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(flyspell-duplicate ((t (:foreground "Gold3" :underline t :weight bold)))) '(flyspell-incorrect ((t (:foreground "Red1" :underline t :weight bold))))) Thanks, Angelo.