diff options
| author | Po Lu | 2024-05-13 08:25:39 +0800 |
|---|---|---|
| committer | Po Lu | 2024-05-13 08:25:39 +0800 |
| commit | b86359d4abfb47820b5644adb0306bd628de6dd8 (patch) | |
| tree | 1ac268956b4abd6e7e2032979514aa09ff10cb1d /src/android.c | |
| parent | b20d4ab374fb9b3c80b968df6acd6444f763bd40 (diff) | |
| download | emacs-b86359d4abfb47820b5644adb0306bd628de6dd8.tar.gz emacs-b86359d4abfb47820b5644adb0306bd628de6dd8.zip | |
Complete pacification of build warnings on Android
* build-aux/makecounter.sh: Introduce extern declaration of
emacs_shortlisp_counter.
* src/android.c (android_class_path): Declare static.
* src/androidfont.c (font_driver_class, font_spec_class)
(integer_class, font_metrics_class, font_object_class): Declare
static.
* src/androidterm.c (android_frame_parm_handlers): Move
declaration...
* src/androidterm.h (android_frame_parm_handlers): ... here.
Diffstat (limited to 'src/android.c')
| -rw-r--r-- | src/android.c | 2 |
1 files changed, 1 insertions, 1 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; |