From unknown Tue Jun 17 20:14:42 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#3286 <3286@debbugs.gnu.org> To: bug#3286 <3286@debbugs.gnu.org> Subject: Status: NS hang in event handling Reply-To: bug#3286 <3286@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:14:42 +0000 retitle 3286 NS hang in event handling reassign 3286 emacs submitter 3286 David Reitter severity 3286 normal tag 3286 unreproducible thanks From david.reitter@gmail.com Wed May 13 23:17:56 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 14 May 2009 06:17:56 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.1 required=4.0 tests=FOURLA,FVGT_m_MULTI_ODD, IMPRONONCABLE_2 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n4E6HqLT030907 for ; Wed, 13 May 2009 23:17:53 -0700 Received: from mail.gnu.org ([199.232.76.166]:36652 helo=mx10.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1M4UGN-0005cU-Bv for emacs-pretest-bug@gnu.org; Thu, 14 May 2009 02:17:51 -0400 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1M4UGL-0003MF-Rp for emacs-pretest-bug@gnu.org; Thu, 14 May 2009 02:17:51 -0400 Received: from mail-fx0-f169.google.com ([209.85.220.169]:45213) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M4UGL-0003Lr-EQ for emacs-pretest-bug@gnu.org; Thu, 14 May 2009 02:17:49 -0400 Received: by fxm17 with SMTP id 17so1152569fxm.42 for ; Wed, 13 May 2009 23:17:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :content-type:content-transfer-encoding:mime-version:subject:date :x-mailer; bh=91JBI+5DaIS/xBW5IYL0W7B0Vq3dawhF1hdy8vhXGuw=; b=f9QCcgoHDc6UEOonG39oO+6HXEuq6oFLo0KavjprBa9hX4+VYqKXXHTeNGYa2FEh0b AqTlvfoxBhUqlIztDQLMmBPDIfHMl4W8WxmraA8t0hDYk+vi5QJNzwnberBBiaQb3vfM GUHxJjN0BiuE+x0sm/yI5r6PxzwiM6EKWZOjI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:content-type:content-transfer-encoding :mime-version:subject:date:x-mailer; b=XnNr0osGRJiK+jUUk6A2HXmjc76z2HBa05eutOMybbhnk3xtDDD5cp28BILz18Il3+ StBuzsVqLNZVz5aAHbD8uMCB81aN3MVooR99EyBr2H6iQ5a3EfP9FI9a3cCeFnUPiCoz /wCgE6DqRPzP5/cNXSJdnSynlKuNPCEPCCH94= Received: by 10.103.214.8 with SMTP id r8mr1309010muq.6.1242281868486; Wed, 13 May 2009 23:17:48 -0700 (PDT) Received: from ?192.168.251.177? ([69.26.225.190]) by mx.google.com with ESMTPS id 23sm1170939mun.16.2009.05.13.23.17.46 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 13 May 2009 23:17:47 -0700 (PDT) Message-Id: From: David Reitter To: emacs-pretest-bug@gnu.org Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Subject: NS hang in event handling Date: Wed, 13 May 2009 23:17:43 -0700 X-Mailer: Apple Mail (2.935.3) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) I can reproduce a hang (C-g doesn't work) pretty reliably in a current build (NS port, on OS X 10.5.7) using this recipe: [Prerequisite: ESS must be installed] Emacs -q (actually, Aquamacs) Evaluate the bit of code shown at the bottom of this e-mail C-x b test-buffer RET M-x R-mode RET M-x R RET ;; to open an R process then switch back to test-buffer and start typing randomly. I don't need to type much to reproduce this. Emacs wil hang and not react to anything except changing faces when the mouse cursor is moved over text with `mouse-face' properties. I don't get this if I simplify `ess-maybe-show-arg-list' to just show a message. If you want me to do something specific with gdb, then I can do that of course. (defvar ess-arglist-show-timer nil) (progn (if ess-arglist-show-timer (cancel-timer ess-arglist-show-timer)) (setq ess-arglist-show-timer (run-with-idle-timer 0.2 t (defun ess-maybe-show-arg-list () (interactive) (and (eq major-mode 'ess-mode) (or (not (current-message)) (and (equal ess-r-args-show-as 'tooltip) ess-has-tooltip)) ;; to do check tooltip (condition-case nil (ess-r-args-show) ;; avoid showing error if not over function (error nil))))))) (defun ess-r-args-current-function () "Returns the name of the R function assuming point is currently within the argument list or nil if no possible function name is found." (save-excursion (condition-case nil (up-list -1) (error "Can't find opening parenthesis.")) (let ((posend (point))) (backward-sexp 1) (let ((rfunname (buffer-substring-no-properties posend (point)))) (if (posix-string-match "^[a-zA-Z0-9_\.]+$" rfunname) rfunname nil))))) from ESS: #0 0x9021e286 in mach_msg_trap () #1 0x90225a7c in mach_msg () #2 0x9012a04e in CFRunLoopRunSpecific () #3 0x9012ac78 in CFRunLoopRunInMode () #4 0x9272b28c in RunCurrentEventLoopInMode () #5 0x9272b0a5 in ReceiveNextEventCommon () #6 0x9272af19 in BlockUntilNextEventMatchingListInMode () #7 0x93f15d0d in _DPSNextEvent () #8 0x93f155c0 in -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] () #9 0x93f0e5fb in -[NSApplication run] () #10 0x001a6083 in ns_read_socket () #11 0x000c0a41 in read_avail_input () #12 0x000c0bb5 in gobble_input () #13 0x001a6454 in ns_select () #14 0x00185c02 in wait_reading_process_output () #15 0x00187198 in Faccept_process_output () #16 0x0013d750 in Ffuncall () #17 0x0017e10a in Fbyte_code () #18 0x0013cfa4 in funcall_lambda () #19 0x0013d4ab in Ffuncall () #20 0x0017e10a in Fbyte_code () #21 0x0013cfa4 in funcall_lambda () #22 0x0013d4ab in Ffuncall () #23 0x0017e10a in Fbyte_code () #24 0x0013cfa4 in funcall_lambda () #25 0x0013d4ab in Ffuncall () #26 0x0017e10a in Fbyte_code () #27 0x0013cfa4 in funcall_lambda () #28 0x001402f9 in apply_lambda () #29 0x0013fea2 in Feval () #30 0x001415b2 in internal_lisp_condition_case () #31 0x0014163b in Fcondition_case () #32 0x001401a8 in Feval () #33 0x00140b5f in Fand () #34 0x001401a8 in Feval () #35 0x0013d1b1 in funcall_lambda () #36 0x0013d4ab in Ffuncall () #37 0x0013e0a0 in Fapply () #38 0x0013d6a6 in Ffuncall () #39 0x0017e10a in Fbyte_code () #40 0x00140146 in Feval () #41 0x001415b2 in internal_lisp_condition_case () #42 0x0017eb1e in Fbyte_code () #43 0x0013cfa4 in funcall_lambda () #44 0x0013d4ab in Ffuncall () #45 0x0013db39 in call1 () #46 0x000b8aea in timer_check () #47 0x000c1858 in detect_input_pending_run_timers () #48 0x00185cd1 in wait_reading_process_output () #49 0x00004226 in sit_for () #50 0x000c761d in read_char () #51 0x000c9133 in read_key_sequence () #52 0x000cb4b0 in command_loop_1 () #53 0x0013baad in internal_condition_case () #54 0x000b77b8 in command_loop_2 () #55 0x0013b98c in internal_catch () #56 0x000be29b in recursive_edit_1 () #57 0x000be454 in Frecursive_edit () #58 0x000b691b in main () From david.reitter@gmail.com Fri May 15 19:26:47 2009 Received: (at control) by emacsbugs.donarmstrong.com; 16 May 2009 02:26:47 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: * X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=1.5 required=4.0 tests=AWL,MISSING_SUBJECT,NOSUBJECT, VALID_BTS_CONTROL autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-ew0-f178.google.com (mail-ew0-f178.google.com [209.85.219.178]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n4G2QhEW022870 for ; Fri, 15 May 2009 19:26:44 -0700 Received: by ewy26 with SMTP id 26so3082699ewy.1 for ; Fri, 15 May 2009 19:26:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :content-type:content-transfer-encoding:mime-version:subject:date :x-mailer; bh=plg2Eootcg1IMs04Y/3QPOxu7dk6vl7WwLghb+OQ7wU=; b=a270UFEuvHs51iAHCPLA8vz9xpKvMhyiKKCYB33BLNafHwNcG+wyPYIf74iO3Behav uaMcRJzqX6PnUCwLEeGUvEbEfS+BCcLdB6XacaoRYB9m2O8XRZWG3v90QSfp3PheT8EB t+I3emAxwhe40MqjYcdIPUrd/zFvOHoHWz2V8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:content-type:content-transfer-encoding :mime-version:subject:date:x-mailer; b=gPHamF+qgFSrERfhg/lm05ePA+RizqrreW4dRDsBV/P7UfnmLv/LLo0CxLnHZ6mxHE ye2f/I+XJduFpJaDiktuI2kRYVVGeQcfGGMgUdOxjdtsbxC3e3pbUYUaHgSOmy7pHchM 3XxN5UfA+gNBnTe41ti6YCEZCH43Ee2I7VBbk= Received: by 10.210.63.2 with SMTP id l2mr1665149eba.10.1242440797306; Fri, 15 May 2009 19:26:37 -0700 (PDT) Received: from ?192.168.251.50? ([69.26.225.190]) by mx.google.com with ESMTPS id 28sm2507823eye.26.2009.05.15.19.26.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 15 May 2009 19:26:36 -0700 (PDT) Message-Id: From: David Reitter To: control@debbugs.gnu.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Subject: Date: Fri, 15 May 2009 19:26:32 -0700 X-Mailer: Apple Mail (2.935.3) reassign 3286 ns reassign 3233 ns reassign 3204 ns From rgm@gnu.org Wed Jun 17 12:22:01 2009 Received: (at control) by emacsbugs.donarmstrong.com; 17 Jun 2009 19:22:01 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-4.8 required=4.0 tests=AWL,ONEWORD,VALID_BTS_CONTROL autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n5HJLua5018573 for ; Wed, 17 Jun 2009 12:21:57 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MH0hn-0005IR-QO; Wed, 17 Jun 2009 15:21:55 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19001.16979.757746.667121@fencepost.gnu.org> Date: Wed, 17 Jun 2009 15:21:55 -0400 From: Glenn Morris To: control Subject: control reassign 3286 emacs,ns reassign 2857 emacs22 severity 2835 minor reassign 3596 emacs,ns merge 3596 3588 tags 3392 moreinfo reassign 3434 emacs,ns merge 2868 3434 merge 3210 3408 From debbugs-submit-bounces@debbugs.gnu.org Tue May 17 14:02:53 2016 Received: (at 3286) by debbugs.gnu.org; 17 May 2016 18:02:53 +0000 Received: from localhost ([127.0.0.1]:56210 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1b2jKW-0007mt-Rr for submit@debbugs.gnu.org; Tue, 17 May 2016 14:02:53 -0400 Received: from mail-wm0-f42.google.com ([74.125.82.42]:36729) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1b2jKV-0007me-H2 for 3286@debbugs.gnu.org; Tue, 17 May 2016 14:02:51 -0400 Received: by mail-wm0-f42.google.com with SMTP id n129so150750922wmn.1 for <3286@debbugs.gnu.org>; Tue, 17 May 2016 11:02:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=9MsfzYHwC1KjqxjLOl4GcIkGIzeO9scK0ay3lLbPrSA=; b=wgrKlQ71QWtExLJpbFvJnMA0RMfVnKusClBr1q+iiCq7Y2CDXaFXv13kCxbaRJ5m3/ 2UC+ENNJwWzi05iXcUQG/UXWbMR4nES5omtaZCu1qRed8UDic5oVVWFoSi1AB0xAgLxx bNdXiyNFxZgSY53vpjaGOGxpx1B4YrD2KZwoY1+yhI6O3Jt+QEVkFFa6+pMQljxbzmOO YWi7xpE51S93wM1hKAQNR49HMVgJoDDZv93mf0y0R3d5NhLgPEk2sWzVclW8aeWTiUXl HLZrli2mtYqvrP34mt9hQn8/4y8l44F8SQwDKJt4kai25wpTd1ticsb0ZKJhhdqMJOYR 8NdQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:to:cc:subject:references:date :in-reply-to:message-id:user-agent:mime-version; bh=9MsfzYHwC1KjqxjLOl4GcIkGIzeO9scK0ay3lLbPrSA=; b=cq/o2aSYhuvUtDhOK3iCjKiCfH/15Ml+1kLP7UN5LJlPLhsa4024b/3MvSnBkLLgme a1Xa6Znwc0aDV1Q8/BWt0r5Lfg0eHX4fvoQNnJGzFmzjw78IFsb2fP8WMufWwq0qon+V MtUUlhXXA2cCcWgXl6n97dkpILS1I1aT7p1dHd3F+D8xHSQ5c4MDS6ELZZ19+y4ZApLC apDrT58j61d6GKnak77HeeWQ/Q1OoFQdCW99XqW/R2IV1CNRl9UNwzvwqcmPFixBbazx e4zaL1cOu2ysniv8OeRqZl7OcVGS1CUuYmbJ15vrsUYMqiWfmk/CfEwqrzuSi7Rj4xrR bTvA== X-Gm-Message-State: AOPr4FVDeVvG0Q/ktPaw3unaunv16QscpG7xD8mKlXDnhSey/01ld96IvjHHA/uAX/6ZIA== X-Received: by 10.28.188.7 with SMTP id m7mr2783081wmf.37.1463508165993; Tue, 17 May 2016 11:02:45 -0700 (PDT) Received: from breton.holly.idiocy.org (ip6-2001-08b0-03f8-8129-dcd0-ea5c-d060-789e.holly.idiocy.org. [2001:8b0:3f8:8129:dcd0:ea5c:d060:789e]) by smtp.gmail.com with ESMTPSA id c194sm25245676wme.9.2016.05.17.11.02.44 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 May 2016 11:02:45 -0700 (PDT) From: Alan Third To: David Reitter Subject: Re: bug#3286: NS hang in event handling References: Date: Tue, 17 May 2016 19:02:45 +0100 In-Reply-To: (David Reitter's message of "Wed, 13 May 2009 23:17:43 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.93 (darwin) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.5 (/) X-Debbugs-Envelope-To: 3286 Cc: 3286@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.5 (/) David Reitter writes: > I can reproduce a hang (C-g doesn't work) pretty reliably in a current > build (NS port, on OS X 10.5.7) using this recipe: > > [Prerequisite: ESS must be installed] > > Emacs -q (actually, Aquamacs) > > Evaluate the bit of code shown at the bottom of this e-mail > > C-x b test-buffer RET > M-x R-mode RET > M-x R RET ;; to open an R process > > then switch back to test-buffer and start typing randomly. I don't > need to type much to reproduce this. > Emacs wil hang and not react to anything except changing faces when > the mouse cursor is moved over text with `mouse-face' properties. Hi David, are you still getting this in Emacs 25? I don't seem to have the required bits and pieces to test it myself, but can probably get them. I've no idea what ESS is, though. -- Alan Third From debbugs-submit-bounces@debbugs.gnu.org Tue May 17 14:12:19 2016 Received: (at 3286) by debbugs.gnu.org; 17 May 2016 18:12:19 +0000 Received: from localhost ([127.0.0.1]:56223 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1b2jTf-00080q-9I for submit@debbugs.gnu.org; Tue, 17 May 2016 14:12:19 -0400 Received: from mail-io0-f171.google.com ([209.85.223.171]:33804) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1b2jTd-00080d-6W for 3286@debbugs.gnu.org; Tue, 17 May 2016 14:12:17 -0400 Received: by mail-io0-f171.google.com with SMTP id 190so34196086iow.1 for <3286@debbugs.gnu.org>; Tue, 17 May 2016 11:12:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=6d5m3vrZAU/lIgUKGpbMwAPJgpeHoW/Mwcr7CocawTg=; b=uQ9gXPxEE4AzljZEZuuUoZY5mMtt0UWx+jsucG3D37WZtQRyJtiN+ynVSBPt+WHw9Q EXLnXXNawBzSp8lMtmGbMPk6loLoNQQPKwLfnYwdLrpLrWKmlf9N6i1DrSA5RP5fusFt +qOqMm2lQIvThT+c0IOfxDn6vGz1BH6mSV5XWBk8rEP30ME80SibpaXRRkTADpMVavzA RXgDNFBltG6+PnrnmBDCb/gA8PgnkeUrA+SwlLoj2E+e+gHMmGFdoHUF0MZUn2w4k4Gu u3cjBwSinAUo8NKIueBBp0qQ+m/3lLX1M7eWjh7XpfjZOgAG+95uIlMwY0nCYvnkrveg 0vZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=6d5m3vrZAU/lIgUKGpbMwAPJgpeHoW/Mwcr7CocawTg=; b=H6MbtCo5ZJEoTy3oB1OlOJiKsjveZD+pSWzDejAW/mAVX5QtjxWV5NnP0M3SA48KqY Xs/IuRw9cYCsC928HiT2fxYu1ElOe5k2C4ABGraBigt9fs3iillwedS1wivkz5wCyq7S HVEMNVEjKqua/422nlJ90ItCvfR6qNuxMMQxsMRDMnIeGgxIPuOMvyjZc1Nws49gfQKe TD+InMySkYCS0YYxCpJI3EBiJt83h/cl0p7Or7p0HVd0kuelKb9A8H9R/V87xs5oo5L0 SoysyqNqIqwiTeEYjnaa9eholZNOTKqIIUnwnvSN9b/lhfJmlnhThjPi4GYXQ2HZApvc WQGQ== X-Gm-Message-State: AOPr4FXvme1nL6NrsTwUQLNu+mAyfMQaO7+A2Sc9u4cd+lhACvzSu0mh+cAg5hxPGvam1A== X-Received: by 10.107.63.214 with SMTP id m205mr2175389ioa.15.1463508731467; Tue, 17 May 2016 11:12:11 -0700 (PDT) Received: from [192.168.2.5] (cpe-74-130-125-220.kya.res.rr.com. [74.130.125.220]) by smtp.gmail.com with ESMTPSA id uh3sm1406685igb.3.2016.05.17.11.12.09 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 17 May 2016 11:12:09 -0700 (PDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: bug#3286: NS hang in event handling From: David Reitter In-Reply-To: Date: Tue, 17 May 2016 14:12:08 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: <10A128D5-F8FF-48E8-B0DF-AD02CDB227DA@gmail.com> References: To: Alan Third X-Mailer: Apple Mail (2.3124) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 3286 Cc: 3286@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Alan, We are seeing 100% CPU use quite a lot with the latest OS X, but it will = still react sometimes. This may or may not be the same bug. I don=E2=80=99t have cycles to look into this old bug report again now, = and I haven=E2=80=99t figured out much with the 100% CPU use bug. My guess is that it=E2=80=99s most productive to try to investigate the = newest bugs first while they are still easier to reproduce for the = reporter. - David =20 > On May 17, 2016, at 2:02 PM, Alan Third wrote: >=20 > David Reitter writes: >=20 >> I can reproduce a hang (C-g doesn't work) pretty reliably in a = current >> build (NS port, on OS X 10.5.7) using this recipe: >>=20 >> [Prerequisite: ESS must be installed] >>=20 >> Emacs -q (actually, Aquamacs) >>=20 >> Evaluate the bit of code shown at the bottom of this e-mail >>=20 >> C-x b test-buffer RET >> M-x R-mode RET >> M-x R RET ;; to open an R process >>=20 >> then switch back to test-buffer and start typing randomly. I don't >> need to type much to reproduce this. >> Emacs wil hang and not react to anything except changing faces when >> the mouse cursor is moved over text with `mouse-face' properties. >=20 > Hi David, are you still getting this in Emacs 25? I don't seem to have > the required bits and pieces to test it myself, but can probably get > them. I've no idea what ESS is, though. >=20 > --=20 > Alan Third From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 25 11:16:35 2017 Received: (at control) by debbugs.gnu.org; 25 Sep 2017 15:16:35 +0000 Received: from localhost ([127.0.0.1]:58628 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwV7a-0006yE-P4 for submit@debbugs.gnu.org; Mon, 25 Sep 2017 11:16:34 -0400 Received: from mail-wm0-f48.google.com ([74.125.82.48]:49059) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwV7X-0006qE-Rl for control@debbugs.gnu.org; Mon, 25 Sep 2017 11:16:32 -0400 Received: by mail-wm0-f48.google.com with SMTP id m127so20807093wmm.3 for ; Mon, 25 Sep 2017 08:16:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20161025; h=sender:date:message-id:to:from:subject; bh=WjDZvwGVjfkGFuSyD7KKVh4EP5BuKHN+/tz0GFI4dSA=; b=jNXa+behpEQzsSMvGm3ypzLl9kDHt6uVDwzm06RTladjxZNb1YAZ8FuQA5Qa+hf8+n CX1u42HokUBOtdE/ogd3xDf04S5nJ2drTJ981gQxialzyYMDYOHCsQVM8m731CXEKqto 0HKx5qa1vGHp0ttw4niakYpxtQ+MCnGgPcqfA+VdiSdCJOcwRi2cC0jkmO15tjqWR07n aWebm/N6JO41cUtc+kUpmD5a/M6SdxZl++j3lR1MOzFSWMBb27yNNXR4dv6wCjxki+r7 EUTMNVZ9td/e48LMIe6BWIwjw9RlHjca6+aXBvP2bVow+rMxV/Zthl7OoqjNyOU0PVFS 369A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:message-id:to:from:subject; bh=WjDZvwGVjfkGFuSyD7KKVh4EP5BuKHN+/tz0GFI4dSA=; b=mtAjm+YZYD7Tjr5kfdmH79ndnSIzmSde6foGDdriHJzP5KvoWYr7ApqOAjUFRcbULe kGh/wi/FjeuxNQLULM6w7gVN+Q+QtSPCQpr92inyK1NF05Rbr+CrKc9KGhws83Ubc65F ewkjJ36DyauN0j2+Qxa8xh0ECWEJzqHbw539sG8FFVwuF7uLpBM/5dAi7LbVaHMwuJQr TEIq4arIghwbzNy3yD1pnzjmy8rBykz9AJy9ZoifCP4A4J/myj+A9XFNGcrYRfiZv0Kt VGNJHwcaRms87qxPJmZBBuEbLxHKLlrws4zRpx75ypLEaAO9G6Md0tJCLvXkV9B71N4W z5Qg== X-Gm-Message-State: AHPjjUj5cJfD0y+Qg97ybnrI3XaN55Mrs+TvUZu8dTJ+VUsypfL4I9eG EvcqNvOBumUrTGtIzSYWQanA6NEviTI= X-Google-Smtp-Source: AOwi7QACMqdzBCCiZw2fjY3TgurK4UoEe/j9mzBRjpTC5Wc9qOtZ8EYjyqJtmLpOEZnUFxzCfkmhxw== X-Received: by 10.28.141.70 with SMTP id p67mr597505wmd.80.1506352585992; Mon, 25 Sep 2017 08:16:25 -0700 (PDT) Received: from breton.holly.idiocy.org (ip6-2001-08b0-03f8-8129-b188-2706-1206-0eea.holly.idiocy.org. [2001:8b0:3f8:8129:b188:2706:1206:eea]) by smtp.gmail.com with ESMTPSA id f89sm3479350wmh.18.2017.09.25.08.16.25 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 25 Sep 2017 08:16:25 -0700 (PDT) Date: Mon, 25 Sep 2017 16:16:24 +0100 Message-Id: To: control@debbugs.gnu.org From: Alan Third Subject: control message for bug #3286 X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.7 (/) tags 3286 unreproducible close 3286 From unknown Tue Jun 17 20:14:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 24 Oct 2017 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator