comparison admin/FOR-RELEASE @ 58177:7557ec2ee04d

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.
author Kim F. Storm <storm@cua.dk>
date Fri, 12 Nov 2004 14:29:24 +0000
parents 97a3448cd53c
children c12b583f54b9 3ec251523b3e
comparison
equal deleted inserted replaced
58176:6b52bc413dfc 58177:7557ec2ee04d
137 1. start emacs -q --no-site-file 137 1. start emacs -q --no-site-file
138 2. set variable mouse-autoselect-window to t 138 2. set variable mouse-autoselect-window to t
139 3. split-window-vertically 139 3. split-window-vertically
140 140
141 now I can drag the modeline only upwards but not downwards 141 now I can drag the modeline only upwards but not downwards
142
143
144 ** line-spacing and (recenter -1)
145
146 From: SAITO Takuya <tabmore@rivo.mediatti.net>
147 Date: Mon, 31 May 2004 02:07:57 +0900 (JST)
148
149 (recenter -1) does not show point at the bottom of the window
150 if line-spacing is set to positive integer.
151
152 Start emacs -Q, and evaluate below:
153
154 (progn
155 (setq line-spacing 1)
156 (dotimes (i (window-height))
157 (insert "\n" (int-to-string i)))
158 (recenter -1))
159
160 Then, point is displayed at the center of the window.
161 But point should be displayed at the bottom of the window like Emacs-21.3.
162 142
163 143
164 ** line-spacing and Electric-pop-up-window 144 ** line-spacing and Electric-pop-up-window
165 145
166 From: SAITO Takuya <tabmore@rivo.mediatti.net> 146 From: SAITO Takuya <tabmore@rivo.mediatti.net>