]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment changes.
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 Oct 1995 00:08:57 +0000 (00:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 Oct 1995 00:08:57 +0000 (00:08 +0000)
src/buffer.h

index 9a4ef5b4b9569c5fce84a3f9fe61a2a7cf7a0ab8..66f10e80a742a093cec554bfde004b67a04c650e 100644 (file)
@@ -308,13 +308,14 @@ struct buffer
        This value is meaningful only on certain operating systems.  */
     Lisp_Object buffer_file_type;
 
-    /* String of length 256 mapping each char to its lower-case version.  */
+    /* Case table for case-conversion in this buffer.
+       This char-table maps each char into its lower-case version.  */
     Lisp_Object downcase_table;
-    /* String of length 256 mapping each char to its upper-case version.  */
+    /* Char-table mapping each char to its upper-case version.  */
     Lisp_Object upcase_table;
-    /* Translate table for case-folding search.  */
+    /* Char-table for conversion for case-folding search.  */
     Lisp_Object case_canon_table;
-    /* Inverse translate (equivalence class) table for case-folding search.  */
+    /* Char-table of equivalences for case-folding search.  */
     Lisp_Object case_eqv_table;
 
     /* Non-nil means do not display continuation lines.  */