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: Tue, 21 Oct 2014 13:44:44 +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 1413866723 10531 80.91.229.3 (21 Oct 2014 04:45:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 21 Oct 2014 04:45:23 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 21 06:45:18 2014 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 1XgRJt-0005Xp-Fx for ged-emacs-devel@m.gmane.org; Tue, 21 Oct 2014 06:45:17 +0200 Original-Received: from localhost ([::1]:47841 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgRJt-0000Tc-2O for ged-emacs-devel@m.gmane.org; Tue, 21 Oct 2014 00:45:17 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33892) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgRJb-0000Rm-Na for emacs-devel@gnu.org; Tue, 21 Oct 2014 00:45:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XgRJV-00056F-1t for emacs-devel@gnu.org; Tue, 21 Oct 2014 00:44:59 -0400 Original-Received: from mathmail.math.s.chiba-u.ac.jp ([133.82.132.2]:64160) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgRJU-00055H-IC for emacs-devel@gnu.org; Tue, 21 Oct 2014 00:44:52 -0400 Original-Received: from fermat1.math.s.chiba-u.ac.jp (fermat [192.168.32.10]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id 15E8EC0562 for ; Tue, 21 Oct 2014 13:44:44 +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:175622 Archived-At: The Mac port based on Emacs 24.4 is now available from ftp://ftp.math.s.chiba-u.ac.jp/emacs/emacs-24.4-mac-5.0.tar.gz YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp ** Fixed bugs *** Keyboard input via Screen Sharing causes crash. Reported by Kazu Yamamoto. ** Changes from emacs-24.3-mac-4.8 *** High-resolution icons are now distributed as a separate package, which is available from ftp://ftp.math.s.chiba-u.ac.jp/emacs/emacs-hires-icons-1.0.tar.gz *** File notification is supported via GLib (you'll also need `pkg-config' when running the configure command). *** The `image-io' image type supports `:max-width', `:max-height', and `:format' keywords just as in `imagemagick'. *** Now that Image mode supports multi-frame image navigation (`f', 'b', and `F'), you can browse multi-page documents in several formats that `image-io' supports (e.g., PDF and DOC) with the setting like this: (when (and (image-type-available-p 'image-io) (not (boundp 'imagemagick-render-type))) ;; Image I/O is used as a fallback of ImageMagick. (setq imagemagick-enabled-types t) (setq imagemagick-types-inhibit (cons 'XML (delq 'PDF imagemagick-types-inhibit))) (imagemagick-register-types)) Note: if you have ImageMagick installed, you need to build the Mac port executable without the genuine ImageMagick support so `image-io' can be used as a fallback of `imagemagick'. *** New variables mac-right-control-modifier, mac-right-command-modifier, and mac-right-option-modifier. Note: the left and right versions cannot be distinguished on some environments such as Screen Sharing. Also, certain combinations of a key with both versions of the same modifier do not emit events at the system level. *** A single physical modifier key can be mapped to different Emacs modifiers depending on its input type (ordinary keys, function keys, or mouse operations) using the property list format `(:ordinary SYMBOL :function SYMBOL :mouse SYMBOL)'. By default, the option key works as the normal Mac option key for the ordinary keys, and as the Alt modifier for the function keys and the mouse operations. *** Remove mac-ts-script-language-on-focus, which hasn't had any effect on 64-bit executables. *** Blend and blur fringe background of the focused frame with the contents behind it on OS X 10.10. This is currently experimental, hard-coded, and subject to change. *** Add mouse pointer color support. *** Animation-related properties of animated GIF are added to metadata of images in the `image-io' image type. Likewise for animated PNG on OS X 10.10.