diff options
| author | Glenn Morris | 2015-06-07 16:47:45 -0700 |
|---|---|---|
| committer | Glenn Morris | 2015-06-07 16:47:45 -0700 |
| commit | 86abad65089deabe7f215c4bd644c781080b9be2 (patch) | |
| tree | db32238ebc995a371fd7df4db81265231ed17b92 /src/coding.c | |
| parent | 90a19baa2023145d805e93875e4a158540e15990 (diff) | |
| download | emacs-86abad65089deabe7f215c4bd644c781080b9be2.tar.gz emacs-86abad65089deabe7f215c4bd644c781080b9be2.zip | |
Remove the obsolete leading "*" from some C doc strings.
* src/coding.c (syms_of_coding):
* src/font.c (syms_of_font): Remove leading "*" from docs.
* lisp/cus-start.el (enable-character-translation): Add it.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/coding.c b/src/coding.c index 9342c3841f6..9d1ebc8a4cb 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -11053,7 +11053,7 @@ conversion. */); | |||
| 11053 | 11053 | ||
| 11054 | DEFVAR_BOOL ("inhibit-eol-conversion", inhibit_eol_conversion, | 11054 | DEFVAR_BOOL ("inhibit-eol-conversion", inhibit_eol_conversion, |
| 11055 | doc: /* | 11055 | doc: /* |
| 11056 | *Non-nil means always inhibit code conversion of end-of-line format. | 11056 | Non-nil means always inhibit code conversion of end-of-line format. |
| 11057 | See info node `Coding Systems' and info node `Text and Binary' concerning | 11057 | See info node `Coding Systems' and info node `Text and Binary' concerning |
| 11058 | such conversion. */); | 11058 | such conversion. */); |
| 11059 | inhibit_eol_conversion = 0; | 11059 | inhibit_eol_conversion = 0; |
| @@ -11128,27 +11128,27 @@ encoding standard output and error streams. */); | |||
| 11128 | /* The eol mnemonics are reset in startup.el system-dependently. */ | 11128 | /* The eol mnemonics are reset in startup.el system-dependently. */ |
| 11129 | DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix, | 11129 | DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix, |
| 11130 | doc: /* | 11130 | doc: /* |
| 11131 | *String displayed in mode line for UNIX-like (LF) end-of-line format. */); | 11131 | String displayed in mode line for UNIX-like (LF) end-of-line format. */); |
| 11132 | eol_mnemonic_unix = build_pure_c_string (":"); | 11132 | eol_mnemonic_unix = build_pure_c_string (":"); |
| 11133 | 11133 | ||
| 11134 | DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos, | 11134 | DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos, |
| 11135 | doc: /* | 11135 | doc: /* |
| 11136 | *String displayed in mode line for DOS-like (CRLF) end-of-line format. */); | 11136 | String displayed in mode line for DOS-like (CRLF) end-of-line format. */); |
| 11137 | eol_mnemonic_dos = build_pure_c_string ("\\"); | 11137 | eol_mnemonic_dos = build_pure_c_string ("\\"); |
| 11138 | 11138 | ||
| 11139 | DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac, | 11139 | DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac, |
| 11140 | doc: /* | 11140 | doc: /* |
| 11141 | *String displayed in mode line for MAC-like (CR) end-of-line format. */); | 11141 | String displayed in mode line for MAC-like (CR) end-of-line format. */); |
| 11142 | eol_mnemonic_mac = build_pure_c_string ("/"); | 11142 | eol_mnemonic_mac = build_pure_c_string ("/"); |
| 11143 | 11143 | ||
| 11144 | DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided, | 11144 | DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided, |
| 11145 | doc: /* | 11145 | doc: /* |
| 11146 | *String displayed in mode line when end-of-line format is not yet determined. */); | 11146 | String displayed in mode line when end-of-line format is not yet determined. */); |
| 11147 | eol_mnemonic_undecided = build_pure_c_string (":"); | 11147 | eol_mnemonic_undecided = build_pure_c_string (":"); |
| 11148 | 11148 | ||
| 11149 | DEFVAR_LISP ("enable-character-translation", Venable_character_translation, | 11149 | DEFVAR_LISP ("enable-character-translation", Venable_character_translation, |
| 11150 | doc: /* | 11150 | doc: /* |
| 11151 | *Non-nil enables character translation while encoding and decoding. */); | 11151 | Non-nil enables character translation while encoding and decoding. */); |
| 11152 | Venable_character_translation = Qt; | 11152 | Venable_character_translation = Qt; |
| 11153 | 11153 | ||
| 11154 | DEFVAR_LISP ("standard-translation-table-for-decode", | 11154 | DEFVAR_LISP ("standard-translation-table-for-decode", |