aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorDave Love2000-05-25 11:07:47 +0000
committerDave Love2000-05-25 11:07:47 +0000
commit005f0d353597633a52c57a77fa3738c21e704028 (patch)
tree44966170eb0e26d5ac11a539873da4d5f78138df /src/coding.c
parent89f6ca4eceef19b5ef5f9d2f03e33831f2d0a00a (diff)
downloademacs-005f0d353597633a52c57a77fa3738c21e704028.tar.gz
emacs-005f0d353597633a52c57a77fa3738c21e704028.zip
(encode_eol): Add null statement after label.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index a46f2692562..b40c973fd00 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -2759,6 +2759,7 @@ encode_eol (coding, source, destination, src_bytes, dst_bytes)
2759 } 2759 }
2760 src_base = src; 2760 src_base = src;
2761 label_end_of_loop: 2761 label_end_of_loop:
2762 ;
2762 } 2763 }
2763 else 2764 else
2764 { 2765 {
@@ -6181,6 +6182,7 @@ See also the function `find-operation-coding-system'.");
6181 "Coding system to use with system messages."); 6182 "Coding system to use with system messages.");
6182 Vlocale_coding_system = Qnil; 6183 Vlocale_coding_system = Qnil;
6183 6184
6185 /* The eol mnemonics are reset in startup.el system-dependently. */
6184 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix, 6186 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix,
6185 "*String displayed in mode line for UNIX-like (LF) end-of-line format."); 6187 "*String displayed in mode line for UNIX-like (LF) end-of-line format.");
6186 eol_mnemonic_unix = build_string (":"); 6188 eol_mnemonic_unix = build_string (":");
@@ -6269,3 +6271,4 @@ emacs_strerror (error_number)
6269} 6271}
6270 6272
6271#endif /* emacs */ 6273#endif /* emacs */
6274(encode_eol):