From: Kenichi Handa Date: Wed, 8 Sep 2004 07:18:13 +0000 (+0000) Subject: (encode-composition-rule): Add autoload cooky. X-Git-Tag: ttn-vms-21-2-B4~5021 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=59a2dac080b1c1bbd3f55f3b2095344c2f5f82fb;p=emacs.git (encode-composition-rule): Add autoload cooky. --- diff --git a/lisp/composite.el b/lisp/composite.el index 8361e2ad9e3..4f9faf2ccfa 100644 --- a/lisp/composite.el +++ b/lisp/composite.el @@ -77,12 +77,16 @@ follows (the point `*' corresponds to both reference points): +----+-----+ <--- new descent ") -;; Encode composition rule RULE into an integer value. RULE is a cons -;; of global and new reference point symbols. -;; This must be compatible with C macro COMPOSITION_ENCODE_RULE -;; defined in composite.h. +;;;###autoload (defun encode-composition-rule (rule) + "Encode composition rule RULE into an integer value. +RULE is a cons of global and new reference point symbols +\(see reference-point-alist)." + + ;; This must be compatible with C macro COMPOSITION_ENCODE_RULE + ;; defined in composite.h. + (if (and (integerp rule) (< rule 144)) ;; Already encoded. rule