Mercurial > hg > xemacs-beta
comparison lisp/mule/kinsoku.el @ 771:943eaba38521
[xemacs-hg @ 2002-03-13 08:51:24 by ben]
The big ben-mule-21-5 check-in!
Various files were added and deleted. See CHANGES-ben-mule.
There are still some test suite failures. No crashes, though.
Many of the failures have to do with problems in the test suite itself
rather than in the actual code. I'll be addressing these in the next
day or so -- none of the test suite failures are at all critical.
Meanwhile I'll be trying to address the biggest issues -- i.e. build
or run failures, which will almost certainly happen on various platforms.
All comments should be sent to ben@xemacs.org -- use a Cc: if necessary
when sending to mailing lists. There will be pre- and post- tags,
something like
pre-ben-mule-21-5-merge-in, and
post-ben-mule-21-5-merge-in.
author | ben |
---|---|
date | Wed, 13 Mar 2002 08:54:06 +0000 |
parents | 7039e6323819 |
children | aa5bf79c0076 |
comparison
equal
deleted
inserted
replaced
770:336a418893b5 | 771:943eaba38521 |
---|---|
168 | 168 |
169 (define-category ?s "Kinsoku forbidden start of line characters") | 169 (define-category ?s "Kinsoku forbidden start of line characters") |
170 (define-category ?e "Kinsoku forbidden end of line characters") | 170 (define-category ?e "Kinsoku forbidden end of line characters") |
171 | 171 |
172 ;; kinsoku ascii | 172 ;; kinsoku ascii |
173 (loop for char in (string-to-char-list kinsoku-ascii-bol) | 173 (loop for char in (string-to-list kinsoku-ascii-bol) |
174 do (modify-category-entry char ?s)) | 174 do (modify-category-entry char ?s)) |
175 (loop for char in kinsoku-ascii-eol | 175 (loop for char in kinsoku-ascii-eol |
176 do (modify-category-entry char ?e)) | 176 do (modify-category-entry char ?e)) |
177 ;; kinsoku-jis | 177 ;; kinsoku-jis |
178 (loop for char in (string-to-char-list kinsoku-jis-bol) | 178 (loop for char in (string-to-list kinsoku-jis-bol) |
179 do (modify-category-entry char ?s)) | 179 do (modify-category-entry char ?s)) |
180 (loop for char in (string-to-char-list kinsoku-jis-eol) | 180 (loop for char in (string-to-list kinsoku-jis-eol) |
181 do (modify-category-entry char ?e)) | 181 do (modify-category-entry char ?e)) |
182 ;; kinsoku-gb | 182 ;; kinsoku-gb |
183 (loop for char in kinsoku-gb-bol | 183 (loop for char in kinsoku-gb-bol |
184 do (modify-category-entry char ?s)) | 184 do (modify-category-entry char ?s)) |
185 (loop for char in kinsoku-gb-eol | 185 (loop for char in kinsoku-gb-eol |