diff options
| author | Luc Teirlinck | 2004-07-24 21:45:28 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-07-24 21:45:28 +0000 |
| commit | 8de9d3f63168cc38e2bcb1878bb2344568a9200e (patch) | |
| tree | 7f00a8cfb4356cd2ab0cba8a67012373b0214b49 | |
| parent | 074f1b8b8f3a9249a35254ce82dad8ab8a3b05c6 (diff) | |
| download | emacs-8de9d3f63168cc38e2bcb1878bb2344568a9200e.tar.gz emacs-8de9d3f63168cc38e2bcb1878bb2344568a9200e.zip | |
(make-frame): Doc fix.
| -rw-r--r-- | lisp/frame.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index bd63f9f46d1..a364d7f491b 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -612,7 +612,13 @@ You cannot specify either `width' or `height', you must use neither or both. | |||
| 612 | 612 | ||
| 613 | Before the frame is created (via `frame-creation-function'), functions on the | 613 | Before the frame is created (via `frame-creation-function'), functions on the |
| 614 | hook `before-make-frame-hook' are run. After the frame is created, functions | 614 | hook `before-make-frame-hook' are run. After the frame is created, functions |
| 615 | on `after-make-frame-functions' are run with one arg, the newly created frame." | 615 | on `after-make-frame-functions' are run with one arg, the newly created frame. |
| 616 | |||
| 617 | This function itself does not make the new frame the selected frame. | ||
| 618 | The previously selected frame remains selected. However, the | ||
| 619 | window system may select the new frame for its own reasons, for | ||
| 620 | instance if the frame appears under the mouse pointer and your | ||
| 621 | setup is for focus to follow the pointer." | ||
| 616 | (interactive) | 622 | (interactive) |
| 617 | (run-hooks 'before-make-frame-hook) | 623 | (run-hooks 'before-make-frame-hook) |
| 618 | (let ((frame (funcall frame-creation-function parameters))) | 624 | (let ((frame (funcall frame-creation-function parameters))) |