* Re: [peter@runestig.com: Re: emacs-cvs built on Windows XP crashes on Windows 2000]
@ 2002-09-05 8:24 jasonr
2002-09-06 4:01 ` Richard Stallman
0 siblings, 1 reply; 5+ messages in thread
From: jasonr @ 2002-09-05 8:24 UTC (permalink / raw)
I think it is right, but there should be another place
in the code where these variables are currently
being initialized (presumably at dump time).
That initialization should be removed to prevent
future confusion.
> from: Richard Stallman <rms@gnu.org>
> date: Thu, 05 Sep 2002 03:47:35
> to: emacs-devel@gnu.org
> subject: Re: [peter@runestig.com: Re: emacs-cvs built on Windows XP crashes on Windows 2000]
>
> Can someone who uses Windows see if this is right, and install it if so?
>
> ------- Start of forwarded message -------
> Envelope-to: rms@gnu.org
> Delivery-date: Wed, 04 Sep 2002 09:07:14 -0400
> To: bug-gnu-emacs@gnu.org
> Subject: Re: emacs-cvs built on Windows XP crashes on Windows 2000
> From: "Peter 'Luna' Runestig" <peter@runestig.com>
> In-Reply-To: <001301c25405$cc50eb20$64110b0a@datavis.se>
> Sender: bug-gnu-emacs-admin@gnu.org
> Date: 04 Sep 2002 15:05:43 0200
>
> This is a quick hack to make it roll again:
>
> diff -urN emacs-cvs.orig/src/emacs.c emacs-cvs/src/emacs.c
> - --- emacs-cvs.orig/src/emacs.c Wed Aug 28 08:28:30 2002
> emacs-cvs/src/emacs.c Wed Sep 4 14:38:07 2002
> @@ -1536,6 1536,19 @@
> keys_of_window ();
> }
>
> #ifdef HAVE_NTGUI
> {
> /* these must be initialized every run time */
> extern FARPROC track_mouse_event_fn;
> extern FARPROC get_menu_item_info;
> extern FARPROC set_menu_item_info;
> HMODULE user32 = GetModuleHandle ("user32.dll");
> track_mouse_event_fn = GetProcAddress (user32, "TrackMouseEvent");
> get_menu_item_info = GetProcAddress (user32, "GetMenuItemInfoA");
> set_menu_item_info = GetProcAddress (user32, "SetMenuItemInfoA");
> }
> #endif /* HAVE_NTGUI */
>
> if (!noninteractive)
> {
> #ifdef VMS
>
> Cheers,
> - - Peter
> - --
> Peter 'Luna' Runestig (fd. Altberg), Sweden <peter@runestig.com>
> PGP Key ID: 0xD07BBE13
> Fingerprint: 7B5C 1F48 2997 C061 DE4B 42EA CB99 A35C D07B BE13
> AOL Instant Messenger Screenname: PRunestig
>
>
>
>
> _______________________________________________
> Bug-gnu-emacs mailing list
> Bug-gnu-emacs@gnu.org
> http://mail.gnu.org/mailman/listinfo/bug-gnu-emacs
> ------- End of forwarded message -------
>
>
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://mail.gnu.org/mailman/listinfo/emacs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [peter@runestig.com: Re: emacs-cvs built on Windows XP crashes on Windows 2000]
2002-09-05 8:24 [peter@runestig.com: Re: emacs-cvs built on Windows XP crashes on Windows 2000] jasonr
@ 2002-09-06 4:01 ` Richard Stallman
2002-09-06 21:51 ` Jason Rumney
0 siblings, 1 reply; 5+ messages in thread
From: Richard Stallman @ 2002-09-06 4:01 UTC (permalink / raw)
Cc: emacs-devel
Thanks for looking at it. Would someone else please install the change?
I don't entirely understand the rest of your comments:
I think it is right, but there should be another place
in the code where these variables are currently
being initialized (presumably at dump time).
Do you mean you believe there is one, or you think the code
should be changed to have one?
That initialization
Which of the two do you mean?
should be removed to prevent
future confusion.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [peter@runestig.com: Re: emacs-cvs built on Windows XP crashes on Windows 2000]
2002-09-06 4:01 ` Richard Stallman
@ 2002-09-06 21:51 ` Jason Rumney
2002-09-07 10:29 ` Richard Stallman
0 siblings, 1 reply; 5+ messages in thread
From: Jason Rumney @ 2002-09-06 21:51 UTC (permalink / raw)
Cc: emacs-devel
Richard Stallman <rms@gnu.org> writes:
> Thanks for looking at it. Would someone else please install the change?
>
> I don't entirely understand the rest of your comments:
>
> I think it is right, but there should be another place
> in the code where these variables are currently
> being initialized (presumably at dump time).
>
> Do you mean you believe there is one, or you think the code
> should be changed to have one?
I believe there is one already, and it should be removed after this
change to avoid duplication (and thus confusion over which is
actually important).
> That initialization
>
> Which of the two do you mean?
The one that was there already.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [peter@runestig.com: Re: emacs-cvs built on Windows XP crashes on Windows 2000]
@ 2002-09-05 2:47 Richard Stallman
0 siblings, 0 replies; 5+ messages in thread
From: Richard Stallman @ 2002-09-05 2:47 UTC (permalink / raw)
Can someone who uses Windows see if this is right, and install it if so?
------- Start of forwarded message -------
Envelope-to: rms@gnu.org
Delivery-date: Wed, 04 Sep 2002 09:07:14 -0400
To: bug-gnu-emacs@gnu.org
Subject: Re: emacs-cvs built on Windows XP crashes on Windows 2000
From: "Peter 'Luna' Runestig" <peter@runestig.com>
In-Reply-To: <001301c25405$cc50eb20$64110b0a@datavis.se>
Sender: bug-gnu-emacs-admin@gnu.org
Date: 04 Sep 2002 15:05:43 +0200
This is a quick hack to make it roll again:
diff -urN emacs-cvs.orig/src/emacs.c emacs-cvs/src/emacs.c
- --- emacs-cvs.orig/src/emacs.c Wed Aug 28 08:28:30 2002
+++ emacs-cvs/src/emacs.c Wed Sep 4 14:38:07 2002
@@ -1536,6 +1536,19 @@
keys_of_window ();
}
+#ifdef HAVE_NTGUI
+ {
+ /* these must be initialized every run time */
+ extern FARPROC track_mouse_event_fn;
+ extern FARPROC get_menu_item_info;
+ extern FARPROC set_menu_item_info;
+ HMODULE user32 = GetModuleHandle ("user32.dll");
+ track_mouse_event_fn = GetProcAddress (user32, "TrackMouseEvent");
+ get_menu_item_info = GetProcAddress (user32, "GetMenuItemInfoA");
+ set_menu_item_info = GetProcAddress (user32, "SetMenuItemInfoA");
+ }
+#endif /* HAVE_NTGUI */
+
if (!noninteractive)
{
#ifdef VMS
Cheers,
- - Peter
- --
Peter 'Luna' Runestig (fd. Altberg), Sweden <peter@runestig.com>
PGP Key ID: 0xD07BBE13
Fingerprint: 7B5C 1F48 2997 C061 DE4B 42EA CB99 A35C D07B BE13
AOL Instant Messenger Screenname: PRunestig
_______________________________________________
Bug-gnu-emacs mailing list
Bug-gnu-emacs@gnu.org
http://mail.gnu.org/mailman/listinfo/bug-gnu-emacs
------- End of forwarded message -------
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-09-07 10:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-05 8:24 [peter@runestig.com: Re: emacs-cvs built on Windows XP crashes on Windows 2000] jasonr
2002-09-06 4:01 ` Richard Stallman
2002-09-06 21:51 ` Jason Rumney
2002-09-07 10:29 ` Richard Stallman
-- strict thread matches above, loose matches on Subject: below --
2002-09-05 2:47 Richard Stallman
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).