diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index 7e9a497f1e5..93726169585 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -1898,7 +1898,7 @@ detect_coding_emacs_mule (coding, detect_info) | |||
| 1898 | value 0. */ | 1898 | value 0. */ |
| 1899 | 1899 | ||
| 1900 | #define DECODE_EMACS_MULE_COMPOSITION_CHAR(buf) \ | 1900 | #define DECODE_EMACS_MULE_COMPOSITION_CHAR(buf) \ |
| 1901 | if (1) \ | 1901 | do \ |
| 1902 | { \ | 1902 | { \ |
| 1903 | int c; \ | 1903 | int c; \ |
| 1904 | int nbytes, nchars; \ | 1904 | int nbytes, nchars; \ |
| @@ -1916,7 +1916,7 @@ detect_coding_emacs_mule (coding, detect_info) | |||
| 1916 | src += nbytes; \ | 1916 | src += nbytes; \ |
| 1917 | consumed_chars += nchars; \ | 1917 | consumed_chars += nchars; \ |
| 1918 | } \ | 1918 | } \ |
| 1919 | else | 1919 | while (0) |
| 1920 | 1920 | ||
| 1921 | 1921 | ||
| 1922 | /* Decode a composition rule represented as a component of composition | 1922 | /* Decode a composition rule represented as a component of composition |