aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2021-09-28 11:15:43 +0300
committerEli Zaretskii2021-09-28 11:15:43 +0300
commit7c21d2c7f56c82a72850408db6681dfbc3e45e95 (patch)
tree9914f30291b34ab1effda177f385b76988288817 /src
parent76e846f92a3c625fe524c81aa996327fba5a9e65 (diff)
downloademacs-7c21d2c7f56c82a72850408db6681dfbc3e45e95.tar.gz
emacs-7c21d2c7f56c82a72850408db6681dfbc3e45e95.zip
; * src/lisp.h (enum char_bits): Update the comment.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 09e0b8e9bda..480c389a3bc 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2827,9 +2827,8 @@ enum Lisp_Compiled
2827 }; 2827 };
2828 2828
2829/* Flag bits in a character. These also get used in termhooks.h. 2829/* Flag bits in a character. These also get used in termhooks.h.
2830 Richard Stallman <rms@gnu.ai.mit.edu> thinks that MULE 2830 Emacs needs 22 bits for the character value itself, see MAX_CHAR,
2831 (MUlti-Lingual Emacs) might need 22 bits for the character value 2831 so we shouldn't use any bits lower than 0x0400000. */
2832 itself, so we probably shouldn't use any bits lower than 0x0400000. */
2833enum char_bits 2832enum char_bits
2834 { 2833 {
2835 CHAR_ALT = 0x0400000, 2834 CHAR_ALT = 0x0400000,