diff options
| author | YAMAMOTO Mitsuharu | 2006-09-23 09:16:40 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-09-23 09:16:40 +0000 |
| commit | 2ff62eacf84b86f08fd2940152f173c9a76f09a3 (patch) | |
| tree | df3bb631023f4ee1a556f01573d8f37278482029 | |
| parent | b50685893e18fab719e836b97272e5e0f7155931 (diff) | |
| download | emacs-2ff62eacf84b86f08fd2940152f173c9a76f09a3.tar.gz emacs-2ff62eacf84b86f08fd2940152f173c9a76f09a3.zip | |
(focus-follows-mouse): Set default to nil on Mac.
| -rw-r--r-- | lisp/frame.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 8f7fdf1fd5c..9aba8c54089 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -681,7 +681,7 @@ the user during startup." | |||
| 681 | (nreverse frame-initial-geometry-arguments)) | 681 | (nreverse frame-initial-geometry-arguments)) |
| 682 | (cdr param-list)) | 682 | (cdr param-list)) |
| 683 | 683 | ||
| 684 | (defcustom focus-follows-mouse t | 684 | (defcustom focus-follows-mouse (not (eq window-system 'mac)) |
| 685 | "*Non-nil if window system changes focus when you move the mouse. | 685 | "*Non-nil if window system changes focus when you move the mouse. |
| 686 | You should set this variable to tell Emacs how your window manager | 686 | You should set this variable to tell Emacs how your window manager |
| 687 | handles focus, since there is no way in general for Emacs to find out | 687 | handles focus, since there is no way in general for Emacs to find out |