diff options
| author | Richard M. Stallman | 1995-10-19 00:08:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-10-19 00:08:57 +0000 |
| commit | f392937f8ed83fff9f290fe1d6c6ed1996cef604 (patch) | |
| tree | b67eb8707e9551d6439ebd25f0c5dddb0633c5e2 /src/buffer.h | |
| parent | be46733f37de1616d8ed2af398f80d39ecec5a29 (diff) | |
| download | emacs-f392937f8ed83fff9f290fe1d6c6ed1996cef604.tar.gz emacs-f392937f8ed83fff9f290fe1d6c6ed1996cef604.zip | |
Comment changes.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/buffer.h b/src/buffer.h index 9a4ef5b4b95..66f10e80a74 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -308,13 +308,14 @@ struct buffer | |||
| 308 | This value is meaningful only on certain operating systems. */ | 308 | This value is meaningful only on certain operating systems. */ |
| 309 | Lisp_Object buffer_file_type; | 309 | Lisp_Object buffer_file_type; |
| 310 | 310 | ||
| 311 | /* String of length 256 mapping each char to its lower-case version. */ | 311 | /* Case table for case-conversion in this buffer. |
| 312 | This char-table maps each char into its lower-case version. */ | ||
| 312 | Lisp_Object downcase_table; | 313 | Lisp_Object downcase_table; |
| 313 | /* String of length 256 mapping each char to its upper-case version. */ | 314 | /* Char-table mapping each char to its upper-case version. */ |
| 314 | Lisp_Object upcase_table; | 315 | Lisp_Object upcase_table; |
| 315 | /* Translate table for case-folding search. */ | 316 | /* Char-table for conversion for case-folding search. */ |
| 316 | Lisp_Object case_canon_table; | 317 | Lisp_Object case_canon_table; |
| 317 | /* Inverse translate (equivalence class) table for case-folding search. */ | 318 | /* Char-table of equivalences for case-folding search. */ |
| 318 | Lisp_Object case_eqv_table; | 319 | Lisp_Object case_eqv_table; |
| 319 | 320 | ||
| 320 | /* Non-nil means do not display continuation lines. */ | 321 | /* Non-nil means do not display continuation lines. */ |