From: Eli Zaretskii Date: Thu, 24 Mar 2016 18:52:45 +0000 (+0200) Subject: Define make_save_ptr_ptr unconditionally X-Git-Tag: emacs-25.0.93~89^2~26 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=077b78cffc0711717ae8976ef302b788e88d27a8;p=emacs.git 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 . (Bug#23101) --- diff --git a/src/alloc.c b/src/alloc.c index b5be0f6e69c..4c9cbf10724 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)