(iso-tex2iso-trans-tab): Discard spaces after \i according to TeX rules.
[emacs.git] / admin / FOR-RELEASE
blob609074efd3ceb137220463d21b92fe6273fecd63
1 Tasks needed before the next release.
3 * NEW FEATURES
5 ** Test the mbox branch of Rmail.
7 ** Install the mbox branch of Rmail.
9 ** Face remapping.
11 ** Let mouse-1 follow links.
13 ** Make Rmail find the best version of movemail.
14 To be done by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
16 ** Make VC-over-Tramp work where possible, or at least fail
17 gracefully if something isn't supported over Tramp.
18 To be done by Andre Spiegel <spiegel@gnu.org>.
20 * FATAL ERRORS
22 ** Investigate face cache related crash.
24 Indications: Face cache seems to have been cleared, but
25 redisplay uses an invalidated face_id with FACE_FROM_ID
26 which then returns a NULL pointer.  Said to happen with
27 isearch faces.
29 ** Investigate reported crashes in compact_small_strings.
31 ** Investigate reported crashes related to using an
32 invalid pointer from string_free_list.
35 * LOSSAGE
37 ** Clean up flymake.el to follow Emacs Lisp conventions.
39 * GTK RELATED BUGS
41 ** Make GTK scrollbars behave like others w.r.t. overscrolling.
44 * REDISPLAY RELATED BUGS
46 ** Avoid unbreakable loops in redisplay.
48 Redisplay may loop if there is an error in some display property, e.g.
49      (space 'left-margin)
51 A fix would be to somehow disable handling of display properties if an error
52 is encountered.
54 ** Problem with cursor border around images and window-margins:
56 The border around the image when the cursor is on the image
57 flows into the right fringe and margin.
59      (progn
60        (auto-image-file-mode 1)
61        (find-file (concat data-directory "splash.xpm"))
62        (set-window-margins (selected-window) 25 25))
65 ** Problem with modeline and window margins:
67 The mode line's right "box" line is misplaced under the right margin,
68 rather than at the right window edge.
70 emacs -Q
71 (set-window-margins nil 25 25)
72 C-x 2
75 ** custom mode-line face makes Emacs freeze up
77 From: Stephen Berman <Stephen.Berman@gmx.net>
78 Date: Sun, 24 Oct 2004 02:08:56 +0200
80 1. Start Emacs with -q -no-site-file.
82 2. Type `M-x customize-face' and at the prompt `mode-line'.
84 3. In the Custom buffer for mode-line face
85    a. check width and give it the value `narrow';
86    b. check height and give it the value 120 in 1/10 pt;
87    c. check underline and give it the value `on' (or `colored');
88    d. check overline and give it the value `on' (or `colored').
90 4. Set for current session.
92 5. Invoke Ediff on any two files.
94 6. Now Emacs is frozen and consumes 95-99% of CPU.
96 The customizations in step 3 appear to be the minimum necessary to
97 induce this bug.  Leave out any one of them and Ediff runs without a
98 problem.  Also if the 1/10 point value of height is 130 or greater
99 there's no bug (with the default font family; with e.g. Helvetica the
100 bug is induced only by a value of 100 or less).
102 I've noticed this freeze up only when invoking Ediff.  The only thing
103 I've been able to do is kill Emacs externally, via top or with kill
104 when run in gdb, after interrupting.  When the freeze up happens
105 within a gdb session, there is no automatic debugging feedback.  After
106 interrupting I can get a backtrace, here's an example:
108 Update: Maybe only reveals itself when compiled with GTK+
111 ** line-spacing and Electric-pop-up-window
113 From: SAITO Takuya <tabmore@rivo.mediatti.net>
114 Date: Mon, 31 May 2004 02:08:10 +0900 (JST)
116 Electric-pop-up-window does not work well
117 if truncate long lines disabled and/or
118 `line-spacing' is set to positive integer.
120 For example, start emacs -Q --line-spacing 1, and type M-` .
121 Then, the last line of *Completions* buffer is not visible.
123 fit-window-to-buffer works well for me, so I guess
124 Electric-pop-up-window can use it.
127 ** Partial highlighting of wrapped overlay
129 From: Ralf Angeli <angeli@iwi.uni-sb.de>
130 Date: Mon, 18 Oct 2004 19:09:19 +0200
132 If you put
134 (let* ((length (+ (- (window-width) (current-column)) 40))
135        (start (point))
136        (end (+ (point) length))
137        (string (make-string length ?x))
138        ov)
139   (insert string)
140   (setq ov (make-overlay start end))
141   (overlay-put ov 'mouse-face 'highlight)
142   (overlay-put ov 'display string))
144 into the *scratch* buffer and type `C-x C-e' with point at the last
145 parenthesis, you will get a string which does not fit into the line
146 and has to be wrapped.  If you move over it with your mouse, you
147 should see that only the part on the second line is being highlighted.
148 The full string is highlighted only if the 'display property is not
149 set.
153 * DOCUMENTATION
155 ** Document Custom Themes.
157 ** Finish updating the Emacs Lisp manual.
159 ** Update the Emacs manual.
161 *** Update man/info.texi.
163 *** Update man/ack.texi.
165 ** Add missing years in copyright notices of all files.
167 ** Update AUTHORS.
169 ** Reorder NEWS entries.
171 ** Check the Emacs manual.
173 Each manual section should be proof-read by at least two people.
174 After each file name, on the same line or the following line, come the
175 names of the people who have checked it.
178 SECTION             READERS
179 -----------------------------
180 man/abbrevs.texi
181 man/anti.texi
182 man/basic.texi      "Luc Teirlinck"
183 man/buffers.texi    "Luc Teirlinck"
184 man/building.texi   "Ted Zlatanov" <tzz@lifelogs.com>
185 man/calendar.texi
186 man/cmdargs.texi
187 man/commands.texi   "Luc Teirlinck"
188 man/custom.texi
189 man/dired.texi
190 man/display.texi    "Luc Teirlinck"
191 man/emacs.texi      "Luc Teirlinck"
192 man/entering.texi   "Luc Teirlinck"
193 man/files.texi      "Luc Teirlinck"
194 man/fixit.texi      "Luc Teirlinck"
195 man/frames.texi     "Luc Teirlinck"
196 man/glossary.texi
197 man/help.texi       "Luc Teirlinck"
198 man/indent.texi     "Luc Teirlinck"
199 man/killing.texi    "Luc Teirlinck"
200 man/kmacro.texi     "Luc Teirlinck"
201 man/macos.texi
202 man/maintaining.texi
203 man/major.texi      "Luc Teirlinck"
204 man/mark.texi       "Luc Teirlinck"
205 man/mini.texi       "Luc Teirlinck"
206 man/misc.texi
207 man/msdog.texi
208 man/mule.texi       "Luc Teirlinck"
209 man/m-x.texi        "Luc Teirlinck"
210 man/picture.texi
211 man/programs.texi
212 man/regs.texi       "Luc Teirlinck"
213 man/rmail.texi
214 man/screen.texi     "Luc Teirlinck"
215 man/search.texi     "Luc Teirlinck"
216 man/sending.texi
217 man/text.texi       "Luc Teirlinck"
218 man/trouble.texi
219 man/windows.texi    "Luc Teirlinck"
220 man/xresources.texi
222 ** Check the Emacs Lisp manual.
224 Each manual section should be proof-read by at least two people.
225 After each file name, on the same line or the following line, come the
226 names of the people who have checked it.
228 SECTION                  READERS
229 ----------------------------------
230 lispref/abbrevs.texi     "Luc Teirlinck"
231 lispref/advice.texi      Joakim Verona <joakim@verona.se>
232 lispref/anti.texi
233 lispref/backups.texi     "Luc Teirlinck"
234 lispref/buffers.texi     "Luc Teirlinck"
235 lispref/calendar.texi    Joakim Verona <joakim@verona.se>
236 lispref/commands.texi    "Luc Teirlinck"
237 lispref/compile.texi     "Luc Teirlinck"
238 lispref/control.texi     "Luc Teirlinck"
239 lispref/customize.texi
240 lispref/debugging.texi
241 lispref/display.texi
242 lispref/edebug.texi
243 lispref/elisp.texi       "Luc Teirlinck"
244 lispref/errors.texi      "Luc Teirlinck"
245 lispref/eval.texi        "Luc Teirlinck"
246 lispref/files.texi       "Luc Teirlinck"
247 lispref/frames.texi      "Luc Teirlinck"
248 lispref/functions.texi   "Luc Teirlinck"
249 lispref/hash.texi        "Luc Teirlinck"
250 lispref/help.texi        "Luc Teirlinck"
251 lispref/hooks.texi
252 lispref/internals.texi   "Luc Teirlinck"
253 lispref/intro.texi       "Luc Teirlinck"
254 lispref/keymaps.texi     "Luc Teirlinck"
255 lispref/lists.texi       "Luc Teirlinck"
256 lispref/loading.texi     "Luc Teirlinck"
257 lispref/locals.texi
258 lispref/macros.texi      "Luc Teirlinck"
259 lispref/maps.texi
260 lispref/markers.texi     "Luc Teirlinck"
261 lispref/minibuf.texi     "Luc Teirlinck"
262 lispref/modes.texi
263 lispref/nonascii.texi    "Luc Teirlinck"
264 lispref/numbers.texi     "Luc Teirlinck"
265 lispref/objects.texi     "Luc Teirlinck"
266 lispref/os.texi          "Luc Teirlinck"
267 lispref/positions.texi   "Luc Teirlinck"
268 lispref/processes.texi
269 lispref/searching.texi   "Luc Teirlinck"
270 lispref/sequences.texi   "Luc Teirlinck"
271 lispref/streams.texi     "Luc Teirlinck"
272 lispref/strings.texi     "Luc Teirlinck"
273 lispref/symbols.texi     "Luc Teirlinck"
274 lispref/syntax.texi      "Luc Teirlinck"
275 lispref/text.texi
276 lispref/tips.texi        "Luc Teirlinck"
277 lispref/variables.texi   "Luc Teirlinck"
278 lispref/windows.texi     "Luc Teirlinck"
281 Local variables:
282 mode: outline
283 end: