help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Graphical popup dialog issue on Mac.


From: Tak Kunihiro
Subject: Re: Graphical popup dialog issue on Mac.
Date: Sun, 08 Jun 2014 18:00:38 +0900 (JST)

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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]