56253
|
1 Tasks needed before the next release.
|
|
2
|
56267
|
3 * NEW FEATURES
|
|
4
|
56272
|
5 ** Face remapping.
|
|
6
|
57845
|
7 ** Let mouse-1 follow links.
|
|
8
|
58047
|
9 ** Make Rmail find the best version of movemail.
|
|
10 To be done by Sergey Poznyakoff <gray@Mirddin.farlep.net>.
|
56267
|
11
|
58110
|
12 ** Make VC-over-Tramp work where possible, or at least fail
|
|
13 gracefully if something isn't supported over Tramp.
|
|
14 To be done by Andre Spiegel <spiegel@gnu.org>.
|
|
15
|
56267
|
16 * FATAL ERRORS
|
|
17
|
|
18 ** Investigate face cache related crash.
|
|
19
|
|
20 Indications: Face cache seems to have been cleared, but
|
|
21 redisplay uses an invalidated face_id with FACE_FROM_ID
|
|
22 which then returns a NULL pointer. Said to happen with
|
|
23 isearch faces.
|
|
24
|
57845
|
25 ** Investigate reported crashes in compact_small_strings.
|
|
26
|
|
27 ** Investigate reported crashes related to using an
|
|
28 invalid pointer from string_free_list.
|
|
29
|
|
30
|
57829
|
31 * LOSSAGE
|
|
32
|
|
33 ** Clean up flymake.el to follow Emacs Lisp conventions.
|
56267
|
34
|
58310
|
35 ** Fix up url-ldap.el.
|
|
36
|
58282
|
37 * BUGS
|
|
38
|
58814
|
39 ** Ange-ftp should ignore irrelevant IPv6 errors:
|
|
40
|
|
41 Message-Id: <4121-Tue23Mar2004165249+0100-piet@cs.uu.nl>
|
|
42 From: "Piet van Oostrum" <piet@cs.uu.nl>
|
|
43 To: emacs-pretest-bug@gnu.org
|
|
44 Subject: Ange-ftp can't deal with IPV6/IPV4 fallback
|
|
45
|
|
46 Symptoms:
|
|
47
|
|
48 C-x C-f /ftp.nluug.nl:/
|
|
49
|
|
50 The problem is that the DNS first gives an IPV6 address. However our
|
|
51 router doesn't do IPV6. Ftp then falls back to IPV4:
|
|
52
|
|
53 ftp> open ftp.nluug.nl
|
|
54 Trying 2001:610:1:80aa:192:87:102:36...
|
|
55 ftp: connect to address 2001:610:1:80aa:192:87:102:36: No route to host
|
|
56 Trying 192.87.102.36...
|
|
57 Connected to ftp.nluug.nl.
|
|
58
|
|
59 Ange-ftp chokes on the `No route to host' message and doesn't look any
|
58997
|
60 further.
|
58814
|
61
|
|
62 I think in the near future we will see more of this problem, so it might be
|
|
63 time to make anfe-ftp more intelligent.
|
|
64
|
58286
|
65 ** Mailabbrev should quote addresses to correspond to RFC 822.
|
|
66 See http://article.gmane.org/gmane.emacs.devel/27585
|
|
67
|
|
68 ** The '@' character should not expand addresses in mailabbrev
|
|
69 See http://article.gmane.org/gmane.emacs.devel/27585
|
|
70
|
58282
|
71 ** Bug in url-http-parse-headers, reported in
|
|
72 From: Vivek Dasmohapatra <vivek@zeus.com>
|
|
73 Date: Tue, 28 Sep 2004 16:13:13 +0100
|
|
74
|
|
75 Fetching a url with url-retrieve can reult in an anrbitrary buffer
|
|
76 being killed if a 401 (or possibly a 407) result is encountered:
|
|
77
|
58404
|
78 url-http-parse-headers calls url-http-handle-authentication,
|
|
79 which can call url-retrieve.
|
58282
|
80
|
58404
|
81 This results in the current buffer being killed, and a new http buffer
|
|
82 being generated. However, when the old http buffer is killed, emacs
|
|
83 picks the top buffer from the list as the new current buffer, so by the
|
|
84 time we get to the end of url-http-parse-headers, _that_ buffer is marked
|
|
85 as dead even though it is not necessarily a url buffer, so next time the
|
|
86 url libraries reap their dead buffers, an innocent bystander buffer is
|
58282
|
87 killed instead (and an obsolete http buffer may be left lying around too).
|
|
88
|
|
89 A possible fix (which I am currently using) is to call set-buffer
|
|
90 on the return value of url-http-parse-headers:
|
|
91
|
|
92 (case url-http-response-status
|
|
93 (401
|
|
94 ;; The request requires user authentication. The response
|
|
95 ;; MUST include a WWW-Authenticate header field containing a
|
|
96 ;; challenge applicable to the requested resource. The
|
|
97 ;; client MAY repeat the request with a suitable
|
|
98 ;; Authorization header field.
|
|
99 (url-mark-buffer-as-dead (current-buffer))
|
|
100 (set-buffer (url-http-handle-authentication nil)))
|
|
101 etc ....
|
|
102
|
58404
|
103 which makes sure that it is the right http buffer that is current when
|
58282
|
104 we come to mark the http buffers as dead.
|
|
105
|
|
106
|
|
107
|
56267
|
108 * GTK RELATED BUGS
|
|
109
|
56253
|
110 ** Make GTK scrollbars behave like others w.r.t. overscrolling.
|
|
111
|
57845
|
112
|
|
113 * REDISPLAY RELATED BUGS
|
|
114
|
58997
|
115 ** Strange text scrolling with Emacs + GTK
|
|
116
|
|
117 > I could reproduce the problem with the latest CVS.
|
|
118 >
|
|
119 > % emacs -Q
|
|
120 > M-x info RET
|
|
121 > M->
|
|
122 > C-l
|
|
123 > C-x ( C-u - 1 C-v C-x )
|
|
124 > C-x e e e e ...
|
|
125 >
|
|
126 > I see the problem around "CC mode" and "Forms".
|
|
127
|
|
128 It is not specific for the first line of a buffer.
|
|
129
|
|
130 Rather it happens for lines which are indented but the
|
|
131 indentation is controlled by a display property and
|
|
132 the newline is part of that display property -- in
|
|
133 that case, the indentation is not recognized for the
|
|
134 first display line.
|
|
135
|
|
136
|
57845
|
137 ** Avoid unbreakable loops in redisplay.
|
|
138
|
|
139 Redisplay may loop if there is an error in some display property, e.g.
|
|
140 (space 'left-margin)
|
|
141
|
|
142 A fix would be to somehow disable handling of display properties if an error
|
|
143 is encountered.
|
|
144
|
|
145
|
|
146 ** Problem with modeline and window margins:
|
|
147
|
|
148 The mode line's right "box" line is misplaced under the right margin,
|
|
149 rather than at the right window edge.
|
|
150
|
|
151 emacs -Q
|
|
152 (set-window-margins nil 25 25)
|
|
153 C-x 2
|
|
154
|
|
155
|
|
156 ** custom mode-line face makes Emacs freeze up
|
|
157
|
|
158 From: Stephen Berman <Stephen.Berman@gmx.net>
|
|
159 Date: Sun, 24 Oct 2004 02:08:56 +0200
|
|
160
|
|
161 1. Start Emacs with -q -no-site-file.
|
|
162
|
|
163 2. Type `M-x customize-face' and at the prompt `mode-line'.
|
|
164
|
|
165 3. In the Custom buffer for mode-line face
|
|
166 a. check width and give it the value `narrow';
|
|
167 b. check height and give it the value 120 in 1/10 pt;
|
|
168 c. check underline and give it the value `on' (or `colored');
|
|
169 d. check overline and give it the value `on' (or `colored').
|
|
170
|
|
171 4. Set for current session.
|
|
172
|
|
173 5. Invoke Ediff on any two files.
|
|
174
|
|
175 6. Now Emacs is frozen and consumes 95-99% of CPU.
|
|
176
|
|
177 The customizations in step 3 appear to be the minimum necessary to
|
|
178 induce this bug. Leave out any one of them and Ediff runs without a
|
|
179 problem. Also if the 1/10 point value of height is 130 or greater
|
|
180 there's no bug (with the default font family; with e.g. Helvetica the
|
|
181 bug is induced only by a value of 100 or less).
|
|
182
|
|
183 I've noticed this freeze up only when invoking Ediff. The only thing
|
|
184 I've been able to do is kill Emacs externally, via top or with kill
|
|
185 when run in gdb, after interrupting. When the freeze up happens
|
|
186 within a gdb session, there is no automatic debugging feedback. After
|
|
187 interrupting I can get a backtrace, here's an example:
|
|
188
|
57894
|
189 Update: Maybe only reveals itself when compiled with GTK+
|
|
190
|
57845
|
191
|
|
192 ** line-spacing and Electric-pop-up-window
|
|
193
|
|
194 From: SAITO Takuya <tabmore@rivo.mediatti.net>
|
|
195 Date: Mon, 31 May 2004 02:08:10 +0900 (JST)
|
|
196
|
|
197 Electric-pop-up-window does not work well
|
|
198 if truncate long lines disabled and/or
|
|
199 `line-spacing' is set to positive integer.
|
|
200
|
|
201 For example, start emacs -Q --line-spacing 1, and type M-` .
|
|
202 Then, the last line of *Completions* buffer is not visible.
|
|
203
|
|
204 fit-window-to-buffer works well for me, so I guess
|
|
205 Electric-pop-up-window can use it.
|
|
206
|
|
207
|
58196
|
208 ** Partial highlighting of wrapped overlay
|
|
209
|
|
210 From: Ralf Angeli <angeli@iwi.uni-sb.de>
|
|
211 Date: Mon, 18 Oct 2004 19:09:19 +0200
|
|
212
|
|
213 If you put
|
|
214
|
|
215 (let* ((length (+ (- (window-width) (current-column)) 40))
|
|
216 (start (point))
|
|
217 (end (+ (point) length))
|
|
218 (string (make-string length ?x))
|
|
219 ov)
|
|
220 (insert string)
|
|
221 (setq ov (make-overlay start end))
|
|
222 (overlay-put ov 'mouse-face 'highlight)
|
|
223 (overlay-put ov 'display string))
|
|
224
|
|
225 into the *scratch* buffer and type `C-x C-e' with point at the last
|
|
226 parenthesis, you will get a string which does not fit into the line
|
|
227 and has to be wrapped. If you move over it with your mouse, you
|
|
228 should see that only the part on the second line is being highlighted.
|
|
229 The full string is highlighted only if the 'display property is not
|
|
230 set.
|
|
231
|
|
232
|
|
233
|
57063
|
234 * DOCUMENTATION
|
|
235
|
58047
|
236 ** Document Custom Themes.
|
|
237
|
57063
|
238 ** Finish updating the Emacs Lisp manual.
|
|
239
|
|
240 ** Update the Emacs manual.
|
|
241
|
|
242 *** Update man/info.texi.
|
|
243
|
|
244 *** Update man/ack.texi.
|
|
245
|
|
246 ** Add missing years in copyright notices of all files.
|
|
247
|
|
248 ** Update AUTHORS.
|
|
249
|
|
250 ** Reorder NEWS entries.
|
|
251
|
|
252 ** Check the Emacs manual.
|
|
253
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
254 Each manual section should be proof-read by at least two people.
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
255 After each file name, on the same line or the following line, come the
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
256 names of the people who have checked it.
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
257
|
57063
|
258
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
259 SECTION READERS
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
260 -----------------------------
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
261 man/abbrevs.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
262 man/anti.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
263 man/basic.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
264 man/buffers.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
265 man/building.texi "Ted Zlatanov" <tzz@lifelogs.com>
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
266 man/calendar.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
267 man/cmdargs.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
268 man/commands.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
269 man/custom.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
270 man/dired.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
271 man/display.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
272 man/emacs.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
273 man/entering.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
274 man/files.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
275 man/fixit.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
276 man/frames.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
277 man/glossary.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
278 man/help.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
279 man/indent.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
280 man/killing.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
281 man/kmacro.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
282 man/macos.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
283 man/maintaining.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
284 man/major.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
285 man/mark.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
286 man/mini.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
287 man/misc.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
288 man/msdog.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
289 man/mule.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
290 man/m-x.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
291 man/picture.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
292 man/programs.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
293 man/regs.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
294 man/rmail.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
295 man/screen.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
296 man/search.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
297 man/sending.texi
|
57341
|
298 man/text.texi "Luc Teirlinck"
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
299 man/trouble.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
300 man/windows.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
301 man/xresources.texi
|
57063
|
302
|
|
303 ** Check the Emacs Lisp manual.
|
|
304
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
305 Each manual section should be proof-read by at least two people.
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
306 After each file name, on the same line or the following line, come the
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
307 names of the people who have checked it.
|
57063
|
308
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
309 SECTION READERS
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
310 ----------------------------------
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
311 lispref/abbrevs.texi "Luc Teirlinck"
|
58047
|
312 lispref/advice.texi Joakim Verona <joakim@verona.se>
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
313 lispref/anti.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
314 lispref/backups.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
315 lispref/buffers.texi "Luc Teirlinck"
|
58047
|
316 lispref/calendar.texi Joakim Verona <joakim@verona.se>
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
317 lispref/commands.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
318 lispref/compile.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
319 lispref/control.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
320 lispref/customize.texi
|
58282
|
321 lispref/debugging.texi Joakim Verona <joakim@verona.se>
|
57175
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
322 lispref/display.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
323 lispref/edebug.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
324 lispref/elisp.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
325 lispref/errors.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
326 lispref/eval.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
327 lispref/files.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
328 lispref/frames.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
329 lispref/functions.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
330 lispref/hash.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
331 lispref/help.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
332 lispref/hooks.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
333 lispref/internals.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
334 lispref/intro.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
335 lispref/keymaps.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
336 lispref/lists.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
337 lispref/loading.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
338 lispref/locals.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
339 lispref/macros.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
340 lispref/maps.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
341 lispref/markers.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
342 lispref/minibuf.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
343 lispref/modes.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
344 lispref/nonascii.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
345 lispref/numbers.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
346 lispref/objects.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
347 lispref/os.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
348 lispref/positions.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
349 lispref/processes.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
350 lispref/searching.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
351 lispref/sequences.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
352 lispref/streams.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
353 lispref/strings.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
354 lispref/symbols.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
355 lispref/syntax.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
356 lispref/text.texi
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
357 lispref/tips.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
358 lispref/variables.texi "Luc Teirlinck"
|
e0ab3b50dc85
(Indications): Rearrange checklists for Emacs and Elisp manuals.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
359 lispref/windows.texi "Luc Teirlinck"
|
57063
|
360
|
56267
|
361
|
|
362 Local variables:
|
|
363 mode: outline
|
|
364 end:
|