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

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

bug#14944: 24.3.50; Cygw32 build break


From: Ken Brown
Subject: bug#14944: 24.3.50; Cygw32 build break
Date: Wed, 24 Jul 2013 11:12:45 -0400
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130107 Thunderbird/17.0.2

On 7/24/2013 10:38 AM, Eli Zaretskii wrote:
Date: Wed, 24 Jul 2013 07:42:14 -0400
From: Ken Brown <kbrown@cornell.edu>
Cc: 14944@debbugs.gnu.org, Paul Eggert <eggert@cs.ucla.edu>

This happened because of a change in rev 113453, in which make_save_ptr
(formerly called make_save_pointer) was defined only on platforms that
need it.  The cygw32 platform was missed.  The following should fix it.

=== modified file 'src/alloc.c'
--- src/alloc.c 2013-07-21 15:56:55 +0000
+++ src/alloc.c 2013-07-24 11:35:40 +0000
@@ -3371,7 +3371,7 @@
     return val;
   }

-#if defined HAVE_NS || defined DOS_NT
+#if defined HAVE_NS || defined DOS_NT || defined HAVE_NTGUI
   Lisp_Object
   make_save_ptr (void *a)
   {

If you are adding HAVE_NTGUI, then DOS_NT is redundant, and should be
removed.

Done, as bzr 113529.  I'm closing the bug.

Ken






reply via email to

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