]> git.eshelyaron.com Git - emacs.git/commitdiff
Fixed this bug:
authorKim F. Storm <storm@cua.dk>
Fri, 12 Nov 2004 14:29:24 +0000 (14:29 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 12 Nov 2004 14:29:24 +0000 (14:29 +0000)
** line-spacing and (recenter -1)

From: SAITO Takuya <tabmore@rivo.mediatti.net>
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.

admin/FOR-RELEASE

index a410f784b0753c06a12e92c5bce2b4186e45c425..8e66074437033593a0c1d4df4bdc9825753b6c7a 100644 (file)
@@ -141,26 +141,6 @@ Date: Mon, 11 Oct 2004 11:14:49 +0200
 now I can drag the modeline only upwards but not downwards
 
 
-** line-spacing and (recenter -1)
-
-From: SAITO Takuya <tabmore@rivo.mediatti.net>
-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 <tabmore@rivo.mediatti.net>