diff options
| -rw-r--r-- | lisp/frame.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 989b3efa2ec..2607d360ab0 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -236,7 +236,9 @@ These supercede the values given in `default-frame-alist'.") | |||
| 236 | (> (minibuffer-depth) 0) | 236 | (> (minibuffer-depth) 0) |
| 237 | t))) | 237 | t))) |
| 238 | 238 | ||
| 239 | (defun new-frame (&optional parameters) | 239 | ;; Alias, kept temporarily. |
| 240 | (fset 'new-frame 'make-frame) | ||
| 241 | (defun make-frame (&optional parameters) | ||
| 240 | "Create a new frame, displaying the current buffer. | 242 | "Create a new frame, displaying the current buffer. |
| 241 | 243 | ||
| 242 | Optional argument PARAMETERS is an alist of parameters for the new | 244 | Optional argument PARAMETERS is an alist of parameters for the new |