Mercurial > emacs
diff src/coding.h @ 24201:d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Wed, 27 Jan 1999 10:09:55 +0000 |
| parents | 4c5f12c6041c |
| children | 2d5cc3c9d8dc |
line wrap: on
line diff
--- a/src/coding.h Wed Jan 27 10:08:13 1999 +0000 +++ b/src/coding.h Wed Jan 27 10:09:55 1999 +0000 @@ -541,10 +541,10 @@ extern Lisp_Object Qtranslation_table; extern Lisp_Object Qtranslation_table_id; -/* Mnemonic character to indicate each type of end-of-line. */ -extern int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; -/* Mnemonic character to indicate type of end-of-line is not yet decided. */ -extern int eol_mnemonic_undecided; +/* Mnemonic strings to indicate each type of end-of-line. */ +extern Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; +/* Mnemonic string to indicate type of end-of-line is not yet decided. */ +extern Lisp_Object eol_mnemonic_undecided; #ifdef emacs extern Lisp_Object Qfile_coding_system;
