diff src/coding.c @ 29182:1d1c27067af4

(encode_eol): Add null statement after label.
author Dave Love <fx@gnu.org>
date Thu, 25 May 2000 11:04:33 +0000
parents 46ad5a027334
children 446621f88d68
line wrap: on
line diff
--- a/src/coding.c	Thu May 25 11:01:45 2000 +0000
+++ b/src/coding.c	Thu May 25 11:04:33 2000 +0000
@@ -2759,6 +2759,7 @@
 	}
       src_base = src;
     label_end_of_loop:
+      ;
     }
   else
     {
@@ -6181,6 +6182,7 @@
     "Coding system to use with system messages.");
   Vlocale_coding_system = Qnil;
 
+  /* The eol mnemonics are reset in startup.el system-dependently.  */
   DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix,
     "*String displayed in mode line for UNIX-like (LF) end-of-line format.");
   eol_mnemonic_unix = build_string (":");
@@ -6269,3 +6271,4 @@
 }
 
 #endif /* emacs */
+(encode_eol):