From 5dc433d8a9d926dac20b0fcc91776bdb87a48f7f Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 17 Feb 2011 03:08:34 +0000 Subject: [PATCH] (insert-char-attributes): Treat '=decomposition@FOO' as the same as `=decomposition'. --- lisp/utf-2000/char-db-util.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/utf-2000/char-db-util.el b/lisp/utf-2000/char-db-util.el index 5bd5ddb..d25d65b 100644 --- a/lisp/utf-2000/char-db-util.el +++ b/lisp/utf-2000/char-db-util.el @@ -1102,7 +1102,8 @@ (eq name 'ideographic-combination) (eq name 'ideographic-) (eq name '=decomposition) - (string-match "^=>decomposition" (symbol-name name)) + (string-match "^=>*decomposition\\(@[^*]+\\)?$" + (symbol-name name)) (string-match "^\\(->\\|<-\\)[^*]*$" (symbol-name name)) (string-match "^\\(->\\|<-\\)[^*]*\\*sources$" (symbol-name name)) -- 1.7.10.4