# HG changeset patch # User Kim F. Storm # Date 1100269764 0 # Node ID 7557ec2ee04d6373478ad6c86f84c78075622993 # Parent 6b52bc413dfc229cc10c353c15b49f1e1b413321 Fixed this bug: ** line-spacing and (recenter -1) From: SAITO Takuya Date: Mon, 31 May 2004 02:07:57 +0900 (JST) (recenter -1) does not show point at the bottom of the window if line-spacing is set to positive integer. Start emacs -Q, and evaluate below: (progn (setq line-spacing 1) (dotimes (i (window-height)) (insert "\n" (int-to-string i))) (recenter -1)) Then, point is displayed at the center of the window. But point should be displayed at the bottom of the window like Emacs-21.3. diff -r 6b52bc413dfc -r 7557ec2ee04d admin/FOR-RELEASE --- a/admin/FOR-RELEASE Fri Nov 12 14:27:07 2004 +0000 +++ b/admin/FOR-RELEASE Fri Nov 12 14:29:24 2004 +0000 @@ -141,26 +141,6 @@ now I can drag the modeline only upwards but not downwards -** line-spacing and (recenter -1) - -From: SAITO Takuya -Date: Mon, 31 May 2004 02:07:57 +0900 (JST) - -(recenter -1) does not show point at the bottom of the window -if line-spacing is set to positive integer. - -Start emacs -Q, and evaluate below: - -(progn - (setq line-spacing 1) - (dotimes (i (window-height)) - (insert "\n" (int-to-string i))) - (recenter -1)) - -Then, point is displayed at the center of the window. -But point should be displayed at the bottom of the window like Emacs-21.3. - - ** line-spacing and Electric-pop-up-window From: SAITO Takuya