aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2018-09-10 08:49:04 -0700
committerPaul Eggert2018-09-10 08:49:27 -0700
commitfe859a07870d5204adfd5c9a7f83bf69658d37c8 (patch)
tree4f9eb64c5b856a06af1a6a96a0f32170f9c32480 /src
parent61f3a4b4fcc43241caaac63195205774ab1a5732 (diff)
downloademacs-fe859a07870d5204adfd5c9a7f83bf69658d37c8.tar.gz
emacs-fe859a07870d5204adfd5c9a7f83bf69658d37c8.zip
* src/charset.c (Fencode_char): Tweak comment.
Diffstat (limited to 'src')
-rw-r--r--src/charset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index 6e2bf17cdf6..c1a237835c7 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1892,7 +1892,7 @@ Return nil if CHARSET doesn't support CH. */)
1892 can fit in 22bit. Yet we encode GB-10830's chars in a sparse way 1892 can fit in 22bit. Yet we encode GB-10830's chars in a sparse way
1893 (we just take the 4byte sequences as a 32bit int), so some 1893 (we just take the 4byte sequences as a 32bit int), so some
1894 GB-10830 chars (such as 0x81308130 in etc/charsets/gb108304.map) end 1894 GB-10830 chars (such as 0x81308130 in etc/charsets/gb108304.map) end
1895 up represented as bignums here. */ 1895 up represented as bignums if EMACS_INT is 32 bits. */
1896 return INT_TO_INTEGER (code); 1896 return INT_TO_INTEGER (code);
1897} 1897}
1898 1898