blob: 79df610379a16c821c11b6dfa62ea738e29bea2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;;; mm-darwin.el --- MacOS Configuration -*- lexical-binding: t; -*-
(unless (featurep 'ns)
(error "'NS not available. Something has gone horribly wrong."))
^L
;;; Launch Emacs Properly
(defun mm-ns-raise-emacs ()
(ns-do-applescript "tell application \"Emacs\" to activate"))
(add-hook
'after-make-frame-functions
(defun mm-ns-raise-emacs-with-frame (frame)
(when (display-graphic-p)
(with-selected-frame frame
(mm-ns-raise-emacs)))))
(when (display-graphic-p)
(mm-ns-raise-emacs))
(provide 'mm-darwin)
|