changeset 56985:5eac7cd6d213

(encode-composition-rule): Add autoload cooky.
author Kenichi Handa <handa@m17n.org>
date Wed, 08 Sep 2004 07:18:13 +0000
parents ef2bf59ff39e
children 6db2681d2bf6
files lisp/composite.el
diffstat 1 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/composite.el	Wed Sep 08 03:26:24 2004 +0000
+++ b/lisp/composite.el	Wed Sep 08 07:18:13 2004 +0000
@@ -77,12 +77,16 @@
     +----+-----+ <--- 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