Mercurial > hg > xemacs-beta
comparison src/syntax.h @ 3498:b03fc4eae965
[xemacs-hg @ 2006-07-08 16:15:54 by aidan]
Fix a Mule build failure, update comments.
author | aidan |
---|---|
date | Sat, 08 Jul 2006 16:15:57 +0000 |
parents | 2b8bb4938bb4 |
children | e0db3c197671 |
comparison
equal
deleted
inserted
replaced
3497:45671f160bd5 | 3498:b03fc4eae965 |
---|---|
147 | 147 |
148 In a 64-bit integer, there would be 32 more unused bits between | 148 In a 64-bit integer, there would be 32 more unused bits between |
149 the tag and the comment bits. | 149 the tag and the comment bits. |
150 | 150 |
151 Clearly, such a scheme will not work for Mule, because the matching | 151 Clearly, such a scheme will not work for Mule, because the matching |
152 paren could be any character and as such requires 19 bits, which | 152 paren could be any character and as such requires 21 bits, which |
153 we don't got. | 153 we don't got. |
154 | 154 |
155 Remember that under Mule we use char tables instead of vectors. | 155 Remember that under Mule we use char tables instead of vectors. |
156 So what we do is use another char table for the matching paren | 156 So what we do is use another char table for the matching paren |
157 and store a pointer to it in the first char table. (This frees | 157 and store a pointer to it in the first char table. (This frees |