diff options
| author | Scott Wheeler | 2013-11-06 20:11:25 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-06 20:21:06 -0800 |
| commit | b9d7a7a824847e2d6be9dbef602c62c916e36f97 (patch) | |
| tree | b2a77e2528cae774df4638e00e2f8756071bd1f7 /Library/Formula | |
| parent | a04b443441b525e5af2b26254e59ce265c4871f5 (diff) | |
| download | homebrew-b9d7a7a824847e2d6be9dbef602c62c916e36f97.tar.bz2 | |
emacs: backport fullscreen mode from HEAD
This makes it possible to bypass OS X's fullscreen mode. The changes
were pulled from Emacs's bzr repository with minimal changes to get
them to work with 24.3
Closes #23729.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/emacs.rb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb index c0caf804f..3fb0df56d 100644 --- a/Library/Formula/emacs.rb +++ b/Library/Formula/emacs.rb @@ -35,9 +35,14 @@ class Emacs < Formula end def patches - # Fix default-directory on Cocoa and Mavericks. - # Fied upstream in r114730 and r114882. - {:p0 => DATA} + { + # Fix default-directory on Cocoa and Mavericks. + # Fixed upstream in r114730 and r114882. + :p0 => DATA, + # Make native fullscreen mode optional, mostly from + # upstream r111679 + :p1 => 'https://gist.github.com/scotchi/7209145/raw/a571acda1c85e13ed8fe8ab7429dcb6cab52344f/ns-use-native-fullscreen-and-toggle-frame-fullscreen.patch' + } end unless build.head? # Follow MacPorts and don't install ctags from Emacs. This allows Vim |
