all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Graphical popup dialog issue on Mac.
@ 2014-06-08  1:45 Shiyuan
  2014-06-08  6:29 ` Vilibald
  0 siblings, 1 reply; 6+ messages in thread
From: Shiyuan @ 2014-06-08  1:45 UTC (permalink / raw
  To: help-gnu-emacs

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.

Thanks.

Shiyuan


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Graphical popup dialog issue on Mac.
  2014-06-08  1:45 Graphical popup dialog issue on Mac Shiyuan
@ 2014-06-08  6:29 ` Vilibald
  2014-06-08 17:51   ` Shiyuan
  0 siblings, 1 reply; 6+ messages in thread
From: Vilibald @ 2014-06-08  6:29 UTC (permalink / raw
  To: Shiyuan, help-gnu-emacs

Hi,
having the same setup I haven't seen such issue so I'd suspect some of 
the custom parts, are you experiencing these hangs with clean out of box 
emacs without any customization?

Vilda

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.
>
> Thanks.
>
> Shiyuan
>



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Graphical popup dialog issue on Mac.
@ 2014-06-08  9:00 Tak Kunihiro
  2014-06-08 17:57 ` Shiyuan
  0 siblings, 1 reply; 6+ messages in thread
From: Tak Kunihiro @ 2014-06-08  9:00 UTC (permalink / raw
  To: help-gnu-emacs

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.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Graphical popup dialog issue on Mac.
  2014-06-08  6:29 ` Vilibald
@ 2014-06-08 17:51   ` Shiyuan
  0 siblings, 0 replies; 6+ messages in thread
From: Shiyuan @ 2014-06-08 17:51 UTC (permalink / raw
  To: Vilibald; +Cc: help-gnu-emacs

Yes, I have the same problem with  `-Q`.


On Sat, Jun 7, 2014 at 11:29 PM, Vilibald <vilibald@wvi.cz> wrote:

> Hi,
> having the same setup I haven't seen such issue so I'd suspect some of the
> custom parts, are you experiencing these hangs with clean out of box emacs
> without any customization?
>
> Vilda
>
>
> 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.
>>
>> Thanks.
>>
>> Shiyuan
>>
>>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Graphical popup dialog issue on Mac.
  2014-06-08  9:00 Tak Kunihiro
@ 2014-06-08 17:57 ` Shiyuan
  2014-06-08 23:33   ` Tak Kunihiro
  0 siblings, 1 reply; 6+ messages in thread
From: Shiyuan @ 2014-06-08 17:57 UTC (permalink / raw
  To: Tak Kunihiro; +Cc: help-gnu-emacs

I am using the same workaround to prevent the popup.

Tak: Are you using  emacs-app from macports? Thanks.


On Sun, Jun 8, 2014 at 2:00 AM, Tak Kunihiro <tkk@misasa.okayama-u.ac.jp>
wrote:

> 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.
>
>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Graphical popup dialog issue on Mac.
  2014-06-08 17:57 ` Shiyuan
@ 2014-06-08 23:33   ` Tak Kunihiro
  0 siblings, 0 replies; 6+ messages in thread
From: Tak Kunihiro @ 2014-06-08 23:33 UTC (permalink / raw
  To: gshy2014; +Cc: help-gnu-emacs

It seems emacs-app problems.  MacPort does not work well in my
computer since upgraded to 10.9.  My ability is not enough to
recompile emacs-app!

Emacs by Macports on 10.9.3 freezes on yes-no dialog.
  GNU Emacs 24.3.1 (x86_64-apple-darwin13.1.0, NS apple-appkit-1265.19)
   of 2014-03-09 on my-super-Mac.local

Emacs from http://emacsformacosx.com/ on 10.9.3 is OK with yes-no dialog.
  GNU Emacs 24.3.1 (x86_64-apple-darwin, NS apple-appkit-1038.36)
   of 2013-03-13 on bob.porkrind.org







From: Shiyuan <gshy2014@gmail.com>
Subject: Re: Graphical popup dialog issue on Mac.
Date: Sun, 8 Jun 2014 10:57:02 -0700

> I am using the same workaround to prevent the popup. 
> 
> Tak: Are you using  emacs-app from macports? Thanks. 
> 
> On Sun, Jun 8, 2014 at 2:00 AM, Tak Kunihiro <
> tkk@misasa.okayama-u.ac.jp> wrote:
> 
>> 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.



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-06-08 23:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-08  1:45 Graphical popup dialog issue on Mac Shiyuan
2014-06-08  6:29 ` Vilibald
2014-06-08 17:51   ` Shiyuan
  -- strict thread matches above, loose matches on Subject: below --
2014-06-08  9:00 Tak Kunihiro
2014-06-08 17:57 ` Shiyuan
2014-06-08 23:33   ` Tak Kunihiro

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.