# HG changeset patch # User Stefan Monnier # Date 1280788538 -7200 # Node ID 87a4d6ee54434ef66364ae28b9fba98652a1c5d5 # Parent 7fa7e34c0f1808ef2a91b0adcec684c7677d5b4a * lisp/frame.el (screen-height, screen-width, set-screen-width) (set-screen-height): Remove ancient compatibility aliases. diff -r 7fa7e34c0f18 -r 87a4d6ee5443 lisp/ChangeLog --- a/lisp/ChangeLog Mon Aug 02 16:23:06 2010 +0200 +++ b/lisp/ChangeLog Tue Aug 03 00:35:38 2010 +0200 @@ -1,5 +1,8 @@ 2010-08-02 Stefan Monnier + * frame.el (screen-height, screen-width, set-screen-width) + (set-screen-height): Remove ancient compatibility aliases. + * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces when justifying. It seems useless and harmful for ncols=1 (bug#6738). diff -r 7fa7e34c0f18 -r 87a4d6ee5443 lisp/frame.el --- a/lisp/frame.el Mon Aug 02 16:23:06 2010 +0200 +++ b/lisp/frame.el Tue Aug 03 00:35:38 2010 +0200 @@ -1431,23 +1431,6 @@ the opposite frame edge from the edge indicated in the input spec." (cons (car spec) (frame-geom-value-cons (car spec) (cdr spec)))) -;;;; Aliases for backward compatibility with Emacs 18. -(define-obsolete-function-alias 'screen-height 'frame-height "19.7") -(define-obsolete-function-alias 'screen-width 'frame-width "19.7") - -(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) "Delete all frames except FRAME. @@ -1473,9 +1456,6 @@ (when (eq (frame-parameter frame 'minibuffer) 'only) (delete-frame frame))))) -(make-obsolete 'set-screen-width 'set-frame-width "19.7") -(make-obsolete 'set-screen-height 'set-frame-height "19.7") - ;; miscellaneous obsolescence declarations (define-obsolete-variable-alias 'delete-frame-hook 'delete-frame-functions "22.1")