Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
c19db71b
by Raymond Toy at 2024-08-21T02:34:33+00:00
-
4683b241
by Raymond Toy at 2024-08-21T02:34:34+00:00
2 changed files:
Changes:
... | ... | @@ -177,6 +177,7 @@ iso-ir-6 ascii |
177 | 177 | ansi_x3.4-1986 ascii
|
178 | 178 | iso_646.irv\:1991 ascii
|
179 | 179 | iso646-us ascii
|
180 | +\646 iso646-us
|
|
180 | 181 | us-ascii ascii
|
181 | 182 | us ascii
|
182 | 183 | ibm367 ascii
|
... | ... | @@ -1118,3 +1118,11 @@ |
1118 | 1118 | (assert-error 'file-error
|
1119 | 1119 | (load "unknown.lisp" :if-does-not-exist t))
|
1120 | 1120 | (assert-false (load "unknown.lisp" :if-does-not-exist nil)))
|
1121 | + |
|
1122 | +(define-test issue.339.646-external-format
|
|
1123 | + (:tag :issues)
|
|
1124 | + ;; Just verify that the external format :646 exists and is the same
|
|
1125 | + ;; as :iso646-us.
|
|
1126 | + (assert-true (stream::find-external-format :646 nil))
|
|
1127 | + (assert-true (eq (stream::find-external-format :646 nil)
|
|
1128 | + (stream::find-external-format :iso646-us nil)))) |