diff options
| author | Dave Love | 2002-05-24 15:33:29 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-24 15:33:29 +0000 |
| commit | f0064e1f74774286894108f9d567276f15020f86 (patch) | |
| tree | 0ab7b7a4047821eef360e63c283f7fd4e3d95bc1 /src/coding.c | |
| parent | 505af2457340a55c223f175ef3ec2656ee197884 (diff) | |
| download | emacs-f0064e1f74774286894108f9d567276f15020f86.tar.gz emacs-f0064e1f74774286894108f9d567276f15020f86.zip | |
(setup_iso_safe_charsets): Fix arg decl for K&R.
(suffixes): Moved out of make_subsidiaries for K&R.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index c98e467369d..435a3f45a86 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -2205,7 +2205,8 @@ enum iso_code_class_type iso_code_class[256]; | |||
| 2205 | (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0) | 2205 | (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0) |
| 2206 | 2206 | ||
| 2207 | static void | 2207 | static void |
| 2208 | setup_iso_safe_charsets (Lisp_Object attrs) | 2208 | setup_iso_safe_charsets (attrs) |
| 2209 | Lisp_Object attrs; | ||
| 2209 | { | 2210 | { |
| 2210 | Lisp_Object charset_list, safe_charsets; | 2211 | Lisp_Object charset_list, safe_charsets; |
| 2211 | Lisp_Object request; | 2212 | Lisp_Object request; |
| @@ -7248,12 +7249,13 @@ DEFUN ("coding-system-priority-list", Fcoding_system_priority_list, | |||
| 7248 | return Fnreverse (val); | 7249 | return Fnreverse (val); |
| 7249 | } | 7250 | } |
| 7250 | 7251 | ||
| 7252 | static char *suffixes[] = { "-unix", "-dos", "-mac" }; | ||
| 7253 | |||
| 7251 | static Lisp_Object | 7254 | static Lisp_Object |
| 7252 | make_subsidiaries (base) | 7255 | make_subsidiaries (base) |
| 7253 | Lisp_Object base; | 7256 | Lisp_Object base; |
| 7254 | { | 7257 | { |
| 7255 | Lisp_Object subsidiaries; | 7258 | Lisp_Object subsidiaries; |
| 7256 | char *suffixes[] = { "-unix", "-dos", "-mac" }; | ||
| 7257 | int base_name_len = STRING_BYTES (XSYMBOL (base)->name); | 7259 | int base_name_len = STRING_BYTES (XSYMBOL (base)->name); |
| 7258 | char *buf = (char *) alloca (base_name_len + 6); | 7260 | char *buf = (char *) alloca (base_name_len + 6); |
| 7259 | int i; | 7261 | int i; |