From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: Re: master 371c4f642a 1/2: Add new commands to zoom emojis Date: Tue, 05 Jul 2022 20:23:36 +0200 Message-ID: <86sfnfh107.fsf@gnu.org> References: <165657886980.22137.11785189028438514501@vcs2.savannah.gnu.org> <20220630084754.DED31C016A1@vcs2.savannah.gnu.org> <87edz6ech5.fsf@gnus.org> <86mtduxv90.fsf@mail.linkov.net> <87czepyz1l.fsf@gnus.org> <868rp8hl3d.fsf@gnu.org> <83o7y495dw.fsf@gnu.org> <86zghog5bi.fsf@gnu.org> <83mtdo93ok.fsf@gnu.org> <867d4s21na.fsf@gnu.org> <83let8923i.fsf@gnu.org> <86fsjguj0w.fsf@gnu.org> <87k08r7m7v.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="10659"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 Cc: Eli Zaretskii , larsi@gnus.org, juri@linkov.net, emacs-devel@gnu.org To: Visuwesh Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Jul 05 20:31:34 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 1o8nKg-0002gH-3X for ged-emacs-devel@m.gmane-mx.org; Tue, 05 Jul 2022 20:31:34 +0200 Original-Received: from localhost ([::1]:46050 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o8nKd-00082R-OY for ged-emacs-devel@m.gmane-mx.org; Tue, 05 Jul 2022 14:31:31 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37510) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o8nDM-0006e0-3V for emacs-devel@gnu.org; Tue, 05 Jul 2022 14:24:04 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:39176) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o8nDL-0001nD-Id; Tue, 05 Jul 2022 14:23:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=avVWHnh46dPaFcQUvdsZCHo4OxfnspfeeT2/1MXcBYA=; b=iVhHy7H/xGYLN1B/hK+w HOf/BLF13thQjTBkLw6hozP2fWSoFzmZNwUSg+cCeCaFDZNYIirc5Bfutdr0th4y6BBtZREUUIanV 1w6yaiqi7WN1XiQmIjCFWMyu//lafZ4L21/n83mbAQn/FvwPAdnqLK/f8J0zkaPobjMBEzFOmYfUn XVv3zBU3vpHoEIPavvKuzwH1EcrsjrOBuAX7fTqNlCZRTf1AgmakLDEJfiqYMOoKO015Jy4V5m4A0 quLku5IBjqcmQ2xDs1bjo9rc0YB1FJF5DCuRrhZ/mixEUAMCZqIFbqUXFxceIrB8DIpT9WGMaMZIi LMHfGZz6WcTMlA==; Original-Received: from p4fe3ee56.dip0.t-ipconnect.de ([79.227.238.86]:58264 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o8nDK-0000B2-RW; Tue, 05 Jul 2022 14:23:59 -0400 In-Reply-To: <87k08r7m7v.fsf@gmail.com> (Visuwesh's message of "Tue, 05 Jul 2022 18:25:32 +0530") 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:291880 Archived-At: Visuwesh writes: >> Is there another way to tell Emacs "Use a reduced size for Emojis, but >> be flexible when requested otherwise?" So basically behave like the >> definition above for `default'? > > Maybe `face-font-rescale-alist'? Thanks, that works. Now I have this in my .emacs and 'C-x 8 e +' works as expected: (set-fontset-font t 'emoji (font-spec :family "Segoe UI Emoji" :registry "iso10646-1") nil 'prepend) (add-to-list 'face-font-rescale-alist '("Segoe UI Emoji" . 0.93) t) Thanks for the hint. Best, Arash