aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Albinus2024-05-13 07:24:30 +0200
committerMichael Albinus2024-05-13 07:24:30 +0200
commit41ec1d79602f9d1cadc543ccc4aff2f907d9cde3 (patch)
tree8d6b3a26cb3418413f45d5ed773465966a03f02b /src
parente53e8b4cf44be0fac0eb92c816b2c7915533e283 (diff)
parentf560e759338e4cd43113fef39bb6e35c9e8a5893 (diff)
downloademacs-41ec1d79602f9d1cadc543ccc4aff2f907d9cde3.tar.gz
emacs-41ec1d79602f9d1cadc543ccc4aff2f907d9cde3.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src')
-rw-r--r--src/android.c2
-rw-r--r--src/androidfont.c10
-rw-r--r--src/androidterm.c2
-rw-r--r--src/androidterm.h1
-rw-r--r--src/epaths.in3
5 files changed, 9 insertions, 9 deletions
diff --git a/src/android.c b/src/android.c
index c25ecd88a5a..72ef9e689ef 100644
--- a/src/android.c
+++ b/src/android.c
@@ -153,7 +153,7 @@ char *android_cache_dir;
153 153
154/* The list of archive files within which the Java virtual macine 154/* The list of archive files within which the Java virtual macine
155 looks for class files. */ 155 looks for class files. */
156char *android_class_path; 156static char *android_class_path;
157 157
158/* The display's pixel densities. */ 158/* The display's pixel densities. */
159double android_pixel_density_x, android_pixel_density_y; 159double android_pixel_density_x, android_pixel_density_y;
diff --git a/src/androidfont.c b/src/androidfont.c
index 20a18327ff8..5cd23a006e8 100644
--- a/src/androidfont.c
+++ b/src/androidfont.c
@@ -136,26 +136,26 @@ struct androidfont_entity
136/* Method and class identifiers associated with the EmacsFontDriver 136/* Method and class identifiers associated with the EmacsFontDriver
137 class. */ 137 class. */
138 138
139struct android_emacs_font_driver font_driver_class; 139static struct android_emacs_font_driver font_driver_class;
140 140
141/* Field and class identifiers associated with the 141/* Field and class identifiers associated with the
142 EmacsFontDriver$FontSpec class. */ 142 EmacsFontDriver$FontSpec class. */
143 143
144struct android_emacs_font_spec font_spec_class; 144static struct android_emacs_font_spec font_spec_class;
145 145
146/* Method and class identifiers associated with the Integer class. */ 146/* Method and class identifiers associated with the Integer class. */
147 147
148struct android_integer integer_class; 148static struct android_integer integer_class;
149 149
150/* Field and class identifiers associated with the 150/* Field and class identifiers associated with the
151 EmacsFontDriver$FontMetrics class. */ 151 EmacsFontDriver$FontMetrics class. */
152 152
153struct android_emacs_font_metrics font_metrics_class; 153static struct android_emacs_font_metrics font_metrics_class;
154 154
155/* Field and class identifiers associated with the 155/* Field and class identifiers associated with the
156 EmacsFontDriver$FontObject class. */ 156 EmacsFontDriver$FontObject class. */
157 157
158struct android_emacs_font_object font_object_class; 158static struct android_emacs_font_object font_object_class;
159 159
160/* The font cache. */ 160/* The font cache. */
161 161
diff --git a/src/androidterm.c b/src/androidterm.c
index e1cd96c9176..67c20ec5245 100644
--- a/src/androidterm.c
+++ b/src/androidterm.c
@@ -6479,8 +6479,6 @@ static struct textconv_interface text_conversion_interface =
6479 6479
6480 6480
6481 6481
6482extern frame_parm_handler android_frame_parm_handlers[];
6483
6484#endif /* !ANDROID_STUBIFY */ 6482#endif /* !ANDROID_STUBIFY */
6485 6483
6486static struct redisplay_interface android_redisplay_interface = 6484static struct redisplay_interface android_redisplay_interface =
diff --git a/src/androidterm.h b/src/androidterm.h
index 24eb2c30f12..f4459c45dc9 100644
--- a/src/androidterm.h
+++ b/src/androidterm.h
@@ -392,6 +392,7 @@ extern struct android_display_info *x_display_list;
392 392
393/* From androidfns.c. */ 393/* From androidfns.c. */
394 394
395extern frame_parm_handler android_frame_parm_handlers[];
395extern void android_free_gcs (struct frame *); 396extern void android_free_gcs (struct frame *);
396extern void android_default_font_parameter (struct frame *, Lisp_Object); 397extern void android_default_font_parameter (struct frame *, Lisp_Object);
397extern void android_set_preeditarea (struct window *, int, int); 398extern void android_set_preeditarea (struct window *, int, int);
diff --git a/src/epaths.in b/src/epaths.in
index 8415ce51586..a928830dba2 100644
--- a/src/epaths.in
+++ b/src/epaths.in
@@ -94,10 +94,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
94 # define PATH_DATA "/assets/etc/" 94 # define PATH_DATA "/assets/etc/"
95 # define PATH_DOC "/assets/etc/" 95 # define PATH_DOC "/assets/etc/"
96 # define PATH_INFO "/assets/info/" 96 # define PATH_INFO "/assets/info/"
97 # define PATH_GAME "" 97 # define PATH_GAME (android_game_path)
98 # define PATH_BITMAPS "/assets/bitmaps/" 98 # define PATH_BITMAPS "/assets/bitmaps/"
99 99
100extern char *android_site_load_path; 100extern char *android_site_load_path;
101extern char *android_lib_dir; 101extern char *android_lib_dir;
102extern char *android_game_path;
102 103
103#endif 104#endif