From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Not able to display \u110BD and \u110CD in Emacs Date: Fri, 29 Apr 2022 08:52:18 +0300 Message-ID: <83bkwkbfn1.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="13462"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: =?utf-8?B?4KS44KSu4KWA4KSwIOCkuOCkv+CkguCkuSBTYW1lZXIgU2luZ2g=?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Apr 29 07:54:27 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nkJaE-0003LS-2p for ged-emacs-devel@m.gmane-mx.org; Fri, 29 Apr 2022 07:54:26 +0200 Original-Received: from localhost ([::1]:48964 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nkJaC-0000TV-M2 for ged-emacs-devel@m.gmane-mx.org; Fri, 29 Apr 2022 01:54:24 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:38416) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nkJYB-000839-2v for emacs-devel@gnu.org; Fri, 29 Apr 2022 01:52:19 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:41564) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nkJYA-0005yC-Pv; Fri, 29 Apr 2022 01:52:18 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=XlxWX4jz/ZjmBCm5uU12t0YLM1ZwDVka8I7+3xbz/MY=; b=ZLS+N4SGZS/ws1OxFGgF sFMnl0Q0jkp0i6tzLjqUGLVn6sHhfyUpEDgYoI3iyfXLPWstnh/YJSGcOMnpKucZuioQhdodG3bGc fuTGn0E6hT/47no0uNt2xMt2GzzTIu/yK8gSLOrzqQXFB2bjkodYpbYnYnc95wUd2uB7HLjLrY24n GflpFMEpnr8jX8uztHJ7tPKtwDV9KFRlIdt5hUSaElkXVeDLVv5xWd0Lv9aQUnqv0ZZ5+VG85esjc zwBJkewQ74X8w5PkhHJDbWWzwieTOkAOqPaMCPW7Zvac6HWBds5g89TVS4ypKBpg/k4zy9emZs4P5 XgUiMRpTYfFjJw==; Original-Received: from [87.69.77.57] (port=3016 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nkJYA-0002SK-78; Fri, 29 Apr 2022 01:52:18 -0400 In-Reply-To: (lumarzeli30@gmail.com) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:288956 Archived-At: > From: समीर सिंह Sameer Singh > > Date: Fri, 29 Apr 2022 04:47:08 +0530 > > Hi! I was trying to implement the Kaithi script in Emacs. Everything seems > to be working fine except for two characters: Kaithi Number Sign (\u110BD) > and Kaithi Number Sign Above (\u110CD), they do not appear when inserted in > a buffer, instead it is just whitespace. > According to the Unicode standard, they behave like the Arabic Number Sign > (\u0600) which spans numbers. I have attached a render from hb-view > > This is what I have written in lisp/language/indian.el > Please tell me what I am doing wrong. You didn't show any Kaithi text that you think is not being displayed correctly by Emacs. Without that, it's hard to look into the problem. > (numerals "\x966-\x96F")) I believe this should be (numerals "[\x966-\x96F]") IOW, the "[..]" brackets are missing. Maybe that is the cause of your problem.