-
-
Save crossblaim/583060 to your computer and use it in GitHub Desktop.
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
# Get the official Emacs repo: | |
git clone http://repo.or.cz/r/emacs.git/ | |
# Get the fullscreen patch | |
git remote add typester git://github.com/typester/emacs.git | |
git fetch typester | |
# Create a patch and apply to HEAD | |
# I had merge conflicts when rebasing and | |
# build failures for origin/emacs-23 | |
git checkout origin/master | |
git diff a3585f6c2a typester/feature/fullscreen | patch -p1 | |
# build emacs | |
./configure --with-ns | |
make && make install | |
mv nextstep/Emacs.app /Applications/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment