Raymond Toy pushed to branch issue-328-typo-code-char at cmucl / cmucl
Commits:
-
9f7ba388
by Raymond Toy at 2024-06-09T06:02:11-07:00
1 changed file:
Changes:
... | ... | @@ -496,7 +496,7 @@ |
496 | 496 | (code-char (logxor m #x20)))
|
497 | 497 | #+(and unicode (not unicode-bootstrap))
|
498 | 498 | ((> m lisp::+ascii-limit+)
|
499 | - (code-char (unicode-title m)))
|
|
499 | + (code-char (lisp::unicode-title m)))
|
|
500 | 500 | (t char))))
|
501 | 501 | |
502 | 502 | (defun title-case-p (char)
|
... | ... | @@ -562,7 +562,7 @@ |
562 | 562 | (let* ((string (if (stringp string) string (string string)))
|
563 | 563 | (slen (length string)))
|
564 | 564 | (declare (fixnum slen))
|
565 | - (with-one-string string start end offset
|
|
565 | + (lisp::with-one-string string start end offset
|
|
566 | 566 | (let ((offset-slen (+ slen offset))
|
567 | 567 | (newstring (make-string slen)))
|
568 | 568 | (declare (fixnum offset-slen))
|