emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/composite.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/composite.el [emacs-unicode-2]
Date: Thu, 09 Sep 2004 17:59:15 -0400

Index: emacs/lisp/composite.el
diff -c emacs/lisp/composite.el:1.13.6.11 emacs/lisp/composite.el:1.13.6.12
*** emacs/lisp/composite.el:1.13.6.11   Fri Apr 16 12:49:48 2004
--- emacs/lisp/composite.el     Thu Sep  9 09:36:31 2004
***************
*** 80,91 ****
  and YOFF are integers in the range -100..100 representing the
  shifting percentage against the font size.")
  
- ;; 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.
  
  (defun encode-composition-rule (rule)
    (if (and (integerp rule) (< rule 144))
        ;; Already encoded.
        rule
--- 80,95 ----
  and YOFF are integers in the range -100..100 representing the
  shifting percentage against the font size.")
  
  
+ ;;;###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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]