aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu.c
diff options
context:
space:
mode:
authorPo Lu2023-01-28 16:29:22 +0800
committerPo Lu2023-01-28 16:29:22 +0800
commit198b8160cfeeb178d3b2073c8d03afdafe338908 (patch)
tree590c73006536ddfcc8acd8eff8fb80e31c2a009b /src/menu.c
parent5bd38905ac67221503f027737912fa0df3602a02 (diff)
downloademacs-198b8160cfeeb178d3b2073c8d03afdafe338908.tar.gz
emacs-198b8160cfeeb178d3b2073c8d03afdafe338908.zip
Update Android port
* doc/emacs/android.texi (Android File System): Describe an easier way to disable scoped storage. * java/AndroidManifest.xml.in: Add new permission to allow that. * java/README: Add more text describing Java. * java/org/gnu/emacs/EmacsContextMenu.java (Item): New fields `isCheckable' and `isChecked'. (EmacsContextMenu, addItem): New arguments. (inflateMenuItems): Set checked status as appropriate. * java/org/gnu/emacs/EmacsCopyArea.java (perform): Disallow operations where width and height are less than or equal to zero. * lisp/menu-bar.el (menu-bar-edit-menu): Make execute-extended-command available as a menu item. * src/androidmenu.c (android_init_emacs_context_menu) (android_menu_show): * src/menu.c (have_boxes): Implement menu check boxes.
Diffstat (limited to 'src/menu.c')
-rw-r--r--src/menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/menu.c b/src/menu.c
index e02ee880119..6ab34a16996 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -48,7 +48,7 @@ static bool
48have_boxes (void) 48have_boxes (void)
49{ 49{
50#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI) || defined (HAVE_NS) \ 50#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI) || defined (HAVE_NS) \
51 || defined (HAVE_HAIKU) 51 || defined (HAVE_HAIKU) || defined (HAVE_ANDROID)
52 if (FRAME_WINDOW_P (XFRAME (Vmenu_updating_frame))) 52 if (FRAME_WINDOW_P (XFRAME (Vmenu_updating_frame)))
53 return 1; 53 return 1;
54#endif 54#endif