[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs Mac port
From: |
YAMAMOTO Mitsuharu |
Subject: |
Re: Emacs Mac port |
Date: |
Fri, 11 Jan 2013 16:28:00 +0900 |
User-agent: |
Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (Shijō) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) |
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
address@hidden
** 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).
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: Emacs Mac port,
YAMAMOTO Mitsuharu <=