]> git.eshelyaron.com Git - emacs.git/commitdiff
(encode-composition-rule): Add autoload cooky.
authorKenichi Handa <handa@m17n.org>
Wed, 8 Sep 2004 07:18:13 +0000 (07:18 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 8 Sep 2004 07:18:13 +0000 (07:18 +0000)
lisp/composite.el

index 8361e2ad9e3c13fd3b55086d70d0d1e4ac9e4d21..4f9faf2ccfa895e3e62aa576782ec20910b5f964 100644 (file)
@@ -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