diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-03-18 19:22:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-03-18 19:22:48 +0000 |
commit | 92e443b1559cf7ca416185e1ecd8ad334be7fee1 (patch) | |
tree | 5f0905c9a19889ef546d02bf51c3f9b3245682fd | |
parent | 05c53e7cf5d1ab6290bb48b49b096e2c56b3b323 (diff) | |
download | emacs-92e443b1559cf7ca416185e1ecd8ad334be7fee1.tar.gz |
(make-frame): Renamed from new-frame.
(new-frame): Alias for make-frame.
-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'.") (> (minibuffer-depth) 0) t))) -(defun new-frame (&optional parameters) +;; Alias, kept temporarily. +(fset 'new-frame 'make-frame) +(defun make-frame (&optional parameters) "Create a new frame, displaying the current buffer. Optional argument PARAMETERS is an alist of parameters for the new |