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 --exclude .git --exclude '*.o' --exclude .DS_Store --exclude '*TAGS' --exclude lib --exclude nextstep -crN emacs_orig/configure.ac emacs/configure.ac | |
*** emacs_orig/configure.ac 2019-12-27 03:23:17.000000000 +0900 | |
--- emacs/configure.ac 2019-12-27 03:24:01.000000000 +0900 | |
*************** | |
*** 2073,2079 **** | |
INSTALL_ARCH_INDEP_EXTRA= | |
fi | |
! NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o $ns_fontfile" | |
fi |
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 | |
file="/Applications/Emacs.app" | |
version=`${file}/Contents/MacOS/Emacs -batch --eval="(princ (format \"%s.%s@%s\" emacs-major-version emacs-minor-version (substring emacs-repository-version 0 10)))"` | |
application="Emacs"${version}"" | |
date=$(printf %x $(date +%s)) | |
uuid=$(/usr/bin/uuidgen) | |
/usr/bin/xattr -w com.apple.quarantine "0002;${date};${application};${uuid}" "${file}" | |
open "x-apple.systempreferences:com.apple.preference.security" |
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
(when (autoload-if-found | |
'(appt my-org-agenda-to-appt ad:appt-display-message | |
ad:appt-disp-window) | |
"appt" nil t) | |
(with-eval-after-load "postpone" | |
(global-set-key (kbd "C-c f 3") #'my-org-agenda-to-appt)) | |
(with-eval-after-load "appt" | |
;; window を フレーム内に表示する |
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
(defcustom move-cursor-hook nil | |
"Hook runs when you move the cursor." | |
:type 'hook | |
:group 'convenience) | |
(defun ad:cur:next-line (&optional _arg _try-vscroll) | |
(run-hooks 'move-cursor-hook)) | |
(defun ad:cur:previous-line (&optional _arg _try-vscroll) | |
(run-hooks 'move-cursor-hook)) | |
(defun ad:cur:forward-char (&optional _N) |
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
;;; night-theme.el --- Night Theme | |
(deftheme night | |
"Night Theme") | |
(custom-theme-set-faces | |
'night | |
;; '(default ((t (:stipple nil :background "#31343F" :foreground "#abb2bf" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 120 :width normal :foundry "nil" :family "Monaco")))) | |
'(default ((t (:stipple nil :background "#31343F" :foreground "#abb2bf" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :width normal :foundry "nil")))) | |
'(bold ((t (:weight bold)))) |
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
;;; daylight-theme.el --- my default theme | |
(deftheme daylight | |
"my default theme") | |
(custom-theme-set-faces | |
'daylight | |
;; '(default ((t (:stipple nil :background "White" :foreground "Black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 120 :width normal :foundry "nil" :family "Monaco")))) | |
'(default ((t (:stipple nil :background "White" :foreground "Black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :width normal :foundry "nil")))) | |
'(bold ((t (:weight bold)))) |
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 -crN emacs-26.0.91/src/nsfns.m emacs-26.0.91_patch/src/nsfns.m | |
*** emacs-26.0.91/src/nsfns.m 2018-03-20 18:41:09.000000000 +0900 | |
--- emacs-26.0.91_patch/src/nsfns.m 2018-03-20 18:42:52.000000000 +0900 | |
*************** | |
*** 1231,1239 **** | |
x_default_parameter (f, parms, Qborder_width, make_number (0), | |
"borderwidth", "BorderWidth", RES_TYPE_NUMBER); | |
! x_default_parameter (f, parms, Qinternal_border_width, make_number (2), | |
! "internalBorderWidth", "InternalBorderWidth", |
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 | |
# see https://github.com/emacs-mirror/emacs/pull/6#issue-79644890 | |
cd ~/Desktop | |
if [ -d emacs ]; then | |
echo "You already have a Emacs dir in Desktop. Delete it first." | |
exit; | |
fi | |
git clone git://git.sv.gnu.org/emacs.git |
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
1 | |
00:00:08,0 --> 00:00:10,0 | |
あぁ!僕のテキストファイルが! | |
2 | |
00:00:18,300 --> 00:00:19,500 | |
ハーイ、ジョージィ! | |
3 | |
00:00:23,0 --> 00:00:25,0 |
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 | |
cd ~/Desktop | |
git clone git://git.sv.gnu.org/emacs.git | |
cd emacs | |
git checkout -b emacs-26 | |
git reset --hard 9ad0f1d15c |