diff options
| author | Paul Eggert | 2019-08-24 11:42:28 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-08-24 15:55:08 -0700 |
| commit | b62eac0f870754bc75b1162246f9901a04910044 (patch) | |
| tree | 4b392cfe5a8c36c6a735fd25228d3622ccbd17b5 /src/data.c | |
| parent | aa49aa884053d0e8b33efe265f2aade19d1f3f3d (diff) | |
| download | emacs-b62eac0f870754bc75b1162246f9901a04910044.tar.gz emacs-b62eac0f870754bc75b1162246f9901a04910044.zip | |
extern function cleanup
Most of these functions can be static. A few are unused.
* src/coding.c (encode_string_utf_8, decode_string_utf_8):
Define only if ENABLE_UTF_8_CONVERTER_TEST, as they're
not needed otherwise.
* src/coding.c (encode_string_utf_8, decode_string_utf_8):
* src/data.c (integer_mod):
* src/fns.c (base64_encode_region_1, base64_encode_string_1):
* src/ftfont.c (ftfont_get_fc_charset):
Now static.
* src/sysdep.c (verrprintf): Remove; unused.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 2797adfcdc8..38968359a50 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -3079,7 +3079,7 @@ Both must be integers or markers. */) | |||
| 3079 | } | 3079 | } |
| 3080 | 3080 | ||
| 3081 | /* Return X mod Y. Both must be integers and Y must be nonzero. */ | 3081 | /* Return X mod Y. Both must be integers and Y must be nonzero. */ |
| 3082 | Lisp_Object | 3082 | static Lisp_Object |
| 3083 | integer_mod (Lisp_Object x, Lisp_Object y) | 3083 | integer_mod (Lisp_Object x, Lisp_Object y) |
| 3084 | { | 3084 | { |
| 3085 | if (FIXNUMP (x) && FIXNUMP (y)) | 3085 | if (FIXNUMP (x) && FIXNUMP (y)) |