* FOR-RELEASE (Indications): Remove two stage update for toolbar (Done).
[bpt/emacs.git] / admin / FOR-RELEASE
CommitLineData
e47ac727
RS
1Tasks needed before the next release.
2
c0a070c1 3* NEW FEATURES
2f0e0a0b 4
c0a070c1
KS
5** Test the mbox branch of Rmail.
6
7** Install the mbox branch of Rmail.
d8c379f8 8
bf77a420
KS
9** Face remapping.
10
e84fe274
KS
11** Let mouse-1 follow links.
12
3d351c97 13
c0a070c1 14* FATAL ERRORS
3d351c97
KS
15
16** Investigate face cache related crash.
17
c0a070c1
KS
18Indications: Face cache seems to have been cleared, but
19redisplay uses an invalidated face_id with FACE_FROM_ID
20which then returns a NULL pointer. Said to happen with
21isearch faces.
22
e84fe274
KS
23** Investigate reported crashes in compact_small_strings.
24
25** Investigate reported crashes related to using an
26invalid pointer from string_free_list.
27
28
2d1ef312
RS
29* LOSSAGE
30
31** Clean up flymake.el to follow Emacs Lisp conventions.
c0a070c1 32
e84fe274 33
c0a070c1
KS
34* GTK RELATED BUGS
35
c0a070c1
KS
36** Make GTK scrollbars behave like others w.r.t. overscrolling.
37
e84fe274
KS
38
39* REDISPLAY RELATED BUGS
40
41** Avoid unbreakable loops in redisplay.
42
43Redisplay may loop if there is an error in some display property, e.g.
44 (space 'left-margin)
45
46A fix would be to somehow disable handling of display properties if an error
47is encountered.
48
49** Problem with cursor border around images and window-margins:
50
51The border around the image when the cursor is on the image
52flows into the right fringe and margin.
53
54 (progn
55 (auto-image-file-mode 1)
56 (find-file (concat data-directory "splash.xpm"))
57 (set-window-margins (selected-window) 25 25))
58
59
60** Problem with modeline and window margins:
61
62The mode line's right "box" line is misplaced under the right margin,
63rather than at the right window edge.
64
65emacs -Q
66(set-window-margins nil 25 25)
67C-x 2
68
69
70** custom mode-line face makes Emacs freeze up
71
72From: Stephen Berman <Stephen.Berman@gmx.net>
73Date: Sun, 24 Oct 2004 02:08:56 +0200
74
751. Start Emacs with -q -no-site-file.
76
772. Type `M-x customize-face' and at the prompt `mode-line'.
78
793. In the Custom buffer for mode-line face
80 a. check width and give it the value `narrow';
81 b. check height and give it the value 120 in 1/10 pt;
82 c. check underline and give it the value `on' (or `colored');
83 d. check overline and give it the value `on' (or `colored').
84
854. Set for current session.
86
875. Invoke Ediff on any two files.
88
896. Now Emacs is frozen and consumes 95-99% of CPU.
90
91The customizations in step 3 appear to be the minimum necessary to
92induce this bug. Leave out any one of them and Ediff runs without a
93problem. Also if the 1/10 point value of height is 130 or greater
94there's no bug (with the default font family; with e.g. Helvetica the
95bug is induced only by a value of 100 or less).
96
97I've noticed this freeze up only when invoking Ediff. The only thing
98I've been able to do is kill Emacs externally, via top or with kill
99when run in gdb, after interrupting. When the freeze up happens
100within a gdb session, there is no automatic debugging feedback. After
101interrupting I can get a backtrace, here's an example:
102
103
104** Mouse-face overlay bleeds into header line
105
106From: Stephen Berman <Stephen.Berman@gmx.net>
107Date: Thu, 21 Oct 2004 18:11:01 +0200
108
109Mouse-face overlays bleed into the header line when the beginning of
110the overlay is above (point-min). To reproduce:
111
1121. Start Emacs with -q -no-site-file.
113
1142. In *scratch* eval (setq ov (make-overlay 66 92)), (overlay-put ov
115'mouse-face 'highlight), and (setq header-line-format "test").
116
1173. Drag the mouse over the string "evaluation.\n;; If you want" and
118notice the highlighting of only this string.
119
1204. Now click on the down arrow in the scroll bar until the line
121beginning ";; If you want" is directly below the header line.
122
1235. Drag the mouse over ";; If you want" and notice that not only it
124but also the header line are highlighted.
125
126
127** scroll-preserve-screen-position doesn't work with a header-line-format
128
129From: jbyler+emacs-lists@anon41.eml.cc
130Date: Tue, 17 Aug 2004 17:10:14 -0400
131
132There seems to be an off-by-one error triggered by using a header line
133together with scroll-preserve-screen-position. The symptom: instead of
134staying in the same position on the screen when scrolling, the cursor
135moves one screen line down each time the buffer is scrolled. Put
136another way: repeatedly typing C-v M-v or using a mouse scroll wheel to
137scroll up and down causes the cursor to migrate slowly down the screen
138instead of staying put as it should.
139
140To reproduce:
141
142emacs -q --no-site-file
143(setq scroll-preserve-screen-position t)
144(setq header-line-format "")
145C-v M-v C-v M-v C-v M-v etc.
146
147
148** Clicking on partially visible lines fails
149
150From: David Kastrup <dak@gnu.org>
151Date: 27 Apr 2004 16:42:58 +0200
152
153This bug report will be sent to the Free Software Foundation,
154not to your local site managers!
155Please write in English if possible, because the Emacs maintainers
156usually do not have translators to read other languages for them.
157
158Your bug report will be posted to the emacs-pretest-bug@gnu.org mailing list.
159
160Please describe exactly what actions triggered the bug
161and the precise symptoms of the bug:
162
163I had gnus display a mouse-highlighted line (a URL from browse-url)
164partially at the bottom of its window. If I click with middle mouse
165key on it, the window gets recentered while I hold the mouse key
166pressed. If I release it, the window returns into its old position
167(cursor in top row) and nothing happens, presumably because the click
168was not registered on the line itself, but on the magically
169recentered version.
170
171That is a nuisance. Recentering of even partially visible click
172targets should only happen if window-point moves there, but not at
173the time of the click. From the moment I hold down a key until it
174gets released, the displayed window portion should not change, with
175the sole exception of scrolling when dragging at the edge of the
176screen.
177
178
179** Can't drag modeline when mouse-autoselect-window is set
180
181From: Klaus Zeitler <kzeitler@lucent.com>
182Date: Mon, 11 Oct 2004 11:14:49 +0200
183
1841. start emacs -q --no-site-file
1852. set variable mouse-autoselect-window to t
1863. split-window-vertically
187
188now I can drag the modeline only upwards but not downwards
189
190
191** line-spacing and (recenter -1)
192
193From: SAITO Takuya <tabmore@rivo.mediatti.net>
194Date: Mon, 31 May 2004 02:07:57 +0900 (JST)
195
196(recenter -1) does not show point at the bottom of the window
197if line-spacing is set to positive integer.
198
199Start emacs -Q, and evaluate below:
200
201(progn
202 (setq line-spacing 1)
203 (dotimes (i (window-height))
204 (insert "\n" (int-to-string i)))
205 (recenter -1))
206
207Then, point is displayed at the center of the window.
208But point should be displayed at the bottom of the window like Emacs-21.3.
209
210
211** line-spacing and garbage in fringe
212
213From: SAITO Takuya <tabmore@rivo.mediatti.net>
214Date: Mon, 31 May 2004 02:08:05 +0900 (JST)
215
216Start emacs -Q and evaluate below with C-xC-e:
217
218(let ((lines 2)
219 (spacing 1))
220 (setq line-spacing spacing
221 indicate-buffer-boundaries t)
222 (insert (make-string (window-height) ?\n))
223 (goto-char (point-min))
224 (message (make-string (* (window-width) lines) ?.))
225 (scroll-up 1))
226
227then, garbage is displayed in right fringe.
228
229Above code reproduces this bug with
230(frame-parameter nil 'font)
231=> "-Adobe-Courier-Medium-R-Normal--12-120-75-75-M-70-ISO8859-1"
232
233If you use different font, you may need different value of
234`lines' and/or `spacing'.
235
236
237** line-spacing and Electric-pop-up-window
238
239From: SAITO Takuya <tabmore@rivo.mediatti.net>
240Date: Mon, 31 May 2004 02:08:10 +0900 (JST)
241
242Electric-pop-up-window does not work well
243if truncate long lines disabled and/or
244`line-spacing' is set to positive integer.
245
246For example, start emacs -Q --line-spacing 1, and type M-` .
247Then, the last line of *Completions* buffer is not visible.
248
249fit-window-to-buffer works well for me, so I guess
250Electric-pop-up-window can use it.
251
252
7956ef44
KS
253* DOCUMENTATION
254
255** Finish updating the Emacs Lisp manual.
256
7956ef44
KS
257** Update the Emacs manual.
258
259*** Update man/info.texi.
260
261*** Update man/ack.texi.
262
263** Add missing years in copyright notices of all files.
264
265** Update AUTHORS.
266
267** Reorder NEWS entries.
268
269** Check the Emacs manual.
270
98b83a88
LT
271Each manual section should be proof-read by at least two people.
272After each file name, on the same line or the following line, come the
273names of the people who have checked it.
274
275
276SECTION READERS
277-----------------------------
278man/abbrevs.texi
279man/anti.texi
280man/basic.texi "Luc Teirlinck"
281man/buffers.texi "Luc Teirlinck"
282man/building.texi "Ted Zlatanov" <tzz@lifelogs.com>
283man/calendar.texi
284man/cmdargs.texi
285man/commands.texi "Luc Teirlinck"
286man/custom.texi
287man/dired.texi
288man/display.texi "Luc Teirlinck"
289man/emacs.texi "Luc Teirlinck"
290man/entering.texi "Luc Teirlinck"
291man/files.texi "Luc Teirlinck"
292man/fixit.texi "Luc Teirlinck"
293man/frames.texi "Luc Teirlinck"
294man/glossary.texi
295man/help.texi "Luc Teirlinck"
296man/indent.texi "Luc Teirlinck"
297man/killing.texi "Luc Teirlinck"
298man/kmacro.texi "Luc Teirlinck"
299man/macos.texi
300man/maintaining.texi
301man/major.texi "Luc Teirlinck"
302man/mark.texi "Luc Teirlinck"
303man/mini.texi "Luc Teirlinck"
304man/misc.texi
305man/msdog.texi
306man/mule.texi "Luc Teirlinck"
307man/m-x.texi "Luc Teirlinck"
308man/picture.texi
309man/programs.texi
310man/regs.texi "Luc Teirlinck"
311man/rmail.texi
312man/screen.texi "Luc Teirlinck"
313man/search.texi "Luc Teirlinck"
314man/sending.texi
9e9245ce 315man/text.texi "Luc Teirlinck"
98b83a88
LT
316man/trouble.texi
317man/windows.texi "Luc Teirlinck"
318man/xresources.texi
7956ef44
KS
319
320** Check the Emacs Lisp manual.
321
98b83a88
LT
322Each manual section should be proof-read by at least two people.
323After each file name, on the same line or the following line, come the
324names of the people who have checked it.
325
326SECTION READERS
327----------------------------------
328lispref/abbrevs.texi "Luc Teirlinck"
329lispref/advice.texi
330lispref/anti.texi
331lispref/backups.texi "Luc Teirlinck"
332lispref/buffers.texi "Luc Teirlinck"
333lispref/calendar.texi
334lispref/commands.texi "Luc Teirlinck"
335lispref/compile.texi "Luc Teirlinck"
336lispref/control.texi "Luc Teirlinck"
337lispref/customize.texi
338lispref/debugging.texi
339lispref/display.texi
340lispref/edebug.texi
341lispref/elisp.texi "Luc Teirlinck"
342lispref/errors.texi "Luc Teirlinck"
343lispref/eval.texi "Luc Teirlinck"
344lispref/files.texi "Luc Teirlinck"
345lispref/frames.texi "Luc Teirlinck"
346lispref/functions.texi "Luc Teirlinck"
347lispref/hash.texi "Luc Teirlinck"
348lispref/help.texi "Luc Teirlinck"
349lispref/hooks.texi
350lispref/internals.texi "Luc Teirlinck"
351lispref/intro.texi "Luc Teirlinck"
352lispref/keymaps.texi "Luc Teirlinck"
353lispref/lists.texi "Luc Teirlinck"
354lispref/loading.texi "Luc Teirlinck"
355lispref/locals.texi
356lispref/macros.texi "Luc Teirlinck"
357lispref/maps.texi
358lispref/markers.texi "Luc Teirlinck"
359lispref/minibuf.texi "Luc Teirlinck"
360lispref/modes.texi
361lispref/nonascii.texi "Luc Teirlinck"
362lispref/numbers.texi "Luc Teirlinck"
363lispref/objects.texi "Luc Teirlinck"
364lispref/os.texi "Luc Teirlinck"
365lispref/positions.texi "Luc Teirlinck"
366lispref/processes.texi
367lispref/searching.texi "Luc Teirlinck"
368lispref/sequences.texi "Luc Teirlinck"
369lispref/streams.texi "Luc Teirlinck"
370lispref/strings.texi "Luc Teirlinck"
371lispref/symbols.texi "Luc Teirlinck"
372lispref/syntax.texi "Luc Teirlinck"
373lispref/text.texi
374lispref/tips.texi "Luc Teirlinck"
375lispref/variables.texi "Luc Teirlinck"
376lispref/windows.texi "Luc Teirlinck"
7956ef44 377
c0a070c1
KS
378\f
379Local variables:
380mode: outline
381end: