From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Font related crash? Date: Fri, 06 Nov 2015 12:50:31 +0200 Message-ID: <831tc3s8p4.fsf@gnu.org> References: <837flxt8ue.fsf@gnu.org> <563B0B6A.9040207@gmx.at> <83y4ecs97w.fsf@gnu.org> <563B9D19.6000305@gmx.at> <83oaf8s2xv.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE X-Trace: ger.gmane.org 1446807058 18332 80.91.229.3 (6 Nov 2015 10:50:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 6 Nov 2015 10:50:58 +0000 (UTC) Cc: rudalics@gmx.at, emacs-devel@gnu.org To: Yuan MEI Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Nov 06 11:50:52 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Zuebb-0002UI-5H for ged-emacs-devel@m.gmane.org; Fri, 06 Nov 2015 11:50:51 +0100 Original-Received: from localhost ([::1]:37871 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zueba-0001TT-Nt for ged-emacs-devel@m.gmane.org; Fri, 06 Nov 2015 05:50:50 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36193) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZuebV-0001TC-Dq for emacs-devel@gnu.org; Fri, 06 Nov 2015 05:50:46 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZuebS-0003X7-H6 for emacs-devel@gnu.org; Fri, 06 Nov 2015 05:50:45 -0500 Original-Received: from mtaout27.012.net.il ([80.179.55.183]:56087) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZuebS-0003Ww-4A for emacs-devel@gnu.org; Fri, 06 Nov 2015 05:50:42 -0500 Original-Received: from conversion-daemon.mtaout27.012.net.il by mtaout27.012.net.il (HyperSendmail v2007.08) id <0NXE003002RO5100@mtaout27.012.net.il> for emacs-devel@gnu.org; Fri, 06 Nov 2015 12:45:58 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([84.94.185.246]) by mtaout27.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NXE004A938MTR00@mtaout27.012.net.il>; Fri, 06 Nov 2015 12:45:58 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.179.55.183 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:193401 Archived-At: > Date: Fri, 6 Nov 2015 02:31:48 -0800 > From: Yuan MEI > Cc: martin rudalics , emacs-devel >=20 > If I run emacsclient -c under the same DISPLAY=3D:0, the crash does= NOT occur and > a second frame shows up correctly. Thanks. Btw, are _all_ of the customizations you posted needed for the reproduction? There seem to be several unrelated parts there, and I'= m not sure they are, or even can be, related. For example: > ;; This makes scaling right: c-x c-[+-0] > (defadvice frame-notice-user-settings (before my:rescale-alist) > (message "set face-font-rescale-alist") > (setq face-font-rescale-alist '((".*[Hh]ei.*" . 1.2) > (".*=E9=9B=85=E9=BB=91*" . 1.2) > (".*Myungjo.*" . 1.2) > (".*Osaka.*" . 1.2)))) >=20 > (ad-activate 'frame-notice-user-settings) What is this about? Also, what about these customizations: > (setq initial-frame-alist '((top . 2) (left . 2) > (width . 100) (height . 63) > (menu-bar-lines . 1) > (tool-bar-lines . 0))) > (setq default-frame-alist '((foreground-color . "white") > (background-color . "black") > (cursor-color . "red") > (menu-bar-lines . 1) > (tool-bar-lines . 0) > (width . 100) > (height . 63) Are the colors and the frame dimensions really relevant to the crash? Thanks.