From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tak Kunihiro Newsgroups: gmane.emacs.help Subject: Re: Graphical popup dialog issue on Mac. Date: Sun, 08 Jun 2014 18:00:38 +0900 (JST) Message-ID: <20140608.180038.311932254.tkk@misasa.okayama-u.ac.jp> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1402218069 17018 80.91.229.3 (8 Jun 2014 09:01:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 8 Jun 2014 09:01:09 +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 Jun 08 11:01:04 2014 Return-path: Envelope-to: geh-help-gnu-emacs@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 1WtYyO-0006lZ-15 for geh-help-gnu-emacs@m.gmane.org; Sun, 08 Jun 2014 11:01:04 +0200 Original-Received: from localhost ([::1]:54550 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WtYyN-0001it-Md for geh-help-gnu-emacs@m.gmane.org; Sun, 08 Jun 2014 05:01:03 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WtYyA-0001io-CO for help-gnu-emacs@gnu.org; Sun, 08 Jun 2014 05:00:55 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WtYy5-0000cT-1R for help-gnu-emacs@gnu.org; Sun, 08 Jun 2014 05:00:50 -0400 Original-Received: from msmail2.misasa.okayama-u.ac.jp ([150.46.245.7]:59929 helo=msmail.misasa.okayama-u.ac.jp) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WtYy4-0000cA-Nr for help-gnu-emacs@gnu.org; Sun, 08 Jun 2014 05:00:44 -0400 Original-Received: from localhost (p8163-ipbfp402tottori.tottori.ocn.ne.jp [118.13.46.163]) by msmail.misasa.okayama-u.ac.jp (Postfix) with ESMTP id 3902AAF80B0 for ; Sun, 8 Jun 2014 18:00:40 +0900 (JST) X-Mailer: Mew version 6.5 on Emacs 24.3 / Mule 6.0 (HANACHIRUSATO) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 150.46.245.7 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 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-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:98093 Archived-At: I had the same problem. Following helps. ;;; http://superuser.com/questions/125569/how-to-fix-emacs-popup-dialogs-on-mac-os-x (defadvice yes-or-no-p (around prevent-dialog activate) "Prevent yes-or-no-p from activating a dialog" (let ((use-dialog-box nil)) ad-do-it)) (defadvice y-or-n-p (around prevent-dialog-yorn activate) "Prevent y-or-n-p from activating a dialog" (let ((use-dialog-box nil)) ad-do-it)) On 06/08/2014 03:45 AM, Shiyuan wrote: > Hi, > I am using Emacs 24.3.9 on Mac 10.9.3. Every time graphical dialog > pops out, Emacs hangs. Anyone experiences the same problem or have any > clues what might be wrong? I found a old post from 2009 reporting similar > problem http://debbugs.gnu.org/cgi/bugreport.cgi?bug=2877 but it was fixed.