emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-25 077b78c: Define make_save_ptr_ptr unconditionally


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-25 077b78c: Define make_save_ptr_ptr unconditionally
Date: Thu, 24 Mar 2016 18:53:30 +0000

branch: emacs-25
commit 077b78cffc0711717ae8976ef302b788e88d27a8
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Define make_save_ptr_ptr unconditionally
    
    * src/alloc.c (make_save_ptr_ptr): Remove the !(defined
    USE_X_TOOLKIT || defined USE_GTK) conditional.  Reported by
    Philipp Stephani <address@hidden>.  (Bug#23101)
---
 src/alloc.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/alloc.c b/src/alloc.c
index b5be0f6..4c9cbf1 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -3730,7 +3730,6 @@ make_save_ptr_int (void *a, ptrdiff_t b)
   return val;
 }
 
-#if ! (defined USE_X_TOOLKIT || defined USE_GTK)
 Lisp_Object
 make_save_ptr_ptr (void *a, void *b)
 {
@@ -3741,7 +3740,6 @@ make_save_ptr_ptr (void *a, void *b)
   p->data[1].pointer = b;
   return val;
 }
-#endif
 
 Lisp_Object
 make_save_funcptr_ptr_obj (void (*a) (void), void *b, Lisp_Object c)



reply via email to

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