From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.devel Subject: Re: Emacs Mac port Date: Fri, 11 Jan 2013 16:28:00 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1357889306 29111 80.91.229.3 (11 Jan 2013 07:28:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 11 Jan 2013 07:28:26 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jan 11 08:28:43 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TtZ2d-0007nT-Db for ged-emacs-devel@m.gmane.org; Fri, 11 Jan 2013 08:28:39 +0100 Original-Received: from localhost ([::1]:34301 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtZ2N-0006Qj-Ag for ged-emacs-devel@m.gmane.org; Fri, 11 Jan 2013 02:28:23 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:47955) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtZ29-0005s2-7y for emacs-devel@gnu.org; Fri, 11 Jan 2013 02:28:10 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TtZ27-0001HH-Oe for emacs-devel@gnu.org; Fri, 11 Jan 2013 02:28:09 -0500 Original-Received: from mathmail.math.s.chiba-u.ac.jp ([133.82.132.2]:58428) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtZ27-0001Gf-90 for emacs-devel@gnu.org; Fri, 11 Jan 2013 02:28:07 -0500 Original-Received: from church.math.s.chiba-u.ac.jp (church [133.82.132.36]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id 6E977C056F for ; Fri, 11 Jan 2013 16:28:00 +0900 (JST) In-Reply-To: User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 133.82.132.2 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:156205 Archived-At: The Mac port based on Emacs 24.2.92 pretest is now available from ftp://ftp.math.s.chiba-u.ac.jp/emacs/emacs-24.2.92-mac-3.92.tar.gz On Mac OS X 10.7 and later, you can test some composition features for emoji characters by: ;;;; Emoji composition tests ;;; Regional indicators (#x1F1E6 - #x1F1FF) (insert (mapconcat (lambda (s) (mapcar (lambda (c) (+ c (- #x1F1FF ?Z))) s)) '("CN" "DE" "ES" "FR" "GB" "IT" "JP" "KR" "RU" "US") " ")) ;;; Variation Selectors 15 (text-style) and 16 (emoji-style) (insert (mapconcat (lambda (c) (format "#x%04x:\t%c\uFE0E\u20E3 %c\uFE0F\u20E3" c c c)) (cdr (assq 'keycap mac-emoji-variation-characters-alist)) "\n") ?\n (mapconcat (lambda (c) (format "#x%04x:\t%c\uFE0E %c\uFE0F" c c c)) (mapconcat 'cdr mac-emoji-variation-characters-alist "") "\n")) YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp ** Fixed bugs *** Two-finger click with a trackpad on the mode-line causes errors on OS X 10.8. *** Key events are discarded while AppleScript is executed. ** Improvements *** Add an info node for images and colors to the Mac port section. *** Support Variation Selectors 15 (text-style) and 16 (emoji-style).