This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/nsterm.m b/src/nsterm.m | |
index 211b029..5a650b6 100644 | |
--- a/src/nsterm.m | |
+++ b/src/nsterm.m | |
@@ -4508,7 +4508,7 @@ ns_term_shutdown (int sig) | |
if (mac_pass_key_directly_to_emacs () | |
|| fnKeysym | |
- || (emacs_event->modifiers | |
+ || (emacs_event->modifiers && (emacs_event->modifiers != shift_modifier) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/nsterm.m b/src/nsterm.m | |
--- a/src/nsterm.m | |
+++ b/src/nsterm.m | |
@@ -5507,6 +5507,7 @@ ns_term_shutdown (int sig) | |
[win setAcceptsMouseMovedEvents: YES]; | |
[win setDelegate: self]; | |
[win useOptimizedDrawing: YES]; | |
+ [win setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary]; | |
sz.width = FRAME_COLUMN_WIDTH (f); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# 初期設定 | |
EMACS_VER=24.1 | |
WORK_DIR=$HOME/Builds/Emacs | |
BUILD_DIR=$WORK_DIR/build | |
PATCH_DIR=$WORK_DIR/patch | |
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" | |
export CC='/usr/bin/llvm-gcc' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# GCC | |
## Prerequisites for GCC | |
## http://gcc.gnu.org/install/prerequisites.html | |
## Installing GCC: Configuration | |
## http://gcc.gnu.org/install/configure.html | |
# 初期設定 | |
GCC_VER=4.7.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el | |
index 360397a..fb8e50a 100644 | |
--- a/lisp/term/ns-win.el | |
+++ b/lisp/term/ns-win.el | |
@@ -1233,6 +1233,26 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.") | |
(title . "半英") | |
(cursor-color) | |
(cursor-type)) | |
+ ("com.justsystems.inputmethod.atok25.Roman" | |
+ (title . "A") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# 初期設定 | |
EMACS_VER=24.2 | |
WORK_DIR=$HOME/Builds/Emacs | |
BUILD_DIR=$WORK_DIR/build | |
PATCH_DIR=$WORK_DIR/patch | |
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" | |
export CC='/usr/bin/clang' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- lib-asprintf.h.orig 2012-10-18 17:28:50.854969895 +0900 | |
+++ lib-asprintf.h 2012-10-18 17:24:19.707008903 +0900 | |
@@ -29,6 +29,7 @@ | |
#else | |
/* Get asprintf(), vasprintf() declarations. */ | |
-#include "vasprintf.h" | |
+//#include "vasprintf.h" | |
+#include <stdio.h> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/contrib/src/dvdnav/rules.mak b/contrib/src/dvdnav/rules.mak | |
--- a/contrib/src/dvdnav/rules.mak | |
+++ b/contrib/src/dvdnav/rules.mak | |
@@ -24,7 +24,7 @@ $(TARBALLS)/libdvdnav-git.tar.xz: | |
dvdnav: libdvdnav-$(LIBDVDNAV_VERSION).tar.xz .sum-dvdnav | |
$(UNPACK) | |
- $(APPLY) $(SRC)/dvdnav/dvdnav.patch | |
+ #$(APPLY) $(SRC)/dvdnav/dvdnav.patch | |
$(MOVE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/contrib/src/taglib/7036.patch b/contrib/src/taglib/7036.patch | |
new file mode 100644 | |
index 0000000..4c8f98c | |
--- /dev/null | |
+++ b/contrib/src/taglib/7036.patch | |
@@ -0,0 +1,27 @@ | |
+From 7cc36db7606dfc85d2e344d35c4e26fe8f698bdc Mon Sep 17 00:00:00 2001 | |
+From: Jonathan Liu <[email protected]> | |
+Date: Sat, 6 Aug 2011 11:05:11 +0200 | |
+Subject: [PATCH] Use the default frame factory when it's necessary to parse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# GCC | |
## Prerequisites for GCC | |
## http://gcc.gnu.org/install/prerequisites.html | |
## Installing GCC: Configuration | |
## http://gcc.gnu.org/install/configure.html | |
# 初期設定 | |
GCC_VER=4.7.2 |