diff options
| author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-04-23 06:51:44 +0000 |
|---|---|---|
| committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-04-23 06:51:44 +0000 |
| commit | 31e1d9206b69676f624dd8ef2958afbbe6e32fd5 (patch) | |
| tree | 14eaeb57d9fd60dcdf1f1e247854a39689e35e31 /lisp/frame.el | |
| parent | f2a2c3d2e30b0b2acf404c80b53bb99c98920955 (diff) | |
| download | emacs-31e1d9206b69676f624dd8ef2958afbbe6e32fd5.tar.gz | |
All fsets changed to defaliases.
Diffstat (limited to 'lisp/frame.el')
| -rw-r--r-- | lisp/frame.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 2607d360ab0..488fd682cc0 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -237,7 +237,7 @@ These supercede the values given in `default-frame-alist'.") t))) ;; Alias, kept temporarily. -(fset 'new-frame 'make-frame) +(defalias 'new-frame 'make-frame) (defun make-frame (&optional parameters) "Create a new frame, displaying the current buffer. @@ -426,8 +426,8 @@ Horizontal scroll bars aren't implemented yet." ;;;; Aliases for backward compatibility with Emacs 18. -(fset 'screen-height 'frame-height) -(fset 'screen-width 'frame-width) +(defalias 'screen-height 'frame-height) +(defalias 'screen-width 'frame-width) (defun set-screen-width (cols &optional pretend) "Obsolete function to change the size of the screen to COLS columns.\n\ @@ -454,7 +454,7 @@ should use `set-frame-width' instead." ;;;; Key bindings (defvar ctl-x-5-map (make-sparse-keymap) "Keymap for frame commands.") -(fset 'ctl-x-5-prefix ctl-x-5-map) +(defalias 'ctl-x-5-prefix ctl-x-5-map) (define-key ctl-x-map "5" 'ctl-x-5-prefix) (define-key ctl-x-5-map "2" 'new-frame) |
