(ideograph-char<): Prefer `non-morohashi' to `morohashi-daikanwa'.
authortomo <tomo>
Tue, 11 Apr 2000 07:31:51 +0000 (07:31 +0000)
committertomo <tomo>
Tue, 11 Apr 2000 07:31:51 +0000 (07:31 +0000)
lisp/utf-2000/ideograph-util.el

index b051ead..20fc9e9 100644 (file)
 (defun ideograph-char< (a b)
   (let (ra rb)
     (cond
-     ((setq ra (or (get-char-attribute a 'morohashi-daikanwa)
-                  (get-char-attribute a 'non-morohashi)))
+     ((setq ra (or (get-char-attribute a 'non-morohashi)
+                  (get-char-attribute a 'morohashi-daikanwa)))
       (cond
-       ((setq rb (or (get-char-attribute b 'morohashi-daikanwa)
-                    (get-char-attribute b 'non-morohashi)))
+       ((setq rb (or (get-char-attribute b 'non-morohashi)
+                    (get-char-attribute b 'morohashi-daikanwa)))
        (cond
         ((= (car ra)(car rb))
          (cond ((eq (car (cdr ra))(car (cdr rb)))
                (t (< (car (cdr ra))(car (cdr rb))))))
         (t (< (car ra)(car rb)))))
        (t)))
-     ((or (get-char-attribute b 'morohashi-daikanwa)
-         (get-char-attribute b 'non-morohashi))
+     ((or (get-char-attribute b 'non-morohashi)
+         (get-char-attribute b 'morohashi-daikanwa))
       nil)
      ((setq ra (get-char-attribute a 'ucs))
       (cond