From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: An unwonted warning I constantly get about fontsets when I start Emacs Date: Sun, 28 May 2017 07:33:56 +0300 Message-ID: <83lgphha6j.fsf@gnu.org> References: <83efvaiqku.fsf@gnu.org> <83y3tih13o.fsf@gnu.org> <83r2zagzmy.fsf@gnu.org> <83mv9xhb1e.fsf@gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: blaine.gmane.org 1495946067 30280 195.159.176.226 (28 May 2017 04:34:27 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 28 May 2017 04:34:27 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun May 28 06:34:22 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 1dEpuH-0007jT-P4 for geh-help-gnu-emacs@m.gmane.org; Sun, 28 May 2017 06:34:21 +0200 Original-Received: from localhost ([::1]:42723 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dEpuN-0000pk-6T for geh-help-gnu-emacs@m.gmane.org; Sun, 28 May 2017 00:34:27 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35681) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dEptu-0000pT-M2 for help-gnu-emacs@gnu.org; Sun, 28 May 2017 00:33:59 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dEptr-0005r3-G3 for help-gnu-emacs@gnu.org; Sun, 28 May 2017 00:33:58 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:42229) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dEptr-0005qz-Cb for help-gnu-emacs@gnu.org; Sun, 28 May 2017 00:33:55 -0400 Original-Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:4010 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dEptq-0004tR-IW for help-gnu-emacs@gnu.org; Sun, 28 May 2017 00:33:55 -0400 In-reply-to: <83mv9xhb1e.fsf@gnu.org> (message from Eli Zaretskii on Sun, 28 May 2017 07:15:25 +0300) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e 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:113198 Archived-At: > Date: Sun, 28 May 2017 07:15:25 +0300 > From: Eli Zaretskii > > > I'm attaching charscript.el as it seems to be a generated file not > > tracked by git. > > And here's what seems to be the root cause of your problem: > > (#x10300 #x1032F old-ıtalic) > > That ı in ıtalic is the dotless i character, whereas it should be the > Latin i character. I see a few more of those elsewhere in the file, > all of them will cause similar problems. I'm guessing that some bug > causes this in your locale, so as the first thing please delete this > file and let the Emacs build process re-generate it, in the hope that > the bug was meanwhile fixed. If the regenerated file has the same > problem, please do report a bug about that. And I think I know what causes that: this file is produced by running Awk, and the Awk program uses 'tolower', which in your locale produces the dotless i characters instead of the Latin i. So running the build after setting LC_ALL=C should fix the problem.