# HG changeset patch # User Dave Love # Date 1031442883 0 # Node ID bab63e51dbaac56bc40fbb9b48890396349b12dd # Parent 93ab7435813721ae509e3875ad6aca9eb0a1c09a (set-case-syntax-pair): Remove check on byte lengths. diff -r 93ab74358137 -r bab63e51dbaa lisp/case-table.el --- a/lisp/case-table.el Fri Sep 06 17:41:19 2002 +0000 +++ b/lisp/case-table.el Sat Sep 07 23:54:43 2002 +0000 @@ -88,10 +88,6 @@ that will be used as the downcase part of a case table. It also modifies `standard-syntax-table' to give them the syntax of word constituents." - (let ((lu (length (string-as-unibyte (string uc)))) - (ll (length (string-as-unibyte (string lc))))) - (unless (= lu ll) - (error "Can't casify chars with different `charset-bytes' values"))) (aset table uc lc) (aset table lc lc) (set-char-table-extra-slot table 0 nil)