Raymond Toy pushed to branch master at cmucl / cmucl

Commits:

2 changed files:

Changes:

  • src/pcl/simple-streams/external-formats/aliases
    ... ... @@ -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
    

  • tests/issues.lisp
    ... ... @@ -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))))