This file contains hidden or 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/configure.ac b/configure.ac | |
| index f604acb694..2d92d4b6ca 100644 | |
| --- a/configure.ac | |
| +++ b/configure.ac | |
| @@ -484,7 +484,7 @@ AC_DEFUN | |
| [with_file_notification=$with_features]) | |
| OPTION_DEFAULT_OFF([xwidgets], | |
| - [enable use of some gtk widgets in Emacs buffers (requires gtk3)]) | |
| + [enable use of xwidgets in Emacs buffers (requires gtk3 or macOS Cocoa)]) |
This file contains hidden or 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/bash | |
| grep -l FILEHEADER -R /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates | grep -v plist | while IFS= read -r file | |
| do | |
| sudo sed -i '' '/\/\/___FILEHEADER___/d' "$file" | |
| done |
This file contains hidden or 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
| func detachableWindow(for popover: NSPopover) -> NSWindow? { | |
| let windowController = NSStoryboard.main?.instantiateController(withIdentifier: .replyWindowController) as! NSWindowController | |
| let replyPopupViewController = windowController.contentViewController as! ReplyPopoverViewController | |
| replyPopupViewController.comment = comment | |
| let window = windowController.window! | |
| window.setContentSize(popover.contentSize) | |
| window.isMovableByWindowBackground = true | |
| let visualEffectView = window.contentView as! NSVisualEffectView | |
| visualEffectView.state = .active | |
| visualEffectView.material = .popover |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| MDT="${1:-${MACOSX_DEPLOYMENT_TARGET:-$(sw_vers -productVersion | cut -d. -f1).0}}" | |
| RUSTC="${RUSTC:-$(rustup which rustc)}" | |
| ROOT="${ROOT:-$PWD/linkedit-repro-${MDT}}" | |
| mkdir -p "$ROOT" | |
| cd "$ROOT" | |
| cat > pm.rs <<'RS' |
OlderNewer