diff options
| author | Dan Nicolaescu | 2009-11-11 20:11:51 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 20:11:51 +0000 |
| commit | 9143355208b29540112fd1d4810d44b04b5486cc (patch) | |
| tree | a4cf9357ff1f0411bbeef8a37cc50f34d0f5664c /src/coding.c | |
| parent | f4265f6c27b42ce61d3189a99cf9d6247304f9fe (diff) | |
| download | emacs-9143355208b29540112fd1d4810d44b04b5486cc.tar.gz emacs-9143355208b29540112fd1d4810d44b04b5486cc.zip | |
* process.c (ifflag_def): Make flag_sym constant.
(Fnetwork_interface_info): Use a constant pointer.
(ifflag_table):
* xfns.c (cursor_bits):
* xdisp.c (power_letter):
* termcap.c (speeds, esctab):
* sysdep.c (baud_convert):
* keyboard.c (lispy_accent_codes, modifier_names):
* image.c (xbm_format, xpm_format, pbm_format, png_format)
(jpeg_format, tiff_format, gif_format, svg_format)
(interlace_start, interlace_increment, gs_format):
* gtkutil.c (separator_names):
* fringe.c (swap_nibble):
* fns.c (base64_value_to_char, base64_char_to_value):
* fileio.c (make_temp_name_tbl):
* coding.c (suffixes): Make constant.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index b13766e3076..1d838db3685 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9621,7 +9621,7 @@ HIGHESTP non-nil means just return the highest priority one. */) | |||
| 9621 | return Fnreverse (val); | 9621 | return Fnreverse (val); |
| 9622 | } | 9622 | } |
| 9623 | 9623 | ||
| 9624 | static char *suffixes[] = { "-unix", "-dos", "-mac" }; | 9624 | static const char *const suffixes[] = { "-unix", "-dos", "-mac" }; |
| 9625 | 9625 | ||
| 9626 | static Lisp_Object | 9626 | static Lisp_Object |
| 9627 | make_subsidiaries (base) | 9627 | make_subsidiaries (base) |