From: Kenichi Handa Date: Thu, 12 Feb 2009 05:42:56 +0000 (+0000) Subject: Use "\\c." instead of "[[:alpha:]]" to match with X-Git-Tag: emacs-pretest-23.0.91~276 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ca451f4c7ec8da6d6e6be436dfd8ec939a5985f0;p=emacs.git Use "\\c." instead of "[[:alpha:]]" to match with a base character. --- diff --git a/lisp/composite.el b/lisp/composite.el index 537adab6e90..667f158a346 100644 --- a/lisp/composite.el +++ b/lisp/composite.el @@ -646,7 +646,7 @@ All non-spacing characters has this function in (setq i (1+ i)))) gstring)))))) -(let ((elt '(["[[:alpha:]]\\c^+" 1 compose-gstring-for-graphic] +(let ((elt '(["\\c.\\c^+" 1 compose-gstring-for-graphic] [nil 0 compose-gstring-for-graphic]))) (map-char-table #'(lambda (key val)