# HG changeset patch # User Dave Love # Date 959252673 0 # Node ID 1d1c27067af46435fa390a4bd33a81b9f6fca311 # Parent c9e1401248932072a18d1c3f25a8d9301f8e212e (encode_eol): Add null statement after label. diff -r c9e140124893 -r 1d1c27067af4 src/coding.c --- 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):