]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge remote-tracking branch 'origin/master' into feature/android
authorPo Lu <luangruo@yahoo.com>
Wed, 2 Aug 2023 00:10:59 +0000 (08:10 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 2 Aug 2023 00:10:59 +0000 (08:10 +0800)
1  2 
lisp/net/tramp.el
lisp/textmodes/conf-mode.el
src/image.c

Simple merge
Simple merge
diff --cc src/image.c
index 8a8f18754acbcdf63913bcdacc2131f9cfbb0835,cb9725892d11ba469d0f53ae5e5f82f6a9731148..06fc44b5abd639c6846b183a75437f75fbb79870
@@@ -655,19 -646,9 +685,20 @@@ image_create_bitmap_from_data (struct f
    return id;
  }
  
 -#if defined HAVE_HAIKU || defined HAVE_NS || defined HAVE_PGTK
 -static char *slurp_file (int, ptrdiff_t *);
 -static Lisp_Object image_find_image_fd (Lisp_Object, int *);
 +#if defined HAVE_ANDROID && !defined ANDROID_STUBIFY
 +#include "android.h"
 +
 +/* This abstraction allows directly loading images from assets without
 +   copying them to a file descriptor first.  */
 +typedef struct android_fd_or_asset image_fd;
 +#else /* !defined HAVE_ANDROID || defined ANDROID_STUBIFY */
 +typedef int image_fd;
 +#endif /* defined HAVE_ANDROID && !defined ANDROID_STUBIFY */
 +
- #if defined HAVE_HAIKU || defined HAVE_NS || defined HAVE_ANDROID
++#if defined HAVE_HAIKU || defined HAVE_NS || defined HAVE_PGTK        \
++  || defined HAVE_ANDROID
 +static char *slurp_file (image_fd, ptrdiff_t *);
 +static Lisp_Object image_find_image_fd (Lisp_Object, image_fd *);
  static bool xbm_read_bitmap_data (struct frame *, char *, char *,
                                  int *, int *, char **, bool);
  #endif