Show
Ignore:
Timestamp:
09/09/06 16:30:10 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/international/quail.el

    r3945 r4161  
    10961096Optional 6th arg PROPS is a property list annotating TRANS.  See the 
    10971097function `quail-define-rules' for the detail." 
    1098   (if (null (stringp key)) 
    1099       "Invalid Quail key `%s'" key
     1098  (if (not (or (stringp key) (vectorp key))) 
     1099      (error "Invalid Quail key `%s'" key)
    11001100  (if (not (or (numberp trans) (stringp trans) (vectorp trans) 
    11011101               (consp trans)