]> code.delx.au - gnu-emacs/blobdiff - lisp/case-table.el
(ldap-search-internal): Handle <file://...> in results.
[gnu-emacs] / lisp / case-table.el
index 79cc96b5b315f1b2aff5c7ff8b0e6d2f5e6e8157..f83123bf19f93f115cfa4c3ef1e2c6ff1ddfb3d8 100644 (file)
@@ -1,4 +1,4 @@
-;;; case-table.el --- code to extend the character set and support case tables.
+;;; case-table.el --- code to extend the character set and support case tables
 
 ;; Copyright (C) 1988, 1994 Free Software Foundation, Inc.
 
@@ -103,6 +103,9 @@ This sets the entries for characters UC and LC in TABLE, which is a string
 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."
+  (unless (= (charset-bytes (char-charset uc))
+            (charset-bytes (char-charset lc)))
+    (error "Can't casify chars with different `charset-bytes' values"))
   (setq uc (set-case-syntax-1 uc))
   (setq lc (set-case-syntax-1 lc))
   (aset table uc lc)