diff options
| author | Michael Albinus | 2024-05-13 07:24:30 +0200 |
|---|---|---|
| committer | Michael Albinus | 2024-05-13 07:24:30 +0200 |
| commit | 41ec1d79602f9d1cadc543ccc4aff2f907d9cde3 (patch) | |
| tree | 8d6b3a26cb3418413f45d5ed773465966a03f02b /src | |
| parent | e53e8b4cf44be0fac0eb92c816b2c7915533e283 (diff) | |
| parent | f560e759338e4cd43113fef39bb6e35c9e8a5893 (diff) | |
| download | emacs-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.c | 2 | ||||
| -rw-r--r-- | src/androidfont.c | 10 | ||||
| -rw-r--r-- | src/androidterm.c | 2 | ||||
| -rw-r--r-- | src/androidterm.h | 1 | ||||
| -rw-r--r-- | src/epaths.in | 3 |
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. */ |
| 156 | char *android_class_path; | 156 | static char *android_class_path; |
| 157 | 157 | ||
| 158 | /* The display's pixel densities. */ | 158 | /* The display's pixel densities. */ |
| 159 | double android_pixel_density_x, android_pixel_density_y; | 159 | double 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 | ||
| 139 | struct android_emacs_font_driver font_driver_class; | 139 | static 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 | ||
| 144 | struct android_emacs_font_spec font_spec_class; | 144 | static 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 | ||
| 148 | struct android_integer integer_class; | 148 | static 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 | ||
| 153 | struct android_emacs_font_metrics font_metrics_class; | 153 | static 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 | ||
| 158 | struct android_emacs_font_object font_object_class; | 158 | static 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 | ||
| 6482 | extern frame_parm_handler android_frame_parm_handlers[]; | ||
| 6483 | |||
| 6484 | #endif /* !ANDROID_STUBIFY */ | 6482 | #endif /* !ANDROID_STUBIFY */ |
| 6485 | 6483 | ||
| 6486 | static struct redisplay_interface android_redisplay_interface = | 6484 | static 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 | ||
| 395 | extern frame_parm_handler android_frame_parm_handlers[]; | ||
| 395 | extern void android_free_gcs (struct frame *); | 396 | extern void android_free_gcs (struct frame *); |
| 396 | extern void android_default_font_parameter (struct frame *, Lisp_Object); | 397 | extern void android_default_font_parameter (struct frame *, Lisp_Object); |
| 397 | extern void android_set_preeditarea (struct window *, int, int); | 398 | extern 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 | ||
| 100 | extern char *android_site_load_path; | 100 | extern char *android_site_load_path; |
| 101 | extern char *android_lib_dir; | 101 | extern char *android_lib_dir; |
| 102 | extern char *android_game_path; | ||
| 102 | 103 | ||
| 103 | #endif | 104 | #endif |