[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/frame.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/frame.el |
Date: |
Wed, 20 Jul 2005 13:54:26 -0400 |
Index: emacs/lisp/frame.el
diff -c emacs/lisp/frame.el:1.226 emacs/lisp/frame.el:1.227
*** emacs/lisp/frame.el:1.226 Thu Jul 14 00:59:34 2005
--- emacs/lisp/frame.el Wed Jul 20 17:54:26 2005
***************
*** 592,599 ****
"Functions to run after a frame's font has been changed.")
;; Alias, kept temporarily.
! (defalias 'new-frame 'make-frame)
! (make-obsolete 'new-frame 'make-frame "22.1")
(defun make-frame (&optional parameters)
"Return a newly created frame displaying the current buffer.
--- 592,598 ----
"Functions to run after a frame's font has been changed.")
;; Alias, kept temporarily.
! (define-obsolete-function-alias 'new-frame 'make-frame "22.1")
(defun make-frame (&optional parameters)
"Return a newly created frame displaying the current buffer.
***************
*** 851,857 ****
To get the frame's current default font, use `frame-parameters'.
The default behavior is to keep the numbers of lines and columns in
! the frame, thus may change its pixel size. If optional KEEP-SIZE is
non-nil (interactively, prefix argument) the current frame size (in
pixels) is kept by adjusting the numbers of the lines and columns."
(interactive
--- 850,856 ----
To get the frame's current default font, use `frame-parameters'.
The default behavior is to keep the numbers of lines and columns in
! the frame, thus may change its pixel size. If optional KEEP-SIZE is
non-nil (interactively, prefix argument) the current frame size (in
pixels) is kept by adjusting the numbers of the lines and columns."
(interactive
***************
*** 1149,1171 ****
;;;; Aliases for backward compatibility with Emacs 18.
! (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.
Optional second arg non-nil means that redisplay should use COLS columns
but that the idea of the actual width of the frame should not be changed.
! This function is provided only for compatibility with Emacs 18; new code
! should use `set-frame-width instead'."
(set-frame-width (selected-frame) cols pretend))
(defun set-screen-height (lines &optional pretend)
! "Obsolete function to change the height of the screen to LINES lines.
Optional second arg non-nil means that redisplay should use LINES lines
but that the idea of the actual height of the screen should not be changed.
! This function is provided only for compatibility with Emacs 18; new code
! should use `set-frame-height' instead."
(set-frame-height (selected-frame) lines pretend))
(defun delete-other-frames (&optional frame)
--- 1148,1168 ----
;;;; Aliases for backward compatibility with Emacs 18.
! (define-obsolete-function-alias 'screen-height 'frame-height) ;before 19.15
! (define-obsolete-function-alias 'screen-width 'frame-width) ;before 19.15
(defun set-screen-width (cols &optional pretend)
! "Change the size of the screen to COLS columns.
Optional second arg non-nil means that redisplay should use COLS columns
but that the idea of the actual width of the frame should not be changed.
! This function is provided only for compatibility with Emacs 18."
(set-frame-width (selected-frame) cols pretend))
(defun set-screen-height (lines &optional pretend)
! "Change the height of the screen to LINES lines.
Optional second arg non-nil means that redisplay should use LINES lines
but that the idea of the actual height of the screen should not be changed.
! This function is provided only for compatibility with Emacs 18."
(set-frame-height (selected-frame) lines pretend))
(defun delete-other-frames (&optional frame)
***************
*** 1188,1201 ****
(when (eq (frame-parameter frame 'minibuffer) 'only)
(delete-frame frame)))))
- (make-obsolete 'screen-height 'frame-height) ;before 19.15
- (make-obsolete 'screen-width 'frame-width) ;before 19.15
(make-obsolete 'set-screen-width 'set-frame-width) ;before 19.15
(make-obsolete 'set-screen-height 'set-frame-height) ;before 19.15
;; miscellaneous obsolescence declarations
! (defvaralias 'delete-frame-hook 'delete-frame-functions)
! (make-obsolete-variable 'delete-frame-hook 'delete-frame-functions "22.1")
;; Highlighting trailing whitespace.
--- 1185,1196 ----
(when (eq (frame-parameter frame 'minibuffer) 'only)
(delete-frame frame)))))
(make-obsolete 'set-screen-width 'set-frame-width) ;before 19.15
(make-obsolete 'set-screen-height 'set-frame-height) ;before 19.15
;; miscellaneous obsolescence declarations
! (define-obsolete-variable-alias 'delete-frame-hook
! 'delete-frame-functions "22.1")
;; Highlighting trailing whitespace.
***************
*** 1286,1293 ****
'blink-cursor-start)))
(internal-show-cursor nil t)))
! (defvaralias 'blink-cursor 'blink-cursor-mode)
! (make-obsolete-variable 'blink-cursor 'blink-cursor-mode "22.1")
(defun blink-cursor-start ()
"Timer function called from the timer `blink-cursor-idle-timer'.
--- 1281,1287 ----
'blink-cursor-start)))
(internal-show-cursor nil t)))
! (define-obsolete-variable-alias 'blink-cursor 'blink-cursor-mode "22.1")
(defun blink-cursor-start ()
"Timer function called from the timer `blink-cursor-idle-timer'.
***************
*** 1333,1339 ****
(defcustom cursor-in-non-selected-windows t
! "*Non-nil means show a hollow box cursor in non-selected-windows.
If nil, don't show a cursor except in the selected window.
Use Custom to set this variable to get the display updated."
:tag "Cursor in non-selected windows"
--- 1327,1333 ----
(defcustom cursor-in-non-selected-windows t
! "*Non-nil means show a hollow box cursor in non-selected windows.
If nil, don't show a cursor except in the selected window.
Use Custom to set this variable to get the display updated."
:tag "Cursor in non-selected windows"