diff options
author | Kim F. Storm <storm@cua.dk> | 2004-11-12 14:29:24 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-11-12 14:29:24 +0000 |
commit | 41f41c62a6010e5ff514ee4431731af0c417df10 (patch) | |
tree | 806d3b5dc3fec9dce62ba4a4c5df655dc6b9d018 /admin | |
parent | 546f98b8385d2c264c845e6dc773dbdfb2199b64 (diff) | |
download | emacs-41f41c62a6010e5ff514ee4431731af0c417df10.tar.gz |
Fixed this bug:
** 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.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/FOR-RELEASE | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index a410f784b07..8e660744370 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -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> |