Mercurial > emacs
changeset 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 | c9e140124893 |
children | 081b536c7182 |
files | src/coding.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
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):