(of-component-features): Add `->mistakable', `<-formed' and
authorMORIOKA Tomohiko <tomo.git@chise.org>
Mon, 24 Jul 2017 07:53:56 +0000 (16:53 +0900)
committerMORIOKA Tomohiko <tomo.git@chise.org>
Mon, 24 Jul 2017 07:53:56 +0000 (16:53 +0900)
`->formed'.
(to-component-features): Don't add `->formed'.

ids-find.el

index 9ff51f4..4b3d7ec 100644 (file)
@@ -74,8 +74,9 @@
       (when (string-match "^<-.*[@/]component\\(/[^*/]+\\)*$"
                          (symbol-name feature))
        (push feature dest)))
-    (cons '<-mistakable
-         dest)))
+    (list* '<-mistakable '->mistakable
+          '<-formed '->formed
+          dest)))
 
 (defun to-component-features ()
   (let (dest)
@@ -83,8 +84,7 @@
       (when (string-match "^->.*[@/]component\\(/[^*/]+\\)*$"
                          (symbol-name feature))
        (push feature dest)))
-    (cons '->formed
-         dest)))
+    dest))
 
 ;;;###autoload
 (defun char-component-variants (char)