Mercurial > emacs
annotate lisp/ChangeLog @ 31391:0275fa841f55
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 04 Sep 2000 21:23:51 +0000 |
parents | c0199a9a07fa |
children | bd0f43957f3e |
rev | line source |
---|---|
31386 | 1 2000-09-04 Gerd Moellmann <gerd@gnu.org> |
2 | |
31388 | 3 * vc.el (vc-dired-resynch-file): Add autoload cookie. |
4 | |
31386 | 5 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map. |
6 | |
7 * Makefile.in (DONTCOMPILE): Fix typo in file name. | |
8 | |
9 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
10 | |
11 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we | |
12 don't support anything else under SCCS yet. | |
13 | |
14 * vc-hooks.el: Minor doc fixes. | |
15 | |
16 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
17 | |
18 * vc.el (vc-next-action-on-file): Do not visit the file if it's | |
19 not necessary. If verbose in state `needs-patch', do the same as | |
20 under `up-to-date'. When NOT verbose and `needs-patch', check out | |
21 latest version instead of `merge-news'. | |
22 (vc-next-action-dired): Don't mess with default-directory here; it | |
23 breaks other parts of dired. It is the job of the | |
24 backend-specific functions to adjust it temporarily if they need | |
25 it. | |
26 (vc-next-action): Remove a special CVS case. | |
27 (vc-clear-headers): New optional arg FILE. | |
28 (vc-checkin, vc-checkout): Set properties vc-state and | |
29 vc-checkout-time properly. | |
30 (vc-finish-steal): Call steal-lock, not steal, which doesn't | |
31 exist. | |
32 (vc-print-log): Use new backend function `show-log-entry'. | |
33 (vc-cancel-version): Do the checks in a different order. Added a | |
34 FIXME concerning RCS-only code. | |
35 | |
36 * vc-rcs.el (vc-rcs-show-log-entry): New function. | |
37 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties. | |
38 | |
39 * vc-cvs.el (vc-cvs-show-log-entry): New function. | |
40 | |
41 * vc-hooks.el (vc-default-mode-line-string): Show state | |
42 `needs-patch' as a `-' too. | |
43 | |
44 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
45 | |
46 * vc.el (vc-responsible-backend): New optional arg REGISTER. | |
47 (vc-default-could-register): New function. | |
48 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions. | |
49 (vc-resynch-buffer): Call vc-dired-resynch-file. | |
50 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use | |
51 vc-resynch-buffer instead of vc-resynch-window. | |
52 (vc-next-action-dired): Don't redisplay here, that gets done as a | |
53 result of the individual file operations. | |
54 (vc-retrieve-snapshot): Corrected prompt order. | |
55 | |
56 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file. | |
57 | |
58 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp | |
59 as well. | |
60 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle | |
61 hostname regexps. Updated all callers. | |
62 (vc-cvs-responsible-p): Handle directories as well. | |
63 (vc-cvs-could-register): New function. | |
64 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file | |
65 properties up-to-date. | |
66 | |
67 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the | |
68 user whether to create one. | |
69 | |
70 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
71 | |
72 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to | |
73 check out a non-existing file. | |
74 | |
75 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the | |
76 workfile does not exist. | |
77 | |
78 * vc.el (vc-version-diff): Use `require' to check for existence of | |
79 diff-mode. | |
80 | |
81 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
82 | |
83 * vc-cvs.el (vc-cvs-registered): Use new function | |
84 vc-cvs-parse-entry to do the actual work. | |
85 | |
86 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
87 | |
88 * vc-hooks.el (vc-find-backend-function): If function doesn't | |
89 exist, return nil instead of error. | |
90 (vc-call-backend): Doc fix. | |
91 | |
92 * vc.el (vc-do-command): Doc fix. | |
93 (vc-finish-logentry): When checking in from vc-dired, choose the | |
94 right backend for logentry check. | |
95 (vc-dired-mode-map): Inherit from dired-mode-map. | |
96 (vc-dired-mode): Local value of dired-move-to-filename-regexp | |
97 simplified. | |
98 (vc-dired-state-info): Removed, updated caller. | |
99 (vc-default-dired-state-info): Use parentheses instead of hyphens. | |
100 (vc-dired-hook): Use vc-BACKEND-dir-state, if available. | |
101 (vc-dired-listing-switches): New variable. | |
102 (vc-directory): Use it, instead of dired-listing-switches. | |
103 | |
104 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too. | |
105 (vc-cvs-dir-state): New function. | |
106 (vc-cvs-dir-state-heuristic): New function, subroutine of the | |
107 above. | |
108 (vc-cvs-parse-entry): New function, also to be used in | |
109 vc-cvs-registered. | |
110 | |
111 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
112 | |
113 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows | |
114 *or* single-window-frames. | |
115 | |
116 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
117 | |
118 * vc.el (vc-update-changelog): Split into generic part and default | |
119 implementation. Doc string adapted. | |
120 (vc-default-update-changelog): New function. Call the `rcs2log' | |
121 script in exec-directory, to fix a long-standing nuisance. | |
122 | |
123 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that | |
124 simply signals an error. | |
125 | |
126 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
127 | |
128 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the | |
129 control-flow more clear and to avoid running `cvs' twice. | |
130 | |
131 * vc.el (vc-next-action-on-file): Doc fix. | |
132 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode. | |
133 (vc-print-log): Eval `file' before constructing the continuation. | |
134 | |
135 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
136 | |
137 * vc.el (vc-next-action-on-file): Corrected several messages. | |
138 (vc-merge): Add prefix arg `merge-news'; handle it. | |
139 | |
140 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this | |
141 is not reached. It is. | |
142 (vc-cvs-merge): Set state to 'edited after merge. | |
143 (vc-cvs-merge-news): Set workfile version to nil if not known. | |
144 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal. | |
145 | |
146 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout | |
147 via stdout. (Merge from main line.) | |
148 | |
149 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
150 | |
151 * vc.el (vc-finish-logentry): Thinko in the "same comment" | |
152 detection. | |
153 | |
154 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
155 | |
156 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them | |
157 against kill-all-local-variables. | |
158 (vc-log-edit): Don't save vc-parent-buffer any more. | |
159 (vc-last-comment-match): Initialize to an empty string. | |
160 (vc-post-command-functions): New hook. | |
161 (vc-do-command): Run it. | |
162 (vc-next-action-on-file): Remove unnecessary pop-to-buffer. | |
163 (vc-finish-logentry): Only add the comment to the ring if it's | |
164 different from the last comment entered. | |
165 (vc-new-comment-index): New function. | |
166 (vc-previous-comment): Use it. Make the minibuffer message | |
167 slightly less terse. | |
168 (vc-comment-search-reverse): Make it work forward as well. Don't | |
169 set vc-comment-ring-index if no match is found. Use | |
170 vc-new-comment-index. | |
171 (vc-comment-search-forward): Use vc-comment-search-reverse. | |
172 (vc-dired-mode-map): Don't inherit from dired-mode-map since | |
173 define-derived-mode will do it for us. Bind `v' to a keymap that | |
174 inherits from vc-prefix-map so that we can bind `vt' without | |
175 binding C-x v t. | |
176 (vc-retrieve-snapshot): Parenthesis typo. | |
177 | |
178 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0 | |
179 to 1. Make sure to switch to *vc* before looking for an error | |
180 message. Use vc-parse-buffer. | |
181 | |
182 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
183 | |
184 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR | |
185 and NAME. | |
186 (vc-retrieve-snapshot): Split into two parts. | |
187 (vc-default-retrieve-snapshot): New function. | |
188 | |
189 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME. | |
190 (vc-cvs-retrieve-snapshot): New function (untested). | |
191 (vc-cvs-stay-local): Default to t. | |
192 (vc-cvs-remote-p): New function and property. | |
193 (vc-cvs-state): Stay local only if the above is t. | |
194 (vc-handle-cvs): Removed. | |
195 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be | |
196 done via vc-handled-backends now. | |
197 (vc-cvs-header): Escape Id. | |
198 | |
199 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
200 | |
201 * vc.el (vc-do-command): Remove unused commands. | |
202 (vc-version-diff): Make sure default-directory ends with a slash. | |
203 Move the window commands into a vc-exec-after. | |
204 (vc-print-log): Move more of the code into the `vc-exec-after'. | |
205 | |
206 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
207 | |
208 * vc.el (vc-exec-after): Fix disassembly of previous sentinel. | |
209 (vc-print-log): Search current revision from beginning of buffer. | |
210 (vc-revert-buffer): Clear echo area after the diff is finished. | |
211 (vc-prefix-map): Removed definition of "t" for terse display in vc | |
212 dired. | |
213 (vc-dired-mode-map): Inherit from dired-mode-map. Added | |
214 definition of "vt" for terse display. | |
215 (vc-dired-mode): Fix dired-move-to-filename-regexp. | |
216 | |
217 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
218 | |
219 * vc.el (vc-exec-after): Avoid caddr. | |
220 | |
221 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
222 | |
223 * vc.el (vc-exec-after): New function. | |
224 (vc-do-command): Use it to add a termination message for async | |
225 procs. | |
226 (vc-checkout): Try to handle a missing-backend situation. | |
227 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs | |
228 of a directory with a backend using async diffs. | |
229 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if | |
230 present. | |
231 | |
232 * vc-sccs.el (vc-sccs-state-heuristic): Use | |
233 file-ownership-preserved-p. | |
234 | |
235 * vc-rcs.el (vc-rcs-state-heuristic): Use | |
236 file-ownership-preserved-p. | |
237 (vc-rcs-checkout): Remove the error-handling for missing-rcs. | |
238 | |
239 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
240 | |
241 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to | |
242 vc-do-command. | |
243 | |
244 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert | |
245 when there are no changes. | |
246 | |
247 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
248 | |
249 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p. | |
250 | |
251 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p. | |
252 | |
253 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
254 | |
255 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el. | |
256 | |
257 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move | |
258 the `fset' outside of the defvar so that it works even if | |
259 vc-prefix-map was already defined. | |
260 (vc-setup-buffer): New function, split out of vc-do-command. | |
261 (vc-do-command): Allow BUFFER to be t to mean `just use the | |
262 current buffer without any fuss'. | |
263 (vc-version-diff): Change the `diff' backend operation to just put | |
264 the diff in the current buffer without erasing it. Always use | |
265 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect | |
266 shrink-window-if-larger-than-buffer. | |
267 (vc-print-log): Change the `print-log' backend operation to just | |
268 put the log in the current buffer without erasing it. Protect | |
269 shrink-window-if-larger-than-buffer. | |
270 (vc-update-change-log): Fix setd typo. | |
271 | |
272 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis. | |
273 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer. | |
274 | |
275 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer. | |
276 (vc-rcs-diff): Insert in the current buffer and remove unused arg | |
277 CMP. | |
278 | |
279 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use | |
280 with-temp-file. Use the new BUFFER=t argument to vc-do-command. | |
281 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer. | |
282 | |
283 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
284 | |
285 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is | |
286 not possible, use vc-BACKEND-workfile-unchanged-p. | |
287 (vc-default-workfile-unchanged-p): New function. Delegates to a | |
288 full vc-BACKEND-diff. | |
289 | |
290 * vc-hooks.el (vc-simple-command): Removed. | |
291 | |
292 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command | |
293 instead of vc-simple-command. | |
294 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to | |
295 avoid doing a diff when opening a file. | |
296 (vc-rcs-state): Added check for unlocked-changes. | |
297 (vc-rcs-header): Escape Id. | |
298 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION. | |
299 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific | |
300 version. | |
301 | |
302 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten. | |
303 (vc-sccs-diff): Remove optional arg CMP. | |
304 (vc-sccs-state): Call vc-workfile-unchanged-p, not the | |
305 SCCS-specific function. | |
306 | |
307 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of | |
308 vc-simple-command. | |
309 | |
310 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
311 | |
312 * vc.el (vc-editable-p): Renamed from vc-writable-p. | |
313 (with-vc-file, vc-merge): Use vc-editable-p. | |
314 (vc-do-command): Remove unused var vc-file and fix the | |
315 doubly-defined `status' var. Add a user message when starting an | |
316 async command. | |
317 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry) | |
318 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file): | |
319 Use with-current-buffer. | |
320 (vc-buffer-sync): Use unless. | |
321 (vc-next-action-on-file): If the file is 'edited by read-only, | |
322 make it read-write instead of trying to commit. | |
323 (vc-version-diff, vc-update-change-log): Use `setq | |
324 default-directory' rather than `cd'. | |
325 (vc-log-edit): Don't forget to set default-directory in the | |
326 buffer. | |
327 | |
328 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis. | |
329 (vc-sccs-state-heuristic): Use file-writable-p instead of | |
330 comparing userids. | |
331 (vc-sccs-checkout): Use `unless'. | |
332 | |
333 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead | |
334 of comparing userids. | |
335 (vc-rcs-fetch-master-state): Handle the case where rcs is missing. | |
336 Simplify the logic by eliminating unreachable code. | |
337 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and | |
338 just do a recursive call if we need to retry. | |
339 (vc-rcs-checkout): Handle the case where rcs is missing by making | |
340 the buffer read-write if requested and re-signalling the error. | |
341 | |
342 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP. | |
343 | |
344 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
345 | |
346 * vc-hooks.el (vc-handled-backends): Docstring change. | |
347 (vc-ignore-vc-files): Mark obsolete. | |
348 (vc-registered): Check vc-ignore-vc-files. | |
349 (vc-find-file-hook, vc-file-not-found-hook): Don't check | |
350 vc-ignore-vc-files. | |
351 | |
352 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs. | |
353 | |
354 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
355 | |
356 * vc.el (vc-checkout): Don't do anything special for ange-ftp | |
357 files since ange-ftp already has vc-registered return nil. | |
358 | |
359 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer. | |
360 (vc-sccs-workfile-version): Use with-temp-buffer and new | |
361 vc-parse-buffer and don't bother setting the property. | |
362 (vc-sccs-add-triple): Use with-current-buffer and | |
363 find-file-noselect. | |
364 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if. | |
365 | |
366 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code | |
367 derives from the old vc-parse-buffer but uses the revision number | |
368 rather than the date (much easier to compare robustly). | |
369 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the | |
370 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the | |
371 locking-user more directly. Check strict locking and set | |
372 checkout-model appropriately. | |
373 (vc-rcs-parse-locks): Remove. | |
374 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the | |
375 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). | |
376 (vc-rcs-system-release): Use with-current-buffer and | |
377 vc-parse-buffer. | |
378 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer. | |
379 | |
380 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster. | |
381 (vc-simple-command): Docstring fix. | |
382 (vc-registered): Align the way the file-handler is called with the | |
383 way the function itself works. | |
384 (vc-file-owner): Remove. | |
385 | |
386 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder | |
387 extraction of fields and call to file-attributes because of a | |
388 temporary bug in rcp.el. | |
389 (vc-cvs-fetch-status): Use with-current-buffer. | |
390 | |
391 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
392 | |
393 * vc.el (vc-do-command): Use file-relative-name. | |
394 (vc-responsible-backend): Use vc-backend if possible. | |
395 (vc-create-snapshot): Improve the `interactive' spec. Add support | |
396 for branches and dispatch to backend-specific `create-snapshot'. | |
397 (vc-default-create-snapshot): New function, containing the bulk of | |
398 the old vc-create-snapshot. | |
399 (vc-retrieve-snapshot): Improve the interactive spec. | |
400 | |
401 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el. | |
402 (vc-backend-hook-functions): Remove. | |
403 (vc-find-backend-function): Don't try to load vc-X-hooks anymore. | |
404 (vc-backend): Reintroduce the test for `file = nil' now that I | |
405 know why it was there (and added a comment to better remember). | |
406 | |
407 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in | |
408 code from vc-sccs-hooks.el. | |
409 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require | |
410 'vc anymore. | |
411 (vc-sccs-responsible-p): Use expand-file-name instead of concat | |
412 and file-directory-p instead of file-exists-p. | |
413 (vc-sccs-check-headers): Simplify the regexp. | |
414 | |
415 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code | |
416 from vc-rcs-hooks.el. Don't require 'vc anymore. | |
417 (vc-rcs-responsible-p): Use expand-file-name instead of concat and | |
418 file-directory-p instead of file-exists-p. | |
419 | |
420 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code | |
421 from vc-cvs-hooks.el. | |
422 (proto vc-cvs-registered): Require 'vc-cvs instead of | |
423 'vc-cvs-hooks. Don't require 'vc anymore. | |
424 (vc-cvs-responsible-p): Use expand-file-name instead of concat and | |
425 file-directory-p instead of file-exists-p. | |
426 (vc-cvs-create-snapshot): New function, replacing | |
427 vc-cvs-assign-name. | |
428 (vc-cvs-assign-name): Remove. | |
429 | |
430 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
431 | |
432 * vc-cvs.el (vc-cvs-header): New var. | |
433 | |
434 * vc-rcs.el (vc-rcs-exists): Remove. | |
435 (vc-rcs-header): New var. | |
436 | |
437 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use | |
438 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'. | |
439 (vc-sccs-header): New var. | |
440 | |
441 * vc.el (vc-do-command): Get rid of the `last' argument. | |
442 (vc-header-alist): Remove, replaced by vc-X-header. | |
443 (vc-insert-headers): Use vc-X-header instead of vc-header-alist. | |
444 (vc-dired-hook): Use expand-file-name instead of concat. | |
445 (vc-directory): Use file-name-as-directory. | |
446 (vc-snapshot-precondition, vc-create-snapshot) | |
447 (vc-retrieve-snapshot): Allow the command to operate on any | |
448 directory. | |
449 | |
450 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either | |
451 just removing the 'WORKFILE argument or by removing the 'MASTER | |
452 argument and replacing `file' with (vc-name file). | |
453 | |
454 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
455 | |
456 * vc.el: Update Copyright and add a crude list of backend funs. | |
457 (vc-writable-p): New function. | |
458 (with-vc-file): Use vc-writable-p. | |
459 (vc-next-action-on-file): Update call to vc-steal-lock and | |
460 cleanup. | |
461 (vc-register): Avoid vc-name. | |
462 (vc-locking-user): Remove. | |
463 (vc-steal-lock): Make the `owner' arg non-optional. | |
464 (vc-merge): Use vc-writable-p instead of vc-locking-user and | |
465 vc-checkout-model. | |
466 (vc-default-dired-state-info): Use vc-state instead of | |
467 vc-locking-user and return special strings for special states. | |
468 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user | |
469 and get rid of one of the special CVS cases. | |
470 (vc-cancel-version): prettify error message with \\[...]. | |
471 (vc-rename-master): New function. | |
472 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn | |
473 use vc-rename-master) instead of vc-BACKEND-record-rename. Make | |
474 the CVS special case generic. | |
475 (vc-default-record-rename): Remove. | |
476 (vc-file-tree-walk-internal): Only call FUNC for files that are | |
477 under control of some VC backend and replace `concat' with | |
478 expand-file-name. | |
479 (vc-file-tree-walk): Update docstring. | |
480 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot) | |
481 (vc-retrieve-snapshot): Update call to vc-file-tree-walk. | |
482 | |
483 * vc-sccs.el (vc-sccs-rename-file): Renamed from | |
484 vc-sccs-record-rename. Use `find-file-noselect' rather than | |
485 `find-file' and call `vc-rename-master' to do the actual move. | |
486 (vc-sccs-diff): Remove unused `backend' variable. | |
487 | |
488 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version | |
489 to delay loading of vc-sccs until it is really used. | |
490 (vc-sccs-master-templates): Preload. | |
491 (vc-sccs-state): Update call to vc-sccs-parse-locks. | |
492 (vc-sccs-project-dir): Remove (merged into | |
493 vc-sccs-search-project-dir). | |
494 (vc-sccs-search-project-dir): Rewrite using file name handling ops | |
495 rather than `concat', make sure it is preloaded and don't bother | |
496 to check that the file actually exists. | |
497 (vc-sccs-parse-locks): Remove unused `file' argument, remove | |
498 `locks' argument (use buffer's content instead) and eliminate n^2 | |
499 behavior. | |
500 | |
501 * vc-rcs.el: Update Copyright. | |
502 (vc-rcs-rename-file): New function. | |
503 (vc-rcs-diff): Remove unused `backend' variable. | |
504 | |
505 * vc-hooks.el: Update Copyright. | |
506 (vc-backend): Don't accept a nil argument any more. | |
507 (vc-up-to-date-p): Turn into a defsubst. | |
508 (vc-possible-master): New function. | |
509 (vc-check-master-templates): Use `vc-possible-master' and allow | |
510 funs in vc-X-master-templates to return a non-existent file. | |
511 | |
512 * vc-cvs.el: Update Copyright. | |
513 (vc-cvs-diff): Remove unused `backend' variable. | |
514 (vc-cvs-checkout): Only toggle read-only if the buffer is setup | |
515 right. | |
516 | |
517 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered. | |
518 | |
519 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
520 | |
521 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version | |
522 since it can be called from vc-rcs.el. | |
523 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior. | |
524 | |
525 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
526 | |
527 * vc.el (vc-version-diff): Expand file name read from the | |
528 minibuffer. Handle the case when a previous version number can't | |
529 be guessed. Give suitable messages when there were no differences | |
530 found. | |
531 (vc-clear-headers): Call backend-specific implementation, if one | |
532 exists. | |
533 (vc-cancel-version): Made error checks generic. When done, clear | |
534 headers generically, too. | |
535 | |
536 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here | |
537 from vc-clear-headers in vc.el. | |
538 | |
539 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer | |
540 correctly. | |
541 (vc-rcs-latest-on-branch-p): Made second argument VERSION | |
542 optional. Handle the case when it's not there. | |
543 | |
544 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
545 | |
546 * vc.el (vc-locking-user): Moved from vc-hooks.el. | |
547 | |
548 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
549 | |
550 * vc-hooks.el (vc-loadup): Remove. | |
551 (vc-find-backend-function): Use `require'. Also, handle the case | |
552 where vc-BACKEND-hooks.el doesn't exist. | |
553 (vc-call-backend): Cleanup. | |
554 | |
555 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
556 | |
557 * vc-rcs-hooks.el (vc-rcs-templates-grabbed, | |
558 vc-rcs-grab-templates) | |
559 (vc-rcs-registered): Remove. The default function works as well. | |
560 * vc-sccs-hooks.el (vc-sccs-templates-grabbed, | |
561 vc-sccs-grab-templates) | |
562 (vc-sccs-registered): Remove. The default function works as well. | |
563 | |
564 * vc.el (vc-version-diff): Left out a vc- in call to | |
565 vc-call-backend. | |
566 (vc-default-dired-state-info, vc-default-record-rename) | |
567 (vc-default-merge-news): Update for the new backend argument. | |
568 | |
569 * vc-hooks.el (vc-find-backend-function): Return a cons cell if | |
570 using the default function. | |
571 (vc-call-backend): If calling the default function, pass it the | |
572 backend as first argument. Update the docstring accordingly. | |
573 (vc-default-state-heuristic, vc-default-mode-line-string): Update | |
574 for the new backend argument. | |
575 (vc-make-backend-sym): Renamed from vc-make-backend-function. | |
576 (vc-find-backend-function): Use the new name. | |
577 (vc-default-registered): New function. | |
578 | |
579 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
580 | |
581 * vc.el (vc-merge): Use vc-find-backend-function. | |
582 | |
583 * vc-hooks.el (vc-backend-functions): Remove. | |
584 (vc-loadup): Don't setup 'vc-functions. | |
585 (vc-find-backend-function): New function. | |
586 (vc-call-backend): Use above fun and populate 'vc-functions | |
587 lazily. | |
588 (vc-backend-defines): Remove. | |
589 | |
590 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
591 | |
592 * vc.el (vc-register): Put a FIXME note for a newly found bug. | |
593 Call vc-call-backend without the leading vc-. | |
594 (vc-responsible-backend, vc-finish-logentry, vc-annotate) | |
595 (vc-check-headers): Call vc-call-backend without the leading vc-. | |
596 (vc-annotate-time-span): Replace confusing use of `cond' with | |
597 `or'. | |
598 (vc-annotate-display): Replace confusing use of `cond' with `or'. | |
599 Call vc-call-backend without the leading vc-. | |
600 | |
601 * vc-cvs.el (tail): Provide vc-cvs. | |
602 * vc-sccs.el (tail): Provide vc-sccs. | |
603 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check. | |
604 | |
605 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions) | |
606 (vc-make-backend-function, vc-call): Pass names without leading | |
607 `vc-' to vc-call-backend so we can blindly prefix them with | |
608 vc-BACKEND. | |
609 (vc-loadup): Don't load vc-X-hooks if vc-X is requested. | |
610 (vc-call-backend): Always try to load vc-X-hooks. | |
611 (vc-registered): Remove vc- in call to vc-call-backend. | |
612 | |
613 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
614 | |
615 * vc.el (vc-process-filter): New function. | |
616 (vc-do-command): Setup `vc-process-filter' for the async process. | |
617 (vc-maybe-resolve-conflicts): New function to reduce | |
618 code-duplication. Additionally, it puts the buffer in | |
619 `smerge-mode' if applicable. | |
620 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after | |
621 calling `merge-news'. | |
622 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling | |
623 `merge'. | |
624 (vc-log-edit): New function. Replacement for `vc-log-mode' by | |
625 interfacing to log-edit.el. | |
626 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if | |
627 log-edit is available. | |
628 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available. | |
629 | |
630 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
631 | |
632 * vc.el (vc-register): Remove `vc-buffer-backend' setup. | |
633 (vc-log-mode-map): New name for vc-log-entry-mode and merge the | |
634 defvar and the initialization. | |
635 (vc-log-mode): Minor docstring fix and use vc-log-mode-map. | |
636 | |
637 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove. | |
638 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling. | |
639 | |
640 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a | |
641 FIXME. | |
642 | |
643 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
644 | |
645 * vc.el (vc-file-clear-masterprops): Removed. | |
646 (vc-checkin, vc-revert-buffer): Removed calls to the above. | |
647 (vc-version-diff): Use buffer-size without argument. | |
648 (vc-register): Heed vc-initial-comment. | |
649 | |
650 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for | |
651 default branch. | |
652 | |
653 * vc-rcs.el (vc-rcs-register): Parse command output to find master | |
654 file name and workfile version. | |
655 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops. | |
656 | |
657 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to | |
658 vc-file-clear-masterprops. | |
659 | |
660 * vc-sccs.el (vc-sccs-checkout): Removed call to | |
661 vc-file-clear-masterprops. If writable, set vc-state to 'edited | |
662 rather than user login name. | |
663 | |
664 | |
665 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
666 | |
667 * vc.el (vc-workfile-unchanged-p): Remove unused argument | |
668 `want-differences-if-changed' and simplify. | |
669 (vc-next-action-on-file) [needs-merge]: Resynch the buffer. | |
670 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status | |
671 output (which is invalid for async vc-diff) to decide whether to | |
672 do the revert silently or not. | |
673 | |
674 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
675 | |
676 * vc-hooks.el (vc-loadup): Load files quietly. | |
677 (vc-call-backend): Oops, brain fart. | |
678 | |
679 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
680 | |
681 * vc-cvs.el (vc-cvs-state): Typo. | |
682 (vc-cvs-merge-news): Return the status code rather than the error | |
683 msg. | |
684 | |
685 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
686 | |
687 * vc.el (with-vc-file, vc-next-action, vc-version-diff) | |
688 (vc-dired-mark-locked): Replaced usage of vc-locking-user with | |
689 vc-state or vc-up-to-date-p. | |
690 (vc-merge): Use vc-backend-defines to check whether merging is | |
691 possible. Set state to 'edited after successful merge. | |
692 | |
693 * vc-hooks.el (vc-locking-user): If locked by the calling user, | |
694 return that name. Redocumented. | |
695 | |
696 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
697 | |
698 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to | |
699 new `vc-state' semantics. | |
700 (vc-finish-steal): Set 'vc-state to 'edited rather than setting | |
701 'vc-locking-user to the current user. | |
702 (vc-merge): Inline vc-backend-merge. Comment out code that I | |
703 don't understand and hence can't adapt to the new `vc-state' and | |
704 `vc-locking-user' semantics. | |
705 (vc-backend-merge): Remove. | |
706 | |
707 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state | |
708 rather than 'vc-locking-user. | |
709 | |
710 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'. | |
711 | |
712 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit. | |
713 (vc-state): Don't use 'reserved any more. Just use the same | |
714 convention as the one used for vc-<backend>-state where the | |
715 locking user (as a string) is returned. | |
716 (vc-locking-user): Update, based on the above convention. The | |
717 'vc-locking-user property has disappeared. | |
718 (vc-mode-line, vc-default-mode-line-string): Adapt to new | |
719 `vc-state'. | |
720 | |
721 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state | |
722 with a heuristic one. | |
723 (vc-cvs-merge-news): Just use 'edited for the case with conflicts. | |
724 (vc-cvs-checkin): Do a trivial parse to set the state in case of | |
725 error. That allows us to get to 'needs-merge even in the | |
726 stay-local case. There's still no way to detect 'needs-patch in | |
727 such a setup (or to force an update for that matter). | |
728 (vc-cvs-logentry-check): Remove, the default works as well. | |
729 | |
730 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
731 | |
732 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs | |
733 asynchronously. | |
734 | |
735 * vc.el (vc-do-command): kill-all-local-variables, to reset any | |
736 major-mode in which the buffer might have been put earlier. Use | |
737 `remove' and `when'. Allow `okstatus' to be `async' and use | |
738 `start-process' in this case. | |
739 (vc-version-diff): Handle the case where the diff looks empty | |
740 because of the use of an async process. | |
741 | |
742 2000-09-04 Andre Spiegel <spiegel@gnu.org> | |
743 | |
744 * vc.el (vc-next-action-on-file): Removed optional parameter | |
745 `simple'. Recompute state unconditionally. | |
746 (vc-default-toggle-read-only): Removed. | |
747 | |
748 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only. | |
749 (vc-toggle-read-only): Undid prev change. | |
750 | |
751 * vc-cvs.el (vc-cvs-stay-local): Renamed from | |
752 vc-cvs-simple-toggle. Redocumented. | |
753 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic. | |
754 (vc-cvs-toggle-read-only): Removed. | |
755 | |
756 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
757 | |
758 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): | |
759 Remove. | |
760 (vc-prefix-map): Move from vc-hooks.el and make autoloaded. | |
761 (vc-release-greater-or-equal-p): Move to vc-rcs.el. | |
762 (vc-file-clear-masterprops): Braindead "fix". It was a nop and | |
763 still is. So maybe it should be removed. | |
764 (vc-head-version, vc-find-binary): Remove. | |
765 (vc-recompute-state): Move from vc-hooks.el. | |
766 (vc-next-action-on-file): Add a `simple' argument to allow | |
767 avoiding the `recompute' step (use for vc-cvs-simple-toggle). | |
768 (vc-default-toggle-read-only, vc-default-record-rename): New | |
769 functions. | |
770 (vc-next-action, vc-dired-hook): Use vc-state instead of | |
771 vc-cvs-status. | |
772 (vc-dired-mode-map): Properly defvar it. | |
773 (vc-print-log): Call log-view-mode if available. | |
774 (small-temporary-file-directory): defvar instead of use boundp. | |
775 (vc-merge-news): Moved to vc-cvs.el. | |
776 (vc-default-merge-news): New function. | |
777 | |
778 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks. | |
779 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks. | |
780 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the | |
781 unknown `vc-latest-version' function. It should probably refer to | |
782 vc-workfile-version or somesuch, but it's very unclear to me and I | |
783 don't have SCCS to test things. | |
784 | |
785 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks. | |
786 (vc-sccs-state-heuristic): Fix typo. | |
787 (vc-sccs-workfile-unchanged-p): Add missing argument. | |
788 | |
789 * vc-rcs.el: Require vc and vc-rcs-hooks. | |
790 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks. | |
791 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p). | |
792 (vc-release-greater-or-equal-p): Move from vc. | |
793 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part, | |
794 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates. | |
795 (vc-rcs-checkout): Add a missing `new-version' argument in the | |
796 call to vc-rcs-latest-on-branch-p. Hopefully that was the right | |
797 one. | |
798 | |
799 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks. | |
800 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el. | |
801 (vc-rcs-latest-on-branch-p): Use the `version' argument rather | |
802 than the apparently unbound `workfile-version'. | |
803 | |
804 * vc-hooks.el (vc-master-templates): Def the obsolete var. | |
805 (vc-file-prop-obarray): Use `make-vector'. | |
806 (vc-backend-functions): Add new hookable functions | |
807 vc-toggle-read-only, vc-record-rename and vc-merge-news. | |
808 (vc-loadup): If neither backend nor default functions exist, use | |
809 the backend function rather than nil. | |
810 (vc-call-backend): If the function if not bound yet, try to load | |
811 the non-hook file to see if it provides it. | |
812 (vc-call): New macro plus use it wherever possible. | |
813 (vc-backend-subdirectory-name): Use neither `vc-default-back-end' | |
814 nor `vc-find-binary' since it's only called from | |
815 vc-mistrust-permission which is only used once the backend is | |
816 known. | |
817 (vc-checkout-model): Fix parenthesis. | |
818 (vc-recompute-state, vc-prefix-map): Move to vc.el. | |
819 | |
820 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler | |
821 warnings). | |
822 (vc-cvs-release, vc-cvs-system-release): Remove. | |
823 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables. | |
824 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different | |
825 status symbols. | |
826 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el. | |
827 (vc-cvs-toggle-read-only): First cut at a function to allow a | |
828 cvs-status-free vc-toggle-read-only. | |
829 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el. | |
830 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of | |
831 vc-cvs-status. Also set vc-state rather than vc-locking-user. | |
832 (vc-cvs-checkout): Modify access rights directly if the user | |
833 requested not to use `cvs edit'. And refresh the mode line. | |
834 | |
835 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks. | |
836 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el. | |
837 | |
838 2000-09-04 Stefan Monnier <monnier@cs.yale.edu> | |
839 | |
840 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if | |
841 workfile' that got lost when the code was extracted from vc.el. | |
842 And merged the tail with the rest of the code (not possible in the | |
843 old vc.el where the tail was shared among all backends). And | |
844 explicitly set the state to 'edited if `writable' is set. | |
845 | |
846 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name. | |
847 (vc-cvs-state): Be careful to return the value from | |
848 vc-cvs-parse-state. | |
849 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state | |
850 property but return it instead. Also be careful to handle a nil | |
851 or "" `rev' when workfile is non-nil (it was handled properly when | |
852 workfile was nil). | |
853 | |
854 * vc.el: Removed those pesky unnecessary `(function' quotes. | |
855 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize | |
856 directly in the defvar. | |
857 (vc-do-command): Bind inhibit-read-only so as to properly handle | |
858 the case where the destination buffer has been made read-only. | |
859 (vc-diff): Delegate to vc-version-diff in all cases. | |
860 (vc-version-diff): Setup the *vc-diff* buffer as was done in | |
861 vc-diff. | |
862 (vc-annotate-mode-variables): Removed (code moved partly to | |
863 defvars and partly to vc-annotate-add-menu). | |
864 (vc-annotate-mode): Turned into a derived-mode. | |
865 (vc-annotate-add-menu): Moved in code in | |
866 vc-annotate-mode-variables. | |
867 (vc-update-change-log): Use make-temp-file if available. | |
868 | |
869 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org> | |
870 | |
871 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to | |
872 `vc-checkout-model' updated to `vc-cvs-update-model'. | |
873 | |
874 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
875 | |
876 * vc.el (vc-next-action-on-file): Added handling of state | |
877 `unlocked-changes'. | |
878 (vc-checkout-carefully): Is now practically obsolete, unless the | |
879 above is too slow to be enabled unconditionally. | |
880 (vc-update-change-log): Fixed typo. | |
881 | |
882 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'. | |
883 | |
884 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten. Now | |
885 handles state `unlocked-changes'. | |
886 (vc-sccs-workfile-unchanged-p): New function, to support the | |
887 above. | |
888 | |
889 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'. | |
890 | |
891 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo. | |
892 (vc-rcs-fetch-master-state): Bug fixes. Recognize state | |
893 `unlocked-changes'. | |
894 (vc-rcs-workfile-unchanged-p): Renamed from | |
895 `vc-rcs-workfile-unchanged'. This is not a real backend-specific | |
896 function yet, but supposed to become one soon. | |
897 | |
898 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to | |
899 `vc-steal-lock'. | |
900 (vc-call-backend): Changed error message. | |
901 (vc-state): Added description of state `unlocked-changes'. | |
902 | |
903 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
904 | |
905 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to | |
906 always return t in CVS-controlled directories. | |
907 | |
908 * vc.el (vc-responsible-backend): New function. | |
909 (vc-register): Largely rewritten. | |
910 (vc-admin): Removed (implementation moved into vc-register). | |
911 (vc-checkin): Redocumented. | |
912 (vc-finish-logentry): If no backend defined yet (because we are in | |
913 the process of registering), use the responsible backend. | |
914 | |
915 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions): | |
916 Updated function lists. | |
917 (vc-call-backend): Fixed typo. | |
918 | |
919 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p): New | |
920 functions. | |
921 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'. Removed | |
922 query option. Redocumented. | |
923 | |
924 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
925 | |
926 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'. | |
927 | |
928 * vc.el: Updated callers of `vc-checkout-required' to use | |
929 `vc-checkout-model'. | |
930 | |
931 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
932 | |
933 * vc-rcs.el (vc-rcs-backend-release-p): function added. other | |
934 stuff updated to reference this function instead of the old | |
935 `vc-backend-release-p'. | |
936 | |
937 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
938 | |
939 * vc-sccs-hooks.el (vc-uses-locking): Renamed to | |
940 vc-checkout-model. Return appropriate values. Updated callers. | |
941 | |
942 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
943 | |
944 * vc.el (vc-backend-release, vc-backend-release-p): Functions | |
945 moved into vc-rcs.el | |
946 (vc-backend-revert): Function moved into `vc-revert'; | |
947 `vc-next-action' must be updated to accomodate this change. | |
948 (vc-backend-steal): Function moved into `vc-finish-steal'. | |
949 (vc-backend-logentry-check): Function moved into | |
950 `vc-finish-logentry'. | |
951 (vc-backend-printlog): Function moved into `vc-print-log'. | |
952 (vc-backend-uncheck): Function moved into `vc-cancel-version'. | |
953 (vc-backend-assign-name): Function moved into | |
954 `vc-create-snapshot'. | |
955 | |
956 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
957 | |
958 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking): | |
959 Renamed to vc-checkout-model. Return appropriate | |
960 values. Updated callers. | |
961 | |
962 * vc-hooks.el (vc-backend-hook-functions): Renamed vc-uses-locking | |
963 to vc-checkout-model. | |
964 (vc-checkout-required): Renamed to vc-checkout-model. | |
965 Re-implemented and re-commented. | |
966 (vc-after-save): Use vc-checkout-model. | |
967 | |
968 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
969 | |
970 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff): Updated | |
971 to use the vc-BACKEND-diff functions instead; `vc-diff' is now | |
972 working. | |
973 | |
974 * vc-rcs.el (vc-rcs-logentry-check): Function added. | |
975 | |
976 * vc-cvs.el (vc-cvs-logentry-check): Function added. | |
977 | |
978 * vc-sccs.el (vc-sccs-diff): Function changed name from | |
979 `vc-backend-diff'. This makes `vc-diff' work. | |
980 | |
981 * vc-hooks.el (vc-backend-functions): Added `vc-diff' to the list | |
982 of functions possibly implemented in a vc-BACKEND library. | |
983 (vc-checkout-required): Bug fixed that caused an error to be | |
984 signaled during `vc-after-save'. | |
985 | |
986 * vc.el: Typo fixed. This checkin is made with our new VC code | |
987 base for the very first time. A simple `(vc-checkin | |
988 (buffer-file-name))' was used to perform it. | |
989 | |
990 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to | |
991 `vc-checkout-required' updated to `vc-cvs-uses-locking'. | |
992 | |
993 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required' | |
994 updated to `vc-uses-locking'. | |
995 (vc-checkout-required): Call to backend function | |
996 `vc-checkout-required' updated to `vc-uses-locking' instead. | |
997 | |
998 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to | |
999 `vc-checkout-required' updated to `vc-rcs-uses-locking'. | |
1000 | |
1001 * vc.el (vc-checkin): Merged with `vc-backend-checkin' and updated | |
1002 to match the split into various backends. | |
1003 (vc-backend-checkin): Removed. Merged with `vc-checkin'. | |
1004 (vc-retrieve-snapshot): Bug fix. | |
1005 | |
1006 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1007 | |
1008 * vc-sccs.el (vc-sccs-release): Doc fix. | |
1009 | |
1010 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1011 | |
1012 * vc.el (vc-next-action-on-file): Bug found and fixed. | |
1013 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot) | |
1014 (vc-cancel-version): Handle of vc-BACKEND-checkout updated. | |
1015 | |
1016 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version) | |
1017 (vc-rcs-checkout): Name space cleaned up. No more revision number | |
1018 crunching function names that are not prefixed with vc-rcs. | |
1019 (vc-rcs-checkout-model): Function added. References to | |
1020 `vc-checkout-model' replaced. | |
1021 | |
1022 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1023 | |
1024 * vc.el (vc-next-action-on-file): Rewritten for the new state model. | |
1025 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts | |
1026 still need to be split, and implemented for RCS). | |
1027 | |
1028 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1029 | |
1030 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed. | |
1031 | |
1032 * vc-sccs.el (vc-sccs-admin): Added the query-only option as | |
1033 required by the vc.el file. | |
1034 | |
1035 * vc-rcs.el (vc-rcs-admin): Added the query-only option as | |
1036 required by the vc.el file. | |
1037 (vc-rcs-exists): Function added. | |
1038 | |
1039 * vc-cvs.el (vc-cvs-admin): Added the query-only option as | |
1040 required by the vc.el file. | |
1041 | |
1042 * vc.el (vc-admin): Updated to handle selection of appropriate | |
1043 backend. Current implementation is crufty and need re-thinking. | |
1044 | |
1045 * vc-hooks.el (vc-parse-buffer): Bug found and fixed. | |
1046 | |
1047 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1048 | |
1049 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle | |
1050 beginning of annotate buffers correctly. | |
1051 | |
1052 * vc.el (vc-annotate-get-backend, vc-annotate-display-default) | |
1053 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate | |
1054 functionality updated quite a lot to support multiple backends. | |
1055 Variables `vc-annotate-mode', `vc-annotate-buffers', | |
1056 `vc-annotate-backend' added. | |
1057 | |
1058 * vc-hooks.el (vc-backend-functions): `vc-annotate-command', | |
1059 `vc-annotate-difference' added to supported backend functions. | |
1060 | |
1061 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1062 | |
1063 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout): | |
1064 Use with-temp-file instead of /bin/sh. Merged from mainline | |
1065 | |
1066 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1067 | |
1068 * vc-sccs-hooks.el (vc-sccs-registered): Updated. | |
1069 | |
1070 * vc-rcs-hooks.el (vc-rcs-registered): Updated. | |
1071 | |
1072 * vc-cvs-hooks.el (vc-cvs-registered): Updated. | |
1073 | |
1074 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1075 | |
1076 * vc-hooks.el: vc-state-heuristic added to | |
1077 vc-backend-hook-functions. | |
1078 | |
1079 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix. | |
1080 | |
1081 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix. | |
1082 | |
1083 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Renamed | |
1084 `vc-uses-locking' to `vc-checkout-required'. Renamed the `locked' | |
1085 state to `reserved'. | |
1086 | |
1087 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to | |
1088 `vc-checkout-required'. Rename the `locked' state to `reserved'. | |
1089 | |
1090 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1091 | |
1092 * vc-rcs-hooks.el: Implemented new state model. Hardly anything | |
1093 untouched. | |
1094 | |
1095 * vc-rcs.el (vc-rcs-latest-on-branch-p): Moved to vc-rcs-hooks.el. | |
1096 | |
1097 * vc.el (vc-update-change-log): Use small-temporary-file-directory, | |
1098 if defined. (Merged from main line, slightly adapted.) | |
1099 | |
1100 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible | |
1101 millenium problem (merged from mainline). | |
1102 | |
1103 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1104 | |
1105 * vc-cvs.el: Split the annotate feature into a BACKEND-specific | |
1106 part and moved the non-BACKEND stuff to vc.el. | |
1107 | |
1108 * vc.el: Split the annotate feature into a BACKEND specific part | |
1109 and moved it from the vc-cvs.el file to this one. | |
1110 | |
1111 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1112 | |
1113 * vc-hooks.el: Implemented new state model. | |
1114 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New | |
1115 functions. | |
1116 (vc-locking-user): Simplified. Now only needed if the file is | |
1117 locked by somebody else. | |
1118 (vc-lock-from-permissions): Removed. Functionality is in | |
1119 vc-sccs-hooks.el and vc-rcs-hooks.el now. | |
1120 (vc-mode-line-string): New name for former vc-status. Adapted. | |
1121 (vc-mode-line): Adapted to use the above. Removed optional | |
1122 parameter. | |
1123 | |
1124 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New | |
1125 functions. Various simplifications and adaptations all over the | |
1126 place. | |
1127 | |
1128 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New | |
1129 functions. Simplified and adapted the rest. | |
1130 | |
1131 * vc.el (vc-resynch-window): Added TODO comment: check for | |
1132 interaction with view mode according to recent RCS change. | |
1133 (vc-backend-merge-news): Merged "CMUP" patch from mainline. | |
1134 | |
1135 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1136 | |
1137 * vc.el: Converted the remaining function comments to | |
1138 documentation strings. | |
1139 | |
1140 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1141 | |
1142 * vc.el (vc-backend-release, vc-release-greater-or-equal) | |
1143 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part) | |
1144 (vc-minor-part, vc-previous-version): Functions that operate and | |
1145 compare revision numbers got proper documentation. Comments added | |
1146 about their possible removal. | |
1147 | |
1148 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1149 | |
1150 * vc.el (vc-latest-on-branch-p): Function removed and replaced in | |
1151 the vc-backend.el files. | |
1152 | |
1153 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added. | |
1154 | |
1155 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p) | |
1156 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part) | |
1157 (vc-rcs-previous-version): Functions added. | |
1158 | |
1159 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added. | |
1160 | |
1161 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed. | |
1162 | |
1163 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1164 | |
1165 * vc-hooks.el (vc-master-templates): Is really obsolete. | |
1166 Commented out the definition for now. What is the right procedure | |
1167 to get rid of it? | |
1168 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely | |
1169 rewritten. | |
1170 (vc-default-registered): Removed. | |
1171 (vc-check-master-templates): New function; does mostly what the | |
1172 above did before. | |
1173 (vc-locking-user): Don't rely on the backend to set the property. | |
1174 | |
1175 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values. | |
1176 Rewrote documentation. | |
1177 (vc-rcs-templates-grabbed): New variable. | |
1178 (vc-rcs-grab-templates): New function. | |
1179 (vc-rcs-registered): Rewritten to use above mechanism. | |
1180 | |
1181 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values. | |
1182 Rewrote documentation. | |
1183 (vc-sccs-templates-grabbed): New variable. | |
1184 (vc-sccs-grab-templates): New function. | |
1185 (vc-sccs-registered): Rewritten to use above mechanism. | |
1186 (vc-sccs-search-project-dir): Renamed from | |
1187 vc-search-sccs-project-dir. Don't throw the result, simply | |
1188 return it. | |
1189 | |
1190 * vc-cvs-hooks.el (vc-cvs-master-templates): Variable removed. | |
1191 (vc-cvs-find-master): Removed. Code is now in vc-cvs-registered. | |
1192 (vc-cvs-registered): Does the check itself now. Simplified. | |
1193 | |
1194 * vc-cvs.el (vc-cvs-revert): Merged and adapted "unedit" patch | |
1195 from main line. | |
1196 | |
1197 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1198 | |
1199 * vc-cvs.el (vc-cvs-diff): Function added. | |
1200 | |
1201 * vc-sccs.el (vc-sccs-diff): Function added. | |
1202 | |
1203 * vc-rcs.el (vc-rcs-diff): Function added. | |
1204 (vc-rcs-checkout) Bug (typo) found and fixed. | |
1205 (vc-rcs-register-switches) Variable `vc-rcs-register-switches' added. | |
1206 | |
1207 * vc.el (vc-backend-diff): Function removed and placed in the | |
1208 backend files. | |
1209 | |
1210 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1211 | |
1212 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added. | |
1213 | |
1214 * vc.el (vc-backend-checkout): Function removed and replaced in | |
1215 the vc-backend.el files. | |
1216 | |
1217 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'. | |
1218 | |
1219 * vc.el (vc-backend-admin): Removed and replaced in the | |
1220 vc-backend.el files. | |
1221 | |
1222 * vc.el (Martin): Removed all the annotate functionality since it | |
1223 is CVS backend specific. | |
1224 | |
1225 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1226 | |
1227 * spec.txt: Added specification of vc-state. | |
1228 | |
1229 * vc-sccs-hooks.el (vc-sccs-master-properties): | |
1230 Removed handling of vc-latest-version and | |
1231 vc-your-latest-version. What used to be vc-latest-version, is now | |
1232 returned as vc-workfile-version. | |
1233 (vc-sccs-workfile-version): Adapted. | |
1234 | |
1235 2000-09-04 Dave Love <fx@gnu.org> | |
1236 | |
1237 * vc.el: [Merged from mainline.] | |
1238 (vc-dired-mode): Make the dired-move-to-filename-regexp | |
1239 regexp match the date, to avoid treating date as file size. | |
1240 Add YYYY S option to WESTERN/ | |
1241 | |
1242 2000-09-04 Dave Love <fx@gnu.org> | |
1243 | |
1244 * vc.el: Require `compile' when compiling. | |
1245 (vc-logentry-check-hook): New option. | |
1246 (vc-steal-lock): Use compose-mail. | |
1247 (vc-dired-mode-map): Defvar when compiling. | |
1248 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to | |
1249 vc-sccs.el and renamed. Callers changed. | |
1250 (vc-backend-checkout, vc-backend-logentry-check) | |
1251 (vc-backend-merge-news): Doc fix. | |
1252 (vc-default-logentry-check): New function. | |
1253 (vc-backend-checkin, vc-backend-revert, vc-backend-steal) | |
1254 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name) | |
1255 (vc-backend-merge): Doc fix. Use backend functions. | |
1256 (vc-check-headers): Use backend functions. | |
1257 | |
1258 * vc-cvs.el: Require vc when compiling. | |
1259 (vc-cvs-register-switches): Doc fix. | |
1260 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type. | |
1261 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge) | |
1262 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin): | |
1263 New functions (code from vc.el). | |
1264 (vc-annotate-display-default): Fix interactive spec. | |
1265 (vc-annotate-time-span): Doc fix. | |
1266 | |
1267 * vc-rcs.el: Require vc when compiling. | |
1268 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge) | |
1269 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert) | |
1270 (vc-rcs-checkin): New functions (code from vc.el). | |
1271 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout): | |
1272 Doc fix. | |
1273 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release). | |
1274 | |
1275 * vc-sccs.el: Require vc when compiling. | |
1276 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge) | |
1277 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck) | |
1278 (vc-sccs-revert) | |
1279 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code | |
1280 from vc.el). | |
1281 (vc-sccs-add-triple, vc-sccs-record-rename) | |
1282 (vc-sccs-lookup-triple): Moved from vc.el and renamed. | |
1283 (vc-sccs-admin): Doc fix. | |
1284 | |
1285 2000-09-04 Martin Lorentzson <martinl@gnu.org> | |
1286 | |
1287 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part) | |
1288 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release) | |
1289 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions | |
1290 from vc.el. | |
1291 | |
1292 * vc-sccs.el (vc-admin-sccs): Added from vc.el | |
1293 | |
1294 * vc-cvs.el: Moved the annotate functionality from vc.el. | |
1295 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el. | |
1296 | |
1297 2000-09-04 Dave Love <fx@gnu.org> | |
1298 | |
1299 * vc.el (vc-backend-release): Call vc-system-release. | |
1300 | |
1301 * vc-sccs.el (vc-sccs-system-release): | |
1302 Renamed from vc-sccs-backend-release. | |
1303 | |
1304 * vc-rcs.el (vc-rcs-system-release): | |
1305 Renamed from vc-rcs-backend-release. | |
1306 | |
1307 * vc-cvs.el (vc-cvs-system-release): | |
1308 Renamed from vc-cvs-backend-release. | |
1309 | |
1310 2000-09-04 Dave Love <fx@gnu.org> | |
1311 | |
1312 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to | |
1313 backend files. | |
1314 (vc-backend-release): Dispatch to backend functions. | |
1315 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case | |
1316 probably needs attention.] | |
1317 | |
1318 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el. | |
1319 (vc-sccs-backend-release): New function. | |
1320 | |
1321 * vc-cvs.el (vc-cvs-release): Moved from vc.el. | |
1322 (vc-cvs-backend-release): New function. | |
1323 | |
1324 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge): | |
1325 Doc fix. | |
1326 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed. | |
1327 (vc-default-dired-state-info): New function. | |
1328 (vc-dired-state-info): Dispatch to backends. | |
1329 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics. | |
1330 | |
1331 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved | |
1332 from vc.el and renamed. | |
1333 | |
1334 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1335 | |
1336 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p) | |
1337 (vc-version-other-window, vc-backend-assign-name): Removed | |
1338 references to vc-latest-version; sometimes changed into | |
1339 vc-workfile-version. | |
1340 | |
1341 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to | |
1342 vc-rcs-master-workfile-version. | |
1343 (vc-rcs-workfile-version): Use the above. Don't call | |
1344 vc-latest-version (that was unreachable code, anyway). | |
1345 (vc-rcs-fetch-master-properties): Doc fix. | |
1346 | |
1347 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed. | |
1348 (vc-backend-hook-functions): Removed them from this list, too. | |
1349 (vc-fetch-properties): Removed. | |
1350 (vc-workfile-version): Doc fix. | |
1351 | |
1352 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function. | |
1353 (vc-rcs-workfile-version, vc-rcs-locking-user) | |
1354 (vc-rcs-uses-locking): Use it. | |
1355 | |
1356 * vc-hooks.el (vc-consult-rcs-headers): | |
1357 Moved into vc-rcs-hooks.el, under the name | |
1358 vc-rcs-consult-headers. | |
1359 | |
1360 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS | |
1361 headers. | |
1362 (vc-cvs-find-master): Use this name only; correct different | |
1363 versions of the name. | |
1364 | |
1365 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user): | |
1366 New functions. | |
1367 (vc-sccs-locking-user): Use the latter. | |
1368 | |
1369 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user): | |
1370 New functions. | |
1371 | |
1372 * vc-hooks.el (vc-master-locks, vc-master-locking-user): | |
1373 Moved into both | |
1374 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access | |
1375 functions are implementation details of those two backends. | |
1376 | |
1377 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1378 | |
1379 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties) | |
1380 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks. | |
1381 | |
1382 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties) | |
1383 (vc-sccs-parse-locks): SCCS-specific code moved here from | |
1384 vc-hooks. | |
1385 | |
1386 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific | |
1387 code moved here from vc-hooks. | |
1388 | |
1389 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split | |
1390 into back-end specific parts and removed. Callers not updated | |
1391 yet; because I guess these callers will disappear into back-end | |
1392 specific files anyway. | |
1393 | |
1394 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1395 | |
1396 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge) | |
1397 (vc-backend-checkout): Changed calls to `vc-checkout-model' to | |
1398 `vc-uses-locking'. | |
1399 | |
1400 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking. | |
1401 Store yes/no in the property, and return t/nil. Updated all | |
1402 callers. | |
1403 | |
1404 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to | |
1405 vc-sccs-uses-locking. Don't set property. | |
1406 (vc-sccs-locking-user): Don't set property. | |
1407 | |
1408 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to | |
1409 vc-cvs-uses-locking. Don't set property here; leave that to | |
1410 vc-hooks. | |
1411 (vc-cvs-locking-user): Reflect above change. Streamlined. | |
1412 | |
1413 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to | |
1414 vc-rcs-uses-locking. | |
1415 (vc-rcs-locking-user): Reflect above change. | |
1416 | |
1417 2000-09-04 Dave Love <fx@gnu.org> | |
1418 | |
1419 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function. | |
1420 | |
1421 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function. | |
1422 | |
1423 * vc-hooks.el (vc-checkout-model): Punt to backends. | |
1424 | |
1425 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function. | |
1426 | |
1427 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status. | |
1428 | |
1429 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user): | |
1430 New functions. | |
1431 | |
1432 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user): | |
1433 New functions. | |
1434 | |
1435 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix. | |
1436 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions. | |
1437 | |
1438 * vc-hooks.el (vc-default-locking-user): New function. | |
1439 (vc-locking-user, vc-workfile-version): Punt to backends. | |
1440 | |
1441 2000-09-04 Dave Love <fx@gnu.org> | |
1442 | |
1443 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff) | |
1444 (vc-master-workfile-version): Moved from vc-hooks. | |
1445 | |
1446 * vc-rcs-hooks.el: Fix duplicate code in last change. | |
1447 | |
1448 * vc-rcs-hooks.el: Require vc-hooks when compiling. | |
1449 (vc-rcs-master-templates): Improve :type. | |
1450 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff, | |
1451 vc-master-workfile-version): Moved from vc-hooks. | |
1452 | |
1453 * vc-sccs-hooks.el: Require vc-hooks when compiling. | |
1454 (vc-sccs-master-templates): Improve :type. | |
1455 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file. | |
1456 | |
1457 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed. | |
1458 | |
1459 * vc-cvs-hooks.el: Require vc-hooks when compiling. | |
1460 (vc-cvs-master-templates): Improve :type. Use | |
1461 vc-cvs-find-cvs-master. | |
1462 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here | |
1463 from vc-hooks. | |
1464 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master. | |
1465 | |
1466 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): | |
1467 Moved to vc-cvs-hooks. | |
1468 | |
1469 * vc-hooks.el: Add doc strings in various places. Simplify the | |
1470 minor mode setup. | |
1471 (vc-handled-backends): New user variable. | |
1472 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor | |
1473 simplification. | |
1474 | |
1475 2000-09-04 Dave Love <fx@gnu.org> | |
1476 | |
1477 * vc.el: Some doc fixes for autoloaded and interactive functions. | |
1478 Fix compilation warnings from ediff stuff. | |
1479 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix. | |
1480 | |
1481 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version. | |
1482 | |
1483 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version. | |
1484 | |
1485 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version. | |
1486 | |
1487 2000-09-04 Dave Love <fx@gnu.org> | |
1488 | |
1489 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions): | |
1490 New variable. | |
1491 (vc-make-backend-function, vc-loadup, vc-call-backend) | |
1492 (vc-backend-defines): New functions. | |
1493 | |
1494 * vc-hooks.el: Various doc fixes. | |
1495 (vc-default-back-end, vc-follow-symlinks): Custom fix. | |
1496 (vc-match-substring): Function removed. Callers changed to use | |
1497 match-string. | |
1498 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook): | |
1499 Simplify. | |
1500 | |
1501 2000-09-04 Dave Love <fx@gnu.org> | |
1502 | |
1503 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom | |
1504 type. | |
1505 (vc-sccs-project-dir, vc-search-sccs-project-dir) | |
1506 (vc-sccs-registered): Doc fix. | |
1507 | |
1508 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type. | |
1509 (vc-cvs-registered): Doc fix. | |
1510 | |
1511 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type. | |
1512 (vc-rcs-registered): Doc fix. | |
1513 | |
1514 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1515 | |
1516 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file. | |
1517 | |
1518 * vc-hooks.el: vc-registered has been renamed | |
1519 vc-default-registered. Some functions have been moved to the | |
1520 backend specific files. they all support the | |
1521 vc-BACKEND-registered functions. | |
1522 | |
1523 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
1524 | |
1525 * vc-hooks.el: This is 1.113 from the emacs sources | |
1526 | |
1527 * vc.el: This is 1.244 from the emacs sources | |
1528 | |
31363 | 1529 2000-09-04 Dave Love <fx@gnu.org> |
1530 | |
31391 | 1531 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run |
1532 menu-bar-update-hook. | |
1533 | |
1534 * help.el (help-manyarg-func-alist): Add | |
1535 find-operation-coding-system. | |
1536 | |
31363 | 1537 * wid-edit.el (widget-sexp-validate): Fix garbled code. |
1538 | |
1539 * custom.el (custom-set-variables): Print message about errors in | |
1540 setting. | |
1541 | |
31359 | 1542 2000-09-03 Andrew Innes <andrewi@gnu.org> |
1543 | |
1544 * makefile.w32-in: Change to DOS line endings. | |
1545 | |
31330 | 1546 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il> |
1547 | |
1548 * mouse.el (mouse-popup-menubar): Supply the prompt string for | |
1549 minor-mode keymaps, if they don't have one. | |
1550 | |
31328 | 1551 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il> |
1552 | |
1553 * eshell/esh-module.el (eval-when-compile): Don't lose if | |
1554 esh-module.el's file name is truncated to DOS 8+3 limits. | |
1555 | |
31326 | 1556 2000-09-01 John Wiegley <johnw@gnu.org> |
1557 | |
1558 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing | |
1559 predicate, which caused entries in the completion list to be | |
1560 doubled. | |
1561 | |
1562 2000-08-30 John Wiegley <johnw@gnu.org> | |
1563 | |
1564 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct | |
1565 sending to subprocesses. Also, hook pre-command-hook if | |
1566 `eshell-send-direct-to-subprocesses' is non-nil. | |
1567 (eshell-send-direct-to-subprocesses): New config variable. If t, | |
1568 subprocess input is send immediately. | |
1569 (eshell-toggle-direct-send): New function. | |
1570 (eshell-self-insert-command): New function. | |
1571 (eshell-intercept-commands): New function. | |
1572 (eshell-send-input): If direct subprocess sending is enabled, | |
1573 don't echo any input to the Eshell buffer. Let the subprocess | |
1574 handle that. This requires "stty echo" in bash, for example. | |
1575 | |
1576 2000-08-28 John Wiegley <johnw@gnu.org> | |
1577 | |
1578 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added | |
1579 completion function for Eshell's implementation of `unset'. | |
1580 | |
31325 | 1581 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il> |
1582 | |
1583 * info.el (Info-directory-list): Doc fix. | |
1584 | |
31314
16b334e9c404
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31305
diff
changeset
|
1585 2000-08-31 Peter Breton <pbreton@ne.mediaone.net> |
16b334e9c404
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31305
diff
changeset
|
1586 |
16b334e9c404
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31305
diff
changeset
|
1587 * filecache.el (file-cache-add-directory-using-find): Don't quote |
16b334e9c404
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31305
diff
changeset
|
1588 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>. |
16b334e9c404
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31305
diff
changeset
|
1589 |
31305 | 1590 2000-08-31 Kenichi Handa <handa@etl.go.jp> |
1591 | |
1592 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect | |
1593 coding systems. | |
1594 | |
31291 | 1595 2000-08-30 Andrew Innes <andrewi@gnu.org> |
1596 | |
1597 * timer.el (run-with-idle-timer): Undo last change, so that timer | |
1598 is not activated immediately if Emacs is already idle. Some | |
1599 existing code relies on this behaviour. | |
1600 | |
31289 | 1601 2000-08-30 Miles Bader <miles@gnu.org> |
1602 | |
1603 * frame.el (set-frame-font): Do completion of font-name for | |
1604 interactive use. | |
1605 | |
31283 | 1606 2000-08-30 Kenichi Handa <handa@etl.go.jp> |
1607 | |
1608 * international/quail.el (quail-start-translation): Bind locally | |
1609 last-command-event, last-command, and this-command. | |
1610 (quail-start-conversion): Likewise. | |
31285 | 1611 (quail-self-insert-command): Fix docstring. |
31283 | 1612 |
31282 | 1613 2000-08-29 Gerd Moellmann <gerd@gnu.org> |
1614 | |
1615 * progmodes/executable.el | |
1616 (executable-make-buffer-file-executable-if-script-p): Check that | |
1617 buffer contains at least 2 characters. | |
1618 | |
31276 | 1619 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il> |
1620 | |
1621 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix. | |
1622 | |
31264 | 1623 2000-08-29 Dave Love <fx@gnu.org> |
1624 | |
31270 | 1625 * diff-mode.el (diff-mode) <defgroup>: Add :version. |
1626 (diff-mode-shared-map): Bind mouse-2. | |
1627 (diff-imenu-generic-expression): New variable. | |
1628 (diff-mode): Use it. | |
1629 | |
31264 | 1630 * mouse.el (mouse-major-mode-menu): Use local-key-binding. |
1631 (mouse-popup-menubar): Add minor mode menus. | |
1632 (popup-menu): Check for lookup-key returning number. | |
1633 | |
31263 | 1634 2000-08-29 Miles Bader <miles@gnu.org> |
1635 | |
1636 * comint.el (comint-send-input): Create overlays using the proper | |
1637 front/read-advance arguments. | |
1638 | |
31254 | 1639 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
1640 | |
1641 * ps-print.el: Even/odd pages printing. Doc fix. | |
1642 (ps-print-version): New version number (6.0). | |
1643 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image) | |
1644 (ps-background, ps-begin-file, ps-begin-job): Code fix. | |
1645 (ps-print-duplex-feature): Variable eliminated. | |
1646 (ps-even-or-odd-pages): New variable. | |
1647 | |
31265
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
1648 * progmodes/ebnf2ps.el: Doc fix. |
31256 | 1649 (ebnf-version): New version (3.3). |
1650 (ebnf-user-arrow): Change variable customization to sexp. | |
1651 (ebnf-user-arrow): Function eliminated. | |
1652 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix. | |
1653 | |
31242 | 1654 2000-08-29 Kenichi Handa <handa@etl.go.jp> |
1655 | |
31244 | 1656 * help.el (help-xref-mule-regexp): New variable. |
31242 | 1657 (help-make-xrefs): Handle help-xref-mule-regexp. |
1658 | |
1659 * international/mule-cmds.el (help-xref-mule-regexp-template): New | |
1660 variable. | |
1661 (describe-input-method): Temporarily activate the specfied input | |
1662 method to display the information. | |
1663 (describe-language-environment): Hyperlinks to mule related items. | |
1664 | |
1665 * international/mule-diag.el (charset-multibyte-form-string): New | |
1666 function. | |
1667 (list-character-sets-1): Use charset-multibyte-form-string. | |
1668 (describe-character-set): New function. | |
1669 (describe-coding-system): Hyperlinks to safe character sets. | |
1670 | |
1671 * international/quail.el (quail-help): New arg PACKAGE. | |
1672 Hyperlinks to mule related items. | |
1673 (quail-help-insert-keymap-description): Use | |
1674 substitute-command-keys instead of describe-bindings. | |
1675 (quail-translation-help): Hyperlinks to mule related items. | |
1676 | |
31240 | 1677 2000-08-28 John Wiegley <johnw@gnu.org> |
1678 | |
31241 | 1679 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to |
1680 have a defsubst call itself. Made `eshell-flatten-list' back into | |
1681 a function again. | |
1682 | |
31240 | 1683 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety |
1684 catch, in case re-centering point at bottom messes up the display. | |
1685 This happens frequently in Emacs 21, due I believe to variable | |
1686 line heights. | |
1687 | |
1688 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order | |
1689 to call `find-tag-interactive'. | |
1690 | |
1691 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display | |
1692 the list of remember directories. | |
1693 | |
31239 | 1694 2000-08-28 John Wiegley <johnw@gnu.org> |
1695 | |
1696 * align.el: Test align-region-separate to see if it's a symbol. | |
1697 | |
31323
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1698 2000-08-28 John Wiegley <johnw@gnu.org> |
31239 | 1699 |
1700 * eshell/esh-util.el (eshell-flatten-list): Made this function | |
1701 into a defsubst form. It gets used very frequently, although | |
1702 calls don't occur all that often. | |
1703 | |
1704 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before | |
1705 examining it. | |
1706 | |
1707 * eshell/esh-cmd.el (eshell-rewrite-while-command): | |
1708 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of | |
1709 `eshell-protect'. | |
1710 (eshell-copy-handles): Created a new macro for duplicating the | |
1711 current set of open handles. This is needed by the looping | |
1712 functions. | |
1713 (eshell-do-eval): Fixed while and if, so that the eshell-test-body | |
1714 is not incorrectly stomped on. | |
1715 | |
1716 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror | |
1717 declaration for pcomplete-use-paring. | |
1718 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the | |
1719 value of eshell-cmpl-use-paring. | |
1720 * pcomplete.el (pcomplete-use-paring): New config variable, to | |
1721 indicate whether paring should be used. | |
1722 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out | |
1723 completion alternatives that have already been used. | |
1724 | |
1725 * eshell/esh-mode.el (eshell-repeat-argument): Added function, | |
1726 bound to C-c C-y, which will repeat the previous N arguments | |
1727 (based on prefix argument). | |
1728 (eshell-mode): Bind C-c C-y to eshell-repeat-argument. | |
1729 | |
1730 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer | |
1731 if there is no *Help* buffer. This is for XEmacs, which renames | |
1732 its help buffers uniquely. TODO: Find out what the current buffer | |
1733 name to delete is. | |
1734 | |
1735 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the | |
1736 first entry that correlates to a passwd/group number. Later | |
1737 entries (used for group/user name aliasing to multiple IDs) are | |
1738 ignored. | |
1739 | |
1740 * eshell/em-xtra.el (eshell/expr): | |
1741 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make) | |
1742 (eshell-grep, eshell/diff, eshell/locate): | |
1743 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the | |
1744 argument list, before passing it to the system command. | |
1745 | |
1746 * eshell/esh-mode.el (eshell-find-tag): Added a special version of | |
1747 `find-tag' for use at final position in Eshell buffers (which | |
1748 otherwise triggers an error on Emacs 21). | |
1749 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell | |
1750 buffer, if it is currently bound to `find-tag'. | |
1751 | |
1752 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile | |
1753 in the list of matched Makefile names. | |
1754 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current | |
1755 directory, prefer its contents to Makefile. | |
1756 | |
1757 * eshell/em-dirs.el (eshell/cd): cd commands that look up | |
1758 directory parts (like "cd old new", or "cd =regexp"), are now case | |
1759 sensitive on non-Windows/DOS platforms. | |
1760 | |
1761 * eshell/esh-mode.el (eshell-parse-command-input): When a user | |
1762 types RET after an open delimiter (like "), display a message | |
1763 indicating that Eshell is waiting for the closing delimiter. | |
1764 | |
1765 * eshell/esh-var.el (eshell/unset): Added a command for unsetting | |
1766 environment variables. | |
1767 | |
1768 * eshell/em-unix.el (eshell/diff): Added logic to fail more | |
1769 gracefully if the user enters incorrect arguments. | |
1770 | |
1771 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in | |
1772 Eshell buffers. | |
1773 | |
1774 * eshell/esh-var.el (eshell-interpolate-variable): | |
1775 * eshell/esh-mode.el (eshell-move-argument): | |
1776 * eshell/em-unix.el (eshell-du-sum-directory): | |
1777 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof): | |
1778 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of | |
1779 (not (= ...)). | |
1780 | |
1781 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply', | |
1782 to ensure the `preserve' flag gets propagated when doing recursive | |
1783 directory copies. | |
1784 | |
31323
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1785 2000-08-28 Stefan Monnier <monnier@cs.yale.edu> |
31239 | 1786 |
1787 * eshell/em-hist.el (eshell-put-history, eshell-get-history): | |
1788 Don't convert \n into \0177 in memory. | |
1789 (eshell-read-history, eshell-write-history): Convert \n to \0177, | |
1790 and back again, when reading and writing. | |
1791 | |
31323
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1792 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il> |
31239 | 1793 |
1794 * eshell/esh-util.el (eshell-processp): Added to relieve constant | |
1795 testing of `fboundp' on `processp'. | |
1796 | |
1797 * eshell/esh-proc.el (eshell/kill): Use eshell-processp. | |
1798 (eshell/jobs): Don't call process-list if it is not bound. | |
1799 (eshell-gather-process-output): Support systems where async | |
1800 subprocesses aren't supported. | |
1801 (eshell-scratch-buffer, eshell-last-sync-output-start): New | |
1802 variables. | |
1803 | |
1804 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when | |
1805 eshell-do-eval returns t. | |
1806 (eshell-do-pipelines-synchronously): New defmacro. | |
1807 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines | |
1808 when async subprocesses aren't supported. | |
1809 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer | |
1810 if async subprocesses aren't supported. | |
1811 (eshell-resume-command): Don't assume STATUS is a string. | |
1812 | |
1813 * eshell/em-unix.el (eshell/rm): Use eshell-processp. | |
1814 | |
1815 * eshell/esh-io.el (eshell-virtual-targets): Doc fix. | |
1816 (eshell-close-target, eshell-get-target): Use eshell-processp. | |
1817 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc | |
1818 fix. | |
1819 (eshell-get-target, eshell-create-handles): Doc fix. | |
1820 | |
31323
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1821 2000-08-28 Miles Bader <miles@lsi.nec.co.jp> |
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1822 |
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1823 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the |
31239 | 1824 criterion to include commands that output something, as long as it |
1825 leaves both the command and the end-of-buffer visible when the | |
1826 command has exited. | |
1827 (eshell-review-quick-commands): Adjust the help doc string | |
1828 accordingly. | |
1829 | |
31236
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1830 2000-08-28 Peter Breton <pbreton@ne.mediaone.net> |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1831 |
31238
d9e6c7b507bd
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31236
diff
changeset
|
1832 * locate.el (locate): Cleaned up locate command's interactive prompting |
31242 | 1833 Thanks to Fran,Ag(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions. |
31238
d9e6c7b507bd
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31236
diff
changeset
|
1834 |
31236
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1835 * filecache.el (file-cache-case-fold-search): New variable |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1836 (file-cache-assoc-function): New variable |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1837 (file-cache-minibuffer-complete): Use file-cache-assoc-function. |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1838 Use file-cache-case-fold-search variable |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1839 (file-cache-add-file): Use file-cache-assoc-function |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1840 (file-cache-delete-file): likewise |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1841 (file-cache-directory-name): likewise |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1842 (file-cache-debug-read-from-minibuffer): likewise |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
1843 |
31231 | 1844 2000-08-28 Gerd Moellmann <gerd@gnu.org> |
1845 | |
1846 * abbrev.el (list-abbrevs): Add optional parameter LOCAL. | |
1847 (abbrev-table-name): New function. | |
1848 (prepare-abbrev-list-buffer): Add optional parameter LOCAL. | |
1849 If non-nil list local abbrev, only. | |
1850 | |
31229 | 1851 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu> |
1852 | |
31323
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1853 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*" |
1010a301ea56
Fix dates on eshell entries. Prepend mail/ to uce.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31314
diff
changeset
|
1854 from Gnus support code, and use special article copy buffer |
31229 | 1855 `(gnus-original-article-buffer)' instead. This allows to get rid |
1856 of article-hide-headers usage (which breaks in the latest Gnus | |
1857 version). Thanks to Detlev Zundel. | |
1858 | |
31216 | 1859 2000-08-28 Kenichi Handa <handa@etl.go.jp> |
1860 | |
1861 * international/quail.el (quail-use-package): Hide "... loaded" | |
1862 message. | |
1863 (quail-start-translation, quail-start-conversion): Likewise. | |
1864 | |
1865 * international/kkc.el (kkc-region): Hide "... loaded" message. | |
1866 | |
31212 | 1867 2000-08-27 Dave Love <fx@gnu.org> |
1868 | |
1869 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg. | |
1870 | |
31198 | 1871 2000-08-27 Miles Bader <miles@gnu.org> |
1872 | |
1873 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts. | |
1874 | |
31195 | 1875 2000-08-27 Kenichi Handa <handa@etl.go.jp> |
1876 | |
1877 * international/ja-dic-cnv.el (skkdic-convert): Insert (require | |
1878 'ja-dic-cnv), not (require 'skkdic-cnv). | |
1879 | |
31180 | 1880 2000-08-26 Miles Bader <miles@gnu.org> |
1881 | |
31194 | 1882 * faces.el (face-x-resources): Add entry for :inherit. |
1883 * cus-face.el (custom-face-attributes): Add support for :inherit | |
1884 attribute. Add support for relative face heights. | |
1885 (custom-face-attributes-get): Treat `nil' as being a default value | |
1886 for :inherit (as well as `unspecified'). | |
1887 | |
31191 | 1888 * faces.el (set-face-attribute): Update doc string. |
1889 (face-attribute-name-alist): Add :inherit. | |
1890 (face-valid-attribute-values): Handle :inherit. | |
1891 (face-read-string): Rephrase prompt to be less confusing. | |
1892 Assume that DEFAULT is a string, since we must return a string. | |
1893 (face-read-integer): Use `format' to turn DEFAULT into an | |
1894 acceptable default for face-read-string. Match NEW-VALUE against | |
1895 the string "unspecified", not the symbol `unspecified', since | |
1896 that's what face-read-string returns. | |
1897 (read-face-attribute): Lookup a name for old-value in valid, and | |
1898 use it as a default if we find one. Treat all values from | |
1899 face-read-string as strings. If the default is used, don't do any | |
1900 more processing on the value, just use the old value directly. | |
1901 (read-face-and-attribute, modify-face): Tweak prompt. | |
1902 (read-face-name): Don't assume prompt ends with a space. | |
1903 | |
31180 | 1904 * faces.el (describe-face): Add support for :inherit attribute. |
1905 | |
31166 | 1906 2000-08-25 Kenichi Handa <handa@etl.go.jp> |
1907 | |
31167 | 1908 * terminal.el (terminal-emulator): Fix args to `concat'. Now |
1909 concat doesn't accept interger. | |
1910 | |
31166 | 1911 * international/kkc.el: Remove SKK from Keywords. Require |
1912 ja-dic-utl instead of skkdic-utl. | |
1913 | |
1914 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el. | |
1915 Provide ja-dic-cnv instead of skkdic-cnv. | |
1916 (ja-dic-filename): Renamed from skkdic-filename. Referers changed | |
1917 (iso-2022-7bit-short): Add safe-charsets property. | |
1918 (skkdic-convert-postfix): Search Japanese chou-on character in | |
1919 addition to Hiragana character. | |
1920 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise. | |
1921 (skkdic-convert): Change file names from skkdic.el to ja-dic.el | |
1922 (batch-skkdic-convert): Likewise. | |
1923 | |
1924 * international/ja-dic-utl.el: Renamed from skkdic-utl.el. | |
1925 Provide ja-dic-utl instead of skkdic-utl. | |
1926 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic. | |
1927 | |
31156 | 1928 2000-08-24 Dave Love <fx@gnu.org> |
1929 | |
31158 | 1930 * disp-table.el (standard-display-default): Make the test of `l' |
1931 useful. | |
1932 | |
31156 | 1933 * language/european.el ("Latin-8", "Latin-9"): Add input methods, |
1934 mod sample text. | |
1935 | |
1936 * international/iso-ascii.el: Make pilcrow convenient string | |
1937 consistent with section. | |
1938 (iso-ascii-display): Set up multibyte characters as well as | |
1939 unibyte. | |
1940 | |
31137 | 1941 2000-08-24 Kenichi Handa <handa@etl.go.jp> |
1942 | |
1943 * international/mule-cmds.el (reset-language-environment): Set | |
1944 default-process-coding-system to '(undecided . iso-latin-1), which | |
1945 makes process I/O almost consistent with file I/O. Call this | |
1946 function when mule-cmds.el[c] is loaded. | |
1947 | |
31092 | 1948 2000-08-22 Andrew Innes <andrewi@gnu.org> |
1949 | |
1950 * makefile.w32-in: New file. | |
1951 | |
31038 | 1952 2000-08-22 Miles Bader <miles@lsi.nec.co.jp> |
1953 | |
1954 * comint.el (comint-output-filter): Compare end of | |
1955 comint-last-output-overlay with the start of the newly inserted | |
1956 text, not the end, when deciding whether to extend it. | |
1957 Set saved-point's insertion type to advance after insertion. | |
1958 | |
1959 * shell.el (shell-font-lock-keywords): Remove prompt highlighting, | |
1960 since this is now done independently of font-lock mode. | |
1961 | |
31009 | 1962 2000-08-21 Gerd Moellmann <gerd@gnu.org> |
1963 | |
1964 * server.el (server-kill-new-buffers): New user option. | |
1965 (server-existing-buffer): New buffer-local variable. | |
1966 (server-visit-files): When using an existing buffer, set | |
1967 server-existing-buffer to t. | |
1968 (server-buffer-done): If server-kill-new-buffers is t, kill the | |
1969 buffer, unless it was already present before visiting it with | |
1970 Emacs server. | |
1971 | |
31006 | 1972 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il> |
1973 | |
1974 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag, | |
1975 even if the display doesn't support colors: some displays will | |
1976 support bold/underline faces. | |
1977 | |
30997 | 1978 2000-08-21 Gerd Moellmann <gerd@gnu.org> |
1979 | |
31004 | 1980 * emacs-lisp/cl.el (cl-macroexpand): Doc fix. |
1981 | |
30997 | 1982 * startup.el (command-line): If user's init file had an error, |
1983 add explanatory text to *Messages*. | |
1984 | |
30994 | 1985 2000-08-21 Kenichi Handa <handa@etl.go.jp> |
1986 | |
1987 * man.el (Man-getpage-in-background): Decode the process output by | |
1988 the system locale coding system. | |
1989 | |
30980 | 1990 2000-08-20 Dave Love <fx@gnu.org> |
1991 | |
30991 | 1992 * wid-edit.el (widget-choose, widget-choice-mouse-down-action): |
1993 Don't test x-popup-menu. | |
1994 (function) <complete-function>: Complete only fbound symbols. | |
1995 <validate, value>: New. | |
1996 (variable) <complete-function>: Complete only bound symbols. | |
1997 (coding-system): Add :base-only, :complete-function, :validate, | |
1998 :value, :prompt-match. | |
1999 (widget-coding-system-prompt-value): Use read-coding-system and | |
2000 act on :base-only. | |
2001 (editable-field): Add :help-echo. | |
2002 (widget-push-button-gui, widget-push-button-cache) | |
2003 (widget-gui-action, widget-editable-list-gui): COmment out, along | |
2004 with uses. | |
2005 (widget-at): Make arg optional. | |
2006 (widget-echo-help): Adjust for current help-echo calling sequence. | |
2007 (widget-specify-field, widget-specify-button) | |
2008 (widget-specify-insert, widget-get-sibling, widget-image-find) | |
2009 (widget-convert, widget-insert, widget-leave-text) | |
2010 (widget-beginning-of-line, widget-end-of-line, widget-kill-line) | |
2011 (widget-setup, widget-field-find, widget-before-change) | |
2012 (widget-after-change, widget-default-complete) | |
2013 (widget-default-create, widget-default-delete) | |
2014 (widget-push-button-value-create, editable-field) | |
2015 (widget-field-prompt-value, widget-field-validate) | |
2016 (widget-choice-value-create, widget-choice-action) | |
2017 (widget-choice-validate, widget-checklist-add-item) | |
2018 (widget-radio-add-item, widget-radio-chosen) | |
2019 (widget-radio-value-inline, widget-editable-list-value-create) | |
2020 (widget-editable-list-entry-create) | |
2021 (widget-documentation-link-add) | |
2022 (widget-documentation-string-value-create) | |
2023 (widget-regexp-validate, widget-file-complete) | |
2024 (widget-sexp-validate, widget-plist-convert-widget) | |
2025 (widget-plist-convert-widget, widget-alist-convert-widget) | |
2026 (widget-alist-convert-widget, widget-color-complete): Simplify, | |
2027 particularly to avoid bindings which aren't optimized out. | |
2028 | |
30980 | 2029 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces): |
2030 Doc fix. | |
2031 (down-list, backward-up-list, up-list, kill-sexp) | |
2032 (backward-kill-sexp, mark-sexp): Make arg optional. | |
2033 (lisp-complete-symbol): Add optional arg PREDICATE. | |
2034 | |
2035 * cus-start.el: Add display-buffer-reuse-frames, | |
2036 file-coding-system-alist. | |
2037 | |
30975 | 2038 2000-08-20 Gerd Moellmann <gerd@gnu.org> |
2039 | |
2040 * startup.el (command-line): Clear realized faces after | |
2041 modifying TTY color mappings. | |
2042 | |
30972 | 2043 2000-08-20 Miles Bader <miles@gnu.org> |
2044 | |
2045 * faces.el (face-attr-match-p): Don't return true if ATTRS are | |
2046 merely a subset of FACE's attributes. | |
2047 | |
30966 | 2048 2000-08-19 Miles Bader <miles@gnu.org> |
2049 | |
2050 * comint.el (comint-output-filter): Save the point with a marker, | |
2051 not just a buffer position. | |
2052 | |
2053 * international/mule.el (set-buffer-process-coding-system): Make | |
2054 interactive prompt less confusing. | |
2055 | |
30963 | 2056 2000-08-19 Gerd Moellmann <gerd@gnu.org> |
2057 | |
2058 * hilit-chg.el: General cleanup of doc strings, comments and | |
2059 code formatting. | |
2060 | |
30960 | 2061 2000-08-19 Miles Bader <miles@gnu.org> |
2062 | |
2063 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line): | |
2064 Compiler macro removed; beginning-of-line is no longer always | |
2065 equivalent to forward-line, in the presence of fields. | |
2066 | |
2067 * comint.el (comint-output-filter): Remove ad-hoc saving of | |
2068 restriction, and just use save-restriction, now that it works | |
2069 correctly. Don't adjust comint-last-input-start to account for | |
2070 our insertion; it shouldn't have moved because we don't use | |
2071 insert-before-markers anymore. Comment out call to | |
2072 `force-mode-line-update'; why is it here? | |
2073 | |
2074 * gud.el (gud-basic-call): Temporarily widen gud comint buffer | |
2075 while checking for prompt to delete. Use `forward-line 0' | |
2076 instead of beginning-of-line. | |
2077 (gud-filter): Temporarily widen gud comint buffer while | |
2078 examining output. | |
2079 | |
30955
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
2080 2000-08-18 Stefan Monnier <monnier@cs.yale.edu> |
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
2081 |
31018
c5196e8ccc16
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31009
diff
changeset
|
2082 * progmodes/sh-script.el: Big bag of typos. |
c5196e8ccc16
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31009
diff
changeset
|
2083 |
30955
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
2084 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp |
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
2085 check since ispell-process is not bound when ispell is not yet loaded. |
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
2086 |
30953 | 2087 2000-08-18 Dave Love <fx@gnu.org> |
2088 | |
2089 * image.el (find-image): Copy `spec' before using plist-put. | |
2090 | |
30948 | 2091 2000-08-18 Gerd Moellmann <gerd@gnu.org> |
2092 | |
2093 * textmodes/ispell.el (ispell-dictionary-alist-6): Add | |
2094 `portugues'. | |
2095 | |
2096 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to | |
2097 backward-kill-sexp, analogous to kill-sexp. | |
2098 | |
2099 * progmodes/icon.el (icon-indent-line) | |
2100 (icon-is-continuation-line): Handle comments specially. | |
2101 | |
2102 2000-08-17 Ken Stevens <k.stevens@ieee.org> | |
2103 | |
2104 * ispell.el: Set to standard author/maintainer/keyword fields. | |
2105 Fine tuning to menu map appearance and operation, and added help. | |
2106 Remove `start' and `end' error messages when compiling. | |
2107 (ispell-choices-win-default-height): Fixed comment string. | |
2108 (ispell-dictionary-alist-1): Fixed regexp in castellano and | |
2109 castellano8 dictionaries. | |
2110 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary. | |
2111 (ispell-dictionary-alist-4): Fixed regexp in francais-tex | |
2112 dictionary, added italiano dictionary. | |
2113 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a | |
2114 word character | |
2115 (ispell-tex-skip-alists): Added psfig support. | |
2116 (ispell-skip-html): Renamed from ispell-skip-sgml. | |
2117 (ispell-begin-skip-region-regexp, ispell-skip-region) | |
2118 (ispell-minor-check): Improved html skipping support to skip across | |
2119 code, and recognize `&' commands without propper `;' syntax; | |
2120 (ispell-process-line): Fix alignment error when manually | |
2121 correcting spelling. | |
2122 (ispell): Fix comment string. | |
2123 (ispell-add-per-file-word-list): Always put word list on new line. | |
2124 | |
30922 | 2125 2000-08-17 Gerd Moellmann <gerd@gnu.org> |
2126 | |
30928 | 2127 * format.el (format-encode-run-method): Fix error message to say |
2128 `encode' instead of `decode'. Use save-window-excursion around | |
2129 shell-command-on-region as in format-decode-run-method because | |
2130 shell-command-on-region can display a buffer with error output. | |
2131 (format-decode): Don't record undo information for the decoding. | |
2132 (format-annotate-function): Add parameter FORMAT-COUNT. Make | |
2133 that number part of the temporary buffer name so that more than | |
2134 one decoding using a temporary buffer can happen safely. | |
2135 | |
2136 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead | |
2137 of `A-z' in the regexp. | |
2138 | |
2139 * hilit-chg.el: Fix typos in commentary. | |
2140 | |
30922 | 2141 * help.el (view-emacs-news): Rewritten for new naming scheme |
2142 for old NEWS files. | |
2143 | |
2144 * startup.el (command-line): Pop to *Messages* in case an error | |
2145 is signaled while loading user-init-file. | |
2146 | |
30908
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
2147 2000-08-17 Andreas Schwab <schwab@suse.de> |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
2148 |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
2149 * files.el (insert-directory): Don't lose original file name, |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
2150 undoing an undocumented change. |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
2151 |
30906 | 2152 2000-08-17 Alex Schroeder <alex@gnu.org> |
2153 | |
2154 * sql.el (sql-magic-go): Use comint-bol. | |
2155 (sql-copy-column): Use comint-line-beginning-position. | |
2156 (comint-line-beginning-position): Define a replacement for | |
2157 comint-line-beginning-position if it is not fboundp. | |
2158 | |
2159 2000-08-17 Alex Schroeder <alex@gnu.org> | |
2160 | |
2161 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map; | |
2162 it didn't have any effect anyway. | |
2163 | |
2164 2000-08-17 Alex Schroeder <alex@gnu.org> | |
2165 | |
2166 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters | |
2167 --pset and pager=off instead of sending \\o|cat at the beginning | |
2168 of the session. | |
2169 | |
30903 | 2170 2000-08-17 Miles Bader <miles@gnu.org> |
2171 | |
2172 * progmodes/octave-inf.el: Add compatibility definition of | |
2173 comint-line-beginning-position. | |
2174 | |
30898 | 2175 2000-08-17 Kenichi Handa <handa@etl.go.jp> |
2176 | |
2177 * startup.el (normal-top-level): Look in each dir in load-path for | |
2178 a leim-list.el file too. This assures of loading leim-list.el | |
2179 that is created at Emacs installation time even if a user have his | |
2180 own leim-list.el. | |
2181 | |
30897 | 2182 2000-08-17 Miles Bader <miles@gnu.org> |
2183 | |
2184 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the | |
2185 foreground color to black if the background is dark. | |
2186 | |
30887
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2187 2000-08-16 Stefan Monnier <monnier@cs.yale.edu> |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2188 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2189 * loadhist.el (unload-feature): Typo. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2190 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2191 * finder.el (finder-compile-keywords): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2192 * cus-dep.el (custom-make-dependencies): Add local-variable settings |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2193 to the generated file. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2194 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2195 * mail/mh-e.el (mh-make-local-vars): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2196 Replace make-variable-buffer-local with make-local-variable. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2197 |
30955
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
2198 * play/landmark.el: |
30887
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2199 * options.el (Edit-options-{set,toggle,t,nil}): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2200 * mail/mailabbrev.el (mail-abbrevs-mode): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2201 * textmodes/tex-mode.el (tex-expand-files): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2202 * textmodes/outline.el (outline-minor-mode): Don't quote lambda. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2203 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2204 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2205 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2206 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point). |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2207 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2208 Allow going past the last element. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2209 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark) |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2210 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2211 (cvs-mouse-toggle-mark): Don't move point. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2212 (cvs-revert-if-needed): Avoid re-eval of local variables and modes. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2213 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2214 * progmodes/compile.el (grep): Provide a default set of files. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2215 (next-error): Docstring fix. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2216 (compilation-find-file): Avoid find-file (fails in a dedicated window). |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2217 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2218 * emacs-lisp/easy-mmode.el (define-minor-mode): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2219 Use `symbol-value' to keep the byte-compiler quiet. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2220 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2221 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2222 (diff-find-source-location): New fun, extracted from diff-goto-source. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2223 (diff-goto-source): Use it. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2224 (diff-next-complex-hunk, diff-filter-lines): New function. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2225 (diff-apply-hunk): New command. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2226 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2227 * smerge-mode.el (smerge-mode-menu): Doc fix. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2228 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2229 * msb.el (msb-mode): Define it in terms of define-minor-mode. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
2230 |
30870 | 2231 2000-08-16 Dave Love <fx@gnu.org> |
2232 | |
30894 | 2233 * windmove.el (windmove) <defgroup>: Add :version. |
2234 | |
2235 * net/goto-addr.el: Don't require browse-url. Require thingatpt. | |
2236 (goto-address-fontify-p, goto-address-highlight-p) | |
2237 (goto-address-url-face, goto-address-url-mouse-face) | |
2238 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix. | |
2239 (goto-address-url-regexp): Use thing-at-point-url-regexp. | |
2240 (goto-address-fontify, goto-address-at-mouse): Simplify, | |
2241 (goto-address-at-point): browse-url-url-at-point, | |
2242 goto-address-find-address-at-point can return nil. | |
2243 (goto-address-find-address-at-point): Return nil on failure. | |
2244 | |
2245 * align.el (align) <defgroup>: Add :version. | |
2246 | |
2247 * calculator.el (calculator): Add :version. | |
2248 (calculator): Use two lines for calculator window if `modeline' | |
2249 face is boxed. | |
2250 | |
30870 | 2251 * play/5x5.el: Doc fixes. |
2252 (5x5) <defgroup>: Add :version. | |
2253 | |
2254 * play/fortune.el (fortune) <defgroup>: Add :version. | |
2255 (fortune-append): Fix error message. | |
2256 (fortune-from-region): Doc fix. | |
2257 | |
2258 * play/pong.el (pong): Doc fix. | |
2259 | |
2260 * play/morse.el: Keywords, commentary, autoloads. | |
2261 | |
30854 | 2262 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il> |
2263 | |
2264 * desktop.el (desktop-save): Don't look at symbol-value of a | |
2265 member of minor-mode-alist, unless it is boundp. | |
2266 | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2267 2000-08-16 Sam Steingold <sds@gnu.org> |
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2268 |
30897 | 2269 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2270 `while'; use `with-current-buffer' instead of `save-excursion'. |
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2271 Removed unnecessary kludges now that "*Buffer List*" is excluded. |
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2272 |
30846 | 2273 2000-08-16 Kenichi Handa <handa@etl.go.jp> |
2274 | |
2275 * international/ccl.el (declare-ccl-program): Docstring modified. | |
2276 (ccl-execute-with-args): Likewise. | |
2277 | |
30839 | 2278 2000-08-16 Miles Bader <miles@gnu.org> |
2279 | |
30903 | 2280 * progmodes/sql.el: Add compatibility definition of |
30839 | 2281 comint-line-beginning-position. |
2282 | |
30808 | 2283 2000-08-15 Gerd Moellmann <gerd@gnu.org> |
2284 | |
30829 | 2285 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as |
2286 'buffer-menu' property. | |
2287 (Buffer-menu-buffer): Use `buffer' property if `buffer-name' | |
2288 fails. | |
2289 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name | |
2290 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer | |
2291 wasn't killed. | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2292 |
30825 | 2293 * buff-menu.el (list-buffers-noselect): Don't display the |
2294 *Buffer List* buffer. | |
2295 | |
30822 | 2296 * font-lock.el: Require jit-lock to prevent a very late |
2297 `Loading jit-lock' message. | |
2298 | |
30808 | 2299 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2300 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors' |
30808 | 2301 mail address. |
2302 | |
30804 | 2303 2000-08-15 Miles Bader <miles@gnu.org> |
2304 | |
2305 * textmodes/ispell.el (ispell-graphic-p): New constant. | |
2306 (ispell-choices-win-default-height, ispell-help): Use | |
2307 `ispell-graphic-p' instead of `xemacsp'. | |
2308 | |
30802 | 2309 2000-08-15 Dave Love <fx@gnu.org> |
2310 | |
30842 | 2311 * simple.el: Autoload widget-convert when compiling. |
2312 (mail-user-agent): Doc fix. | |
2313 | |
2314 * help.el (function-called-at-point, variable-at-point): Use | |
2315 with-syntax-table. | |
2316 (help-manyarg-func-alist): Add insert-and-inherit. | |
2317 | |
2318 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'. | |
2319 | |
2320 * delsel.el (delsel-unload-hook): New function. | |
2321 | |
2322 * find-file.el: Doc fixes. Move provide to end. | |
2323 (ff) <defgroup>: Add :link. | |
2324 (ff-goto-click): Deleted. | |
2325 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window): | |
2326 Use mouse-set-point. | |
2327 | |
2328 * textmodes/tildify.el: Doc fixes. | |
2329 (tildify) <defgroup>: Add:version. | |
2330 | |
2331 * progmodes/glasses.el (glasses) <defgroup>: Add :version. | |
2332 (glasses-custom-set): Use set-default, not set. | |
2333 (minor-mode-alist): Propertize the lighter. | |
2334 (glasses-mode): Provide optional arg. | |
2335 | |
30813 | 2336 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link. |
2337 (global-cwarn-mode): Don't make it a user option. Unquote lambda. | |
2338 (cwarn-font-lock-feature-keywords-alist): Don't make it a user | |
2339 option. Provide :type. | |
2340 (cwarn-configuration): Provide :type. | |
2341 (cwarn-mode): Doc fix. | |
2342 | |
2343 * add-log.el (change-log-merge): Doc fix. | |
2344 (change-log-redate): New command. | |
2345 | |
30802 | 2346 * net/browse-url.el (browse-url-filename-alist): Add a clause for |
2347 Doze and Dog. | |
2348 (browse-url): Use dolist, not mapcar. | |
2349 (browse-url-at-point): Check for null url. | |
2350 (browse-url-event-buffer, browse-url-event-point): Functions | |
2351 deleted. | |
2352 (browse-url-at-mouse, browse-url-netscape): Simplify. | |
2353 | |
2354 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus | |
2355 modes. | |
2356 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators): | |
2357 Fix previous change to mapcan. | |
2358 (msb--init-file-alist, msb--add-separators) | |
2359 (msb--make-keymap-menu): Simplify. | |
2360 (msb--choose-file-menu): Use copy-sequence. | |
2361 (msb-mode-map): Add title to keymap. | |
2362 (msb-unload-hook): New function. | |
2363 | |
2364 * bs.el: Fix indentation. | |
2365 (bs) <defgroup>: Add :links. | |
30894 | 2366 (bs-show): Doc fix. |
2367 (bs-apply-sort-faces): Don't use window-system. | |
2368 (bs-mode-font-lock-keywords): Avoid testing for XEmacs. | |
30802 | 2369 |
30796 | 2370 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il> |
2371 | |
2372 * calendar/timeclock.el (timeclock-file): Run .timelog through | |
2373 convert-standard-filename. | |
2374 | |
30788 | 2375 2000-08-14 Gerd Moellmann <gerd@gnu.org> |
2376 | |
30790 | 2377 * emacs-lisp/authors.el: New file. |
2378 | |
30788 | 2379 * paren.el (show-paren-priority): New user option. |
2380 (show-paren-function): Set overlay priorities to | |
2381 show-paren-priority. | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2382 |
30783 | 2383 2000-08-14 Miles Bader <miles@gnu.org> |
2384 | |
2385 * comint.el (comint-bol): Use `forward-line 0' instead of calling | |
2386 beginning-of-line with inhibit-field-text-motion bound. | |
2387 | |
30781 | 2388 2000-08-14 Gerd Moellmann <gerd@gnu.org> |
2389 | |
2390 * calendar/timeclock.el: New file. | |
2391 | |
2392 2000-08-14 David Ponce <david@dponce.com> | |
2393 | |
2394 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to | |
2395 `widget-button-click'. so that one can use left mouse button to | |
2396 click on dialog buttons. | |
2397 | |
2398 2000-08-14 Emmanuel Briot <briot@gnat.com> | |
2399 | |
2400 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase | |
2401 identifiers, since XML is case sensitive | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2402 |
30767 | 2403 2000-08-12 Miles Bader <miles@gnu.org> |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
2404 |
30769 | 2405 * comint.el (comint-output-filter): Don't bother frobbing |
2406 window-start, it doesn't seem to be necessary. | |
30767 | 2407 |
2408 * comint.el (comint-send-string, comint-send-region): Make into | |
2409 real functions. Snapshot the prompt before sending. | |
2410 | |
30764 | 2411 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il> |
2412 | |
2413 * info.el (Info-find-emacs-command-nodes): Rewrite to use | |
2414 technique similar to Info-index, instead of relying on specific | |
2415 names of relevant Index nodes. | |
2416 (Info-goto-emacs-command-node): Bind Info-history to nil when | |
2417 going to the first node found by Info-find-emacs-command-nodes. | |
2418 | |
30770
dfa82b47c25d
Fix a typo in Eli Zaretskii's name.
Eli Zaretskii <eliz@gnu.org>
parents:
30769
diff
changeset
|
2419 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il> |
30758 | 2420 |
2421 * menu-bar.el (menu-bar-help-menu): Add a :help string. | |
2422 | |
30741 | 2423 2000-08-10 Miles Bader <miles@gnu.org> |
2424 | |
2425 * comint.el (comint-output-filter): Doc fixes & misc code cleanup. | |
2426 | |
30739 | 2427 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il> |
2428 | |
2429 * info.el (Info-file-list-for-emacs): More elements for the | |
2430 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs, | |
2431 and woman manuals. | |
2432 | |
30737 | 2433 2000-08-10 Miles Bader <miles@lsi.nec.co.jp> |
2434 | |
2435 * comint.el (comint-send-input): Make the newline boundary overlay | |
2436 rear-nonsticky. Use `insert' instead of `insert-before-markers'. | |
2437 (comint-output-filter): Use `insert' instead of | |
2438 `insert-before-markers'. Extend comint-last-output-overlay when | |
2439 necessary since we can't rely on insert-before-markers to do it. | |
2440 * gud.el (gud-filter): Use `with-current-buffer' instead of | |
2441 save-excursion when inserting the output, so that point gets | |
2442 updated correctly; the old method relied on a rather dodgy | |
2443 side-effect of comint-output-filter to avoid the effect of | |
2444 save-excursion. | |
2445 | |
30734 | 2446 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il> |
2447 | |
2448 * files.el (recover-file): Call insert-directory instead of | |
2449 invoking `ls' directly. | |
2450 | |
30732 | 2451 2000-08-10 Miles Bader <miles@gnu.org> |
2452 | |
2453 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face) | |
2454 (comint-last-prompt-overlay): New variables. | |
2455 (comint-output-filter): Implement prompt highlighting. | |
2456 (comint-snapshot-last-prompt): New function. | |
2457 (comint-send-input): Snapshot the last prompt. | |
2458 Use comint-highlight-input-face. | |
2459 (comint-highlight-input-face): Renamed from `comint-highlight-face'. | |
2460 Use defface instead of defcustom. | |
2461 (send-invisible, comint-send-eof): Snapshot the last prompt. | |
2462 (comint-delchar-or-maybe-eof): Use comint-send-eof. | |
2463 (comint-mode): Make `comint-last-prompt-overlay' buffer-local. | |
2464 | |
30718
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
2465 2000-08-09 Stefan Monnier <monnier@cs.yale.edu> |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
2466 |
30719
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
2467 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
2468 (regexp-opt-group): Use a list of chars for `letters'. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
2469 (regexp-opt-charset): `chars' is now a list of chars. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
2470 Use a char-table rather than a vector so it works for multibyte chars. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
2471 |
30718
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
2472 * pcvs.el (cvs-menu): Don't move point. Use popup-menu. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
2473 Set cvs-minor-current-files to the selected fileinfo. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
2474 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
2475 (cvs-mode-insert): Manually macroexpand `ignore-errors'. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
2476 |
30715 | 2477 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il> |
2478 | |
2479 * files.el (insert-directory): Don't call access-file on | |
2480 directories on DOS and Windows. | |
2481 | |
30704 | 2482 2000-08-09 Kenichi Handa <handa@etl.go.jp> |
2483 | |
2484 * international/ccl.el (ccl-embed-data): Make ccl-program-vector | |
2485 longer if necessary. | |
2486 (ccl-embed-code): Call ccl-embed-data to store CODE in | |
2487 ccl-program-vector. | |
2488 | |
30701 | 2489 2000-08-09 Miles Bader <miles@gnu.org> |
2490 | |
2491 * comint.el (comint-output-filter): Properly handle the case where | |
2492 the text surrounded by comint-last-output-overlay was deleted. | |
2493 | |
30671 | 2494 2000-08-08 Gerd Moellmann <gerd@gnu.org> |
2495 | |
30693 | 2496 * info.el (Info-insert-dir): Use Info-additional-directory-list if |
2497 non-nil. | |
2498 (Info-file-list-for-emacs): Remove "info" from the list because | |
2499 that leads to trying to use the documentation from file `info' | |
2500 in various situations where it isn't appropriate, for instance | |
2501 C-h C-k C-h i. | |
2502 | |
2503 * ffap.el (ffap-read-file-or-url-internal): Handle case that | |
2504 DIR and/or STRING are nil. | |
2505 | |
2506 * progmodes/compile.el (compilation-setup): Make variable | |
2507 compilation-error-screen-columns buffer-local, as some comment | |
2508 in the code suggests it should be. | |
2509 | |
2510 * files.el (auto-mode-interpreter-regexp): New variable. | |
2511 (set-auto-mode): Use it. | |
2512 | |
2513 * indent.el (indent-for-tab-command): Doc fix. | |
2514 | |
2515 * mouse-sel.el (mouse-sel-mode): Doc fix. | |
2516 | |
30671 | 2517 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N=' |
2518 labels. | |
2519 | |
2520 * help.el (print-help-return-message): When | |
2521 display-buffer-reuse-frames is set, let the help window been quit, | |
2522 instead of deleting it, which might delete a reused frame. | |
2523 | |
30664 | 2524 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il> |
2525 | |
2526 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to | |
2527 rename a directory to a name that differs only by its letter case. | |
2528 | |
30655 | 2529 2000-08-08 Kenichi Handa <handa@etl.go.jp> |
2530 | |
2531 * international/quail.el (quail-define-rules): Handle Quail decode | |
2532 map correctly. Add code for supporting annotations. | |
2533 (quail-install-decode-map): New function. | |
2534 (quail-defrule-internal): New optional arguments decode-map and | |
2535 props. | |
2536 (quail-advice): New function. | |
2537 | |
30651
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
2538 2000-08-07 Sam Steingold <sds@gnu.org> |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
2539 |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
2540 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass', |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
2541 `defconst', `define-condition', `with-slots'. |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
2542 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'. |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
2543 |
30649 | 2544 2000-08-03 Miles Bader <miles@gnu.org> |
2545 | |
2546 * comint.el (comint-use-prompt-regexp-instead-of-fields): | |
2547 New variable. | |
2548 (comint-prompt-regexp, comint-get-old-input): Document dependence on | |
2549 comint-use-prompt-regexp-instead-of-fields. | |
2550 (comint-send-input): Add `input' field property to stuff we send to | |
2551 the process, if comint-use-prompt-regexp-instead-of-fields is nil. | |
2552 (comint-output-filter): Add `output' field property to process | |
2553 output, if comint-use-prompt-regexp-instead-of-fields is nil. | |
2554 (comint-replace-by-expanded-history) | |
2555 (comint-get-old-input-default, comint-show-output) | |
2556 (comint-backward-matching-input, comint-forward-matching-input) | |
2557 (comint-next-prompt, comint-previous-prompt): Use field | |
2558 properties if comint-use-prompt-regexp-instead-of-fields is nil. | |
2559 (comint-line-beginning-position): New function. | |
2560 (comint-bol): Use comint-line-beginning-position. Make ARG optional. | |
2561 (comint-replace-by-expanded-history-before-point): Use | |
2562 comint-line-beginning-position and line-end-position. | |
2563 (comint-last-output-overlay): New variable. | |
2564 (comint-mode): Make `comint-last-output-overlay' buffer-local. | |
2565 | |
2566 * shell.el (shell-prompt-pattern): Doc change. | |
2567 (shell-backward-command): Use line-beginning-position. | |
2568 | |
2569 * gud.el (gud-gdb-complete-command): Use | |
2570 comint-line-beginning-position. | |
2571 | |
2572 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if | |
2573 comint-bol doesn't actually go to the beginning of the line. | |
2574 | |
2575 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp | |
2576 if comint-use-prompt-regexp-instead-of-fields is non-nil. | |
2577 (try-expand-line-all-buffers): Likewise. | |
2578 | |
2579 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of | |
2580 explicitly matching comint-prompt-regexp. | |
2581 (sql-copy-column): Use comint-line-beginning-position instead of | |
2582 explicitly matching comint-prompt-regexp. | |
2583 | |
2584 * progmodes/octave-inf.el (inferior-octave-complete): Use | |
2585 comint-line-beginning-position. | |
2586 | |
2587 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change. | |
2588 | |
2589 * progmodes/idlw-shell.el (idlwave-shell-send-command): When | |
2590 looking for a prompt, use `forward-line 0' instead of | |
2591 `beginning-of-line', to avoid getting caught by an input field. | |
2592 | |
30633 | 2593 2000-08-07 Gerd Moellmann <gerd@gnu.org> |
2594 | |
2595 * files.el (shell-quote-wildcard-pattern): Make sure to return | |
2596 PATTERN, in the Unix case. | |
2597 | |
30629 | 2598 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il> |
2599 | |
2600 * play/zone.el (zone): Discard any pending input before running | |
2601 the randomly-chosen pgm. | |
2602 | |
30623 | 2603 2000-08-07 Kenichi Handa <handa@etl.go.jp> |
2604 | |
2605 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of | |
2606 checking the existence of any multibyte characters. | |
2607 | |
30619 | 2608 2000-08-06 Gerd Moellmann <gerd@gnu.org> |
2609 | |
30622 | 2610 * help.el (describe-mode): Test minor-mode symbol for being |
2611 bound before testing its value for being nil. | |
2612 | |
30619 | 2613 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of |
2614 `first', `second', and `third'. | |
2615 | |
2616 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05. | |
2617 (second): Make it an alias for `cadr'. | |
2618 | |
30616 | 2619 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il> |
2620 | |
2621 * bs.el (bs-apply-sort-faces): Don't use window-system, since all | |
2622 types of display support faces now. | |
2623 | |
30614 | 2624 2000-08-05 Gerd Moellmann <gerd@gnu.org> |
2625 | |
2626 * pcvs.el (require): Require `cl' during compilation, only. | |
2627 | |
2628 * emacs-lisp/cl.el (first, ..., tenth): Make them macros. | |
2629 (toplevel): Remove `remq' and `remove' from autoloads. | |
2630 (cl-fake-autoloads): New variable. If set, arrange for an error | |
2631 when CL functions etc. are autoloaded. | |
2632 | |
30585 | 2633 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il> |
2634 | |
30593 | 2635 * play/zone.el (zone, zone-pgm-stress): Don't use window-system. |
2636 | |
30591 | 2637 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is |
2638 popped up, but the user clicks outside the menu, return an empty | |
2639 regexp (that causes unhighlight-regexp to have no effect). | |
2640 | |
30589 | 2641 * menu-bar.el (menu-bar-games-menu): Add Zone. |
2642 | |
30585 | 2643 * hi-lock.el (toplevel): Require font-lock. |
2644 | |
30576 | 2645 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
2646 | |
31265
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
2647 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward. |
30576 | 2648 (ebnf-8-bit-chars): New var for bug fix. |
2649 (ebnf-string): Bug fix. | |
2650 | |
30569
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2651 2000-08-03 Sam Steingold <sds@gnu.org> |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2652 |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2653 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties' |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2654 instead of `buffer-string'. |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2655 (require 'cl): Always, not just when compiling. |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2656 `ignore-errors' in `interactive', `list*', `defun*' &c make this |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2657 necessary. |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2658 |
30567 | 2659 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il> |
2660 | |
2661 * international/mule-cmds.el (select-safe-coding-system): Make | |
2662 the message text about selecting a safe coding system more clear. | |
2663 | |
30564 | 2664 2000-08-02 Gerd Moellmann <gerd@gnu.org> |
2665 | |
30565 | 2666 * hi-lock.el: New file. |
2667 | |
2668 * play/zone.el: New file. | |
2669 | |
30564 | 2670 * replace.el (occur): Set tab-width in the *Occur* buffer to the |
2671 value of tab-width in the original buffer. Choose a line number | |
2672 format that's a multiple of the original buffer's tab width, so | |
2673 that lines appear right. | |
2674 | |
2675 * textmodes/ispell.el (ispell): New function, replacing an alias. | |
2676 Spell-check active region if in transient-mark-mode and mark | |
2677 is active; otherwise spell-check buffer. | |
2678 | |
2679 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
2680 | |
2681 * ps-mule.el: Fix a customization problem on | |
2682 ps-mule-font-info-database-default. | |
2683 | |
30555 | 2684 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il> |
2685 | |
2686 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use | |
2687 display-mouse-p instead of window-system. | |
2688 (ebrowse-member-mode-map): Ditto. | |
2689 | |
30553 | 2690 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
2691 | |
31265
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
2692 * progmodes/ebnf2ps.el: Update ps-print functions call. |
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
2693 Indentation fix. Doc fix. |
30553 | 2694 (ebnf-version): New version number (3.2). |
2695 (ebnf-format-color, ebnf-begin-job): Code fix. | |
30569
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
2696 |
30547 | 2697 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il> |
2698 | |
30549 | 2699 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition |
2700 font lock support on window-system. | |
2701 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise. | |
2702 | |
30547 | 2703 * textmodes/ispell.el (ispell-highlight-spelling-error): Use |
2704 display-color-p, if fboundp, instead of window-system. | |
2705 | |
30545 | 2706 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il> |
2707 | |
2708 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p | |
2709 instead of window-system. | |
2710 | |
2711 * wid-edit.el (widget-choose): Use display-mouse-p instead of | |
2712 window-system. | |
2713 (widget-choice-mouse-down-action): Use display-popup-menus-p | |
2714 instead of window-system. | |
2715 | |
2716 * strokes.el (strokes-file): Run the file name through | |
2717 convert-standard-filename. | |
2718 (strokes-mode): Call display-mouse-p instead of looking at | |
2719 window-system. Change the error message accordingly. | |
2720 | |
2721 * progmodes/cpp.el (toplevel): Support faces on tty's. | |
2722 | |
2723 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X) | |
2724 (lm-plot-square, lm-init-display): Don't use window-system. | |
2725 | |
2726 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face) | |
2727 (gomoku-plot-square, gomoku-init-display): Don't use window-system. | |
2728 | |
2729 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p | |
2730 instead of looking at window-system. | |
2731 | |
30528 | 2732 2000-07-30 Gerd Moellmann <gerd@gnu.org> |
2733 | |
2734 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead | |
2735 of testing if iswitchb-prepost-hooks is bound, because the | |
2736 latter will always be true when invoking a recursive minibuffer | |
2737 from an active Iswitchb buffer. | |
2738 | |
30526 | 2739 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il> |
2740 | |
2741 * files.el (shell-quote-wildcard-pattern): New function. | |
2742 (insert-directory): Call it. Only prepend "\" to command on Unix | |
2743 and GNU/Linux systems. | |
2744 | |
30524 | 2745 2000-07-30 Gerd Moellmann <gerd@gnu.org> |
2746 | |
2747 * eshell/esh-groups.el: Change custom :link file names | |
2748 from `eshell.info' to `eshell'. | |
2749 | |
2750 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk> | |
2751 | |
2752 * dired.el (dired-build-subdir-alist): Expand subdirectory names | |
2753 correctly in recursive ange-ftp listings. | |
2754 | |
2755 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
2756 | |
2757 * ps-print.el: Fix bug 1: if ps-font-size-internal, | |
2758 ps-header-font-size-internal and | |
2759 ps-header-title-font-size-internal variables are not set, | |
2760 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if | |
2761 face text property is (foreground-color . COLOR) or | |
2762 `(background-color . COLOR)', ps-print crashes. Doc fix. | |
2763 (ps-print-version): New version number (5.2.4). | |
2764 (ps-plot-region): Code fix. | |
2765 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1. | |
2766 (ps-face-attribute-list, ps-face-attributes, ps-face-background): | |
2767 Bug fix 2. | |
2768 | |
2769 2000-07-30 Milan Zamazal <pdm@freesoft.cz> | |
2770 | |
2771 * glasses.el (glasses-make-readable): Fix uncapitalization of | |
2772 identifiers like `myXMLDocument'. | |
2773 | |
30519
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
2774 2000-07-28 Karl Fogel <kfogel@red-bean.com> |
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
2775 |
30524 | 2776 * mail/mail-hist.el (mail-hist-previous-input) |
2777 (mail-hist-next-input): Do the obvious code factorization. | |
2778 (mail-hist-retrieve-and-insert): New func, contains common | |
30519
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
2779 code of above two. |
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
2780 If inserting a message body, leave point at top. |
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
2781 |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
2782 2000-07-28 Sam Steingold <sds@gnu.org> |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
2783 |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
2784 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime): |
30524 | 2785 Use `<=', not `<' to compare times! |
2786 (ange-ftp-ls): Remove. | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
2787 |
30502 | 2788 2000-07-27 Gerd Moellmann <gerd@gnu.org> |
2789 | |
30516 | 2790 * play/cookie1.el: Add explanation of how to make cookie.el |
2791 compatible with strfile(1) to comment. | |
2792 | |
2793 * subr.el (remove, remq): New functions. | |
2794 | |
30511 | 2795 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly |
2796 escape `*' in regexps. | |
2797 (midnight-find): Reverse order of arguments in the funcall of | |
2798 TEST. | |
2799 | |
2800 * bindings.el (completion-ignored-extensions): Add `.la', `.lo', | |
2801 and `.class'. | |
2802 | |
30502 | 2803 * play/meese.el: Add Commentary section. |
2804 | |
30516 | 2805 2000-07-27 Alex Schroeder <alex@gnu.org> |
2806 | |
2807 * sql.el (sql-ms): Added autoload cookie. | |
2808 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase) | |
2809 (sql-oracle): Ditto. | |
2810 (sql-help): Doc change. | |
2811 | |
2812 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data | |
2813 types and exceptions. | |
2814 | |
2815 2000-07-27 Alex Schroeder <alex@gnu.org> | |
2816 | |
2817 * sql.el (sql-placeholder-history): New variable. | |
2818 (sql-query-placeholders-and-send): New function that will query | |
2819 the user and replace placeholders with user input. | |
2820 (sql-oracle): If running on NT, set comint-input-sender to | |
2821 sql-query-placeholders-and-send. | |
2822 | |
2823 (sql-stop): If in the SQLi buffer, insert stop notification, else | |
2824 present it as a message. | |
2825 | |
2826 2000-07-27 Alex Schroeder <alex@gnu.org> | |
2827 | |
2828 * sql.el (sql-input-ring-separator): Doc change. | |
2829 (sql-input-ring-file-name): Doc change. | |
2830 (sql-interactive-mode): Use `sql-input-ring-separator' and | |
2831 `sql-input-ring-file-name' to set the comint-mode equivalents | |
2832 without making them local variables. | |
2833 (sql-stop): Don't bind `sql-input-ring-separator' and | |
2834 `sql-input-ring-file-name' dynamically to their comint-mode | |
2835 equivalents. | |
2836 | |
30490 | 2837 2000-07-27 Kenichi Handa <handa@etl.go.jp> |
2838 | |
2839 * international/mule.el (register-char-codings): New function. | |
2840 (make-coding-system): Handle `safe-chars' specification in the arg | |
2841 PROPERTY. | |
2842 | |
2843 * international/mule-cmds.el | |
2844 (find-coding-systems-region-subset-p): This function deleted. | |
2845 (sort-coding-systems-predicate): New variable. | |
2846 (sort-coding-systems): New function. | |
2847 (find-coding-systems-region): Use | |
2848 find-coding-systems-region-internal. | |
2849 (find-coding-systems-string): Use find-coding-systems-region. | |
2850 (find-coding-systems-for-charsets): Check | |
2851 char-coding-system-table. | |
2852 (select-safe-coding-system-accept-default-p): New variable. | |
2853 (select-safe-coding-system): Mostly rewritten. New argument | |
2854 ACCEPT-DEFAULT-P. | |
2855 (select-message-coding-system): Call select-safe-coding-system | |
2856 with ACCEPT-DEFAULT-P arg. | |
2857 (reset-language-environment): Reset default-sendmail-coding-system | |
2858 to the default value iso-latin-1. | |
2859 (set-language-environment): Don't set the obsolete variable | |
2860 charset-origin-alist. | |
2861 | |
2862 * international/codepage.el (cp-coding-system-for-codepage-1): | |
2863 Give `safe-chars' property to make-coding-system. | |
2864 | |
2865 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid | |
2866 calling select-message-coding-system twice. | |
2867 | |
2868 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property | |
2869 instead of `safe-charsets'. | |
2870 (cyrillic-alternativnyj): Likewise. | |
2871 (ccl-encode-alternativnyj): Don't check the charset | |
2872 cyrillic-iso8859-5. | |
2873 | |
30484 | 2874 2000-07-27 Kenichi Handa <handa@etl.go.jp> |
2875 | |
2876 * composite.el (compose-chars-after): Preserve match data. | |
2877 | |
30481 | 2878 2000-07-26 Sam Steingold <sds@gnu.org> |
2879 | |
2880 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function. | |
2881 (ange-ftp-real-file-newer-than-file-p): New function. | |
2882 (ange-ftp-verify-visited-file-modtime): Use `float-time'. | |
2883 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string'). | |
2884 | |
2885 * tooltip.el (tooltip-float-time): Removed (use `float-time'). | |
2886 * midnight.el (midnight-float-time): Ditto. | |
2887 | |
30479 | 2888 2000-07-26 Andreas Schwab <schwab@suse.de> |
2889 | |
2890 * files.el (normal-backup-enable-predicate): Correct | |
2891 interpretation of the return value of compare-strings. | |
2892 | |
30471 | 2893 2000-07-26 Gerd Moellmann <gerd@gnu.org> |
2894 | |
30477 | 2895 * isearch.el (isearch-resume): New function. |
2896 (isearch-done): Add something to command-history to resume | |
2897 the search. | |
2898 (isearch-yank-line, isearch-yank-word): Use | |
2899 buffer-substring-no-properties instead of buffer-substring. | |
2900 | |
30471 | 2901 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead |
2902 of flyspell-mouse-map. | |
2903 | |
2904 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove | |
2905 duplicate definition. | |
2906 (makefile-mode): Remove duplicate setting of local-abbrev-table. | |
2907 | |
2908 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable. | |
2909 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table. | |
2910 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
2911 2000-07-25 Sam Steingold <sds@gnu.org> |
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
2912 |
30459 | 2913 * net/ange-ftp.el: Get modtime over the net. |
2914 (ange-ftp-file-modtime): New function. | |
30473 | 2915 (ange-ftp-write-region, ange-ftp-insert-file-contents) |
2916 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime): | |
30459 | 2917 Use it. |
2918 (ange-ftp-dot-to-slash): New function. | |
2919 (ange-ftp-fix-name-for-vms): Use it. | |
2920 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
2921 * midnight.el (midnight-buffer-display-time): Use |
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
2922 `with-current-buffer'. |
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
2923 |
30457 | 2924 2000-07-25 Gerd Moellmann <gerd@gnu.org> |
2925 | |
2926 * find-dired.el: Update copyright notice. | |
2927 (find-dired): Offer to kill a running `find'. | |
2928 | |
2929 * enriched.el (enriched-face-ans): For a `foreground-color' | |
2930 property, return '(("x-color" COLOR))' so that COLOR will be | |
2931 output as a parameter of the x-color annotation. Likewise for the | |
2932 `background-color' property. In the case of normal face | |
2933 properties, don't return annotations for unspecified foreground | |
2934 and background face attributes. | |
2935 | |
30450 | 2936 2000-07-25 Kenichi Handa <handa@etl.go.jp> |
2937 | |
2938 * language/japan-util.el (japanese-katakana-region): Fix handling | |
2939 HANKAKU argument. | |
2940 | |
30438 | 2941 2000-07-25 Miles Bader <miles@gnu.org> |
2942 | |
2943 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to | |
2944 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to | |
2945 constrain-to-field. | |
2946 | |
30437 | 2947 2000-07-24 Andrew Innes <andrewi@gnu.org> |
2948 | |
2949 * timer.el (timer-activate-when-idle): Add optional parameter | |
2950 DONT-WAIT. Update docstring. | |
2951 (run-with-idle-timer): Specify extra parameter to | |
2952 timer-activate-when-idle, so that timer will be activated | |
2953 immediately if Emacs is already idle. | |
2954 | |
2955 * w32-fns.el (w32-using-nt): Fix docstring. | |
2956 | |
30434 | 2957 2000-07-24 Dave Love <fx@gnu.org> |
2958 | |
2959 * mouse.el (popup-menu): Set last-command-event. | |
2960 (mouse-major-mode-menu-prefix): Declare. | |
2961 | |
30433 | 2962 2000-07-24 Gerd Moellmann <gerd@gnu.org> |
2963 | |
2964 * textmodes/flyspell.el: Update to author's version 1.5d. | |
2965 | |
2966 * progmodes/hideshow.el: Update copyright notice. | |
2967 | |
2968 * vcursor.el: Set maintainer to FSF, since author cannot | |
2969 be reached. | |
2970 | |
30422 | 2971 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il> |
2972 | |
30424 | 2973 * info.el (Info-goto-emacs-key-command-node): Leave a space after |
2974 the prompt. | |
2975 | |
30422 | 2976 * mouse.el (popup-menu): Run the keymap through indirect-function, |
2977 in case it was defined with define-prefix-key. If the menu is a | |
2978 list of keymaps, look up the binding of user's choice in each one | |
2979 of the keymaps. | |
2980 (mouse-popup-menubar): If the global and local menu-bar keymaps | |
2981 don't have a prompt string, create one and insert it into the | |
2982 keymap. Don't barf if current-local-map returns nil. | |
2983 | |
30415 | 2984 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk> |
2985 | |
2986 * dired.el (dired-sort-R-check): Added to allow recursive listing | |
2987 to be undone. | |
2988 (dired-sort-other): Use it. | |
2989 | |
30412 | 2990 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> |
2991 | |
30415 | 2992 * Release of cc-mode 5.27 |
30412 | 2993 |
2994 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
2995 | |
2996 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to | |
2997 c-beginning-of-statement-1 that caused a bad case of recursion | |
2998 which could consume a lot of CPU in large classes in languages | |
2999 that have in-expression classes (i.e. Java and Pike). | |
3000 | |
3001 * cc-engine.el (c-guess-basic-syntax): Check for in-expression | |
3002 statements before top level constructs (i.e. case 6 is moved | |
3003 before case 5 and is now case 4) to catch in-expression | |
3004 classes in top level expressions correctly. | |
3005 | |
3006 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3007 | |
3008 * cc-engine.el (c-guess-basic-syntax): Less naive handling of | |
3009 objc-method-intro. Case 4 removed and case 5I added. | |
3010 | |
3011 * cc-langs.el (c-append-paragraph-start): New variable used by | |
3012 c-common-init to get paragraph-start correct. | |
3013 * cc-langs.el (c-common-init): Use c-append-paragraph-start to | |
3014 initialize paragraph-start to make it correct both with and | |
3015 without the javadoc special case. | |
3016 | |
3017 * cc-mode.el (java-mode): Use c-append-paragraph-start to | |
3018 initialize paragraph-start for javadoc markup. | |
3019 | |
3020 * cc-vars.el (c-style-variables-are-local-p): Incompatible | |
3021 change by defaulting this to t. It's motivated by the | |
3022 confusing behavior that otherwise arise from the style system | |
3023 when editing both java and non-java files at the same time | |
3024 (see the comments about style setting in c-common-init). | |
3025 | |
3026 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3027 | |
3028 * cc-cmds.el (c-indent-new-comment-line): Added a kludge | |
3029 similar to the one in c-fill-paragraph to check the fill | |
3030 prefix from the adaptive fill function for sanity. | |
3031 | |
3032 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3033 | |
3034 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into | |
3035 defun block. | |
3036 | |
3037 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3038 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
3039 * cc-mode.texi Documented the change of cpp-macro. |
30412 | 3040 |
3041 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3042 | |
3043 * cc-align.el (c-lineup-multi-inher): Handle lines with | |
3044 leading comma nicely. Extended to handle member initializers | |
3045 too. | |
3046 | |
30415 | 3047 * cc-engine.el: (c-beginning-of-inheritance-list, |
30412 | 3048 c-guess-basic-syntax): Fixed recognition of inheritance lists |
3049 when the lines begins with a comma. | |
3050 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
3051 * cc-mode.texi: Updated doc for c-lineup-multi-inher. |
30412 | 3052 |
3053 * cc-vars.el (c-offsets-alist): Changed default for | |
3054 member-init-cont to c-lineup-multi-inher since it now handles | |
3055 member initializers and indents better for leading commas. | |
3056 | |
3057 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3058 | |
3059 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state | |
3060 handling that caused class open lines to be recognized as | |
3061 statement-conts in some cases. | |
3062 | |
3063 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix | |
3064 guessed by the adaptive fill function unless point is on the | |
3065 first line of a block comment. | |
3066 | |
3067 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug | |
3068 when the buffer ends with a macro continuation char. | |
3069 | |
3070 * cc-engine.el (c-guess-basic-syntax): Added support for | |
3071 function definitions as statements in Pike. The first | |
3072 statement in a lambda block is now labeled defun-block-intro | |
3073 instead of statement-block-intro. | |
3074 | |
3075 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state | |
3076 so that the class surrounding point is selected, not the one | |
3077 innermost in the state. | |
3078 | |
3079 * cc-engine.el (c-guess-basic-syntax): Fixed bug in | |
3080 recognition of switch labels having hanging multiline | |
3081 statements. | |
3082 | |
3083 * cc-engine.el (c-beginning-of-member-init-list): Broke out | |
3084 some code in c-guess-basic-syntax to a separate function. | |
3085 * cc-engine.el (c-just-after-func-arglist-p): Fixed | |
3086 recognition of member inits with multiple line arglists. | |
3087 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect | |
3088 member-init-cont when the commas are in funny places. | |
3089 | |
3090 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3091 | |
3092 * cc-defs.el (c-auto-newline): Removed this macro since it's | |
3093 not used anymore. | |
3094 | |
3095 * cc-engine.el (c-looking-at-bos): New helper function. | |
3096 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell | |
3097 inexpr and toplevel classes apart in Pike. | |
3098 | |
3099 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition | |
3100 of case 9A. | |
3101 | |
3102 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New | |
3103 constant, since "class" can introduce an in-expression class | |
3104 in Pike nowadays. | |
3105 | |
3106 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3107 | |
3108 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum | |
3109 indentation on cpp-macro lines. | |
3110 | |
3111 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro | |
3112 a syntax modifier like comment-intro, to make it possible to | |
3113 get syntactic indentation for preprocessor directives. It's | |
3114 incompatible wrt to lineup functions on cpp-macro, but it has | |
3115 no observable effect in the 99.9% common case where cpp-macro | |
3116 is set to -1000. | |
3117 | |
3118 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3119 | |
3120 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed | |
3121 member-init-cont when the preceding arglist is several lines. | |
3122 | |
3123 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3124 | |
3125 * cc-styles.el (c-style-alist): The basic offset for the BSD | |
3126 style corrected to 8. | |
3127 | |
3128 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3129 | |
3130 * cc-styles.el (c-style-alist): Adjusted the indentation of | |
3131 brace list openers in the gnu style. | |
3132 | |
3133 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3134 | |
3135 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation. | |
3136 | |
3137 * cc-cmds.el (c-electric-brace, c-electric-slash, | |
3138 c-electric-star, c-electric-semi&comma, c-electric-colon, | |
3139 c-electric-lt-gt, c-electric-paren): Don't reindent old lines | |
3140 when c-syntactic-indentation is nil. | |
3141 | |
3142 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where | |
3143 we were left at comments preceding the first statement when | |
3144 reaching the beginning of the buffer. | |
3145 | |
3146 * cc-vars.el (c-syntactic-indentation): New variable to turn | |
3147 off all syntactic indentation. | |
3148 | |
3149 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3150 | |
3151 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces | |
3152 between the text and the block comment ender when it hangs, | |
3153 depending on how many there are before the fill. | |
3154 | |
3155 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3156 | |
3157 * cc-engine.el (c-beginning-of-closest-statement): New helper | |
3158 function to go back to the closest preceding statement start, | |
3159 which could be inside a conditional statement. | |
3160 * cc-engine.el (c-guess-basic-syntax): Use | |
3161 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C. | |
3162 | |
3163 * cc-engine.el (c-guess-basic-syntax): Better handling of | |
3164 arglist-intro, arglist-cont-nonempty and arglist-close when | |
3165 the arglist is nested inside parens. Cases 7A, 7C and 7F | |
3166 changed. | |
3167 | |
3168 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought | |
3169 up-to-date with javadoc 1.2. | |
3170 | |
3171 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3172 | |
3173 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of | |
3174 multiline Pike type decls. | |
3175 | |
3176 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3177 | |
3178 * cc-cmds.el (c-indent-new-comment-line): Always break | |
3179 multiline comments in multiline mode, regardless of | |
3180 comment-multi-line. | |
3181 | |
3182 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3183 | |
3184 * cc-engine.el (c-guess-basic-syntax): Fixed bug with | |
3185 fully::qualified::names in C++ member init lists. Preamble in | |
3186 case 5D changed. | |
3187 | |
3188 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3189 | |
3190 * cc-langs.el (c-common-init): Handling of obsolete variables | |
3191 moved to c-initialize-cc-mode. More compatible style override | |
3192 when using global style variables. | |
3193 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete | |
3194 variables moved here. | |
3195 | |
30415 | 3196 * cc-mode.texi: Documented the special behavior of |
30412 | 3197 c-special-indent-hook as a style variable. Don't talk about |
3198 doing (c-make-styles-buffer-local t) in a mode hook, since | |
3199 that's already too late to work right. | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
3200 |
30412 | 3201 * cc-styles.el (c-make-styles-buffer-local): Flag style |
3202 variable localness in c-style-variables-are-local-p to make | |
3203 the compatibility measure in c-common-init work well. | |
3204 | |
3205 * cc-styles.el (c-set-style-1): c-special-indent-hook can no | |
3206 longer contain set-from-style. | |
3207 * cc-styles.el (c-initialize-builtin-style): Don't check for | |
3208 set-from-style on c-special-indent-hook. | |
3209 * cc-styles.el (c-copy-tree): Obsolete. The standard function | |
3210 copy-alist is sufficient now. | |
3211 | |
3212 * cc-styles.el (c-set-style, c-set-style-1, | |
3213 c-get-style-variables): Fixes to variable initialization so | |
3214 that duplicate entries in styles have the same effect | |
3215 regardless of DONT-OVERRIDE. | |
3216 | |
3217 * cc-styles.el (c-set-style-2): Fixed bug where the | |
3218 initialization of inheriting styles failed when the | |
3219 dont-override flag is set. | |
3220 | |
3221 * cc-vars.el (c-special-indent-hook): Don't use set-from-style | |
3222 on this. | |
3223 | |
3224 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
3225 | |
3226 * cc-defs.el (c-forward-comment): Removed the workaround | |
3227 introduced in 5.38 since it had worse side-effects. If a line | |
3228 contains the string "//\"", it regarded the // as a comment | |
3229 start since the \ temporarily doesn't have escape syntax. | |
3230 | |
3231 2000-07-17 Emmanuel Briot <briot@act-europe.fr> | |
3232 | |
3233 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load | |
3234 ada-xref.el before ada-prj.el, so that the Project menu is created | |
3235 when ada-prj tries to add to it. | |
3236 (ada-activate-keys-for-case): Suppress the characters that are not | |
3237 part of the Ada syntax. Better compatibility with else-mode | |
3238 (ada-adjust-case-interactive): When auto-casing is not active, | |
3239 correctly insert newlines (used to insert only ^M). Prevent the | |
3240 syntax table from being changed in case of an error | |
3241 (or '_' becomes part of a word and some commands are confused). | |
3242 Do nothing if ada-auto-case is nil. | |
3243 (ada-after-keyword-p): Ignore keywords that are also attributes | |
3244 (ada-batch-reformat): Update usage comment | |
3245 (ada-call-from-contextual-menu): New function | |
3246 (ada-case-read-exceptions): Reinitialize the casing exception list | |
3247 first to nil first, so that the casing exception file can be | |
3248 shared. | |
3249 (ada-check-defun-name): Handles "configure" keyword for gnatdist | |
3250 files. | |
3251 (ada-compile-goto-error): Fix regexp used to detect a file:line | |
3252 anywhere in the error message | |
3253 (ada-contextual-menu-last-point): New variable | |
3254 (ada-create-keymap): If the variable delete-key-deletes-forward is | |
3255 t on XEmacs, it means that DEL should delete one character | |
3256 forward. | |
3257 (ada-create-menu): Use :included instead of :visible for XEmacs. | |
3258 New submenu "Options". | |
3259 (ada-end-stmt-re): Correctly indent "select ... then abort" | |
3260 statements. | |
3261 (ada-fill-comment-paragraph): Correctly delete all leading '--' | |
3262 even if they don't match ada-fill-comment-prefix Fix handling of | |
3263 paragraphs on the first or last line of a file. | |
3264 (ada-format-paramlist): Fix handling of default parameter values. | |
3265 (ada-get-body-name): New function. | |
3266 (ada-get-current-indent): Optimized by searchling directly for an | |
3267 existing generic part or a statement outside of it. Handle | |
3268 ada-indent-align-comments when indenting comments Replaced some | |
3269 regexps by testing directly the next character. This results in a | |
3270 huge speedup on some files. New indentation scheme for renames | |
3271 statements. Stop looking for the 'while' or 'for' associated with | |
3272 a 'loop' at the first semicolon encountered. A "return" can also | |
3273 match an anonymous access subprogram declaration. | |
3274 (ada-get-indent-noindent): Ignore strings and comments when | |
3275 looking for the keywords "record" and "private". | |
3276 (ada-goto-matching-decl-start): When matching "if", make sure we | |
3277 are not in fact seeing "end if". Ignore "when" statements except | |
3278 when initial keyword was "begin". Fix handling of nested | |
3279 procedures. Add a recursive call to this function to skip over | |
3280 other 'end' statmts. Fix indentation for "when .. => begin" | |
3281 (ada-in-open-paren-p): Fix indentation for complex boolean | |
3282 expressions, where 'and then', 'or else' and parenthesis | |
3283 statements are mixed up. | |
3284 (ada-in-paramlist-p): Skip comments while searching for the | |
3285 beginning Fix handling of operator declarations. | |
3286 (ada-indent-align-comments): New variable | |
3287 (ada-indent-current): Change the syntax table only in the | |
3288 protected section, so that we are sure it is restored correctly. | |
3289 (ada-indent-on-previous-lines): Use ada-use-indent and | |
3290 ada-with-indent Correctly indent "select ... then" | |
3291 (ada-indent-region): Slight speedup. | |
3292 (ada-indent-renames): New variable. | |
3293 (ada-last-which-function-subprog, ada-last-which-function-line): | |
3294 New variables | |
3295 (ada-looking-at-semi-private): Correctly indent the 'private' | |
3296 keyword when it is the first word in a package declaration. | |
3297 (ada-loose-case-word): Stop searching if at the end of the buffer. | |
3298 (ada-loose-case-word, ada-capitalize-word): Recase the whole word | |
3299 even if point is not initially at the end of the word. | |
3300 (ada-matching-decl-start-re): Add "when". | |
3301 (ada-mode): Add support for abbrev-mode, outline-mode and | |
3302 which-func-mode Override the old find-file.el entry in | |
3303 ff-special-constructs since it is using the obsolete | |
3304 ada-spec-suffix variable | |
3305 (ada-no-auto-case): New function | |
3306 (ada-scan-paramlist): When parsing the argument type, accept | |
3307 spaces (as in "X 'Class", generated by Rational Rose). | |
3308 (ada-other-file-name): No longer loads the other file. | |
3309 (ada-popup-menu): Save and restore the current buffer and cursor | |
3310 position before and after displaying the menu. | |
3311 (ada-search-ignore-complex-boolean): New function. | |
3312 (ada-uncomment-region): Emacs21 already knows how to delete | |
3313 comments not starting in the first column. | |
3314 (ada-use-indent): New variable | |
3315 (ada-which-function): New function. | |
3316 (ada-with-indent): New variable | |
3317 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el | |
3318 can be batch-compiled from the command line. | |
3319 | |
3320 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs. | |
3321 Add to the menu when the file is loaded, not in ada-mode-hook. | |
3322 Add -toolbar to the default ddd command Switches moved from | |
3323 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to | |
3324 ada-prj-default-comp-opt | |
3325 (ada-add-ada-menu): Remove the map and name parameters Add the Ada | |
3326 Reference Manual to the menu | |
3327 (ada-check-current): rewritten as a call to ada-compile-current | |
3328 (ada-compile): Removed. | |
3329 (ada-compile-application, ada-compile-current, ada-check-current): | |
3330 Set the compilation-search-path so that compile.el automatically | |
3331 finds the sources in src_dir. Automatic scrollong of the | |
3332 compilation buffer. C-uC-cC-c asks for confirmation before | |
3333 compiling | |
3334 (ada-compile-current): New parameter, prj-field | |
3335 (ada-complete-identifier): Load the .ali file before doing | |
3336 processing | |
3337 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to | |
3338 conform to gnatmake's behavior. | |
3339 (ada-find-file-in-dir): New function | |
3340 (ada-find-references): Set the environment variables for gnatfind | |
3341 (ada-find-src-file-in-dir): New function. | |
3342 (ada-first-non-nil): Removed | |
3343 (ada-gdb-application): Add support for jdb, the java debugger. | |
3344 (ada-get-ada-file-name): Load the original-file first if not done | |
3345 yet. | |
3346 (ada-get-all-references): Handles the new ali syntax (parent types | |
3347 are found between <>). | |
3348 (ada-initialize-runtime-library): New function | |
3349 (ada-mode-hook): Always load a project file when a file is opened, | |
3350 so that the casing exceptions are correctly read. | |
3351 (ada-operator-re): Add all missing operators ("abs", "rem", "**"). | |
3352 (ada-parse-prj-file): Use find-file-noselect instead of find-file | |
3353 to open the project file, since the latter does not work with | |
3354 speedbar Get default values before loading the prj file, or the | |
3355 default executable file name is wrong. Use the absolute value of | |
3356 src_dir to initialize ada-search-directories and | |
3357 compilation-search-path,... Add the standard runtime library to | |
3358 the search path for find-file. | |
3359 (ada-prj-default-debugger): Was missing an opening '{' | |
3360 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New | |
3361 variables. | |
3362 (ada-prj-default-gnatmake-opt): New variable | |
3363 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada | |
3364 buffers, the project file is the default one Save the windows | |
3365 configuration before displaying the menu. | |
3366 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed | |
3367 (ada-read-identifier): Fix xrefs on operators (for "mod", "and", | |
3368 ...) regexp-quote identifiers names to support operators +, | |
3369 -,... in regexps. | |
3370 (ada-remote): New function. | |
3371 (ada-run-application): Erase the output buffer before starting the | |
3372 run Support remote execution of the application. Use | |
3373 call-process, or the arguments are incorrectly parsed | |
3374 (ada-set-default-project-file): Reread the content of the active | |
3375 project file, not the one from the current buffer When a project | |
3376 file is set as the default project, all directories are | |
3377 automatically associated with it. | |
3378 (ada-set-environment): New function | |
3379 (ada-treat-cmd-string): New special variable ${current} | |
3380 (ada-treat-cmd-string): Revised. The substitution is now done for | |
3381 any ${...} substring | |
3382 (ada-xref-current): If no body was found, compiles the spec | |
3383 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the | |
3384 compiler to get rid of command line length limitations. | |
3385 (ada-xref-get-project-field): New function | |
3386 (ada-xref-project-files): New variable | |
3387 (ada-xref-runtime-library-specs-path) | |
3388 (ada-xref-runtime-library-ali-path): New variables | |
3389 (ada-xref-set-default-prj-values): Default run command now does a | |
3390 cd to the build directory. New field: main_unit Provide a default | |
3391 file name even if the current buffer has no prj file. | |
3392 | |
3393 * ada-prj.el: | |
3394 Rewritten to show a tabbed-dialog. | |
3395 (ada-prj-add-ada-menu): Remove the map and name parameters. | |
3396 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values): | |
3397 New function | |
3398 (ada-prj-load-directory, ada-prj-subdirs-of): New functions | |
3399 (ada-prj-load-from-file): New function | |
3400 (ada-prj-save): Always save fields that depend on the current buffer | |
3401 (ada-prj-show-value): New function | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
3402 |
30412 | 3403 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in |
3404 Ada mode. This will allow us to display the Ada menu in any buffer | |
3405 we want (for project items). | |
3406 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct | |
3407 number of spaces in the header. | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
3408 |
30395 | 3409 2000-07-24 Dave Love <fx@gnu.org> |
3410 | |
3411 * ediff-init.el (ediff-region-help-echo): Bind face-help. | |
3412 | |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3413 2000-07-23 Noah Friedman <friedman@splode.com> |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3414 |
30392
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3415 * type-break.el (type-break): perform autosave. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3416 Suggested by Stephen Gildea <gildea@intouchsys.com>. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3417 (type-break-do-query): Cancel query schedule while performing |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3418 actual query, to avoid possibility of a second query being made |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3419 while first one is already in progress. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3420 (type-break-time-stamp-format): New variable. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3421 (type-break-time-stamp): New function. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3422 (type-break-time-warning): Use it. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3423 (type-break-keystroke-warning): Use it. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3424 (type-break-noninteractive-query): Use it. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
3425 |
30390
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3426 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3427 cookie. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3428 Use add-minor-mode to set minor-mode-alist, if available. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3429 (eldoc-echo-area-use-multiline-p): New user option. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3430 (eldoc-echo-area-multiline-supported-p): New variable. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3431 (eldoc-docstring-format-sym-doc): Use them. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3432 (eldoc-mode): If not using idle timers, append to local post and |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3433 pre command hooks. Suggested by David Byers <davby@ida.liu.se>. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3434 (eldoc-display-message-no-interference-p): Don't interfere with |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3435 edebug. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3436 Add autoload cookie for eldoc-mode minor-mode-alist initialization. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3437 (eldoc-function-arglist): New function. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3438 (eldoc-function-argstring): Use it. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
3439 |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3440 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3441 auto save directory exists before calling directory-files. |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3442 |
30386 | 3443 2000-07-23 Dave Love <fx@gnu.org> |
3444 | |
3445 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i, | |
3446 ^o, ^u. | |
3447 | |
30359 | 3448 2000-07-21 Dave Love <fx@gnu.org> |
3449 | |
30374 | 3450 * ediff-init.el (ediff-region-help-echo): Modify to use overlay |
3451 now passed to the function. It now works properly. | |
3452 | |
30359 | 3453 * smerge-mode.el (smerge-mode-menu): Fill it out. |
3454 | |
30350 | 3455 2000-07-20 Gerd Moellmann <gerd@gnu.org> |
3456 | |
3457 * info-look.el (info-lookup): If *info* is shown in another frame | |
3458 on the same display, select that frame, instead of switching to | |
3459 the Info buffer in another window of the selected frame. | |
3460 | |
3461 * simple.el (universal-argument-map): Bind numeric keypad keys | |
3462 kp-0 to kp-9 and kp-subtract. | |
3463 (digit-argument): Handle these keys. | |
3464 | |
30346 | 3465 2000-07-20 Dave Love <fx@gnu.org> |
3466 | |
3467 * net/goto-addr.el (goto-address-fontify): Don't bother with | |
3468 buffer-modified and read-only stuff -- irrelevant with overlays. | |
3469 Put an extra property on the overlays and use it to clean up in | |
3470 case goto-address is re-run. | |
3471 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
3472 2000-07-19 Richard M. Stallman <rms@gnu.org> |
30334
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
3473 |
30337
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30335
diff
changeset
|
3474 * timer.el (run-with-idle-timer): Doc fix. |
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30335
diff
changeset
|
3475 |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3476 * mail/mail-utils.el (mail-strip-quoted-names): |
30334
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
3477 Handle case where <...> appears inside "...". |
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
3478 Use replace-match to edit the string more simply. |
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
3479 (rmail-dont-reply-to): Cope with an unmatched ". |
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
3480 |
30331 | 3481 2000-07-19 Dave Love <fx@gnu.org> |
3482 | |
3483 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs | |
3484 implementation. | |
3485 | |
3486 * mouse.el (popup-menu): Allow a list of keymaps for menu arg. | |
3487 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions. | |
3488 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff. | |
3489 | |
30318 | 3490 2000-07-19 Gerd Moellmann <gerd@gnu.org> |
3491 | |
30329 | 3492 * textmodes/refer.el: Correct maintainer's email address. |
3493 | |
3494 * progmodes/hideif.el: Correct author's email address. | |
3495 Fix typo in comment. | |
3496 | |
3497 * xml.el: New file. | |
3498 | |
30318 | 3499 * mail/mailheader.el: Correct author's mail address. |
3500 | |
3501 * gnus/parse-time.el: Correct author's mail address. | |
3502 | |
30329 | 3503 2000-07-19 Colin Walters <walters@cis.ohio-state.edu> |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3504 |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3505 * comint.el (comint-highlight-input, comint-highlight-face): |
30329 | 3506 New user options. |
3507 (comint-input-ring-file-name): Change custom type. | |
3508 (comint-mode-map): Bind mouse-2. | |
3509 (comint-insert-clicked-input): New function. | |
3510 (comint-send-input): Handle input highlighting. | |
3511 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3512 2000-07-18 Stefan Monnier <monnier@cs.yale.edu> |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3513 |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3514 * mouse.el (popup-menu): New function. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3515 (mouse-major-mode-menu): Use it. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3516 |
30311 | 3517 2000-07-18 Dave Love <fx@gnu.org> |
3518 | |
3519 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo | |
3520 improvements. | |
3521 | |
30308 | 3522 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
3523 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3524 * faces.el (face-font-selection-order) |
30308 | 3525 (face-font-family-alternatives): Add custom type. |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3526 |
30298 | 3527 2000-07-18 Dave Love <fx@gnu.org> |
3528 | |
3529 * cus-edit.el (custom-variable-reset-saved) | |
3530 (custom-variable-reset-standard): Remove unused bindings. | |
3531 | |
3532 * rect.el (open-rectangle-line): Remove unused let. | |
3533 | |
3534 * hl-line.el (hl-line-highlight): Check hl-line-mode. | |
3535 | |
30296 | 3536 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
3537 | |
3538 * cdl.el: Fix `Maintainer' keyword. | |
3539 | |
3540 * play/pong.el: Add author's email address. | |
3541 | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3542 2000-07-17 Sam Steingold <sds@gnu.org> |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3543 |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3544 * files.el (insert-directory): Call `split-string' instead of |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3545 re-implementing it. |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3546 |
30290 | 3547 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
3548 | |
3549 * mail/vms-pmail.el: Change maintainer to FSF. | |
3550 | |
3551 * net/goto-addr.el: Change maintainer to FSF. | |
3552 | |
3553 * recentf.el: Update from author. | |
3554 | |
3555 * info.el (Info-title-face-alist): Removed. | |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
3556 |
30277 | 3557 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il> |
3558 | |
3559 * eshell/eshell.el (eshell): Replace links to eshell.info with | |
3560 links to eshell, to avoid problems on systems where the manual is | |
3561 installed as `eshell'. | |
3562 * eshell/esh-cmd.el (eshell-cmd): Ditto. | |
3563 * eshell/em-smart.el (eshell-smart): Ditto. | |
3564 * eshell/em-banner.el (eshell-banner): Ditto. | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3565 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto. |
30277 | 3566 |
3567 * eshell/em-unix.el (eshell-shuffle-files): Don't disable | |
3568 same-file check in the MS-DOS version (it does support inodes). | |
3569 | |
3570 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix. | |
3571 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3572 * eshell/eshell.el (eshell-directory-name): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3573 Run default directory name through convert-standard-filename. |
30277 | 3574 |
30255 | 3575 2000-07-18 Kenichi Handa <handa@etl.go.jp> |
3576 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3577 * international/mule-cmds.el (select-safe-coding-system): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3578 Fix typo in the comment. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3579 |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3580 * language/european.el (compound-text): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3581 Force katakana-jisx0201 to be designated to G1. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3582 |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3583 * international/mule-conf.el (oldjis-newjis-jisroman-ascii): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3584 Don't translate some national variant characters of latin-jisx0201. |
30262 | 3585 (x-ctext): Force katakana-jisx0201 to be designated to G1. |
30257 | 3586 |
30255 | 3587 * international/kkc.el (kkc-after-update-conversion-functions): |
3588 New variable. | |
3589 (kkc-update-conversion): Run functions in it at the tail. | |
3590 | |
30277 | 3591 2000-07-16 John Wiegley <johnw@gnu.org> |
30254
857a458d569d
Added a new feature to align.el
John Wiegley <johnw@newartisans.com>
parents:
30253
diff
changeset
|
3592 |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3593 * lisp/align.el (align-newline-and-indent): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3594 Adding new function. for auto-aligning blocks of code on RET. |
30254
857a458d569d
Added a new feature to align.el
John Wiegley <johnw@newartisans.com>
parents:
30253
diff
changeset
|
3595 (align-region): Fixed badly formatted minibuffer message. |
857a458d569d
Added a new feature to align.el
John Wiegley <johnw@newartisans.com>
parents:
30253
diff
changeset
|
3596 |
30253 | 3597 2000-07-17 Kenichi Handa <handa@etl.go.jp> |
3598 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
3599 * international/kkc.el (kkc-show-conversion-list-count): Customize it. |
30253 | 3600 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show |
3601 the conversion list at first if appropriate. | |
3602 (kkc-next): Don't update kkc-next-count here. | |
3603 (kkc-prev): Don't update kkc-prev-count here. | |
3604 (kkc-show-conversion-list-update): Fix setting up of conversion | |
3605 list message. | |
3606 | |
30250
bf443dabe303
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30248
diff
changeset
|
3607 2000-07-16 Stefan Monnier <monnier@cs.yale.edu> |
bf443dabe303
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30248
diff
changeset
|
3608 |
30290 | 3609 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key. |
30250
bf443dabe303
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30248
diff
changeset
|
3610 |
30248 | 3611 2000-07-16 Dave Love <fx@gnu.org> |
3612 | |
3613 * cus-edit.el (custom-buffer-create-internal): Use a help-echo | |
3614 function to be more specific. | |
3615 | |
3616 * wid-edit.el (widget-specify-field, widget-specify-button): Allow | |
3617 non-string help-echo. | |
3618 (widget-types-convert-widget): Defsubst it. | |
3619 (widget-echo-help): Try to cope with a help-echo function of two | |
3620 possible sorts. | |
3621 | |
30241 | 3622 2000-07-15 Jason Rumney <jasonr@gnu.org> |
3623 | |
3624 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist): | |
3625 Declare as obsolete. | |
3626 | |
3627 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons. | |
3628 | |
30226 | 3629 2000-07-14 Gerd Moellmann <gerd@gnu.org> |
3630 | |
3631 * hilit-chg.el: Fix typo. | |
3632 | |
30221 | 3633 2000-07-14 Dave Love <fx@gnu.org> |
3634 | |
3635 * info.el (Info-mode-menu): Fix use of :help, :enable. | |
3636 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3637 2000-07-14 Stefan Monnier <monnier@cs.yale.edu> |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3638 |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3639 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3640 |
30193 | 3641 2000-07-13 Dave Love <fx@gnu.org> |
3642 | |
30195 | 3643 * emacs-lisp/easymenu.el: Doc fixes. |
3644 (easy-menu-remove): Defalias to ignore. | |
3645 | |
30193 | 3646 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback): |
3647 Call throw correctly. | |
3648 | |
30190 | 3649 2000-07-13 Gerd Moellmann <gerd@gnu.org> |
3650 | |
3651 * faces.el (frame-background-mode): Doc fix. | |
3652 | |
3653 * simple.el (eval-expression-print-length): Change custom type to | |
3654 allow entering nil as value. | |
3655 | |
30185 | 3656 2000-07-13 Dave Love <fx@gnu.org> |
3657 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3658 * progmodes/fortran.el (fortran-imenu-generic-expression): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3659 Change definition layout. |
30187 | 3660 (fortran-mode-menu): Reinstate customize entries. |
3661 | |
30185 | 3662 * cus-edit.el (custom-group-menu-create, customize-menu-create): |
3663 Use :filter, per old XEmacs code. | |
3664 | |
30170 | 3665 2000-07-12 Gerd Moellmann <gerd@gnu.org> |
3666 | |
3667 * term.el (term-send-raw-meta): Strip modifiers from the keyboard | |
3668 event when deciding what to send to the terminal. | |
3669 | |
30168 | 3670 2000-07-12 Dave Love <fx@gnu.org> |
3671 | |
3672 * cus-start.el: Add optional version as 4th element of specs and | |
3673 use it for several things new in v21. Remove load-path. Fix type | |
3674 of line-number-display-limit. | |
3675 | |
30148 | 3676 2000-07-11 Dave Love <fx@gnu.org> |
3677 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3678 * progmodes/fortran.el: Don't require easymenu. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3679 Use repeat counts in various regexps. |
30150 | 3680 (fortran-mode-syntax-table): Defvar directly. |
3681 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2) | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3682 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3683 Use defvar, not defconst. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3684 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'. |
30150 | 3685 (fortran-mode): Set fortran-comment-line-start-skip, |
3686 fortran-comment-line-start-skip, dabbrev-case-fold-search. | |
3687 (fortran-comment-indent): Use defsubst. | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3688 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3689 Use fortran-comment-indent, not fortran-comment-indent-function. |
30150 | 3690 (fortran-comment-region, fortran-electric-line-number): Simplify. |
3691 (fortran-auto-fill): New function. | |
3692 (fortran-do-auto-fill): Deleted. | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3693 (fortran-find-comment-start-skip): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3694 Check for non-null comment-start-skip. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3695 (fortran-auto-fill-mode, fortran-fill-statement): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3696 Use fortran-auto-fill. |
30150 | 3697 (fortran-fill): Use fortran-auto-fill. Check for null |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3698 comment-start-skip. Simplify final clause and use end-of-line finally. |
30150 | 3699 |
30148 | 3700 * widget.el (widget-plist-member): New alias. |
3701 | |
30146 | 3702 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il> |
3703 | |
3704 * eshell/esh-module.el (toplevel): Reference | |
3705 byte-compile-current-file only if it is bound. | |
3706 | |
30131 | 3707 2000-07-10 Gerd Moellmann <gerd@gnu.org> |
3708 | |
3709 * dired.el: Don't require `dired-aux'. | |
3710 | |
30127 | 3711 2000-07-10 Miles Bader <miles@lsi.nec.co.jp> |
3712 | |
3713 * dired-aux.el (dired-show-file-type): New function. | |
3714 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type. | |
3715 (dired-show-file-type): Add autoload. | |
3716 | |
30125 | 3717 2000-07-10 Kenichi Handa <handa@etl.go.jp> |
3718 | |
3719 * international/mule-diag.el (describe-font): Adjusted for the | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3720 change of fontset-info. |
30125 | 3721 (print-fontset): Likewise. |
3722 | |
30123
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3723 2000-07-09 Stefan Monnier <monnier@cs.yale.edu> |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3724 |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3725 * mouse.el (mouse-drag-region): Use functionp rather than fboundp. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3726 |
30111 | 3727 2000-07-07 Gerd Moellmann <gerd@gnu.org> |
3728 | |
30131 | 3729 * bindings.el: Bind `[delete]' to delete-char. |
30115 | 3730 |
30111 | 3731 * dired.el (dired-find-alternate-file): New function. |
3732 (dired-mode-map): Bind `a' to dired-find-alternate-file. | |
3733 (toplevel): Require dired-aux when compiling. | |
3734 (dired-buffers): Move defvar within file to avoid compiler warning. | |
3735 | |
3736 * info.el (Info-last-search): Variable removed. | |
3737 (Info-search-history): New variable. | |
3738 (Info-search): New Info-search-history. | |
3739 | |
3740 * battery.el, info-look.el: Change author's mail address. | |
3741 | |
30115 | 3742 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us> |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3743 |
30115 | 3744 * mail/rmail.el (rmail-clear-headers): Don't throw an error |
3745 if rmail-ignored-headers is nil. | |
3746 (rmail-retry-failure): Bind rmail-ignored-headers and | |
3747 rmail-displayed-headers to nil. | |
3748 | |
30096 | 3749 2000-07-06 Gerd Moellmann <gerd@gnu.org> |
3750 | |
30103 | 3751 * lpr.el (lpr-page-header-switches): Add `-h' switch. |
3752 (print-region-1): Don't hard code `-h' here. | |
3753 | |
30096 | 3754 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'. |
3755 | |
30103 | 3756 2000-07-01 Francesco Potorti` <pot@gnu.org> |
3757 | |
3758 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as | |
3759 exim can use "your message" instead of "the message". | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3760 |
30123
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3761 2000-07-06 Stefan Monnier <monnier@cs.yale.edu> |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3762 |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3763 * facemenu.el: Docstrings fixes. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3764 (facemenu-get-face): Don't use internal-find-face. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3765 (facemenu-iterate): Rename arg to match the docstring. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3766 |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3767 * newcomment.el (uncomment-region): Be more careful when skipping |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3768 backwards over `=' not to bump into BOBP. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
3769 |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
3770 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu> |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3771 |
30096 | 3772 * ediff-diff.el (ediff-wordify): Use syntax table. |
3773 * ediff-init.el (ediff-has-face-support-p): Use | |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
3774 ediff-color-display-p. |
30096 | 3775 (ediff-color-display-p): Use display-color-p, changed to defun |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
3776 from defsubst. |
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
3777 Got rid of special cases for NeXT and OS/2. |
30096 | 3778 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
3779 face. |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3780 |
30088
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3781 2000-07-05 Stefan Monnier <monnier@cs.yale.edu> |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3782 |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3783 * emacs-lisp/lucid.el: Require CL. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3784 (copy-tree, remprop): Remove, it's provided by CL. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3785 (map-keymap): Define in terms of cl-map-keymap. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3786 (extent-property, set-extent-end-glyph): New functions. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3787 |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3788 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3789 |
30076 | 3790 2000-07-05 Gerd Moellmann <gerd@gnu.org> |
3791 | |
30085 | 3792 * Makefile.in (DONTCOMPILE): Add comment that the name may |
3793 not be changed without changing the make-dist script. | |
3794 | |
30088
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
3795 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc. |
30076 | 3796 (cl-mapc): Use mapc instead of cl-old-mapc. |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3797 |
30067 | 3798 2000-07-05 Andrew Innes <andrewi@gnu.org> |
3799 | |
3800 * makefile.nt: Add support for `bootstrap' and related targets. | |
3801 | |
30059
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3802 2000-07-05 Stefan Monnier <monnier@cs.yale.edu> |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3803 |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3804 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3805 (easy-menu-do-define): Use `menu-item' format. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3806 Handle case where easy-menu-create-menu returns a symbol. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3807 Manually call the potential top-level filter in the function binding. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3808 (easy-menu-filter-return): New arg NAME. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3809 Convert to a keymap if MENU is an XEmacs menu. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3810 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3811 (easy-menu-converted-items-table, easy-menu-convert-item): |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3812 New var and fun to memoize easy-menu-convert-item-1. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3813 (easy-menu-do-add-item): Use it. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3814 (easy-menu-create-menu): Use easy-menu-convert-item. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3815 Wrap easy-menu-filter-return around any :filter specification. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3816 Don't convert the menu if a filter was specified. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3817 Tell easy-menu-make-symbol not to check for MENU being an expression. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3818 (easy-menu-make-symbol): New arg NOEXP. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
3819 |
30056 | 3820 2000-07-05 Gerd Moellmann <gerd@gnu.org> |
3821 | |
3822 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter | |
3823 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer. | |
3824 (eval-defun): If called with prefix arg, instrument code for | |
3825 Edebug. | |
3826 | |
3827 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string | |
3828 similar to that of eval-defun. | |
3829 | |
30029 | 3830 2000-07-04 Dave Love <fx@gnu.org> |
3831 | |
30035 | 3832 * hl-line.el (hl-line-overlay): Make it permanent-local. |
3833 | |
30029 | 3834 * calendar/todo-mode.el: Replaced with a working version, based on |
3835 revision 1.34 tidied up. | |
3836 | |
3837 2000-07-03 Miles Bader <miles@lsi.nec.co.jp> | |
30021 | 3838 |
3839 * paths.el (prune-directory-list): New function. | |
3840 (Info-default-directory-list): Rewritten to more methodically | |
3841 enumerate a big list of possible info directories (based on the | |
3842 list used by the standalone info reader). | |
30029 | 3843 |
30021 | 3844 * info.el (info-initialize): Use prune-directory-list to remove |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3845 non-existent directories from Info-directory-list. |
30021 | 3846 |
3847 * paths.el (Info-default-directory-list): Try a list of possible | |
3848 info-directories instead of a single one. Add the possible | |
3849 info directory "/usr/share/info". | |
3850 | |
3851 * woman.el (woman-man.conf-path): Explicitly include the debian | |
3852 man-db config file "/etc/manpath.config". | |
3853 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as | |
3854 are present in `manpath.config'. | |
3855 (woman-manpath): Include "/usr/share/man". | |
3856 | |
30006 | 3857 2000-07-03 Gerd Moellmann <gerd@gnu.org> |
3858 | |
30017 | 3859 * frame.el (blink-cursor-mode): Don't hide cursor initially. |
3860 | |
3861 * startup.el (command-line): Initialize blink-cursor based | |
3862 on window-system. | |
3863 | |
30014 | 3864 * frame.el (blink-cursor): Default to nil if not running under |
3865 a window-system. | |
3866 | |
30012 | 3867 * faces.el (face-spec-set): Ignore invalid attributes like 20.x. |
3868 (face-x-resources): Remove duplicate entry for :font. | |
3869 | |
30006 | 3870 * textmodes/refer.el (refer-find-entry-internal): Use some-window |
3871 instead of cycling through windows with next-window. | |
3872 | |
3873 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead | |
3874 of cycling through windows with next-window. | |
3875 | |
3876 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead | |
3877 of cycling through windows with next-window. | |
3878 | |
3879 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list) | |
3880 (edebug-get-displayed-buffer-points): Use walk-windows/some-window | |
3881 instead of cycling through windows with next-window. | |
3882 | |
3883 * calendar/appt.el (appt-select-lowest-window): Use walk-windows | |
3884 instead of cycling through windows with next-window. | |
3885 | |
3886 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead | |
3887 of cycling through windows with next-window. | |
3888 | |
3889 * terminal.el (te-process-output): Use walk-windows instead of | |
3890 cycling through windows with next-window. | |
3891 | |
3892 * server.el (server-switch-buffer): Use some-window instead of | |
3893 cycling through windows with next-window. | |
3894 | |
3895 * window.el (some-window): New function. | |
3896 (walk-windows): Remove reference to walk-windows-start. | |
29996 | 3897 |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3898 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil. |
29996 | 3899 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
3900 2000-07-03 Richard Stallman <rms@gnu.org> |
30006 | 3901 |
3902 * window.el (walk-windows): Guarantee termination by keeping a list | |
3903 of all the windows already handled. | |
3904 | |
29975 | 3905 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il> |
3906 | |
3907 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use | |
3908 window-system. | |
3909 | |
3910 * man.el (Man-notify-when-ready): Don't use window-system. If | |
3911 Man-notify-method is newframe, and the display is not | |
3912 multi-frame, select the frame created for the man page. | |
3913 (Man-init-defvars): Doc fix. | |
3914 | |
29972 | 3915 2000-06-28 Gerd Moellmann <gerd@gnu.org> |
3916 | |
29982 | 3917 * faces.el (region): Change background color for light background. |
3918 | |
3919 * ediff-wind.el (ediff-setup-control-frame): Remove :box | |
3920 attribute from mode-line face of Ediff control frame. | |
3921 | |
29972 | 3922 * replace.el (query-replace-map): Bind `e' like `E'. |
3923 | |
29967 | 3924 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il> |
3925 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3926 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>: |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3927 Change name to "Select All". |
29969 | 3928 |
29967 | 3929 * dos-fns.el (convert-standard-filename): Fix last change. |
3930 | |
29957 | 3931 2000-06-27 Gerd Moellmann <gerd@gnu.org> |
3932 | |
29959 | 3933 * help.el (describe-variable): Don't insert a second `'s' in front |
3934 of the string `value is shown below'. Since the syntax-table is | |
3935 set to emacs-lisp-mode-syntax-table, forward-sexp skips over | |
3936 an existing `'s', so that this won't be deleted. | |
3937 | |
29957 | 3938 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el: |
3939 * pcmpl-unix.el: New files. | |
3940 | |
29955
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
3941 2000-06-26 Stefan Monnier <monnier@cs.yale.edu> |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
3942 |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
3943 * wid-edit.el (widget-member): Use the new plist-member. |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
3944 |
29939 | 3945 2000-06-26 Gerd Moellmann <gerd@gnu.org> |
3946 | |
29956 | 3947 * replace.el (perform-replace): Undo change of 2000-04-04. |
3948 Instead, move backward 1 character at the end of the loop when | |
3949 necessary. | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
3950 |
29949 | 3951 * faces.el (fringe): Change face for different backgrounds. |
3952 | |
3953 * eshell/esh-module.el (toplevel): Load defgroup's differently; | |
3954 patch from John. | |
3955 | |
29939 | 3956 * eshell/*.el: Change spelling of the Free Software Foundation. |
3957 | |
3958 * eshell/esh-toggle.el: Removed. | |
3959 | |
3960 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el. | |
3961 | |
3962 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command | |
3963 interactively. | |
3964 | |
3965 2000-06-26 Alex Schroeder <alex@gnu.org> | |
3966 | |
3967 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to | |
3968 `define-key'; instead of checking `(emacs-version)' check for | |
3969 `set-keymap-parent' and `set-keymap-name' directly. Add entries | |
3970 for `;' and `o' which might be electric. | |
3971 | |
3972 (sql-electric-stuff): New user option. | |
3973 (sql-magic-go): New function which uses `sql-electric-stuff'. | |
3974 (sql-magic-semicolon): New function which uses | |
3975 `sql-electric-stuff'. | |
3976 | |
3977 (sql-accumulate-and-indent): Insert newline if `comint-accumulate' | |
3978 is not fboundp. | |
3979 | |
3980 (sql-oracle-options): New variable. | |
3981 (sql-oracle): Use it. | |
3982 | |
3983 (sql-imenu-generic-expression): Doc change. | |
3984 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer | |
3985 is used. | |
3986 | |
3987 (sql-informix): Added command line parameter "-" to force | |
3988 sql-informix-program to use stdout. | |
3989 | |
29924 | 3990 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il> |
3991 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
3992 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix. |
29924 | 3993 (cp864-decode-table): Doc fix. |
3994 (cp720-decode-table): New variable, supports the Arabic OEM | |
3995 codepage used by Windows. | |
3996 (cp737-decode-table): New, Greek OEM codepage used by Windows. | |
3997 | |
29920 | 3998 2000-06-23 Dave Love <fx@gnu.org> |
3999 | |
4000 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version. | |
4001 (font-lock-fontify-anchored-keywords): Use | |
4002 line-beginning-position. | |
4003 (global-font-lock-mode): Use mapc. | |
4004 | |
29908
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
4005 2000-06-23 Stefan Monnier <monnier@cs.yale.edu> |
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
4006 |
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
4007 * eshell/esh-module.el: Require CL when compiling. |
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
4008 |
29870 | 4009 2000-06-23 Gerd Moellmann <gerd@gnu.org> |
4010 | |
29885 | 4011 * comint.el (comint-substitute-in-file-name): Call replace-match |
4012 with second and third arg t. | |
4013 | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
4014 * cus-edit.el (custom-button-face, custom-button-pressed-face): |
29881 | 4015 Specify foreground color. |
4016 | |
4017 * faces.el (tool-bar, mode-line, header-line): Specify foreground | |
4018 color. | |
4019 | |
29876 | 4020 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el. |
4021 | |
4022 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and | |
4023 cddr instead of cdddr. | |
4024 | |
29873 | 4025 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list |
4026 instead of copy-list. | |
4027 | |
4028 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead | |
4029 of copy-list. | |
4030 | |
29870 | 4031 * subdirs.el: Add eshell subdirectory. |
4032 | |
4033 * eshell: New subdirectory containing the Eshell package. | |
4034 | |
4035 * pcomplete.el: New file. | |
4036 | |
29885 | 4037 2000-06-23 Paul Eggert <eggert@twinsun.com> |
4038 | |
29888 | 4039 * mail/mailpost.el (post-mail-send-it): Make sure file has |
4040 proper permissions from birth. | |
4041 | |
4042 * files.el (basic-save-buffer-2): When temporarily setting | |
4043 file modes, set them to current modes plus 0200, not to 0777. | |
4044 | |
29885 | 4045 * emerge.el (emerge-make-temp-file): Make sure file has proper |
4046 permissions from birth. | |
4047 | |
29857 | 4048 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il> |
4049 | |
4050 * files.el (make-backup-file-name-1): On DOS/Windows, run the | |
4051 backup file name through convert-standard-filename. | |
4052 | |
4053 * dos-fns.el (convert-standard-filename): Convert leading | |
4054 directories as well. When long file names are supported, convert | |
4055 characters that are invalid in Windows file names. | |
4056 | |
29849 | 4057 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
4058 | |
4059 * ps-print.el: Fix bug: if ^L is the very first buffer character, | |
4060 ps-print crashes. New feature: page selection for printing. Create | |
4061 raw-text-unix coding system for XEmacs. Doc fix. | |
4062 (ps-print-version): New version number (5.2.3). | |
4063 (ps-plot-region): Bug fix. | |
4064 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file) | |
4065 (ps-header-sheet, ps-generate, ps-end-job): Code fix. | |
4066 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New | |
4067 funs. | |
4068 (ps-selected-pages, ps-last-selected-pages, ps-first-page) | |
4069 (ps-last-page): New vars. | |
4070 | |
29845 | 4071 2000-06-21 Gerd Moellmann <gerd@gnu.org> |
4072 | |
4073 * progmodes/sh-script.el (sh-while-getopts): Fix handling of | |
4074 empty option string. | |
4075 | |
29839 | 4076 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il> |
4077 | |
4078 * man.el (man): Doc fix. | |
4079 | |
29829 | 4080 2000-06-21 Kenichi Handa <handa@etl.go.jp> |
4081 | |
4082 * international/mule-cmds.el (set-language-info-alist): Docstring | |
4083 fixed. | |
4084 | |
29814 | 4085 2000-06-20 Gerd Moellmann <gerd@gnu.org> |
4086 | |
4087 * version.el (emacs-version): Use ISO date format. | |
4088 | |
4089 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d' | |
4090 instead of `M-backspace'. | |
4091 | |
4092 * simple.el (turn-off-auto-fill): New function. | |
4093 | |
29802
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4094 2000-06-20 Stefan Monnier <monnier@cs.yale.edu> |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4095 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4096 * jit-lock.el (with-buffer-prepared-for-jit-lock): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4097 Renamed from with-buffer-prepared-for-font-lock and use |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4098 inhibit-modification-hooks rather than setting *-change-functions. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4099 Update all functions to use the new name. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4100 (jit-lock-first-unfontify-pos): New semantics (and doc). |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4101 (jit-lock-mode): Make non-interactive. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4102 Don't automatically turn on font-lock. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4103 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4104 Always use jit-lock-after-change. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4105 Remove and restore font-lock-after-change-function. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4106 (turn-on-jit-lock, jit-lock-after-fontify-buffer) |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4107 (jit-lock-after-unfontify-buffer): Remove. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4108 (jit-lock-stealth-fontify): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4109 Reset jit-lock-first-unfontify-pos to point-max rather than to nil. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4110 (jit-lock-after-change): Set the `fontified' text-prop to nil. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4111 |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4112 2000-06-20 Sam Steingold <sds@gnu.org> |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4113 |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4114 * emacs-lisp/cl-indent.el (toplevel): Indent |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4115 `print-unreadable-object' properly. Untabify. |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4116 |
29777
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4117 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl> |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4118 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4119 * textmodes/reftex.el (reftex-find-citation-regexp-format): |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4120 Support for bibentry. |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4121 (reftex-compile-variables): Fixed problem with end of section-re. |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4122 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4123 * texmodes/reftex-dcr.el (reftex-view-crossref, |
29802
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4124 reftex-view-crossref-from-bibtex): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4125 Deal with changed `reftex-find-citation-regexp-format'. |
29777
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4126 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex): |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4127 Replaced `remprop' with `put'. |
29802
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4128 (reftex-view-crossref, reftex-view-crossref-when-idle): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4129 Support for bibentry. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4130 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4131 * textmodes/reftex-vars.el (reftex-cite-format-builtin): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4132 New entry for bibentry package. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4133 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4134 * textmodes/reftex-parse.el (reftex-locate-bibliography-files): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4135 Regexp also matches "\nobibliography". |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4136 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4137 * textmodes/reftex-global.el (reftex-renumber-simple-labels): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
4138 Call `reftex-ensure-write-access' before doing anything. |
29777
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4139 (reftex-ensure-write-access): New function. |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4140 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4141 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl> |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4142 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4143 * progmodes/idlwave.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4144 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4145 * progmodes/idlw-shell.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4146 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4147 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4148 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4149 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4150 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
4151 |
29776 | 4152 2000-06-20 Dave Love <fx@gnu.org> |
4153 | |
4154 * faces.el (frame-background-mode): Use set-default, not set, in | |
4155 setter. | |
4156 (frame-update-faces, frame-update-face-colors): Define with | |
4157 defalias. | |
4158 | |
4159 * enriched.el (enriched-decode-foreground) | |
4160 (enriched-decode-background): Don't use internal-find-face. | |
4161 | |
4162 * apropos.el: Doc fixes. | |
4163 | |
4164 * cus-edit.el (customize-changed-options): Check arg. | |
4165 (customize-version-lessp): Don't require decimal point. | |
4166 | |
4167 * custom.el (defcustom, defgroup): Doc fix. | |
4168 | |
4169 * newcomment.el (comment) <defgroup>: Add :version. | |
4170 (comment-multi-line): Doc fix. | |
4171 | |
4172 * emulation/mlsupport.el (define-hooked-local-abbrev, | |
4173 define-hooked-global-abbrev): Fix, using define-abbrev. | |
4174 | |
29747 | 4175 2000-06-19 Gerd Moellmann <gerd@gnu.org> |
4176 | |
4177 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking | |
4178 the whole buffer. | |
4179 | |
29740 | 4180 2000-06-19 Dave Love <fx@gnu.org> |
4181 | |
4182 * menu-bar.el (menu-bar-options-save): New function. | |
4183 (menu-bar-options-menu): Use it. | |
4184 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>: | |
4185 Simplify. | |
4186 | |
29731
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
4187 2000-06-19 Andreas Schwab <schwab@suse.de> |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
4188 |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
4189 * progmodes/etags.el (tags-query-replace): Put new parameters |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
4190 START and END at the end, for backward compatibility. |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
4191 |
29720 | 4192 2000-06-19 Kenichi Handa <handa@etl.go.jp> |
4193 | |
4194 * international/codepage.el: | |
4195 (cp-coding-system-for-codepage-1): Delete special codes for | |
4196 generating xxx-dos coding system because now a CCL based coding | |
4197 system can handle EOL conversion by default. | |
4198 | |
4199 * international/mule.el (make-coding-system): Generate subsidiary | |
4200 coding systems for EOL handling variants even for a CCL based | |
4201 coding system. | |
4202 | |
29718 | 4203 2000-06-19 Kenichi Handa <handa@etl.go.jp> |
4204 | |
4205 * international/isearch-x.el (isearch-minibuffer-input-method) | |
4206 (isearch-minibuffer-input-method-function): These variables | |
4207 deleted. | |
4208 (isearch-with-input-method): Don't use the above variables. | |
4209 (isearch-process-search-multibyte-characters): Likewise. Call | |
4210 read-string with the arg INHERIT-INPUT-METHOD t. | |
4211 | |
29707
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
4212 2000-06-17 Stefan Monnier <monnier@cs.yale.edu> |
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
4213 |
29710
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4214 * font-lock.el (font-lock-after-fontify-buffer) |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4215 (font-lock-after-unfontify-buffer): No need to call back to jit-lock. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4216 |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4217 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4218 Use consistent make-local-variable style for font-lock-fontified. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4219 (jit-lock-fontify-buffer): |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4220 Don't bother checking for font-lock-mode and jit-lock-mode. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
4221 |
29707
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
4222 * time.el: Remove trailing ^M that prevent CVS-merging. |
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
4223 |
29712 | 4224 2000-06-16 Gerd Moellmann <gerd@gnu.org> |
4225 | |
4226 * Makefile.in (distclean): New target. | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4227 |
29705
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
4228 2000-06-16 Stefan Monnier <monnier@cs.yale.edu> |
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
4229 |
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
4230 * Makefile.in (srcdir): Define for update-subdirs. |
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
4231 |
29696 | 4232 2000-06-16 Gerd Moellmann <gerd@gnu.org> |
4233 | |
4234 * find-lisp.el: New file. | |
4235 | |
29694 | 4236 2000-06-16 Andrew Innes <andrewi@gnu.org> |
4237 | |
4238 * time.el (display-time-mail-function): New variable, to allow | |
4239 external packages to indicate when new mail is available. | |
4240 (display-time-update): Use it. | |
4241 | |
29689 | 4242 2000-06-16 Kenichi Handa <handa@etl.go.jp> |
4243 | |
29691 | 4244 * international/mule.el (mule-version): Change version name to |
4245 SAKAKI. AOI has already been used by Meadow. | |
4246 | |
29689 | 4247 * international/quail.el (quail-show-guidance-buf): To find the |
4248 bottom window (but minibuffer), pay attention to the height of | |
4249 minibuffer. | |
4250 | |
29670 | 4251 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il> |
4252 | |
29682 | 4253 * arc-mode.el (archive-mode-map): Use the new menu-item format for |
4254 menu-bar menus. Add help strings. Don't remove the Edit menu | |
4255 from the menu bar, as the menu bar has enough space now. | |
4256 | |
29680 | 4257 * Makefile.in (SHELL): Make sure /bin/sh is used. |
4258 | |
29670 | 4259 * woman.el (woman-man-buffer): Fix bold and underlined CJK |
4260 characters, which use series of two ^H characters instead of one. | |
4261 | |
29667 | 4262 2000-06-15 Gerd Moellmann <gerd@gnu.org> |
4263 | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4264 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table) |
29686 | 4265 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4266 functions. |
29686 | 4267 (Info-find-node-2): Try a case-sensitive search first, then |
4268 do a case-insensitive search. | |
4269 | |
4270 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English | |
4271 tutorials. | |
4272 | |
29676 | 4273 * complete.el (PC-env-vars-alist): New variable. |
4274 (PC-complete-as-file-name): New function. | |
4275 (partial-completion-mode): Initialize PC-env-vars-alist from | |
4276 process-environment. | |
4277 (PC-do-completion): Handle completion of env vars. | |
4278 | |
4279 * info.el (Info-set-mode-line): Show file name in mode line, | |
4280 use `*Info*' instead of `Info:'. | |
4281 | |
29667 | 4282 * startup.el (command-line-1): Change copyright messages to year |
4283 2000. | |
4284 | |
29665 | 4285 2000-06-15 Dave Love <fx@gnu.org> |
4286 | |
4287 * net/goto-addr.el (goto-address-fontify): Use keymap property, | |
4288 not local-map. | |
4289 | |
29658 | 4290 2000-06-15 Kenichi Handa <handa@etl.go.jp> |
4291 | |
4292 * international/mule.el (set-buffer-file-coding-system): Almost | |
4293 rewritten to handle `undecided' as no-op. | |
4294 | |
29654 | 4295 2000-06-14 Gerd Moellmann <gerd@gnu.org> |
4296 | |
29667 | 4297 * Makefile.in: New file. |
29657 | 4298 |
4299 * Makefile: Removed. | |
4300 | |
29654 | 4301 * net/goto-addr.el (goto-address): Don't bind C-c RET locally. |
4302 (goto-address-highlight-keymap): Bind C-c RET. | |
4303 | |
29640 | 4304 2000-06-14 Kenichi Handa <handa@etl.go.jp> |
4305 | |
29649 | 4306 * mail/sendmail.el (sendmail-send-it): The temporary buffer |
4307 inherits buffer-file-coding-system of the current buffer. | |
29647 | 4308 |
29645 | 4309 * tar-mode.el (tar-extract): For goto-char, use (point-min), not |
4310 0. Give correct argument to set-auto-coding-function. | |
4311 (tar-expunge): For goto-char, use (point-min), not 0. | |
4312 (tar-clear-modification-flags): For goto-char, use (point-min), not 1. | |
4313 (tar-subfile-save-buffer): Likewize. | |
4314 | |
29640 | 4315 * international/mule.el |
4316 (after-insert-file-set-buffer-file-coding-system): Call | |
4317 set-buffer-file-coding-system with the arg FORCE t. | |
4318 | |
29633 | 4319 2000-06-13 Gerd Moellmann <gerd@gnu.org> |
4320 | |
4321 * mail/sendmail.el (mail-specify-envelope-from): Initialize to | |
4322 nil. Contemporary sendmails issue an X-Authentication-Warning if | |
29676 | 4323 the sender is set with `-f'. |
29633 | 4324 |
29622 | 4325 2000-06-13 Dave Love <fx@gnu.org> |
4326 | |
29630 | 4327 * help.el (describe-function-1): Kluge around cases of functions |
4328 fset to subrs whose doc doesn't match their symbol-name. | |
4329 | |
29627 | 4330 * image.el (insert-image): Default STRING to a space. |
29625 | 4331 |
29622 | 4332 * info.el Doc fixes. |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4333 (Info-build-node-completions): Match Ref tags. |
29622 | 4334 |
29612 | 4335 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il> |
4336 | |
29615 | 4337 * frame.el (display-multi-frame-p, display-multi-font-p): New |
4338 defaliases for display-graphic-p. | |
4339 | |
29612 | 4340 * hl-line.el: Fixed a typo in commentary. |
4341 | |
29609 | 4342 2000-06-13 Kenichi Handa <handa@etl.go.jp> |
4343 | |
4344 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo | |
4345 fixed. | |
4346 | |
29608 | 4347 2000-06-12 Dave Love <fx@gnu.org> |
4348 | |
4349 * image.el (insert-image): Save a little consing. | |
4350 | |
29598 | 4351 2000-06-12 Kenichi Handa <handa@etl.go.jp> |
4352 | |
4353 * language/tibet-util.el: Convert all tibetan-1-column characters | |
4354 to the corresponding tibetan characters. | |
4355 (tibetan-add-components): Delete code for the special treatment of | |
4356 'a chung. | |
4357 | |
4358 * language/tibetan.el (tibetan-composable-pattern): Fix previous | |
4359 change. | |
4360 (tibetan-vowel-transcription-alist): More rules added. | |
4361 (tibetan-composite-vowel-alist): New variable. | |
4362 (tibetan-precomposition-rule-alist): More rules added. | |
4363 | |
29578
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4364 2000-06-12 Stefan Monnier <monnier@cs.yale.edu> |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4365 |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4366 * startup.el (command-line): Only call menu-bar-mode if interactive. |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4367 |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4368 * thingatpt.el (toplevel symbol-properties): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4369 * textmodes/makeinfo.el (makeinfo-compile): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4370 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets): |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4371 * progmodes/hideif.el (hif-compress-define-list) |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4372 (hide-ifdef-use-define-alist): |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4373 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry) |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4374 (ange-ftp-vms-add-file-entry): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4375 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4376 * man.el (Man-build-man-command): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4377 * mail/rnewspost.el (news-reply-header-hook): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4378 * info.el (Info-insert-dir): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4379 * emulation/mlconvert.el (backward-word, forward-word, setq): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4380 * emacs-lisp/gulp.el (gulp-send-requests): |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4381 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1) |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4382 (byte-optimize-inline-handler, byte-optimize-form-code-walker) |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4383 (byte-optimize-apply, end of file): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4384 * emacs-lisp/advice.el (ad-advice-class-completion-table) |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4385 (ad-make-freeze-definition): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4386 * startup.el (command-line, command-line-1): Don't quote lambdas. |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
4387 |
29578
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4388 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4389 (cvs-cleanup-removed): New function. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4390 (cvs-cleanup-functions): New var. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4391 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4392 some flexibility in specifying additional entries to auto-cleanup. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4393 (cvs-quickdir): New function. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4394 (cvs-mode-insert): Use cvs-fileinfo-from-entries. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4395 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4396 (cvs-mode-find-file): Check that we are on a filename or dirname |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4397 when invoked through a mouse-click. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4398 (cvs-full-path): Remove. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4399 (cvs-dired-action): Re-introduced. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4400 (cvs-dired-noselect): Use it. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4401 (vc-post-command-functions): use this new hook if available. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4402 |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4403 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4404 (cvs-status-map): Don't inherit from cvs-mode-map anymore. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4405 (cvs-filename-map, cvs-dirname-map): Remove. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4406 (cvs-default-action): Remove. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4407 (cvs-add-face): Use `keymap' rather than `local-map' property, and only |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4408 if the arg is really a keymap. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4409 (cvs-fileinfo-pp): Don't use any special map for file and dir names. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4410 Don't hardcode the mapping from state (aka type) to face, but check |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4411 the var cvs-fi-<type>-face instead. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4412 (cvs-fileinfo-from-entries): New function. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4413 |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4414 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks): |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4415 Docstring fix. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4416 (cvs-find-file-and-jump): Change default to be safer. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4417 (cvs-mode-diff-map): Define it as a function as well. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4418 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4419 Bind mouse-2 in this global map rather than with text-properties. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4420 |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4421 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4422 file to resolve the ambiguity between C(conflict) and C(need-merge). |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
4423 |
29574 | 4424 2000-06-12 Kenichi Handa <handa@etl.go.jp> |
4425 | |
4426 * international/mule.el (set-buffer-file-coding-system): If | |
4427 CODING-SYSTEM is nil, set buffer-file-coding-system to nil | |
4428 unconditionally. | |
4429 | |
29568 | 4430 2000-06-12 Dave Love <fx@gnu.org> |
4431 | |
4432 * wid-edit.el (widget-specify-button): Really suppress the face if | |
4433 required. | |
4434 | |
29556 | 4435 2000-06-11 Gerd Moellmann <gerd@gnu.org> |
4436 | |
4437 * term/x-win.el (x-colors): Add colors from recent rgb.txt. | |
4438 | |
29553
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4439 2000-06-11 Stefan Monnier <monnier@cs.yale.edu> |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4440 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4441 * imenu.el (imenu-generic-expression): Docstring fix. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4442 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4443 * composite.el (composition-function-table): Move the `put' |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4444 below the autoload cookie so we can load the file before loaddefs. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4445 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4446 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4447 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4448 * emacs-lisp/autoload.el (make-autoload): Use `cond'. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4449 Handle easy-mmode-define-global-mode. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4450 For complex macros like define-minor-mode that can generate |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4451 several autoload entries, try to autoload entries in the |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4452 macroexpanded code. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4453 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4454 * emacs-lisp/easy-mmode.el (define-minor-mode): |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4455 If KEYMAP is a symbol, just use it. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4456 Use byte-compile-current-file and load-file-name to infer the |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4457 proper :require to pass to defcustom. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4458 Wrap the hook var into `progn' so as not to autoload it. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4459 Add a :autoload-end cookie. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4460 Be more careful about the evaluation of KEYMAP. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4461 (easy-mmode-define-global-mode): Add a :autoload-end cookie. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4462 (define-derived-mode): Move define-abbrev-table outside of defvar. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4463 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4464 2000-06-10 Stefan Monnier <monnier@cs.yale.edu> |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4465 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4466 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch). |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4467 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4468 (backup-compiled-files): Ignore errors during `tar'. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4469 (bootstrap): Make autoloads before elc files. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4470 |
29542 | 4471 2000-06-10 Kenichi Handa <handa@etl.go.jp> |
4472 | |
4473 * international/mule.el (set-buffer-file-coding-system): If one of | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
4474 undecided-XXX is specified, change only EOL conversion. |
29542 | 4475 |
4476 * international/mule-conf.el (unix): New alias for the coding | |
4477 system undecided-unix. | |
4478 | |
29528 | 4479 2000-06-09 Dave Love <fx@gnu.org> |
4480 | |
29535 | 4481 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region. |
4482 | |
29553
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
4483 * progmodes/executable.el: Byte compile dynamic. |
29528 | 4484 (executable-insert): Change custom type. |
4485 (executable-find): Add autoload cookie. | |
29531 | 4486 (executable-make-buffer-file-executable-if-script-p): New |
4487 function. After Noah Friedman. | |
29528 | 4488 |
4489 * files.el (after-save-hook): Customize, with | |
29531 | 4490 executable-make-buffer-file-executable-if-script-p as an option. |
29528 | 4491 |
29518 | 4492 2000-06-09 Kenichi Handa <handa@etl.go.jp> |
4493 | |
29522 | 4494 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font |
4495 "tib24p-mule.bdf" for Tibetan. | |
4496 | |
29520 | 4497 * composite.el (decompose-composite-char): Declare it as obsolete. |
4498 | |
29541 | 4499 * man.el (Man-fontify-manpage): Pay attention to underline and |
4500 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX). | |
29518 | 4501 |
29517 | 4502 2000-06-08 Gerd Moellmann <gerd@gnu.org> |
4503 | |
4504 * thingatpt.el (forward-thing): Use functionp instead of fboundp. | |
4505 Set maintainer to FSF since author isn't reachable. | |
4506 | |
29508 | 4507 2000-06-08 Dave Love <fx@gnu.org> |
4508 | |
4509 * international/mule-cmds.el (select-safe-coding-system): If | |
4510 DEFAULT-CODING-SYSTEM is not specified, also check the most | |
4511 preferred coding-system if buffer-file-coding-system is | |
4512 `undecided'. From Handa. | |
4513 | |
29503 | 4514 2000-06-08 Kenichi Handa <handa@etl.go.jp> |
4515 | |
4516 * international/mule.el | |
4517 (after-insert-file-set-buffer-file-coding-system): If the buffer | |
4518 size is greater than INSERTED, judget that we are not visiting. | |
4519 | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4520 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org> |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4521 |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4522 * whitespace.el (defgroup whitespace): Comment out `:version'. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4523 XEmacs 20.4 has problems defining the group with this present. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4524 We'll have this commented out till get resolve the problem. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4525 |
29498 | 4526 2000-06-07 Gerd Moellmann <gerd@gnu.org> |
4527 | |
4528 * align.el: Update from author. | |
4529 | |
4530 2000-06-07 Jari Aalto <jari.aalto@poboxes.com> | |
4531 | |
4532 * apropos.el (apropos-mode-hook): New user variable. | |
4533 (apropos-mode): Run apropos-mode-hook. | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4534 |
29498 | 4535 2000-06-07 David Ponce <david@dponce.com> |
4536 | |
4537 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files | |
4538 commands. Require `wid-edit' at run-time. | |
4539 | |
4540 2000-06-07 David Ponce <david@dponce.com> | |
4541 | |
4542 * recentf.el: Added some "Commentary". | |
4543 (recentf-open-more-files, recentf-edit-list): Minor changes to | |
4544 move the point at the top of the file list. This behaviour is | |
4545 consistent with the menu one when the list contains a lot of | |
4546 files. | |
4547 (recentf-cleanup): Now displays the number of items removed from | |
4548 the list. | |
4549 (recentf-relative-filter) New menu filter to show filenames | |
4550 relative to `default-directory'. | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4551 |
29498 | 4552 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
4553 | |
4554 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size | |
4555 with/without giving an error if PostScript printer doesn't have this | |
4556 kind of page size. Zebra Stripe continues or restarts on next page. | |
4557 Manual/automatic paper feeding. Switch or not the header. | |
4558 (ps-print-version): New version number (5.2.2). | |
4559 (ps-windows-system): Include emx as a Windows system. | |
4560 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face) | |
4561 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces) | |
4562 (ps-background-text): Code fix. | |
4563 (ps-error-handler-message, ps-user-defined-prologue) | |
4564 (ps-print-prologue-header, ps-printer-name) | |
4565 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color) | |
4566 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg) | |
4567 (ps-use-face-background): Customization fix. | |
4568 (ps-n-up-database): Data fix. | |
4569 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed) | |
4570 (ps-switch-header): New vars. | |
4571 (ps-xemacs-color-name, ps-face-foreground-name) | |
4572 (ps-face-background-name, ps-boolean-constant): New funs. | |
4573 | |
29491 | 4574 2000-06-07 Dave Love <fx@gnu.org> |
4575 | |
4576 * allout.el: New version from Manheimer. | |
4577 | |
29483 | 4578 2000-06-07 Kenichi Handa <handa@etl.go.jp> |
4579 | |
4580 * textmodes/fill.el (fill-find-break-point): Check the validity of | |
4581 charset. | |
4582 | |
29476
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
4583 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
4584 |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
4585 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list) |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
4586 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames): |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
4587 Call display-color-p and display-mouse-p instead of looking at |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
4588 window-system. |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
4589 |
29471 | 4590 2000-06-06 Dave Love <fx@gnu.org> |
4591 | |
4592 * image.el (find-image): Doc fix. Return nil if image not found. | |
4593 (put-image, insert-image): Make STRING arg optional. | |
4594 | |
29455 | 4595 2000-06-06 Kenichi Handa <handa@etl.go.jp> |
4596 | |
4597 * language/vietnamese.el: Remove eval-when-compile. | |
4598 (viet-viscii-nonascii-translation-table): Define it as a | |
4599 translation table made from viet-viscii-decode-table. | |
4600 (viet-viscii-encode-table): Define it as a translation table made | |
4601 from the reverse map of above. | |
4602 (viet-vscii-nonascii-translation-table): Define it as a | |
4603 translation table made from viet-vscii-decode-table. | |
4604 (viet-vscii-encode-table): Define it as a translation table made | |
4605 from the reverse map of above. | |
4606 (ccl-decode-viscii): Use translate-character. | |
4607 (ccl-encode-viscii, ccl-encode-viscii-font) | |
4608 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font): | |
4609 Likewize. | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4610 |
29455 | 4611 * language/cyrillic.el: Remove eval-when-compile. |
4612 (cyrillic-koi8-r-nonascii-translation-table): Define it as a | |
4613 translation table made from cyrillic-koi8-r-decode-table. | |
4614 (cyrillic-koi8-r-encode-table): Define it as a translation table | |
4615 made from the reverse map of above. | |
4616 (ccl-decode-koi8): Use translate-character. | |
4617 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize | |
4618 (cyrillic-alternativnyj-nonascii-translation-table): Define it as | |
4619 a translation table made from cyrillic-alternativnyj-decode-table. | |
4620 (cyrillic-alternativnyj-encode-table): Define it as a translation | |
4621 table made from the reverse map of above. | |
4622 (ccl-decode-alternativnyj): Use translate-character. | |
4623 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font): | |
4624 Likewize | |
4625 | |
4626 * international/mule-diag.el (non-iso-charset-alist): Specify | |
4627 translation table symbol instead of translation table itself. | |
4628 (list-block-of-chars): CHARSET may be a translation table symbol. | |
4629 | |
4630 * international/mule.el (make-coding-system): If CODING-SYSTEM | |
4631 already exists, override it. | |
4632 | |
4633 * international/fontset.el: Use family `proportional' for Tibetan | |
4634 fonts. | |
4635 | |
4636 * international/ccl.el (ccl-compile-translate-character): Don't | |
4637 check if Rrr has property translation-table. | |
4638 (ccl-compile-map-multiple): Modified to avoid compiler warning. | |
4639 | |
29447 | 4640 2000-06-05 Gerd Moellmann <gerd@gnu.org> |
4641 | |
4642 * info.el: Bind case-fold-search to t when searching in case | |
4643 a user sets it to nil in a hook. | |
4644 | |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4645 2000-06-05 Stefan Monnier <monnier@cs.yale.edu> |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4646 |
29426
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4647 * autoarg.el (autoarg-mode, autoarg-kp-mode): |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4648 * hl-line.el (hl-line-mode): Use the new :global key argument. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4649 |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4650 * tar-mode.el (tar-header-block-recompute-checksum): Remove. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4651 (tar-clip-time-string): Prepend a space. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4652 (tar-grind-file-mode): Construct a string rather than modifying one. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4653 (tar-header-block-summarize): Fix docstring. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4654 Use `format' rather than an error-prone set of copy-loops. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4655 |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4656 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re) |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4657 (diff-goto-source, diff-unified->context, diff-context->unified) |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4658 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4659 understand the format output by the `-p' argument to diff. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4660 |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4661 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list) |
29426
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4662 (sh-re-done): Use defconst. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4663 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4664 (sh-help-string-for-variable, sh-guess-basic-offset): |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4665 Don't quote lambdas. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4666 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4667 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
4668 |
29421
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
4669 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
4670 (mh-letter-mode): Derive from text-mode. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
4671 This implicitly means that it now calls kill-all-local-variables. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
4672 Also remove the Emacs-18 compatibility code. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
4673 |
29417
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4674 * emacs-lisp/autoload.el (make-autoload): Simplify docstring. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4675 Make use of symbol-property doc-string-elt. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4676 Use memq rather than a sequence of eq. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4677 (doc-string-elt): Fix the wrong or missing previously unused values. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4678 (autoload-print-form): New function extracted from |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4679 generate-file-autoloads to allow recursion when handling progn |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4680 so that defvar's and defun's docstrings are properly printed. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4681 (generate-file-autoloads): Use it. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
4682 |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4683 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4684 Use find-file-hooks in the minor-mode function. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4685 Be careful not to loop indefinitely in the post-command-hook function. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4686 |
29412
ecd388a0937d
2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29407
diff
changeset
|
4687 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu> |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4688 |
29447 | 4689 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on |
29412
ecd388a0937d
2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29407
diff
changeset
|
4690 tty's. |
29447 | 4691 * ediff-diff.el (ediff-exec-process): Use --binary for fine |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4692 differences whenever appropriate. |
29447 | 4693 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members. |
4694 * viper.el (find-file, find-file-other-window): Get viper to do | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4695 wildcards. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4696 |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4697 2000-06-04 Stefan Monnier <monnier@cs.yale.edu> |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4698 |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4699 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4700 (jit-lock-fontify-buffer): New function for JIT refontification. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4701 (jit-lock-mode): Fix docstring. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4702 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4703 Remove jit-lock-after-change from the _local_ hook. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4704 (jit-lock-function-1): Fix docstring. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4705 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4706 * info.el (Info-on-current-buffer): Initialize info. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4707 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4708 * newcomment.el (comment-indent): Ignore comment-indent-hook. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4709 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4710 * progmodes/tcl.el (tcl-indent-for-comment): |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4711 Ignore comment-indent-hook. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4712 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4713 * emacs-lisp/easy-mmode.el: Require CL during compilation. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4714 (easy-mmode-define-toggle): Remove (inline into define-minor-mode). |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4715 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4716 and improve to use the lighter to guess the capitalization. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4717 (define-minor-mode): Inline code from easy-mmode-define-toggle. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4718 Add keyword arguments to specify global-ness or the custom group. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4719 Add local-map and help-echo properties to the lighter. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4720 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors. |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
4721 (easy-mmode-define-global-mode): New macro. |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4722 |
29403 | 4723 2000-06-02 Dave Love <fx@gnu.org> |
4724 | |
4725 * wid-edit.el: byte-compile-dynamic since we typically don't use | |
4726 all the widgets. Don't require cl or widget. Remove | |
4727 eval-and-compile. Don't autoload finder-commentary. Doc fixes. | |
4728 (widget-read-event): Removed. Callers changed to use read-event. | |
4729 (widget-button-release-event-p): Renamed from | |
4730 button-release-event-p. | |
4731 (widget-field-add-space, widget-field-use-before-change): | |
4732 Uncustomize. | |
4733 (widget-specify-field): Use keymap property, not local-map. | |
4734 (widget-specify-button): Obey :suppress-face. | |
4735 (widget-specify-insert): Use modern backquote syntax. | |
4736 (widget-image-directory): Renamed from widget-glyph-directory. | |
4737 (widget-image-enable): Renamed from widget-glyph-enable. | |
4738 (widget-image-find): Replaces widget-glyph-find. | |
4739 (widget-button-pressed-face): Move defvar. | |
4740 (widget-image-insert): Replaces widget-glyph-insert. | |
4741 (widget-convert): Use keywordp. | |
4742 (widget-leave-text, widget-children-value-delete): Use mapc. | |
4743 (widget-keymap): Remove XEmacs stuff. | |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
4744 (widget-field-keymap, widget-text-keymap): Define all inside defvar. |
29403 | 4745 (widget-button-click): Don't set point at the click, but re-centre |
4746 if we scroll out of window. Rewritten for images v. glyphs &c. | |
4747 (widget-tabable-at): Use POS arg, not point. | |
4748 (widget-beginning-of-line, widget-end-of-line) | |
4749 (widget-item-value-create, widget-sublist, widget-princ-to-string) | |
4750 (widget-sexp-prompt-value, widget-echo-help): Simplify. | |
4751 (widget-default-create): Use widget-image-insert; some rewriting. | |
4752 (widget-visibility-value-create) | |
4753 (widget-push-button-value-create, widget-toggle-value-create): Use | |
4754 widget-image-insert. | |
4755 (checkbox): Create on and off images dynamically. | |
4756 (documentation-link): Change :help-echo. | |
4757 (widget-documentation-link-echo-help): Remove. | |
4758 | |
29400
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4759 2000-06-02 Stefan Monnier <monnier@cs.yale.edu> |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4760 |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4761 * log-edit.el (log-edit-done): Thinko in the "same comment" detection. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4762 |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4763 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4764 (easy-mmode-define-toggle, define-minor-mode): Use it. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4765 (easy-mmode-define-keymap): Docstring fix. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4766 (define-derived-mode): Default PARENT to fundamental-mode. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4767 Add the derived-mode-parent symbol-property. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4768 (easy-mmode-derived-mode-p): New function. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4769 |
29383 | 4770 2000-06-02 Dave Love <fx@gnu.org> |
4771 | |
29392 | 4772 * files.el (convert-standard-filename): Doc fix. |
4773 (normal-backup-enable-predicate): New function. | |
4774 (backup-enable-predicate): Use it to replace the lambda form. | |
4775 | |
4776 * calendar/todo-mode.el: [This needs more work on the outline | |
4777 stuff.] Doc fixes. | |
4778 (todo) <defgroup>: Add :version. | |
4779 (todo-add-category): Don't use pushnew. | |
4780 (todo-cmd-raise): Fix typo. | |
4781 (todo-top-priorities): Change temp buffer name. | |
4782 (todo-category-alist): Avoid redundant lambda. | |
29400
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4783 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4784 Use outline-next-heading. |
29392 | 4785 |
29383 | 4786 * autoarg.el: Rewritten to use define-minor-mode. |
4787 (autoarg-kp-digits, autoarg-kp-mode-map): New variable. | |
4788 (autoarg-kp-mode, autoarg-kp-digit-argument): New command. | |
4789 | |
29376 | 4790 2000-06-02 Kenichi Handa <handa@etl.go.jp> |
4791 | |
4792 * isearch.el (isearch-other-meta-char): Fix previous change. | |
4793 | |
29374
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
4794 2000-06-01 Stefan Monnier <monnier@cs.yale.edu> |
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
4795 |
29400
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4796 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4797 (log-edit-done): Only add the comment to the ring if it's different |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4798 from the last comment entered. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
4799 |
29374
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
4800 * isearch.el (isearch-highlight): Turn internal-find-face into facep. |
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
4801 |
29372 | 4802 2000-06-01 Dave Love <fx@gnu.org> |
4803 | |
4804 * hl-line.el: Rewritten using define-minor-mode. | |
4805 | |
4806 * help.el (describe-function-1): Distinguish special form from | |
4807 builtin function. Sanity-check presence of arglist for builtins. | |
4808 | |
29356 | 4809 2000-06-01 Kenichi Handa <handa@etl.go.jp> |
4810 | |
29365 | 4811 * international/characters.el: Fix syntax/category setting of |
4812 Tibetan characters. | |
4813 | |
4814 * language/tibet-util.el (tibetan-add-components): Fixes for new | |
4815 encoding of Tibetan characters. | |
4816 (tibetan-decompose-precomposition-alist): New variable. | |
4817 (tibetan-decompose-region): Convert precomposed characters to | |
4818 non-precomposed characters. | |
4819 (tibetan-decompose-string): Likewise. | |
4820 (tibetan-composition-function): Fix args to | |
4821 thibetan-compose-string. | |
4822 | |
4823 * language/tibetan.el (tibetan-composable-pattern): More | |
4824 characters included. | |
4825 (tibetan-consonant-transcription-alist): Rule for "R" added. | |
4826 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and | |
4827 "+R" added. | |
4828 (tibetan-base-to-subjoined-alist): Rule for "RA" added. | |
4829 | |
29359 | 4830 * language/lao-util.el (lao-composition-function): Fix args to |
4831 compose-string. | |
4832 | |
4833 * language/thai-util.el (thai-composition-function): Fix args to | |
4834 compose-string. | |
4835 | |
29356 | 4836 * isearch.el (isearch-update): Set disable-point-adjustment to t |
29357 | 4837 to prevent the point moving to the end of a composition when a |
4838 part of a composition is searched. | |
29356 | 4839 (isearch-other-meta-char): If the key invoking this command can be |
4840 mapped by function-key-map to a printing char, call | |
4841 isearch-process-search-char directly. | |
4842 | |
29355
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4843 2000-06-01 Stefan Monnier <monnier@cs.yale.edu> |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4844 |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4845 * emacs-lisp/bytecomp.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4846 * frame.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4847 * international/mule-cmds.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4848 * international/mule-util.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4849 * international/mule.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4850 * mouse.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4851 * subr.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4852 * faces.el: Update calls to make-obsolete with a WHEN argument. |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4853 |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4854 * byte-run.el (make-obsolete, make-obsolete-variable): |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4855 Add an optional WHEN argument and change the format of the |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4856 symbol-property information. |
29355
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4857 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda. |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4858 (byte-compile-obsolete, byte-compile-variable-ref): Understand the |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4859 new obsolete-symbol-property format and print WHEN if it is provided. |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
4860 |
29347 | 4861 2000-05-31 Dave Love <fx@gnu.org> |
4862 | |
4863 * loadhist.el (loadhist-hook-functions): Remove | |
4864 before-change-function, after-change-function. | |
4865 (unload-feature): Deal with symbols which are both bound and | |
4866 fbound. | |
4867 | |
4868 * mouse.el (mouse-save-then-kill-delete-region): Don't bind | |
4869 before-change-function, after-change-function. | |
4870 | |
4871 * simple.el (newline): Don't bind before-change-function, | |
4872 after-change-function. | |
4873 | |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4874 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org> |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4875 |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4876 * whitespace.el (whitespace-rescan-timer-time): Update interval |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4877 set to 600 seconds (10 minutes) instead of 60 seconds since |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4878 a large number of whitespace buffers causes emacs to `freeze' |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4879 for a considerable amount of time. |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4880 |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
4881 * whitespace.el: Updated email address |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4882 |
29330 | 4883 2000-05-31 Dave Love <fx@gnu.org> |
4884 | |
4885 * add-log.el (change-log-font-lock-keywords) <function>: Add | |
4886 pattern for function of change. | |
4887 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate | |
4888 acknowledgements patterns. | |
4889 | |
29328 | 4890 2000-05-31 Kenichi Handa <handa@etl.go.jp> |
4891 | |
4892 * isearch.el (isearch-printing-char): If keyboard coding system is | |
4893 being used, call isearch-process-search-multibyte-characters. | |
4894 | |
4895 * international/isearch-x.el: Mostly rewritten. | |
4896 | |
4897 * international/quail.el (quail-start-conversion): Don't include | |
4898 unhandled events in the returned events, but set them in | |
4899 unread-command-events. Exit if all inputs are deleted. | |
4900 | |
29324 | 4901 2000-05-30 Jason Rumney <jasonr@gnu.org> |
4902 | |
4903 * w32-fns.el (w32-charset-info-alist): Add each charset separately. | |
4904 | |
4905 * term/w32-win.el: Doc changes to reduce diffs with x-win.el. | |
4906 Reenable code to create initial fontsets. | |
4907 Use set-fontset-font in place of put-charset-property. | |
4908 | |
29302 | 4909 2000-05-30 Gerd Moellmann <gerd@gnu.org> |
4910 | |
29307 | 4911 * progmodes/perl-mode.el (perl-indent-line): When looking for a |
4912 label, ensure that the first colon isn't followed by another. | |
4913 | |
4914 * paths.el (Info-default-directory-list): Doc fix. | |
4915 | |
29304 | 4916 * net/net-utils.el (finger-X.500-host-regexps): New user-option. |
4917 (finger): If HOST matches a regexp from finger-X.500-host-regexps, | |
4918 send a query containing USER only, not USER@HOST. | |
4919 | |
29302 | 4920 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg |
4921 and rmail-msgend to compute the restriction at the end, instead of | |
4922 computing it. | |
4923 | |
29292 | 4924 2000-05-29 Gerd Moellmann <gerd@gnu.org> |
4925 | |
29295 | 4926 * dabbrev.el (dabbrev-expand): Don't display messages in the |
4927 echo area if the minibuffer window is active. | |
4928 | |
29292 | 4929 * jit-lock.el (jit-lock-mode): Add after change function to |
4930 local hook. | |
4931 | |
4932 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com> | |
4933 | |
4934 * antlr-mode.el: New commands: hide/unhide actions, | |
4935 upcase/downcase literals. | |
4936 (antlr-tiny-action-length): New user option. | |
4937 (antlr-hide-actions): New command. Suggested by | |
4938 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>. | |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
4939 (antlr-mode-map): New binding [C-c C-v]. |
29292 | 4940 (antlr-mode-menu): New entries. |
4941 (antlr-downcase-literals): New command. | |
4942 (antlr-upcase-literals): Ditto. | |
4943 | |
4944 * antlr-mode.el: Minor changes: indendation, mode-name. | |
4945 (antlr-indent-line): Indent cpp directive at column 0. | |
4946 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/". | |
4947 | |
4948 * antlr-mode.el: XEmacs bug workaround, XEmacs hint. | |
4949 (antlr-font-lock-additional-keywords): Workaround for intentional | |
4950 bug in XEmacs version of font-lock. | |
4951 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could | |
4952 be used by a smarter version of `buffers-menu-grouping-function'. | |
4953 | |
4954 2000-05-29 Gerd Moellmann <gerd@gnu.org> | |
4955 | |
4956 * tmm.el (tmm-prompt): Recognize menu item definitions of the for | |
4957 `(menu-item ...)' when looking for the position of DEFAULT-ITEM. | |
4958 | |
29266 | 4959 2000-05-29 Kenichi Handa <handa@etl.go.jp> |
4960 | |
4961 * international/encoded-kb.el | |
4962 (encoded-kbd-iso2022-designation-map): Pay attention to that | |
4963 charset-iso-final-char return -1 for eight-bit-control and | |
4964 eight-bit-graphic. | |
4965 | |
29261 | 4966 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il> |
4967 | |
4968 * speedbar.el (speedbar-use-images, speedbar-update-flag) | |
4969 (speedbar-easymenu-definition-base): Use display-graphic-p where | |
4970 available, instead of window-system. | |
4971 | |
29259 | 4972 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il> |
4973 | |
4974 * international/codepage.el (cp-coding-system-for-codepage-1): Add | |
4975 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN | |
4976 coding systems. | |
4977 | |
29248 | 4978 2000-05-26 Dave Love <fx@gnu.org> |
4979 | |
29255 | 4980 * disp-table.el (standard-display-underline): Don't use |
4981 internal-find-face. | |
4982 | |
29248 | 4983 * mail/reporter.el: Maintainer change. Doc fixes. |
4984 (reporter-version): Deleted. | |
4985 | |
4986 * emacs-lisp/elp.el: Maintainer change. | |
4987 (elp-help-address, elp-submit-bug-report, elp-version): Deleted. | |
4988 | |
29244
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
4989 2000-05-26 Stefan Monnier <monnier@cs.yale.edu> |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
4990 |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
4991 * add-log.el (add-change-log-entry): Merge the current entry with the |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
4992 previous one if the previous one is empty. |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
4993 |
29240 | 4994 2000-05-26 Dave Love <fx@gnu.org> |
4995 | |
29242 | 4996 * loadhist.el (unload-feature): Fix interactive spec [from |
4997 lijnzaad@ebi.ac.uk]. | |
4998 | |
29240 | 4999 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use |
5000 subr-arity to check primitives. | |
5001 (byte-compile-flush-pending, byte-compile-file-form-progn) | |
5002 (byte-compile-normal-call, byte-compile-list, byte-compile-concat) | |
5003 (byte-compile-insert, byte-compile-funcall): Use mapc instead of | |
5004 mapcar. | |
5005 | |
29226 | 5006 2000-05-26 Kenichi Handa <handa@etl.go.jp> |
5007 | |
29235 | 5008 * international/fontset.el: Set family names of non-latin charsets |
5009 in default fontset to "*". | |
5010 | |
29230 | 5011 * international/mule-diag.el (print-fontset): Combine family part |
5012 and registry part of the fontname by "-*-" instead of "-". | |
5013 | |
29226 | 5014 * international/mule-cmds.el (encode-coding-char): Make strings |
5015 multibyte before calling encode-coding-string. | |
5016 | |
29220
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5017 2000-05-25 Stefan Monnier <monnier@cs.yale.edu> |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5018 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5019 * derived.el: Fix keywords. |
29224
c4ed562f1556
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29220
diff
changeset
|
5020 (define-derived-mode): Only define if needed. |
29220
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5021 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5022 * simple.el (fill-comment, comment-column, comment-start) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5023 (comment-start-skip, comment-end, comment-indent-function) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5024 (block-comment-start, block-comment-end, indent-for-comment) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5025 (set-comment-column, kill-comment, comment-padding, comment-region) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5026 (comment-multi-line, indent-new-comment-line): Remove. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5027 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5028 * bindings.el (esc-map): Change ; to comment-dwim and use the new |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5029 function names for comment operations. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5030 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5031 * newcomment.el: Add abundant autoload cookies. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5032 (comment-style): Don't depend on runtime data at compile-time. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5033 (comment-indent-hook): Remove. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5034 (comment-indent): Check if comment-indent-hook is bound. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5035 (comment-region): Docstring fix. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
5036 |
29214 | 5037 2000-05-25 Dave Love <fx@gnu.org> |
5038 | |
5039 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete | |
5040 byte-code-function-p. | |
5041 | |
5042 * mail/rmailsum.el: Add provide. | |
5043 | |
5044 * net/goto-addr.el (goto-address-fontify): Add help-echo property. | |
5045 | |
5046 * smerge-mode.el (smerge-diff-switches): Don't use list* in | |
5047 defcustom. | |
5048 | |
29206
6e9f065ce572
2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29205
diff
changeset
|
5049 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu> |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5050 |
29206
6e9f065ce572
2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29205
diff
changeset
|
5051 * ediff-diff.el (ediff-exec-process): delete --binary option from |
6e9f065ce572
2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29205
diff
changeset
|
5052 non-buffer ediff jobs. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5053 |
29205 | 5054 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
5055 | |
5056 * hilit-chg.el (highlight-changes-mode): Ask about color or | |
5057 grayscale support, not about window-system. | |
5058 | |
5059 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not | |
5060 window-system. | |
5061 (ffap-highlight): Always default to t. | |
5062 | |
5063 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call | |
5064 display-popup-menus-p instead of looking at window-system. | |
5065 | |
5066 * disp-table.el (standard-display-g1, standard-display-graphic): | |
5067 Only refuse to use string glyphs on X and MS-Windows. | |
5068 | |
5069 * avoid.el: Remove window-system from commentary, suggest to use | |
5070 display-*-p instead. | |
5071 | |
5072 * apropos.el (apropos-print): Use display-mouse-p instead of | |
5073 window-system. | |
5074 | |
29190 | 5075 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
5076 | |
5077 * international/codepage.el (cp-decoding-vector-for-codepage): | |
5078 Fill up unsupported characters with their own codes. From Kenichi | |
5079 Handa. | |
5080 | |
29188 | 5081 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
5082 | |
5083 * international/mule-diag.el (describe-char-after): Use | |
5084 display-graphic-p instead of window-system, so that this function | |
5085 works on MS-DOS. | |
5086 | |
29181 | 5087 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
5088 | |
5089 * international/codepage.el (cp-make-coding-systems-for-codepage): | |
5090 Remove the eight-bit-graphic and eight-bit-control charsets from | |
5091 the list of charsets which we convert into `?'. | |
5092 | |
29169 | 5093 2000-05-25 Kenichi Handa <handa@etl.go.jp> |
5094 | |
5095 * international/mule-conf.el: Specify CHARSET-ID explicitely for | |
5096 private charsets. | |
5097 (mule-unicode-0100-24ff, japanese-jisx0213-1, | |
5098 japanese-jisx0213-2): New charsets. | |
5099 | |
5100 * international/fontset.el: Setup default fontset for new charsets. | |
5101 | |
29166 | 5102 2000-05-24 Dave Love <fx@gnu.org> |
5103 | |
5104 * info.el (Info-find-node-2): Restructure [following "Vadim | |
5105 S. Solomin" <sovs@uic.nnov.ru>]. | |
5106 | |
5107 * icomplete.el: Fix header for Finder. | |
5108 | |
5109 2000-05-24 Eric M. Ludlam <zappo@ultranet.com> | |
5110 | |
5111 * rmailout.el (rmail-output-to-rmail-file): Added optional param | |
5112 STAY. | |
5113 | |
5114 * rmail.el (rmail-automatic-folder-directives): New user variable. | |
5115 (rmail-show-message): Add call to `rmail-auto-file' during | |
5116 display. | |
5117 (rmail-auto-file): New function. | |
5118 | |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
5119 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu> |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5120 |
29193 | 5121 * ediff-diff.el (ediff-forward-word): Take syntactic word class into |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
5122 account. |
29193 | 5123 (ediff-test-utility,ediff-diff-mandatory-option) |
5124 (ediff-reset-diff-options): Utilities for proper initialization of | |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
5125 ediff-diff-options and ediff-diff3-options on Windows. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5126 |
29193 | 5127 * ediff-init.el (ediff-merge-filename-prefix): New customizable |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
5128 variable. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5129 |
29193 | 5130 * ediff-mult.el (ediff-filegroup-action): Use |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
5131 ediff-merge-filename-prefix. |
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
5132 |
29163
ea19f6424132
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29159
diff
changeset
|
5133 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu> |
ea19f6424132
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29159
diff
changeset
|
5134 |
29193 | 5135 * viper-ex.el (ex-write): Set selective display to nil. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5136 |
29159 | 5137 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il> |
5138 | |
5139 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just | |
5140 aliases for hebrew-iso-8bit. | |
5141 | |
29148 | 5142 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il> |
5143 | |
5144 * woman.el: New version from Francis J. Wright | |
5145 <F.J.Wright@Maths.QMW.ac.uk>. | |
5146 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file | |
5147 names in environment variables regardless of the path separator. | |
5148 (woman-topic-all-completions-1): Don't call file-name-directory-p | |
5149 on all files, since woman-file-regexp already filters out any | |
5150 directories. | |
5151 | |
29140 | 5152 2000-05-24 Kenichi Handa <handa@etl.go.jp> |
5153 | |
29144 | 5154 * international/quail.el (quail-start-translation): Don't change |
5155 modified-p of the current buffer. | |
5156 (quail-start-conversion): Likewise. | |
5157 | |
5158 * international/kkc.el (kkc-region): Don't change modified-p of | |
5159 the current buffer. | |
5160 | |
29142 | 5161 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to |
5162 conform to RFC1468. | |
5163 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554. | |
29140 | 5164 |
29138 | 5165 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com> |
5166 | |
5167 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix. | |
5168 (speedbar-insert-button): Invisible text property fix. | |
5169 (speedbar-directory-plus): Renamed from speedbar-directory-+ | |
5170 (speedbar-directory-minus): Renamed from speedbar-directory-- | |
5171 (speedbar-page-plus): Renamed from speedbar-file-+ | |
5172 (speedbar-page-minus): Renamed from speedbar-file-- | |
5173 (speedbar-page): Renamed from speedbar-file- | |
5174 (speedbar-tag): Renamed from speedbar-tag- | |
5175 (speedbar-tag-plus): Renamed from speedbar-tag-+ | |
5176 (speedbar-tag-minus): Renamed from speedbar-tag-- | |
5177 (speedbar-expand-image-button-alist): Use above renames. | |
5178 | |
5179 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm | |
5180 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm | |
5181 * sb-pg-plus.xpm: Renamed from sb-file+.xpm | |
5182 * sb-pg-minus.xpm: Renamed from sb-file-.xpm | |
5183 * sb-pg.xpm: Renamed from sb-file.xpm | |
5184 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm | |
5185 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm | |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5186 |
29128 | 5187 2000-05-24 Kenichi Handa <handa@etl.go.jp> |
5188 | |
5189 * international/quail.el (quail-show-guidance-buf): Set | |
5190 current-input-method of the guidance buffer to the name of the | |
5191 curren input method. | |
5192 | |
29158
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5193 2000-05-23 Stefan Monnier <monnier@cs.yale.edu> |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5194 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5195 * progmodes/compile.el (compile-internal): Style typo. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5196 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5197 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode): |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5198 quote vars and functions in the docstring. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5199 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5200 * newcomment.el (comment-make-extra-lines): Don't use `assert'. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5201 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5202 * completion.el (dynamic-completion-mode, dynamic-completion-mode): |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5203 Don't quote lambdas. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5204 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5205 * ffap.el (ffap-highlight): Use facep rather than internal-find-face. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5206 |
29116 | 5207 2000-05-23 Gerd Moellmann <gerd@gnu.org> |
5208 | |
29127 | 5209 * startup.el (command-line): Determine source file of compiled |
5210 user init file differently. Warn if compiled user init file | |
5211 is older than its source file. | |
5212 | |
29116 | 5213 * ffap.el (ffap-url-regexp): Add `https'. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
5214 |
29112 | 5215 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il> |
5216 | |
5217 * files.el (make-backup-file-name-1): Replace slashes with `!' | |
5218 rather than `|' (which is not allowed on Windows). Replace the | |
5219 drive letters with a string "drive_X". | |
5220 | |
29110 | 5221 2000-05-23 Gerd Moellmann <gerd@gnu.org> |
5222 | |
5223 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'. | |
5224 | |
5225 * files.el (interpreter-mode-alist): Add `bash2'. | |
5226 | |
29091 | 5227 2000-05-22 Dave Love <fx@gnu.org> |
5228 | |
5229 * loadhist.el (feature-symbols, file-provides, file-requires): Use | |
5230 mapc. | |
5231 (feature-file): Avoid calling symbol-name. Doc fix. | |
5232 (file-set-intersect, file-dependents): Use dolist, not mapcar. | |
5233 (loadhist-hook-functions): Add mouse-position-function. | |
5234 (unload-feature): Change uses of mapcar. | |
5235 | |
5236 * files.el (parse-colon-path): Doc fix. | |
5237 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars. | |
5238 (set-auto-mode): Use mapc. | |
5239 | |
5240 * complete.el (PC-look-for-include-file): Use :alnum: character | |
5241 class. | |
5242 (partial-completion-mode): Add autoload cookie. | |
5243 | |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5244 2000-05-22 Sam Steingold <sds@gnu.org> |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5245 |
29102 | 5246 * info.el (Info-fontify-node): Fixed the call to |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5247 `add-text-properties' (bug introduced on 2000-05-18). |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5248 |
29082 | 5249 2000-05-22 Dave Love <fx@gnu.org> |
5250 | |
5251 * bindings.el: Remove debug-ignored-errors set in other files. | |
5252 | |
5253 * progmodes/etags.el: Add to debug-ignored-errors. | |
5254 (visit-tags-table-buffer): Clear out buffers holding old tables | |
5255 when making a new list. | |
5256 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use | |
5257 mapc. | |
5258 | |
5259 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't | |
5260 quote keywords. | |
5261 (cmpl-string-case-type): Use character classes. | |
5262 | |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5263 * comint.el: |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5264 * textmodes/ispell.el: |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5265 * imenu.el: |
29082 | 5266 * mail/mh-e.el: |
5267 * progmodes/compile.el: Add to debug-ignored-errors. | |
5268 | |
5269 * dabbrev.el: Add to debug-ignored-errors. | |
5270 (dabbrev-completion): Use mapc. | |
5271 | |
29075 | 5272 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il> |
5273 | |
5274 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk) | |
5275 (woman-mapcan, woman-parse-man.conf) | |
5276 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font) | |
5277 (woman-reset-emulation, woman-select-symbol-fonts): New functions. | |
5278 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin | |
5279 path syntax better. | |
5280 (woman-man.conf-path, woman-use-own-frame): New defcustoms. | |
5281 (woman-manpath): Call woman-parse-man.conf. | |
5282 (woman-emulation): New defcustom, defaults to nroff. | |
5283 (woman-font-support): New defconst. | |
5284 (woman-use-symbol-font): New defcustom. | |
5285 (woman-menu): Add new menu items: "Colored/BW", "Advanced", | |
5286 "Emulation". | |
5287 Many functions: Doc fix. | |
5288 | |
29072 | 5289 2000-05-22 Kenichi Handa <handa@etl.go.jp> |
5290 | |
5291 * international/quail.el (quail-simple-translation-keymap): Map | |
5292 128..255 to quail-self-insert-command. | |
5293 (quail-keyboard-layout-alist): Add definition for "pc102-de". | |
5294 | |
29067
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
5295 2000-05-22 Stefan Monnier <monnier@cs.yale.edu> |
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
5296 |
29158
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5297 * help.el (help-manyarg-func-alist): Typo. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
5298 |
29070
0199b9a52c3f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29067
diff
changeset
|
5299 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and |
0199b9a52c3f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29067
diff
changeset
|
5300 intervals which makes it heaps simpler. |
0199b9a52c3f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29067
diff
changeset
|
5301 |
29067
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
5302 * newcomment.el (comment-region-internal): Go back to BEG after quoting |
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
5303 the nested comment markers. |
29063
594a655b83cf
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29061
diff
changeset
|
5304 |
594a655b83cf
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29061
diff
changeset
|
5305 * subr.el (remove-hook): Don't turn the hook's value into a list. |
594a655b83cf
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29061
diff
changeset
|
5306 |
29059 | 5307 2000-05-21 Dave Love <fx@gnu.org> |
5308 | |
29061 | 5309 * edmacro.el (edmacro-parse-keys): Return vector if any elements |
5310 are invalid characters. | |
5311 | |
29059 | 5312 * international/mule-util.el (detect-coding-with-priority): Use |
5313 mapc. Remove redundant lambda. | |
5314 | |
5315 * international/mule-diag.el (list-non-iso-charset-chars) | |
5316 (describe-fontset): Remove redundant lambda. | |
5317 | |
5318 * emulation/crisp.el (brief-mode): New alias. | |
5319 | |
5320 * emacs-lisp/ring.el (ring-elements): New function. | |
5321 | |
5322 * emacs-lisp/easymenu.el (easy-menu-create-menu) | |
5323 (easy-menu-do-add-item): Use keywordp. | |
5324 | |
5325 * emacs-lisp/byte-opt.el: Update side-effect free function lists. | |
5326 | |
5327 * replace.el: Doc and error message fixes. | |
5328 (replace-highlight): Use facep, not internal-find-face. | |
5329 | |
29038
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5330 2000-05-20 Stefan Monnier <monnier@cs.yale.edu> |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5331 |
29045
7235e6a14c62
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29043
diff
changeset
|
5332 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda. |
7235e6a14c62
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29043
diff
changeset
|
5333 |
29043
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5334 * log-edit.el (log-edit-done): Cleanup trailing empty lines. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5335 (log-edit-insert-changelog): Drop `:' as well. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5336 |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5337 * log-view.el: Fix file description. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5338 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5339 available. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5340 (log-view-font-lock-keywords): Only use cvs-filename-face if present. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5341 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
5342 |
29040
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5343 * emacs-lisp/easy-mmode.el: Update copyright and commentary. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5344 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5345 Print a status message if the toggle is called interactively. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5346 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE) |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5347 for global minor modes and use `defcustom' for them. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5348 Use add-minor-mode. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5349 (easy-mmode-define-derived-mode): Remove. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5350 (define-derived-mode): Fancier default docstring. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5351 (easy-mmode-define-navigation): Signal an error rather than (ding). |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
5352 |
29038
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5353 * newcomment.el (comment-styles): New `box-multi'. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5354 (comment-normalize-vars): Better default for comment-continue to |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5355 avoid whitespace-only continuations. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5356 (comment-search-forward): Always move even in the no-syntax case. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5357 (comment-padright): Only obey N if it's only obeyed for padleft. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5358 (comment-make-extra-lines): Better handling of empty continuations. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5359 Use `=' for the filler if comment-start has only one character. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5360 (uncomment-region): Try handling the special `=' filler. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5361 (comment-region): Allow LINES even if MULTI is nil. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5362 (comment-box): Choose box style based on comment-style. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5363 |
29029 | 5364 2000-05-20 Kenichi Handa <handa@etl.go.jp> |
5365 | |
29038
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
5366 * international/ccl.el (ccl-compile-write-string): Make STR unibyte. |
29029 | 5367 (ccl-compile-write-repeat): If ARG is string, make it unibyte. |
5368 | |
29028 | 5369 2000-05-20 Kenichi HANDA <handa@etl.go.jp> |
5370 | |
5371 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region | |
5372 and insert, not subst-char-in-region. | |
5373 | |
5374 * international/mule-diag.el (list-character-sets-1): Handle | |
5375 charsets eight-bit-control and eight-bit-graphic. | |
5376 (list-iso-charset-chars): Likewise. | |
5377 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit | |
5378 charactes as is. Use indent-to to align characters. | |
5379 | |
5380 * international/mule-cmds.el (find-multibyte-characters): Never | |
5381 exclude charsets eight-bit-control and eight-bit-graphic. | |
5382 | |
29015
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
5383 2000-05-19 Stefan Monnier <monnier@cs.yale.edu> |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
5384 |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
5385 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception): |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
5386 Don't quote lambdas. |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
5387 |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
5388 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add. |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
5389 |
28993 | 5390 2000-05-19 Gerd Moellmann <gerd@gnu.org> |
5391 | |
5392 * gud.el (gud-jdb-directories): Doc fix. | |
5393 | |
28989
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
5394 2000-05-19 Stefan Monnier <monnier@cs.yale.edu> |
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
5395 |
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
5396 * newcomment.el: New file. |
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
5397 |
28988 | 5398 2000-05-19 Gerd Moellmann <gerd@gnu.org> |
5399 | |
28993 | 5400 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'. |
28988 | 5401 |
28982 | 5402 2000-05-18 Andreas Schwab <schwab@suse.de> |
5403 | |
5404 * dired.el (dired-between-files): Also skip lines beginning with | |
5405 `used'. | |
5406 | |
28978 | 5407 2000-05-18 Gerd Moellmann <gerd@gnu.org> |
5408 | |
5409 * msb.el (msb-menu-cond): Add choice `user'. | |
5410 | |
28981 | 5411 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5412 |
28981 | 5413 * ps-print.el: Compatibility, customization and doc fix. |
5414 (ps-printer-name-option): Replace defconst by defvar. | |
5415 (ps-postscript-code-directory): XEmacs compatibility. | |
5416 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code | |
5417 fix. | |
5418 (ps-user-defined-prologue, ps-print-prologue-header) | |
5419 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs | |
5420 compatibility and code fix. | |
5421 (ps-print-background-image, ps-print-background-text): | |
5422 Customization fix. | |
5423 (ps-line-number-start, ps-n-up-on): New vars. | |
5424 | |
28978 | 5425 2000-05-18 Espen Skoglund <esk@ira.uka.de> |
5426 | |
5427 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed | |
5428 the indent-comment function to just return the appropriate indent. | |
5429 | |
28975 | 5430 2000-05-18 Eric M. Ludlam <zappo@ultranet.com> |
5431 | |
5432 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm, | |
5433 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm, | |
5434 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files | |
5435 | |
28969 | 5436 2000-05-18 Dave Love <fx@gnu.org> |
5437 | |
5438 * info.el (Info-fontify-node): Add intangible property as well as | |
5439 invisible. | |
5440 | |
5441 * calendar/appt.el (appt-make-list): Match all lines of entry. | |
5442 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de> | |
5443 | |
28965 | 5444 2000-05-18 Kenichi Handa <handa@etl.go.jp> |
5445 | |
5446 * international/mule-diag.el (describe-char-after): Call | |
5447 internal-char-font, not char-font. If internal-char-font returns | |
5448 nil, display "-- none --". | |
5449 | |
28959 | 5450 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il> |
5451 | |
5452 * image.el (image-type-available-p): Don't reference image-types | |
5453 if it isn't bound. | |
5454 | |
28957
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
5455 2000-05-17 Stefan Monnier <monnier@cs.yale.edu> |
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
5456 |
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
5457 * autoarg.el (autoarg-mode): Typo in the :set argument. |
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
5458 |
28954 | 5459 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il> |
5460 | |
5461 * startup.el (command-line-1): Don't signal an error if the | |
5462 directory for auto-save-list files does not yet exist. | |
5463 | |
28950 | 5464 2000-05-17 Kenichi Handa <handa@etl.go.jp> |
5465 | |
5466 * international/mule-conf.el (arabic-iso8859-6): Fix typo. | |
5467 | |
28948
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
5468 2000-05-16 Stefan Monnier <monnier@cs.yale.edu> |
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
5469 |
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
5470 * subr.el (remove-hook): `setq' hook-value, not `set'. |
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
5471 |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5472 2000-05-16 Sam Steingold <sds@gnu.org> |
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5473 |
28981 | 5474 * info.el (debug-ignored-errors): More errors to ignore. |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5475 |
28942 | 5476 2000-05-16 Dave Love <fx@gnu.org> |
5477 | |
5478 * cus-edit.el: Don't require cl or easymenu. | |
5479 (custom-variable-prompt): Test standard-value property, not | |
5480 user-variable-p. | |
5481 | |
28940
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
5482 2000-05-16 Sam Steingold <sds@gnu.org> |
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
5483 |
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
5484 * subr.el (add-hook): `setq' hook-value, not `set'. |
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
5485 |
28939 | 5486 2000-05-16 Gerd Moellmann <gerd@gnu.org> |
5487 | |
5488 * startup.el (command-line-1): Mention the FAQ in the startup | |
5489 message. | |
5490 | |
5491 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'. | |
5492 | |
5493 * progmodes/compile.el (compilation-parse-errors): Collect | |
5494 `nomessage' regexps last. | |
5495 | |
5496 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp. | |
5497 | |
5498 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp' | |
5499 to the function name. | |
5500 | |
28926 | 5501 2000-05-15 Dave Love <fx@gnu.org> |
5502 | |
5503 * speedbar.el (speedbar-recenter): Typo. | |
5504 (speedbar-expand-line): Make arg optional. | |
5505 (speedbar-mode): Avoid a compiler warning. | |
5506 | |
28924 | 5507 2000-05-15 Gerd Moellmann <gerd@gnu.org> |
5508 | |
5509 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that | |
5510 user-specified option string is empty. | |
5511 | |
5512 * mouse.el (mouse-yank-at-click): Doc fix. | |
5513 | |
28921 | 5514 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il> |
5515 | |
5516 * term/internal.el (IT-character-translations): More updates of | |
5517 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC | |
5518 documents. | |
5519 | |
28919 | 5520 2000-05-15 Gerd Moellmann <gerd@gnu.org> |
5521 | |
5522 * env.el (getenv): New function, interactively callable. | |
5523 (setenv, getenv): Remove autoload cookies. | |
5524 | |
5525 * loadup.el: Load `env'. | |
5526 | |
5527 * progmodes/f90.el: Change author's mail address. | |
5528 | |
28908 | 5529 2000-05-14 Dave Love <fx@gnu.org> |
5530 | |
28911 | 5531 * mail/rmail.el (rmail-show-message-hook): Customize and offer |
5532 goto-addr as an option. | |
5533 | |
5534 * help.el (help-xref-stack): Doc fix. | |
5535 (help-xref-following): New variable. | |
5536 (help-make-xrefs): Use it. | |
5537 (help-xref-go-back): Use position information from stack element. | |
5538 (help-follow): Make position in stack element a pair. Use | |
5539 help-xref-following. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5540 |
28911 | 5541 * autoarg.el: New file. |
5542 | |
5543 * faces.el: Declare more functions obsolete. | |
5544 | |
28908 | 5545 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el |
5546 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el | |
5547 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el | |
5548 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el: | |
5549 Remove all the setup-...-environment functions. | |
5550 | |
28903 | 5551 2000-05-13 Eric M. Ludlam <zappo@ultranet.com> |
5552 | |
28919 | 5553 * speedbar.el: Updated the commentary section. xemacs20p now uses |
5554 >= when detecting. Require `defimage' safely. | |
28903 | 5555 (speedbar-easymenu-definition-base): Add toggle for images. |
5556 (speedbar-easymenu-definition-special): Add flush cache & expand. | |
5557 (speedbar-visiting-tag-hook): Set new defaults. Added options. | |
5558 (speedbar-reconfigure-keymaps-hook): New variable. | |
5559 (speedbar-frame-parameters): Updated documentation. | |
5560 (speedbar-use-imenu-flag): Updated custom tag | |
5561 (speedbar-dynamic-tags-function-list): New variable. | |
5562 (speedbar-tag-hierarchy-method): Updated doc & custom. | |
28919 | 5563 (speedbar-indentation-width, speedbar-indentation-width) New |
5564 variables. | |
5565 (speedbar-hide-button-brackets-flag): Customizable. | |
28903 | 5566 (speedbar-vc-indicator): Doc update. |
5567 (speedbar-ignored-path-expressions): Updated default value. | |
5568 (speedbar-supported-extension-expressions): Updated default value. | |
5569 (speedbar-syntax-table): Remove {} paren status. | |
28919 | 5570 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act |
5571 as "+". Added overlay aliases. | |
5572 (speedbar-mode): Use `speedbar-mode-line-update' instead of | |
5573 `force-mode-line-update'. | |
5574 (speedbar-mode, speedbar-quick-mouse, speedbar-click) | |
5575 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of | |
5576 `mouse-set-point' | |
28903 | 5577 (speedbar-reconfigure-keymaps): Run configure keymap hooks. |
28919 | 5578 (speedbar-item-info-tag-helper): Revamped to handle a wider range |
5579 of arbitrary text, and new helper functions. | |
5580 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in | |
5581 filename finder. | |
28903 | 5582 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'. |
5583 (speedbar-directory-buttons): Update path search/expansion. | |
5584 (speedbar-make-tag-line): Pay attention to | |
28919 | 5585 `speedbar-indentation-width'. Use more care w/ invisible |
5586 properties. | |
28903 | 5587 (speedbar-change-expand-button-char): Call |
5588 `speedbar-insert-image-button-maybe'. | |
5589 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced). | |
28919 | 5590 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy) |
5591 (speedbar-trim-words-tag-hierarchy) | |
5592 (speedbar-simple-group-tag-hierarchy): New functions | |
28903 | 5593 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks. |
28919 | 5594 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New |
5595 functions. | |
28903 | 5596 (speedbar-mouse-set-point): New function |
5597 (speedbar-power-click): Updated documentation. | |
28919 | 5598 (speedbar-line-token, speedbar-goto-this-file): Handle more types |
5599 of tag prefix text. | |
5600 (speedbar-expand-line, speedbar-contract-line): Make more robust | |
5601 to strange text. | |
5602 (speedbar-expand-line): Takes universal argument to flush the | |
5603 cache. | |
28903 | 5604 (speedbar-flush-expand-line): New function. |
5605 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn. | |
5606 Use new generator insertion method. | |
5607 (speedbar-fetch-dynamic-tags): New function. | |
5608 (speedbar-fetch-dynamic-imenu): Removed code now handled in | |
5609 `speedbar-fetch-dynamic-imenu'. | |
5610 (speedbar-fetch-dynamic-etags): Fix current buffer problem. | |
5611 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and | |
5612 "Revert Buffer" menu items. | |
5613 (speedbar-buffer-buttons-engine): Be smarter when creating a | |
5614 filename tag (for expansion purposes.). | |
28919 | 5615 (speedbar-highlight-one-tag-line, |
5616 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top) | |
5617 (speedbar-recenter): New functions. | |
28903 | 5618 (defimage-speedbar): Image loading abstraction. |
28919 | 5619 (speedbar-directory-+, speedbar-directory--, speedbar-file-+) |
5620 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+) | |
5621 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v) | |
5622 (speedbar-tag-type, speedbar-tag-mail): New images. | |
28903 | 5623 (speedbar-expand-image-button-alist): New variable. |
5624 (speedbar-insert-image-button-maybe): Insert an image over some | |
5625 buttons. | |
5626 | |
28894 | 5627 2000-05-13 Kenichi Handa <handa@etl.go.jp> |
5628 | |
5629 * international/mule-cmds.el (encode-coding-char): An ASCII | |
5630 character is always encodable. | |
5631 | |
5632 * international/mule-conf.el: Add more information in descriptions | |
5633 of character sets. | |
5634 | |
28965 | 5635 * international/mule-diag.el (describe-char-after): New function. |
28894 | 5636 (describe-font-internal): Adjusted for the change of font-info. |
5637 (describe-font): Likewise. | |
5638 (print-fontset): Rewritten for the new fontset implementation. | |
5639 (describe-fontset): Include fontset alias names in completion. | |
5640 (list-fontsets): Adjusted for the change of print-fontset. | |
5641 | |
28895 | 5642 * simple.el (what-cursor-position): If DETAIL is non-nil, call |
5643 describe-char-after instead of displaying the detail in the echo | |
5644 area. | |
28965 | 5645 (syntax-code-table): Format changed. |
5646 (string-to-syntax): Adjusted for the above change. | |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
5647 |
28905
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
5648 2000-05-12 Stefan Monnier <monnier@cs.yale.edu> |
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
5649 |
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
5650 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode. |
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
5651 |
28890 | 5652 2000-05-12 Dave Love <fx@gnu.org> |
5653 | |
5654 * calendar/todo-mode.el: Remove some compatibility stuff and CL | |
5655 dependence. Use line-{beginning,end}-position, not | |
5656 point-at{b,e}ol. Some doc fixes. | |
5657 (todo-position): New function. Fix callers of position to use it. | |
5658 (todo-save-top-priorities, todo-print): Use with-temp-buffer. | |
5659 | |
28885 | 5660 2000-05-12 Gerd Moellmann <gerd@gnu.org> |
5661 | |
5662 * time.el (display-time-mail-icon): Use `:ascent center'. | |
5663 | |
28893 | 5664 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for |
5665 handling FTP security extensions. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5666 |
28882 | 5667 2000-05-11 Dave Love <fx@gnu.org> |
5668 | |
28888 | 5669 * calendar/todo-mode.el: New file. |
28882 | 5670 |
28870 | 5671 2000-05-11 Gerd Moellmann <gerd@gnu.org> |
5672 | |
28881 | 5673 * comint.el (comint-read-input-ring): Move reference to |
5674 comint-input-ring-size outside of the save-excursion. It was | |
5675 causing the default value to be the only one ever seen. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5676 |
28875 | 5677 * font-lock.el: Update copyright. Remove Simon Marshall's email |
5678 address on request from him. | |
5679 | |
28870 | 5680 * subr.el (substitute-key-definition): Add comment describing |
5681 the meaning of PREFIX. | |
5682 | |
28865
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5683 2000-05-10 Stefan Monnier <monnier@cs.yale.edu> |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5684 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5685 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5686 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5687 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed.. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5688 (add-minor-mode): Don't make the variable buffer-local and add a |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5689 reference to define-minor-mode in the docstring. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5690 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5691 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5692 HEADER/FOOTER and fix bug with trailing empty directory. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5693 (cvs-append-to-ignore): Use vc-editable-p if available. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5694 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5695 (vc-do-command): Tweak advice to handle the new VC. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5696 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5697 * log-view.el (log-view-goto-rev): New function for the new VC. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5698 (log-view-minor-wrap): Use mark-active. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5699 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5700 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5701 (log-edit-changelog-full-paragraphs): New var. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5702 (log-edit-insert-changelog): Remove a lonely leading `* file'. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5703 (log-edit-narrow-changelog, log-edit-changelog-paragraph) |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5704 (log-edit-changelog-subparagraph, log-edit-changelog-entry) |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5705 (log-edit-changelog-ours-p, log-edit-changelog-entries) |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5706 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries): |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5707 Replace the `cvs' prefix with `log-edit'. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5708 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5709 * iswitchb.el (iswitchb-completion-help): Unquote lambda. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5710 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5711 * diff-mode.el (diff-font-lock-keywords): Recognize comments. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5712 (diff-font-lock-defaults): Explicitly turn off multiline. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5713 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5714 (diff-ediff-patch): Fix call to ediff-patch-file. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5715 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs): |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5716 Handle comments. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5717 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5718 * frame.el (automatic-hscrolling): Typo. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5719 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5720 * cvs-status.el (cvs-status-minor-wrap): Use mark-active. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
5721 |
28845 | 5722 2000-05-09 Sam Steingold <sds@goems.com> |
5723 | |
5724 * apropos.el (apropos-print): use `describe-face' instead of | |
5725 `customize-face-other-window'. | |
5726 | |
28842 | 5727 2000-05-09 Dave Love <fx@gnu.org> |
5728 | |
5729 Changes mostly following Richard Sharman <rsharman@wave.home.com>. | |
5730 | |
5731 * help.el (describe-variable): Have customize button pop the | |
5732 help-xref stack when invoked. | |
5733 (help-xref-symbol-regexp): Add `face'. | |
5734 (help-make-xrefs): Check for quoted face names and adapt regexp | |
5735 submatch numbers to cope. | |
5736 (help-xref-interned): Maybe insert face doc too. Separate | |
5737 sections with a line of hyphens. | |
5738 | |
28848 | 5739 * faces.el: Some doc fixes. Declare some functions obsolete. |
28842 | 5740 (describe-face): Add customize button. Return the help |
5741 text. Fix prompt. | |
5742 | |
28839 | 5743 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il> |
5744 | |
5745 * term/internal.el (IT-character-translations): Fix last change. | |
5746 | |
28833 | 5747 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il> |
5748 | |
5749 * woman.el: New file | |
5750 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>). | |
5751 | |
28829 | 5752 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il> |
5753 | |
28831 | 5754 * term/internal.el (IT-character-translations): Update ASCII |
5755 simulations for greek-iso8859-7, add latin-iso8859-14 and | |
5756 latin-iso8859-15. | |
5757 | |
28829 | 5758 * international/mule-cmds.el (set-language-info-alist): Call |
5759 define-prefix-command with 3 arguments, to make the map suitable | |
5760 for a menu. | |
5761 | |
28827 | 5762 2000-05-07 Dave Love <fx@gnu.org> |
5763 | |
31242 | 5764 * time.el: Small doc fixes from Pavel Jan,Am(Bk ml. |
28827 | 5765 |
28825 | 5766 2000-05-05 Dave Love <fx@gnu.org> |
5767 | |
5768 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg | |
5769 list in doc string. Don't quote keyword symbols. | |
5770 * emacs-lisp/cl.el: Likewise | |
5771 * emacs-lisp/cl-seq.el: Likewise | |
5772 | |
28823 | 5773 2000-05-05 Gerd Moellmann <gerd@gnu.org> |
5774 | |
5775 * abbrev.el (abbrev-mode): Make ARG optional. | |
5776 | |
28812 | 5777 2000-05-04 Gerd Moellmann <gerd@gnu.org> |
5778 | |
28817 | 5779 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'. |
5780 | |
5781 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'. | |
5782 | |
28812 | 5783 * subr.el (substitute-key-definition): Clarify documentation. |
5784 | |
5785 2000-05-04 Milan Zamazal <pdm@freesoft.cz> | |
5786 | |
5787 * glasses.el (glasses-convert-to-unreadable): Use | |
5788 `glasses-separator' instead of the hard-wired "_". | |
5789 (glasses-mode): Call `glasses-make-unreadable' only in a single | |
5790 place. | |
5791 | |
28808 | 5792 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il> |
5793 | |
5794 * term/internal.el (cjk-codepages-alist): Add associations for | |
5795 Chinese and Korean codepages. Remove FIXME comment. | |
5796 | |
28806 | 5797 2000-05-03 Dave Love <fx@gnu.org> |
5798 | |
5799 * time.el (display-time-mail-face, display-time-use-mail-icon): | |
5800 New option. | |
5801 (display-time-mail-icon): New variable. | |
5802 (display-time-string-forms): Use the above. Fix the local-map. | |
5803 | |
28795 | 5804 2000-05-03 Gerd Moellmann <gerd@gnu.org> |
5805 | |
28805 | 5806 * replace.el (query-replace-map): Add binding for `E'. |
5807 (query-replace-help): Extend help text. | |
5808 (perform-replace): Allow editing the replacement string. | |
5809 | |
5810 * make-mode.el (makefile-mode-abbrev-table): New variable. | |
5811 (makefile-mode): Set local abbrev table to | |
5812 makefile-mode-abbrev-table. | |
5813 (makefile-font-lock-keywords): Fontify includes and conditionals. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5814 |
28795 | 5815 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't |
5816 set TOGGLE's value. | |
5817 | |
28805 | 5818 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from |
5819 mail-interactive-insert-alias. | |
5820 (mail-abbrev-complete-alias): New command. | |
5821 (mail-mode-map): Bind it to `M-TAB'. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5822 |
28790 | 5823 2000-05-03 Kenichi Handa <handa@etl.go.jp> |
5824 | |
5825 * language/lao-util.el (lao-compose-region): New function. | |
5826 | |
28782 | 5827 2000-05-02 Gerd Moellmann <gerd@gnu.org> |
5828 | |
28789 | 5829 * files.el (recover-session): Make directories as necessary |
5830 if they don't exist yet. | |
5831 | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5832 * calendar/cal-french.el |
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5833 (french-calendar-multibyte-special-days-array) |
28782 | 5834 (french-calendar-special-days-array): Change French text. |
5835 (calendar-french-date-string): Change output. | |
5836 (calendar-goto-french-date): Likewise. | |
5837 | |
5838 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk> | |
5839 | |
5840 * wid-edit.el (widget-default-active): Obey `:always-active'. | |
5841 (widget-documentation-string-value-create): Set `:always-active'. | |
5842 | |
28778 | 5843 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il> |
5844 | |
5845 * startup.el (auto-save-list-file-prefix): For ms-dos, set the | |
5846 default prefix to `~/_emacs.d/auto-save.list/_s'. | |
5847 (normal-top-level): Create the directory for auto-save files, if | |
5848 it doesn't already exist (in the ms-dos case only). | |
5849 | |
28775 | 5850 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il> |
5851 | |
5852 * international/mule-cmds.el (set-language-environment): Don't | |
5853 concat an integer (dos-codepage), use format instead. | |
5854 | |
28772 | 5855 2000-05-02 Dave Love <fx@gnu.org> |
5856 | |
5857 * help.el (help-xref-on-pp): Check for constant symbols. | |
5858 | |
28764 | 5859 2000-04-29 Gerd Moellmann <gerd@gnu.org> |
5860 | |
5861 * startup.el (normal-top-level): Put a condition-case around | |
5862 the code loading subdirs.el. | |
5863 | |
5864 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5865 |
28764 | 5866 * ps-print.el: Upside-down and face background color printing, |
5867 line number step, doc fix. | |
5868 (ps-print-version): New version number (5.2). | |
5869 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job) | |
5870 (ps-face-attribute-list, ps-plot-with-face): Code fix. | |
5871 (ps-spool-config): Var fix. | |
5872 (ps-printer-name-option): Const fix. | |
5873 (ps-print-upside-down, ps-use-face-background) | |
5874 (ps-line-number-step): New vars. | |
5875 (ps-window-system, ps-lp-system): New consts. | |
5876 (ps-face-background): New fun. | |
5877 | |
28759 | 5878 2000-04-28 Richard Stallman <rms@gnu.org> |
5879 | |
5880 * files.el (make-auto-save-file-name): | |
5881 Apply auto-save-file-name-transforms to visited file name | |
5882 before generating auto save file name. | |
5883 (auto-save-file-name-transforms): New variable. | |
5884 | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5885 * files.el (backup-enable-predicate): |
28759 | 5886 Correctly test for a file under a temporary directory. |
5887 | |
28751 | 5888 2000-04-28 Gerd Moellmann <gerd@gnu.org> |
5889 | |
5890 * subr.el (add-minor-mode): Rewritten. | |
5891 | |
28749 | 5892 2000-04-28 Kenichi Handa <handa@etl.go.jp> |
5893 | |
5894 * mail/sendmail.el (sendmail-send-it): Set | |
5895 buffer-file-coding-system to the selected coding system for MIME | |
5896 header. | |
5897 | |
28748 | 5898 2000-04-27 Gerd Moellmann <gerd@gnu.org> |
5899 | |
5900 * dired.el (dired-move-to-filename-regexp): Allow format where | |
5901 YYYY is followed by two spaces. | |
5902 | |
5903 * progmodes/etags.el (etags-tags-completion-table): Add a `:' | |
5904 in the second character class of the regexp. | |
5905 | |
5906 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in | |
5907 mh-etc, too. | |
5908 | |
5909 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert | |
5910 nil. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5911 |
28748 | 5912 * subr.el (add-minor-mode): Use `set' instead of `setq'. |
5913 | |
5914 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN | |
5915 argument. | |
5916 | |
5917 2000-04-27 Sen Nagata <sen@eccosys.com> | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
5918 |
28748 | 5919 * emacs-lisp/crm.el (crm-completion-table): New variable. |
5920 (crm-collection-fn, crm-test-completion) | |
5921 (completing-read-multiple): Use it. | |
5922 | |
28736 | 5923 2000-04-27 Dave Love <fx@gnu.org> |
5924 | |
5925 * help.el (locate-library): Use mapc. | |
5926 (help-manyarg-func-alist): Add call-process-region. | |
5927 | |
28724 | 5928 2000-04-26 Gerd Moellmann <gerd@gnu.org> |
5929 | |
28729 | 5930 * subr.el (add-minor-mode): Make argument MAP optional. |
5931 | |
28724 | 5932 * desktop.el (desktop-save): Save list of minor modes. |
5933 (desktop-create-buffer): Restore minor modes. | |
5934 (desktop-minor-mode-table): New user-option. | |
5935 | |
5936 * subr.el (add-minor-mode): New function. | |
5937 | |
5938 * image.el (find-image): New function. | |
5939 (defimage): Rewritten to find image at load time. | |
5940 | |
5941 * startup.el (normal-top-level-add-to-load-path): Handle | |
5942 case that the default directory is not in load-path. | |
5943 | |
5944 * help.el: Old patch from Stefan Monnier. | |
5945 (help-xref-on-pp): New function. | |
5946 (describe-variable): Use it to display xrefs in a symbol's value. | |
5947 | |
28717
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
5948 2000-04-26 Stefan Monnier <monnier@cs.yale.edu> |
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
5949 |
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
5950 * cus-edit.el (custom-face): Fix parenthesis. |
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
5951 |
28713 | 5952 2000-04-26 Kenichi Handa <handa@etl.go.jp> |
5953 | |
28715 | 5954 * mail/rmail.el (rmail-expunge): When there are no deleted |
5955 messages, do nothing. | |
28713 | 5956 |
28712 | 5957 2000-04-26 Dave Love <fx@gnu.org> |
5958 | |
5959 * international/mule-cmds.el (locale-translation-file-name): | |
5960 Defvar to nil. | |
5961 (set-locale-environment): Set it here (at runtime). | |
5962 | |
28710 | 5963 2000-04-25 Gerd Moellmann <gerd@gnu.org> |
5964 | |
5965 * replace.el (perform-replace): Add parameters START and END. Use | |
5966 them instead of the check for a region in Transient Mark mode. | |
5967 (query-replace-read-args): Return two more list elements for the | |
5968 start and end of the region in Transient Mark mode. | |
5969 (query-replace, query-replace-regexp, query-replace-regexp-eval) | |
5970 (map-query-replace-regexp, replace-string, replace-regexp): Add | |
5971 optional last arguments START and END and pass them to | |
5972 perform-replace. | |
5973 | |
5974 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a | |
5975 form with additional arguments for perform-replace. | |
5976 | |
5977 * progmodes/etags.el (tags-query-replace): Add parameters START | |
5978 and END. Construct a form with additional arguments for | |
5979 perform-replace. | |
5980 | |
5981 * simple.el (shell-command): Set default directory for "*Shell | |
5982 Command Output" buffer. | |
5983 | |
5984 * language/european.el (iso-latin-4): Fix typo. | |
5985 | |
5986 * emacs-lisp/crm.el: New file. | |
5987 | |
28701 | 5988 2000-04-24 Dave Love <fx@gnu.org> |
5989 | |
5990 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current) | |
5991 (Custom-reset-saved, Custom-reset-standard) | |
5992 (custom-group-value-create, custom-group-set, custom-group-save) | |
5993 (custom-group-reset-current, custom-group-reset-saved) | |
5994 (custom-group-reset-standard): Use mapc. | |
5995 (custom-buffer-create-internal): Disable undo when creating items. | |
5996 Use mapc. | |
5997 (custom-face): Avoid redundant lambda. | |
5998 | |
28699 | 5999 2000-04-24 Gerd Moellmann <gerd@gnu.org> |
6000 | |
6001 * startup.el (auto-save-list-file-prefix): Set default to | |
6002 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS. | |
6003 | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6004 2000-04-24 Sam Steingold <sds@gnu.org> |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6005 |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6006 * time-stamp.el (time-stamp-string-preprocess): Always convert |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6007 `field-result' to a string. |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6008 |
28695 | 6009 2000-04-24 Gerd Moellmann <gerd@gnu.org> |
6010 | |
6011 * frame.el (scrolling): New group. | |
6012 (automatic-hscrolling): New user-option. | |
6013 | |
6014 * startup.el (command-line-x-option-alist): Add `-lsp' and | |
6015 `--line-spacing'. | |
6016 | |
28668 | 6017 2000-04-19 Dave Love <fx@gnu.org> |
6018 | |
6019 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition. | |
6020 (cl-mapc): Rename from mapc. Fix the funcall. | |
6021 | |
28653 | 6022 2000-04-19 Gerd Moellmann <gerd@gnu.org> |
6023 | |
28660 | 6024 * simple.el (clone-indirect-buffer-other-window): New command. |
6025 (clone-indirect-buffer): Add optional arg NORECROD. | |
6026 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window. | |
6027 | |
28658 | 6028 * help.el (resize-temp-buffer-window): Use count-screen-lines. |
6029 | |
6030 * window.el (count-screen-lines): New function. | |
6031 (shrink-window-if-larger-than-buffer): Use count-screen-lines | |
6032 instead of window-buffer-height. | |
6033 | |
6034 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set | |
6035 non-existing variable comint-input-sentinel. | |
6036 (inferior-lisp-args-to-list): Removed. | |
6037 (inferior-lisp): Use split-string instead of | |
6038 inferior-lisp-args-to-list. | |
6039 | |
6040 * hexl.el (hexl-insert-hex-string): New command. | |
6041 | |
28653 | 6042 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name |
6043 instead of concat. | |
6044 | |
28634 | 6045 2000-04-18 Gerd Moellmann <gerd@gnu.org> |
6046 | |
6047 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline | |
6048 at the start of an existing but empty folder. | |
6049 | |
6050 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
6051 | |
6052 * ps-mule.el: Customization fix, doc fix. | |
6053 (ps-multibyte-buffer): Customization fix. | |
6054 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6055 2000-04-17 Richard M. Stallman <rms@gnu.org> |
28627
1f6ba3e73fe9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28626
diff
changeset
|
6056 |
1f6ba3e73fe9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28626
diff
changeset
|
6057 * subr.el (read-passwd): Use read-char-exclusive. |
1f6ba3e73fe9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28626
diff
changeset
|
6058 |
28626 | 6059 2000-04-17 Gerd Moellmann <gerd@gnu.org> |
6060 | |
6061 * textmodes/texinfo.el (texinfo-insert-@email) | |
6062 (texinfo-insert-@emph, texinfo-insert-@quotation) | |
6063 (texinfo-insert-@strong, texinfo-insert-@url): New functions. | |
6064 (texinfo-mode-map): Add key bindings for them. | |
6065 | |
6066 * files.el (basic-save-buffer-2): Use a template with `$' | |
6067 instead of `#' for VMS. | |
6068 | |
6069 * simple.el (clone-indirect-buffer): New function. | |
6070 | |
28621 | 6071 2000-04-16 Stephen Eglen <stephen@gnu.org> |
6072 | |
6073 * iswitchb.el (iswitchb-case): New function. If the user input | |
6074 contains any upper-case characters, the search is made | |
6075 case-sensitive. | |
6076 | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6077 2000-04-17 Stefan Monnier <monnier@cs.yale.edu> |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6078 |
28621 | 6079 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as |
6080 comment-end. | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6081 (texinfo-font-lock-syntactic-keywords): New var. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6082 (texinfo-font-lock-keywords): Remove comment regexp. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6083 (texinfo-insert-block): New function. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6084 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block. |
28621 | 6085 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip |
6086 and font-lock-defaults. Use regexp-opt for outline-regexp. | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6087 (texinfo-environments): New var. |
28621 | 6088 (texinfo-environment-regexp): Use regexp-opt and |
6089 texinfo-environments. | |
6090 | |
6091 * textmodes/ispell.el (ispell-menu-map-needed): Check that | |
6092 ispell-process is bound since this might be eval'd before ispell | |
6093 is loaded. | |
6094 (ispell-message): Use a tiny bit less magic and a bit more hard | |
6095 data to figure out what kind of sc-cite-regexp to use. | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6096 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6097 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6098 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6099 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries) |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6100 (insert-cyclic-diary-entry): Unquote the lambda. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6101 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6102 * gud.el (gud-jdb-build-source-files-list): Fix typo. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6103 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6104 * files.el (backup-enable-predicate): Unquote the lambda. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6105 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6106 * cus-edit.el (custom-face, face): Unquote the lambda. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
6107 |
28602 | 6108 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
6109 | |
6110 * ps-print.el: Check for line-beginning-position definition. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6111 |
28602 | 6112 * ps-print.el: Fix counting lines in a region. |
6113 (ps-print-version): New version number (5.1.5). | |
6114 (ps-spool-without-faces, ps-spool-with-faces): Adjust code. | |
6115 (ps-printing-region): Fun code fix. | |
6116 | |
28600 | 6117 2000-04-15 Gerd Moellmann <gerd@gnu.org> |
6118 | |
6119 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p | |
6120 to file-directory-p. | |
6121 | |
28591 | 6122 2000-04-14 Gerd Moellmann <gerd@gnu.org> |
6123 | |
6124 * gud.el (gud-jdb-build-source-files-list): Check that directory | |
6125 exists before calling directory-files. | |
6126 | |
28578 | 6127 2000-04-13 Dave Love <fx@gnu.org> |
6128 | |
6129 * emacs-lisp/trace.el: Change maintainer. Use new backquote | |
6130 syntax. | |
6131 | |
6132 * emacs-lisp/cl-specs.el: Remove when, unless. | |
6133 | |
6134 * emacs-lisp/cl-extra.el: Don't quote keywords. | |
6135 (cl-old-mapc): New variable. | |
6136 (mapc): Use it. | |
6137 (cl-map-intervals): Use with-current-buffer. Don't check for | |
6138 next-property-change. | |
6139 (cl-map-overlays): Use with-current-buffer. | |
6140 (cl-expt): Remove. | |
6141 (copy-tree, remprop): Define unconditionally. | |
6142 | |
6143 * emacs-lisp/cl-compat.el (keywordp): Remove. | |
6144 | |
6145 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers | |
6146 to use keywordp. | |
6147 (edebug-spec): Enable keywordp. | |
6148 | |
6149 * cus-edit.el (custom-sort-items): Avoid symbol-name with new | |
6150 string-lessp. | |
6151 | |
6152 * cus-start.el: Use keywordp. | |
6153 | |
28577 | 6154 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu> |
6155 | |
6156 * diary-lib.el (include-other-diary-files): Fix the fix of | |
6157 2000-02-18 by doing a save-excursion. | |
6158 | |
6159 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
6160 | |
6161 * ps-print.el: Customization fix, doc fix. | |
6162 (ps-print-version): New version number (5.1.4). | |
6163 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node) | |
6164 (ps-print-preprint): Adjust code. | |
6165 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue) | |
6166 (ps-print-prologue-header, ps-print-control-characters) | |
6167 (ps-spool-config): Customization fix. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6168 |
28564 | 6169 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il> |
6170 | |
6171 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and | |
6172 converted to the new menu-item format, names silightly changed, | |
6173 help strings added. | |
6174 | |
6175 Support for spelling without async subprocesses: | |
6176 | |
6177 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer) | |
6178 (ispell-session-buffer): New variables. | |
6179 (ispell-start-process, ispell-process-status, | |
6180 ispell-accept-output, ispell-send-string): New functions, for | |
6181 Ispell invocation when async subprocesses aren't supported. | |
6182 (ispell-word, ispell-pdict-save, ispell-command-loop, | |
6183 ispell-process-line, ispell-buffer-local-parsing): Replace calls | |
6184 to process-send-string with calls to ispell-send-string, and | |
6185 accept-process-output with ispell-accept-output. | |
6186 (ispell-init-process): Call ispell-process-status instead of | |
6187 process-status with. | |
6188 (ispell-init-process): Call ispell-start-process. Call | |
6189 ispell-accept-output and ispell-send-string. Don't call | |
6190 process-kill-without-query and kill-process if they are unbound. | |
6191 (ispell-async-processp): New function. | |
6192 | |
28560 | 6193 2000-04-12 Dave Love <fx@gnu.org> |
6194 | |
6195 * info.el: Add debug-ignored-errors. | |
6196 (Info-mode-menu): Add some items. | |
6197 (Info-directory): Add autoload cookie. | |
6198 | |
6199 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible. | |
6200 Modify `truncate-lines'. Make `describe-language-environment' | |
6201 always visible and add help. Modify `describe-key' help. Invoke | |
6202 Info-directory from `info'. New entry `emacs-manual'. | |
6203 | |
28542 | 6204 2000-04-10 Gerd Moellmann <gerd@gnu.org> |
6205 | |
28549 | 6206 * progmodes/ebrowse.el (ebrowse-tree-mode): Use |
6207 propertized-buffer-identification. | |
6208 (ebrowse-update-member-buffer-mode-line): Likewise. | |
6209 (ebrowse--mode-strings): Removed. | |
6210 (ebrowse--mode-line-props): Removed. | |
6211 | |
28542 | 6212 * files.el (auto-mode-alist): Add `EBROWSE'. |
6213 | |
6214 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white | |
6215 space before testing for end of buffer. | |
6216 (ebrowse-load): Removed. | |
6217 (ebrowse-revert-tree-buffer-from-file): Rewritten. | |
6218 (ebrowse-create-tree-buffer): Rewritten. | |
6219 (ebrowse-tree-mode): Read tree from buffer. | |
6220 | |
6221 * progmodes/ebrowse-ffh.el: Removed. | |
6222 | |
28535 | 6223 2000-04-10 Kenichi Handa <handa@etl.go.jp> |
6224 | |
6225 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug. | |
6226 | |
28534 | 6227 2000-04-10 Gerd Moellmann <gerd@gnu.org> |
6228 | |
6229 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)' | |
6230 at the wrong place. | |
6231 | |
28783 | 6232 2000-04-09 Dave Love <fx@gnu.org> |
6233 | |
6234 * files.el (backup-enable-predicate): Use | |
6235 temporary-file-directory, small-temporary-file-directory. | |
6236 (make-backup-file-name-function, backup-directory-alist): New | |
6237 variables. | |
6238 (make-backup-file-name-1): New function. | |
6239 (make-backup-file-name): Use it. | |
6240 (find-backup-file-name): Likewise. Use format for clarity, not | |
6241 concat. | |
6242 (file-newest-backup): Use make-backup-file-name. | |
6243 | |
28523 | 6244 2000-04-09 Gerd Moellmann <gerd@gnu.org> |
6245 | |
28530 | 6246 * progmodes/ebrowse-ffh.el: New file. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6247 |
28530 | 6248 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved |
6249 to ebrowse-ffh.el. | |
6250 (ebrowse-load): Add autoload. | |
6251 | |
6252 * finder.el (finder-commentary): Add autoload cookie. | |
6253 | |
28523 | 6254 * mail/rfc2368.el: Correct author's email address. |
6255 | |
6256 * progmodes/ebrowse.el: New file. | |
6257 | |
6258 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu | |
6259 item help string. | |
6260 (easy-menu-do-add-item): Ditto. | |
6261 (easy-menu-define): Extend doc string. | |
6262 | |
6263 * jit-lock.el (with-buffer-unmodified): Use | |
6264 restore-buffer-modified-p. | |
6265 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified. | |
6266 (jit-lock-function, jit-lock-stealth-fontify): Don't use | |
6267 with-buffer-unmodified. | |
6268 | |
28517 | 6269 2000-04-08 Dave Love <fx@gnu.org> |
6270 | |
6271 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop, | |
6272 unless, when. | |
6273 | |
28510
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
6274 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp> |
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
6275 |
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
6276 * viper-util.el (viper-put-on-search-overlay): New subroutine. |
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
6277 (viper-flash-search-pattern): No operation when using Emacs |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6278 doesn't support face. |
28510
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
6279 Use `viper-put-on-search-overlay'. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6280 |
28506 | 6281 2000-04-04 Gerd Moellmann <gerd@gnu.org> |
6282 | |
6283 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r | |
6284 like C-r. | |
6285 | |
6286 * progmodes/make-mode.el: Some doc fixes. | |
6287 (makefile-mode-abbrev-table): New variable. | |
6288 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table. | |
6289 (makefile-font-lock-keywords): Fontify includes and conditionals. | |
6290 (toplevel): Require `dabbrev' and `add-log' when compiling. | |
6291 | |
6292 * replace.el (perform-replace): Don't move forward one char | |
6293 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want | |
6294 to do that because it leaves point 1 position after the last | |
6295 replacement, after everything has been replaced. | |
6296 | |
6297 * jit-lock.el (with-buffer-unmodified): New macro. | |
6298 (with-buffer-prepared-for-font-lock): Don't preserve buffer's | |
6299 modified state. | |
6300 (jit-lock-function-1): Extracted from jit-lock-function; not | |
6301 preserving buffer's modified state. | |
6302 (jit-lock-function, jit-lock-stealth-fontify): Call | |
6303 jit-lock-function-1. | |
6304 | |
6305 * mail/rfc2368.el: Remove supernumerary copyright line. | |
6306 | |
28499 | 6307 2000-04-04 Milan Zamazal <pdm@freesoft.cz> |
6308 | |
6309 * glasses.el: Provide facilities for inserting space before left | |
6310 parentheses and uncapitalization of identifiers. | |
6311 (glasses-mode): Try to remove old overlays in all cases. | |
6312 | |
28485 | 6313 2000-04-03 Gerd Moellmann <gerd@gnu.org> |
6314 | |
28496 | 6315 * progmodes/compile.el (compile-internal): Display the compilation |
6316 buffer in a different frame, if it's already displayed there. | |
6317 | |
28494 | 6318 * mail/rfc2368.el: New file. |
6319 | |
28492 | 6320 * simple.el (sendmail-user-agent-compose): Recognize a `body' |
6321 header and insert its value as mail body. | |
6322 | |
6323 * subr.el (member-ignore-case): New function. | |
6324 | |
6325 * dabbrev.el (dabbrev-ignored-regexps): New user-option. | |
6326 (dabbrev--find-expansion): Ignore buffers matching a regexp | |
6327 from dabbrev-ignored-regexps. | |
6328 | |
28485 | 6329 * jka-compr.el (jka-compr-compression-info-list): Add `.z' |
6330 to extensions handled by gzip. | |
6331 | |
28492 | 6332 2000-04-03 Richard M. Stallman <rms@gnu.org> |
6333 | |
6334 * files.el (insert-directory): List the total free space | |
6335 along with the used space. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6336 |
28492 | 6337 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix |
6338 line is followed by one that matches CITATION-REGEXP, end the | |
6339 paragraph. | |
6340 | |
6341 2000-04-03 Markus Rost <rost@delysid.gnu.org> | |
6342 | |
6343 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option. | |
6344 (rmail-make-basic-summary-line): Use that option. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6345 |
28474 | 6346 2000-04-03 Kenichi Handa <handa@etl.go.jp> |
6347 | |
6348 * international/mule-cmds.el (encoded-string-description): | |
6349 Rewritten. Try pretty description for ISO 2022 escape sequences | |
28476 | 6350 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters |
6351 for hexadecimal format. | |
28474 | 6352 |
28468 | 6353 2000-04-01 Dave Love <fx@gnu.org> |
6354 | |
6355 * cpp.el: Change customization group to `c' from `C'. | |
6356 | |
6357 * vcursor.el (vcursor-move): Use display-color-p. | |
6358 | |
6359 * international/mule-util.el: Provide mule-utils. | |
6360 (string-to-sequence): Simplify and speed up. | |
6361 | |
6362 * international/mule.el (make-coding-system): Purecopy doc-string. | |
6363 | |
6364 * international/mule-cmds.el: Various menu changes. | |
6365 (describe-specified-language-support): Handle `Default'. | |
6366 (set-language-info): Purecopy `info'. | |
6367 | |
28462 | 6368 2000-03-31 Andrew Innes <andrewi@gnu.org> |
6369 | |
6370 * vc.el (vc-backend-diff): Return the correct status if we had to | |
6371 retry the rcsdiff command without the --brief option. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6372 |
28445 | 6373 2000-03-31 Dave Love <fx@gnu.org> |
6374 | |
28452 | 6375 * help.el (help-manyarg-func-alist): Correct several omissions. |
6376 | |
28450 | 6377 * add-log.el: Don't require cl, fortran. |
6378 (add-log-current-defun-function): Doc fix. | |
6379 (change-log-version-number-regexp-list): Remove SCCS part. Doc | |
6380 fix. | |
6381 (change-log-version-rcs): Function deleted. | |
6382 (change-log-version-number-search): Doc fix. Use | |
6383 vc-workfile-version. Avoid CL dolist. | |
6384 (add-change-log-entry): Just call add-log-current-defun to get | |
6385 defun. Simplify somewhat. | |
6386 (change-log-get-method-definition-1): Likewise. | |
6387 (add-log-current-defun): Return nil if calling | |
6388 add-log-current-defun-function does so. Move Fortran stuff to | |
6389 fortran.el. Return string without properties. | |
6390 | |
28445 | 6391 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper: |
6392 and :alpha: char classes. | |
6393 | |
6394 * mail/supercite.el: Defvar curline when compiling. | |
6395 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp) | |
6396 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:] | |
6397 rather than a-zA-Z0-9 to allow non-ASCII characters. | |
6398 | |
28444 | 6399 2000-03-31 Gerd Moellmann <gerd@gnu.org> |
6400 | |
6401 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format. | |
6402 | |
6403 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): | |
6404 Re-enable new code. | |
6405 | |
6406 * lpr.el (print-region-1): Use -d to specify printer name for | |
6407 systems `usg-unix-v*, `dgux', `hpux', `irix'. | |
6408 | |
6409 2000-03-31 Dave Love <fx@gnu.org> | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6410 |
28444 | 6411 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look |
6412 for function definition in symbol's function value slot first | |
6413 instead of first consulting byte-compile-function-environment. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6414 |
28435 | 6415 2000-03-31 Kenichi Handa <handa@etl.go.jp> |
6416 | |
6417 * language/european.el ("Polish"): New language environment. | |
6418 (setup-polish-environment): New function. | |
6419 | |
28424 | 6420 2000-03-30 Gerd Moellmann <gerd@gnu.org> |
6421 | |
6422 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): | |
6423 Disable new code. | |
6424 | |
6425 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug | |
6426 trying to `load' the symbol of an autoload instead of the file | |
6427 recorded in the autoload. Fix error messages. | |
6428 | |
28429 | 6429 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
6430 | |
6431 * ps-print.el: PostScript programming fix for ghostview, doc fix. | |
6432 (ps-print-version): New version number (5.1.3). | |
6433 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup) | |
6434 (ps-insert-file, ps-output-boolean, ps-plot-with-face) | |
6435 (ps-generate-postscript-with-faces): Code fix. | |
6436 (ps-color-values): XEmacs compatibility. | |
6437 (ps-print-background-image, ps-print-background-text, ps-printer-name) | |
6438 (ps-default-fg, ps-default-bg): Adjust customization. | |
6439 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var. | |
6440 (ps-color-scale): Renaming old ps-color-value fun. | |
6441 (ps-print-headers): Replace ps-print-header group to avoid conflict | |
6442 with ps-print-header variable. | |
6443 (ps-print-miscellany): New group. | |
6444 (ps-format-color, ps-rgb-color): New funs. | |
6445 (ps-default-foreground): New var. | |
6446 (ps-printer-name-option): New const. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6447 |
28416 | 6448 2000-03-30 Peter Breton <pbreton@ne.mediaone.net> |
6449 | |
28421
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
6450 * net/net-utils.el: |
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
6451 (network-connection-host, network-connection-service): New variables |
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
6452 (network-connection-mode): New mode, derived from comint-mode |
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
6453 (network-connection-mode-setup): New function, saves host and |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6454 service information in local variables. |
28421
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
6455 |
28416 | 6456 * lisp/locate.el: |
6457 (locate-word-at-point): Added this function | |
6458 (locate): Default to using locate-word-at-point as input | |
6459 Run dired-mode-hook | |
6460 | |
28405 | 6461 2000-03-29 Dave Love <fx@gnu.org> |
6462 | |
6463 * calendar/appt.el: Doc fixes. | |
6464 (appt-check): Convert min-to-app to a string before passing to | |
6465 appt-disp-window-function or concat. | |
6466 (appt-delete-window): Remove test for frame-root-window. | |
6467 (appt-select-lowest-window, appt-convert-time): Simplify. | |
6468 | |
6469 * emacs-lisp/bytecomp.el: Doc fixes. | |
6470 (byte-compile-file-form-autoload): Update | |
6471 byte-compile-function-environment. | |
6472 | |
28403 | 6473 2000-03-29 Andreas Schwab <schwab@suse.de> |
6474 | |
6475 * emacs-lisp/autoload.el: Also print defsubst doc string | |
6476 specially. | |
6477 | |
6478 * dired.el (dired-insert-directory): If dired-free-space-program | |
6479 failed just delete its output. | |
6480 | |
28395 | 6481 2000-03-29 Dave Love <fx@gnu.org> |
6482 | |
6483 * international/iso-cvt.el: Move provide to end. Doc fixes. | |
6484 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables. | |
6485 (iso-iso2sgml, iso-sgml2iso): New functions. | |
6486 (iso-cvt-define-menu): Fix some entries and use backquote for | |
6487 clarity. | |
6488 | |
6489 * format.el (format-alist): Use iso-cvt functions for SGML/HTML. | |
6490 | |
28377 | 6491 2000-03-28 Gerd Moellmann <gerd@gnu.org> |
6492 | |
6493 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter | |
6494 ISO-DATE. If non-nil, return date in ISO 8601 format. | |
6495 | |
28337
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6496 2000-03-26 Stefan Monnier <monnier@cs.yale.edu> |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6497 |
28341
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
6498 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
6499 if it ever becomes used. |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
6500 (log-edit-mode-hook): Default to vc-log-mode-hook. |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
6501 (log-edit-mode): Fix the docstring. |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
6502 |
28337
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6503 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6504 the code. |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6505 |
28326 | 6506 2000-03-26 Dave Love <fx@gnu.org> |
6507 | |
28331 | 6508 * net/browse-url.el (browse-url): Re-fix case of |
6509 browse-url-browser-function being an alist. | |
6510 (browse-url): Add :link to defgroup. | |
6511 | |
28326 | 6512 * files.el: Doc fixes. |
6513 (file-truename): Include `[' in wildcard characters. | |
6514 (automount-dir-prefix): Customize. | |
6515 (find-file-wildcards): Add :version. | |
6516 (find-file-noselect): Simplify a mapcar call. | |
6517 | |
6518 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist | |
6519 compatible with inf-lisp version. | |
6520 (eval-defun-1): Fix custom-declare-variable case. | |
6521 | |
28337
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6522 2000-03-25 Stefan Monnier <monnier@cs.yale.edu> |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6523 |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6524 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'. |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
6525 |
28303 | 6526 2000-03-24 Gerd Moellmann <gerd@gnu.org> |
6527 | |
28308 | 6528 * Makefile (COMPILE_FIRST): New macro. |
6529 (compile-files): Compile files from COMPILE_FIRST first. | |
6530 | |
6531 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new | |
6532 code. | |
6533 | |
28303 | 6534 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp |
6535 matching open parenthesis in column 0 to defun-prompt-regexp | |
6536 only if open-paren-in-column-0-is-defun-start is set. | |
6537 | |
6538 * sun-curs.el: Require CL at compile-time only. | |
6539 | |
6540 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)' | |
6541 instead of copy-list which is a function from CL. | |
6542 (msb--choose-menu, msb--mode-menu-cond) | |
6543 (msb--create-buffer-menu-2): Use dolist instead of mapc. | |
6544 (msb--init-file-alist): Use mapcar instead of mapcan. | |
6545 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix | |
6546 `(' in column 0 in doc string. | |
6547 (msb--add-separators): Use mapcar instead of mapcan. | |
6548 | |
6549 * cus-dep.el: Require CL at compile-time only. | |
6550 | |
28296
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6551 2000-03-24 Stefan Monnier <monnier@cs.yale.edu> |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6552 |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6553 * emacs-lisp/bytecomp.el (byte-compile-warning-types) |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6554 (byte-compile-warnings): New warning `noruntime'. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6555 (byte-compile-constants, byte-compile-variables): Fix docstring. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6556 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6557 execute `eval-whenc-compile's body. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6558 (byte-compile-unresolved-functions): Fix docstring. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6559 (byte-compile-eval): New function. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6560 (byte-compile-callargs-warn): Check if the function will be available |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6561 at runtime (via property `byte-compile-noruntime'). |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6562 (byte-compile-print-syms): New function. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6563 (byte-compile-warn-about-unresolved-functions): Also warn about |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6564 `noruntime' functions (and use `byte-compile-print-syms'). |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6565 (byte-compile-file): Capitalize the message. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
6566 |
28292 | 6567 2000-03-24 Gerd Moellmann <gerd@gnu.org> |
6568 | |
6569 * mail/rmail.el (rmail-confirm-expunge): New user-option. | |
6570 (rmail-expunge): Ask for confirmation depending on the setting | |
6571 of rmail-confirm-expunge. | |
6572 | |
6573 2000-03-23 Gerd Moellmann <gerd@gnu.org> | |
6574 | |
6575 * Makefile (bootstrap-clean): If $(emacs) exists, build | |
6576 loaddefs.el first. A loaddefs.el that's not up-to-date might | |
6577 cause a bootstrap failure because things don't autoload as | |
6578 expected. | |
6579 | |
28289 | 6580 2000-03-23 Dave Love <fx@gnu.org> |
6581 | |
6582 * net/browse-url.el: Restore previous use of | |
6583 browse-url-maybe-new-window. | |
6584 | |
28287 | 6585 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
6586 | |
6587 * ps-print.el: Skip banner page fix. | |
6588 (ps-print-version): New version number (5.1.2). | |
6589 (ps-begin-file, ps-end-file, ps-generate): Code fix. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6590 |
28287 | 6591 2000-03-23 Dave Pearson <davep@davep.org> |
6592 | |
6593 * net/quickurl.el Changed the type of parameter passed to the | |
6594 function defined by `quickurl-format-function'. Before only the | |
6595 text of the URL was passed. Now the whole URL structure is passed | |
6596 and the function is responsible for extracting the parts it | |
6597 requires. Changed the default of `quickurl-format-function' | |
6598 accordingly. | |
6599 (quickurl-insert): Changed the `funcall' of | |
6600 `quickurl-format-function' to match the above change. | |
6601 (quickurl-list-insert): Changed the `url' case so that it makes | |
6602 use of `quickurl-format-function', previous to this the format was | |
6603 hard wired. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6604 |
28283 | 6605 2000-03-22 Gerd Moellmann <gerd@gnu.org> |
6606 | |
6607 * startup.el: Change some spellings for the X Window System. | |
6608 | |
28278
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
6609 2000-03-22 Stefan Monnier <monnier@cs.yale.edu> |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
6610 |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
6611 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
6612 up the code and the regexp and make sure the cursor is temporarily |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
6613 moved to the suspicious line while querying the user. |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
6614 |
28276 | 6615 2000-03-22 Jason Rumney <jasonr@gnu.org> |
6616 | |
6617 * w32-fns.el (w32-charset-info-alist): Initialize. | |
6618 | |
28267 | 6619 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
6620 | |
6621 * ps-print.el: N-up last page fix. | |
6622 (ps-print-version): New version number (5.1.1). | |
6623 (ps-end-file, ps-end-job, ps-generate): Code fix. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6624 |
28252
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6625 2000-03-21 Stefan Monnier <monnier@cs.yale.edu> |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6626 |
28260
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
6627 * files.el (find-file-run-dired): Update docstring. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
6628 (find-directory-functions): New hook. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
6629 (find-file-noselect): Run find-directory-functions rather than |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
6630 calling dired directly. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
6631 |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
6632 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
6633 |
28257
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6634 * pcvs.el: Add a minimal leading commentary. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6635 (cvs-make-cvs-buffer): Change the header part by removing the startup |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6636 message and adding a `Module' entry. Also replace the FOOTER and |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6637 HEADER special fileinfos with the new support in ewoc for updating |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6638 its own footer and header. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6639 (cvs-update-header): Update to use the header/footer of the ewoc. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6640 (cvs-mode): Use define-derived-mode and set truncate-lines to t. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6641 (cvs-is-within-p): New function. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6642 (cvs-mode-run): Take advantage of `save-some-buffers's new ability |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6643 to only examine some subset of the buffers. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6644 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6645 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6646 `format' instead of our own ad-hoc functions. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6647 Remove HEADER and FOOTER cases, now handled in the EWOC. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6648 (cvs-fileinfo<): Remove HEADER and FOOTER cases. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6649 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6650 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6651 output to avoid scaring the user. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6652 (cvs-parse-table): Catch message for non-up-to-date commits. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6653 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6654 * pcvs-defs.el (cvs-startup-message): Remove. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6655 (cvs-global-menu): New autoloaded menu. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6656 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6657 * pcvs-util.el (cvs-string-fill): Remove. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6658 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6659 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6660 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6661 PP part of it and also make it work for footers and headers. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6662 (ewoc-create): Drop POS and BUFFER arguments. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6663 Use the DLL's dummy node to store the end-of-footer position. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6664 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6665 (ewoc-refresh): Remove unused `header' variable. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6666 (ewoc-(get|set)-hf): New functions. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
6667 |
28252
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6668 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6669 log-view-*-(message|file) and use easy-mmode-define-navigation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6670 (log-view-message-re): Match SCCS format as well. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6671 And match the revision line rather than the dashed separator line. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6672 (log-view-mode): Use the new define-derived-mode. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6673 (log-view-current-tag): Fill in with an actual implementation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6674 |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6675 * cvs-status.el (cvs-status-(prev|next)): Rename from |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6676 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6677 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6678 to let the output "breathe" a little more (more readable). |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6679 (cvs-status-mode): Use the new define-derived-mode. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6680 |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6681 * smerge-mode.el (smerge-auto-leave): New function and variable. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6682 (smerge-basic-map): Rename from smerge-basic-keymap. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6683 Change the bindings for smerge-diff-*. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6684 (smerge-*-map): Use easy-mmode-defmap. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6685 (smerge-(next|prev)): Use easy-mmode-define-navigation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6686 (smerge-keep-*): Use smerge-auto-leave. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
6687 |
28246 | 6688 2000-03-21 Jason Rumney <jasonr@gnu.org> |
6689 | |
6690 * cus-edit.el (custom-button-face): Use 3D look for w32. | |
6691 (custom-button-pressed-face): Likewise. | |
6692 | |
28244 | 6693 2000-03-21 Gerd Moellmann <gerd@gnu.org> |
6694 | |
6695 * progmodes/etags.el (tags-case-fold-search): New user-option. | |
6696 (tags-loop-eval): New function. Bind case-fold-search around eval | |
6697 depending on the value of tags-case-fold-search. | |
6698 (tags-loop-continue): Use tags-loop-eval. | |
6699 (find-tag-in-order): Bind case-fold-search depending on the value | |
6700 of tags-case-fold-search. | |
6701 | |
28236
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6702 2000-03-21 Stefan Monnier <monnier@cs.yale.edu> |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6703 |
28247
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6704 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6705 (diff-end-of-hunk): Return the end position for use in |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6706 `easy-mmode-define-navigation'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6707 (diff-recenter): Remove. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6708 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6709 of `easy-mmode-define-navigation'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6710 (diff-kill-*): Rename `diff-*-kill' (for consistency with the |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6711 previous renaming) and fix to use new names. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6712 (diff-merge-strings): Use \n as separator: simpler, faster. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6713 (diff-mode): Use `define-derived-mode'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
6714 |
28236
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6715 * derived.el (define-derived-mode): Don't autoload anymore. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6716 Prefer the macro-only version provided by easy-mmode.el. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6717 |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6718 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6719 `easy-mmode-define-derived-mode'. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6720 Use `combine-run-hooks'. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6721 (easy-mmode-define-navigation): New macro. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6722 |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6723 * subr.el (combine-run-hooks): New function. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
6724 |
28233 | 6725 2000-03-21 Kenichi HANDA <handa@etl.go.jp> |
6726 | |
6727 * term/x-win.el: Fontsets related initialization is simplified. | |
6728 | |
6729 * international/mule-diag.el (describe-font): Don't refer to | |
6730 global-fontset-alist, instead call font-list. | |
6731 (describe-fontset, list-fontsets, mule-diag): Likewise. | |
6732 (print-fontset): Adjusted for the change of fontset | |
6733 implementation. | |
6734 | |
6735 * international/fontset.el (x-charset-registries): Variable | |
6736 removed, instead the corresponding data is stored in the default | |
6737 fontset. | |
6738 (register-alternate-fontnames): Function removed. | |
6739 (resolved-ascii-font): Variable removed. | |
6740 (x-compose-font-name): Ignore the second argument REDOCE. | |
6741 (x-complement-fontset-spec): Complement only an ASCII font and | |
6742 element for those charsets than can use that ASCII font. | |
6743 (generate-fontset-menu): Don't refer to global-fontset-alist, | |
6744 instead call fontset-list. | |
6745 (uninstantiated-fontset-alist): Variable removed. | |
6746 (x-style-funcs-alist): Likewise. | |
6747 (fontset-default-styles): Likewise. | |
6748 (x-modify-font-name): Function removed. | |
6749 (create-fontset-from-fontset-spec): Ignore the argument | |
6750 STYLE-VARIANT. | |
6751 (create-fontset-from-ascii-font): Docsting adjusted for the above | |
6752 change. | |
6753 (instantiate-fontset, resolve-fontset-name): Functions removed. | |
6754 (fontset-list): Now implemented by C code. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6755 |
28233 | 6756 * faces.el (read-face-font): Fix TABLE arg to completing-read. |
6757 (describe-face): Include `font' attribute in the description. | |
6758 | |
28219 | 6759 2000-03-21 Kenichi Handa <handa@etl.go.jp> |
6760 | |
6761 * international/quail.el (quail-set-keyboard-layout): Typo fixed. | |
6762 | |
28209 | 6763 2000-03-20 Gerd Moellmann <gerd@gnu.org> |
6764 | |
28212 | 6765 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el, |
6766 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el, | |
6767 zone-mode.el, snmp-mode.el: Moved to net subdirectory. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6768 |
28209 | 6769 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment |
6770 about behavior of set-buffer-modified-p wrt redisplay. | |
6771 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6772 2000-03-19 Richard M. Stallman <rms@gnu.org> |
28197
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
6773 |
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
6774 * view.el (view-mode-disable): Kill local binding of view-read-only. |
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
6775 |
28194 | 6776 2000-03-18 Gerd Moellmann <gerd@gnu.org> |
6777 | |
6778 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE | |
6779 is a string, convert it to a syntax cell using string-to-syntax. | |
6780 | |
6781 * simple.el (syntax-code-table, syntax-flag-table): New variables. | |
6782 (string-to-syntax): New function. | |
6783 | |
6784 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option. | |
6785 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set, | |
28209 | 6786 try to use passive ftp mode. |
28194 | 6787 |
28189 | 6788 2000-03-17 Gerd Moellmann <gerd@gnu.org> |
6789 | |
28209 | 6790 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'. |
28189 | 6791 |
6792 * simple.el (append-to-buffer): Update point of windows after | |
6793 insertion. | |
6794 | |
6795 * abbrev.el (inverse-add-abbrev): Identify word by first moving | |
6796 forward then moving backward. Reindent. | |
6797 | |
6798 * frame.el (other-frame): Call x-focus-frame only if | |
6799 focus-follows-mouse is off. | |
6800 | |
28185 | 6801 2000-03-17 Dave Love <fx@gnu.org> |
6802 | |
6803 * pcvs-util.el (cvs-strings->string): Rename | |
6804 replace-regexps-in-string. | |
6805 | |
28179
5bcc6166bde4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28174
diff
changeset
|
6806 2000-03-17 Stefan Monnier <monnier@cs.yale.edu> |
5bcc6166bde4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28174
diff
changeset
|
6807 |
28181
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
6808 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the |
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
6809 regexp for labels cannot span several lines. |
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
6810 |
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
6811 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless |
28189 | 6812 `(setq :<key> ':<key>)' to the macro expansion. |
28179
5bcc6166bde4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28174
diff
changeset
|
6813 |
28174 | 6814 2000-03-16 Dave Love <fx@gnu.org> |
6815 | |
6816 * progmodes/f90.el (f90): Put custom group under `languages', not | |
6817 `fortran'. | |
6818 (f90-mode-hook): Customize. | |
6819 (f90-mode): Set add-log-current-defun-function. | |
6820 (f90-current-defun): New function. | |
6821 | |
28169 | 6822 2000-03-16 Gerd Moellmann <gerd@gnu.org> |
6823 | |
28173 | 6824 * cus-edit.el (custom-variable-tag-face): Handle case that |
6825 default face's height is not a number. | |
6826 (custom-face-tag-face, custom-group-tag-face-1) | |
6827 (custom-group-tag-face): Ditto. | |
6828 (custom-group-tag-face-1): Add :group. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6829 |
28169 | 6830 * info.el (Info-fontify-maximum-menu-size): Increase to 100000. |
6831 | |
28161 | 6832 2000-03-15 Gerd Moellmann <gerd@gnu.org> |
6833 | |
6834 * pcvs-defs.el (toplevel): Remove autoload cookie for form | |
6835 requiring easymenu. | |
6836 | |
28155 | 6837 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
6838 | |
6839 * ps-print.el: PostScript user-defined prologue, PostScript error | |
6840 handler, doc fix. | |
6841 (ps-print-version): New version number (5.1). | |
6842 (ps-user-defined-prologue, ps-error-handler-message) | |
6843 (ps-print-prologue-0, ps-error-handler-alist): New vars. | |
6844 (ps-setup, ps-begin-file, ps-begin-job): Code fix. | |
6845 (ps-insert-string): New function. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6846 |
28150 | 6847 2000-03-15 Kenichi Handa <handa@etl.go.jp> |
6848 | |
6849 * international/ccl.el (ccl-compile-expression): Don't generate | |
28151 | 6850 invalid self-assignment code. |
28150 | 6851 |
28149 | 6852 2000-03-14 Dave Love <fx@gnu.org> |
6853 | |
6854 * subr.el (replace-regexp-in-string): Renamed from | |
6855 replace-regexps-in-string. Doc fix. | |
6856 | |
28131 | 6857 2000-03-12 Dave Love <fx@gnu.org> |
6858 | |
6859 * cus-edit.el: Doc fixes. | |
6860 (customize-set-variable, customize-save-variable): Rename args for | |
6861 doc. | |
6862 (custom-variable-tag-face, custom-face-tag-face) | |
6863 (custom-group-tag-face-1, custom-group-tag-face): Modify from | |
6864 style which user identify as hyperlink. | |
6865 (hook): Don't add undefined functions to the hook. | |
6866 (debug-ignored-errors): Transfer message from bindings.el. | |
6867 | |
28120 | 6868 2000-03-12 Gerd Moellmann <gerd@gnu.org> |
6869 | |
6870 * recentf.el (recentf-keep-non-readable-files-p): Remove | |
6871 double/nested definition. | |
6872 | |
28114 | 6873 2000-03-12 Dave Love <fx@gnu.org> |
6874 | |
6875 * facemenu.el (facemenu-get-face): Use display-color-p. | |
6876 * enriched.el (enriched-decode-foreground): Likewise. | |
6877 (enriched-decode-background): Likewise. | |
6878 * isearch.el (isearch-highlight): Likewise. | |
6879 * info-look.el (info-lookup): Likewise. | |
6880 * simple.el (completion-setup-function): Likewise. | |
6881 | |
6882 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to | |
6883 :options. | |
6884 | |
6885 * bindings.el (mode-line-format): Fix line-number and | |
6886 column-number items. Add help-echo for the background. | |
6887 (mode-line-mule-info): Modify help-echo. | |
6888 | |
6889 * avoid.el (mouse-avoidance-mode): Add autoload cookie to | |
6890 defcustom. | |
6891 | |
6892 * files.el (load-file): Allow completion to .elc. | |
6893 | |
6894 * man.el: Doc fixes. | |
6895 (Man-init-defvars): Use display-color-p to set fontification. | |
6896 | |
6897 * play/hanoi.el (hanoi-internal): Don't use oddp. | |
6898 | |
28109 | 6899 2000-03-12 Gerd Moellmann <gerd@gnu.org> |
6900 | |
6901 * arc-mode.el (archive-zip-update): Add `-P' for pkzip. | |
6902 | |
6903 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment. | |
6904 | |
28098 | 6905 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de> |
6906 | |
6907 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'. | |
6908 Fix comment. | |
6909 | |
28088
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6910 2000-03-10 Stefan Monnier <monnier@cs.yale.edu> |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6911 |
28089
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6912 * font-lock.el (font-lock-keywords): Fix the doc now that |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6913 regexp-opt-depth is unnecessary. |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6914 (save-buffer-state): Set an edebug spec. |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6915 (font-lock-fontify-anchored-keywords): Properly handle the case when |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6916 the matcher goes past the limit. |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6917 |
28088
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6918 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el, |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6919 pcvs-parse.el, pcvs-util.el, pcvs.el: New files. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6920 |
28089
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6921 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el, |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6922 dll.el and cookie.el (from Elib) with heavy renaming and other |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
6923 massaging. |
28088
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6924 |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6925 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax): |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6926 Autoload the functions used. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6927 (easy-mmode-define-syntax): Fix CL typo. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6928 (easy-mmode-define-derived-mode): Improve the docstring generation. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
6929 |
28084 | 6930 2000-03-10 Gerd Moellmann <gerd@gnu.org> |
6931 | |
6932 * textmodes/texinfo.el (texinfo-version): Variable and function | |
6933 removed. | |
6934 | |
28082
49fa1828784a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28080
diff
changeset
|
6935 2000-03-09 Stefan Monnier <monnier@cs.yale.edu> |
49fa1828784a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28080
diff
changeset
|
6936 |
28114 | 6937 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to |
6938 allow more flexibility. | |
6939 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New | |
6940 fns. | |
6941 (easy-mmode-defmap, easy-mmode-defsyntax) | |
6942 (easy-mmode-define-derived-mode): New macros. | |
28082
49fa1828784a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28080
diff
changeset
|
6943 |
28085 | 6944 2000-03-09 Didier Verna <didier@xemacs.org> |
28080 | 6945 |
6946 * rect.el (replace-rectangle): New function. | |
6947 | |
6948 2000-03-09 Dave Love <fx@gnu.org> | |
6949 | |
6950 * progmodes/fortran.el (fortran-comment-line-start): Define as | |
6951 "C". | |
6952 (fortran-comment-line-start-skip): Don't match cpp stuff. | |
6953 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff. | |
6954 (fortran-mode-map): Remove over-eager custom-menu-create for now. | |
6955 (fortran-mode): Don't set fortran-comment-line-start-skip, | |
6956 fortran-comment-line-start here. Set comment-start, | |
6957 add-log-current-defun. | |
6958 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff. | |
6959 (fortran-current-defun): New function. | |
6960 | |
28073 | 6961 2000-03-09 Gerd Moellmann <gerd@gnu.org> |
6962 | |
28077 | 6963 * emacs-lisp/re-builder.el: New file. |
6964 | |
28076 | 6965 * mouse.el (mouse-drag-region): Don't run up-event handler |
6966 if hscroll has changed. | |
6967 | |
28073 | 6968 * octave-mod.el (octave-font-lock-keywords): To font-lock the |
6969 builtin operators, use `font-lock-builtin-face' for Emacs and | |
6970 `font-lock-preprocessor-face' otherwise. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6971 |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6972 * font-lock.el (lisp-font-lock-keywords-1): Highlight |
28073 | 6973 `(defun (setf foo)' differently. |
6974 | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6975 2000-03-08 Stefan Monnier <monnier@cs.yale.edu> |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6976 |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6977 * emacs-lisp/regexp-opt.el: Update copyright and leading comment. |
28073 | 6978 (regexp-opt): Update comment and adapt the code the new meaning of |
6979 the `paren' argument of regex-opt-group for shy-groups. | |
6980 (regexp-opt-depth): Handle shy groups as well as backslashed | |
6981 backslashes. | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6982 (regexp-opt-group): Turn the leading comment into a docstring. |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6983 Allow `paren' to be a string (the string to use to open a group). |
28073 | 6984 Remove open-presuf and close-presuf. Instead of checking for `all |
6985 one-char' and then later on check for `several one-char', handle | |
6986 both cases close together. Also apply a more generic algorithm | |
6987 for suffixes (the mirror image of the algorithm used for | |
6988 prefixes). Use shy-groups. Use nreverse rather than reverse. | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6989 (regexp-opt-try-suffix): Removed. |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6990 |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
6991 * cmuscheme.el (inferior-scheme-mode-map): Define it independently |
28073 | 6992 from comint-mode-map, so we can just inherit from it. Also, move |
6993 the initialization into the `defvar' since there's no docstring | |
6994 anyway and it's fairly short. | |
6995 (inferior-scheme-mode): Define it as derived-mode: the code is | |
6996 shorter and this way we inherit from comint-mode-map rather than | |
6997 copying it. | |
6998 | |
6999 * subr.el (replace-regexps-in-string): Properly handle the case | |
7000 where we match an empty string. | |
7001 | |
7002 * comint.el (comint-exec-1): Add the current-dir to the exec-path | |
7003 when the command has a directory component (such as "./testml"). | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
7004 Also fix a typo in the comment. |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
7005 |
28046 | 7006 2000-03-08 Gerd Moellmann <gerd@gnu.org> |
7007 | |
28051 | 7008 * Makefile (compile-files): Compile files one by one because |
7009 that's the only way to ensure a clean compilation environment for | |
7010 each individual file. | |
7011 | |
28046 | 7012 * frame.el (other-frame): Call x-focus-frame. |
7013 | |
28040 | 7014 2000-03-07 Dave Love <fx@gnu.org> |
7015 | |
28043 | 7016 * recentf.el (recentf-keep-non-readable-files-p): Add :set, |
7017 :require to defcustom. | |
7018 | |
28040 | 7019 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads |
7020 lists. | |
7021 | |
7022 * files.el (auto-mode-alist): Add configure.in. | |
7023 | |
7024 * progmodes/autoconf.el: New file. | |
7025 | |
28034 | 7026 2000-03-07 Gerd Moellmann <gerd@gnu.org> |
7027 | |
7028 * mail/mh-e.el: Change maintainer to `none'. | |
7029 | |
7030 * recentf.el (recentf-keep-non-readable-files-p): Quote args | |
7031 to remove-hook and add-hook. | |
7032 | |
7033 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
7034 | |
28035 | 7035 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use |
28034 | 7036 it as the default. |
28035 | 7037 (mail-send): Test mail-send-nonascii also for the new `mime' value. |
7038 (sendmail-send-it): Conditionally add MIME headers specifying the | |
28034 | 7039 used character set. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7040 |
28024 | 7041 2000-03-07 Dave Love <fx@gnu.org> |
7042 | |
7043 * winner.el: Fix keywords, autoload cookies. Split | |
7044 eval-when-compile form to avoid compilation failure. | |
7045 | |
28017 | 7046 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp> |
7047 | |
7048 * international/mule.el: Modify comment about coding system | |
7049 property `coding-category'. | |
7050 (make-coding-system): New argument EOL-TYPE. Pay attention to | |
7051 coding-category property of PROPERTIES. | |
7052 | |
7053 * international/mule-conf.el (coding-category-utf-8, | |
7054 coding-category-utf-16-be, coding-category-utf-16-le): New coding | |
7055 categories. Include them in the argument for set-coding-priority. | |
7056 | |
7057 * international/mule-cmds.el (reset-language-environment): Include | |
7058 coding-category-utf-8, coding-category-utf-16-be, and | |
7059 coding-category-utf-16-le in the argument for set-coding-priority. | |
7060 (reset-language-environment): Initialize coding-category-utf-8, | |
7061 coding-category-utf-16-be, and coding-category-utf-16-le to nil. | |
7062 | |
28014 | 7063 2000-03-06 Karl Fogel <kfogel@red-bean.com> |
7064 | |
7065 * bookmark.el (bookmark-file-or-variation-thereof): New func, for | |
7066 code abstracted out of `bookmark-jump-noselect'. Now tries info | |
7067 extensions as well as compression extensions. | |
7068 (bookmark-jump-noselect): Use above new func. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7069 |
27976 | 7070 2000-03-03 Gerd Moellmann <gerd@gnu.org> |
7071 | |
7072 * strokes.el: Change maintainer's mail address. | |
7073 | |
27972 | 7074 2000-03-03 Kenichi Handa <handa@etl.go.jp> |
7075 | |
7076 * international/mule-diag.el (list-character-sets): Make help-echo | |
7077 string by substitute-command-keys. | |
7078 (list-character-sets): Likewise. | |
7079 (sort-listed-character-sets): Call help-setup-xref. | |
7080 | |
27965 | 7081 2000-03-02 Gerd Moellmann <gerd@gnu.org> |
7082 | |
7083 * time.el (display-time-mail-file): Add `none' to the list of | |
7084 choices. | |
7085 | |
27954 | 7086 2000-03-01 Dave Love <fx@gnu.org> |
7087 | |
27959 | 7088 * help.el (help-xref-go-back): Don't try to set position. |
7089 | |
27954 | 7090 * international/mule-diag.el (list-character-sets): Call |
7091 help-setup-xref. Add help-echo to xrefs. | |
7092 (list-character-sets-1): Add help-echo to xrefs. | |
7093 | |
27949 | 7094 2000-03-02 Gerd Moellmann <gerd@gnu.org> |
7095 | |
7096 * frame.el (blink-cursor-mode): Switch cursor on when turning | |
7097 the mode off. | |
7098 | |
7099 * add-log.el (add-log-current-defun): Add support for | |
7100 Autoconf mode. | |
7101 | |
7102 * mail/rmail.el (rmail-quit-hook): New variable. | |
7103 | |
27931 | 7104 2000-03-01 Dave Love <fx@gnu.org> |
7105 | |
27935 | 7106 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |. |
7107 | |
27931 | 7108 * help.el (help-xref-button): Add help-echo arg. |
7109 (describe-function-1, describe-variable, help-make-xrefs): Use it. | |
7110 | |
7111 * faces.el (list-faces-display): Supply help-echo with | |
7112 help-make-xrefs. | |
7113 | |
7114 * facemenu.el (list-text-properties-at): Set help-xref-stack to | |
7115 nil. | |
7116 | |
27919 | 7117 2000-03-01 Gerd Moellmann <gerd@gnu.org> |
7118 | |
27927 | 7119 * image.el (defimage): Look for image files in load-path. |
7120 | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7121 * frame.el (busy-cursor-delay-seconds): Change type to |
27919 | 7122 `number'. |
7123 | |
27927 | 7124 2000-03-01 David Ponce <david.ponce@wanadoo.fr> |
7125 | |
7126 * recentf.el (recentf): Added version tag to the defgroup of | |
7127 recentf. | |
7128 | |
7129 2000-03-01 David Ponce <david.ponce@wanadoo.fr> | |
7130 | |
7131 * recentf.el (recentf-cleanup): Changed to remove excluded file | |
7132 too. | |
7133 (recentf-edit-list-action): `recentf-edit-list' checkbox widget | |
7134 action to select/unselect a file. | |
7135 (recentf-edit-list): Code cleanup and improvement. | |
7136 (recentf-open-more-files-action): `recentf-open-more-files' button | |
7137 widget action to open a file. | |
7138 (recentf-open-more-files): No more use standard completion but | |
7139 widgets. | |
7140 (recentf-more-collection): Deleted. | |
7141 (recentf-more-history): Deleted. | |
7142 (recentf-setup-more-completion): Deleted. | |
7143 | |
7144 2000-03-01 David Ponce <david.ponce@wanadoo.fr> | |
7145 | |
7146 * recentf.el (recentf-mode): No more needs that Emacs is running | |
7147 under a window-system. | |
7148 | |
7149 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
7150 | |
7151 * recentf.el (recentf-edit-list): New command to edit the recent | |
7152 list which allow the user to remove files. | |
7153 (recentf-edit-selected-items): New global variable, used by | |
7154 `recentf-edit-list' to hold the list of files to be removed from | |
7155 the recent list. | |
7156 (recentf-make-menu-items): Updated to display a "Edit list..." | |
7157 menu item. Minor code cleanup. | |
7158 | |
7159 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
7160 | |
7161 * recentf.el (recentf-open-more-files): New command to open files | |
7162 that are not displayed in the menu. | |
7163 (recentf-more-collection): New global variable holding the set of | |
7164 permissible completions used by `recentf-open-more-files'. | |
7165 (recentf-more-history): New global variable holding the history list | |
7166 used by `recentf-open-more-files' completion. | |
7167 (recentf-setup-more-completion): New function to setup completion for | |
7168 `recentf-open-more-files'. | |
7169 (recentf-make-menu-items): Updated to display a "More..." menu item. | |
7170 | |
7171 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
7172 | |
7173 * recentf.el (recentf-menu-action): Doc fixed. | |
7174 | |
7175 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
7176 | |
7177 * recentf.el (recentf-menu-filter): Doc updated. | |
7178 (recentf-update-menu-hook): Allow menu filters to force menu update. | |
7179 (recentf-make-menu-items): New menu filter handling. | |
7180 (recentf-make-menu-item): New helper function. | |
7181 (recentf-menu-elements): New menu handling function. | |
7182 (recentf-sort-ascending): Updated to new menu filter handling. | |
7183 (recentf-sort-descending): Updated to new menu filter handling. | |
7184 (recentf-sort-basenames-ascending): New menu filter function. | |
7185 (recentf-sort-basenames-descending): New menu filter function. | |
7186 (recentf-show-basenames): New menu filter function. | |
7187 (recentf-show-basenames-ascending): New menu filter function. | |
7188 (recentf-show-basenames-descending): New menu filter function. | |
7189 | |
27919 | 7190 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu> |
7191 | |
7192 * diary-lib.el (list-diary-entries): Don't try to go forward at | |
7193 the end of the buffer. | |
7194 | |
27911 | 7195 2000-02-29 Kenichi Handa <handa@etl.go.jp> |
7196 | |
7197 * international/mule-diag.el (list-character-sets): Completely | |
7198 rewritten. | |
7199 (sort-listed-character-sets): New function. | |
7200 (list-character-sets-1): Completely rewritten. | |
7201 (list-character-sets-2): New function. | |
7202 (non-iso-charset-alist): New variable. | |
7203 (decode-codepage-char): New function. | |
7204 (charset-history): New variable. | |
7205 (read-charset) (list-block-of-chars) | |
7206 (list-iso-charset-chars) | |
7207 (list-non-iso-charset-chars) | |
7208 (list-charset-chars): New functions. | |
7209 (mule-diag): Call list-character-sets-2, not | |
7210 list-character-sets-2. | |
7211 (dump-charsets): Likewise. | |
7212 | |
27910 | 7213 2000-02-29 Gerd Moellmann <gerd@gnu.org> |
7214 | |
27919 | 7215 * dired-x.el (dired-filename-at-point): Add `@' to valid |
7216 file name characters. | |
7217 (dired-filename-at-point): Handle ange-ftp file names. | |
7218 | |
27910 | 7219 * frame.el (frame-notice-user-settings): Use assq-delete-all |
7220 instead of assoc-delete-all. | |
7221 (frame-notice-user-settings): Ditto. | |
7222 | |
7223 * subr.el (assq-delete-all): Renamed from assoc-delete-all. | |
7224 Don't copy alist. | |
7225 | |
27906 | 7226 2000-02-28 Eli Barzilay <eli@cs.cornell.edu> |
7227 | |
7228 * calculator.el (calculator-use-menu): New option. | |
7229 (calculator-initial-bindings): Changed some bindings to work as | |
7230 macros. | |
7231 (calculator-forced-input): Removed. | |
7232 (calculator-restart-other-mode): New variable. | |
7233 (calculator-mode-map): Set up menu. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7234 |
27906 | 7235 2000-02-28 Jari Aalto <jari.aalto@poboxes.com> |
7236 | |
7237 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc | |
7238 tags. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7239 |
27899
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7240 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu> |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7241 |
27899
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7242 * viper-cmd.el (viper-envelop-ESC-key): added the option to |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7243 translate all ESC key sequences. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7244 (viper-goto-mark-subr): restore markers for files for which |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7245 they were saved. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7246 * viper-init.el (viper-translate-all-ESC-keysequences): new variable. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7247 * viper-util.el (viper-set-replace-overlay-glyphs, |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7248 viper-set-replace-overlay): always check if the replacement |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7249 overlay is live. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7250 * viper.el (viper-vi-state-mode-list): added major modes. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7251 * ediff-wind.el: minor comment changes. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
7252 * ediff.el: copyright notice date fix. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7253 |
27898 | 7254 2000-02-27 Jason Rumney <jasonr@gnu.org> |
7255 | |
7256 * faces.el (face-font-family-alternatives): Add arial to helv. | |
7257 (mode-line, header-line, tool-bar): Same default as x for w32. | |
7258 (fixed-pitch, variable-pitch): Remove wildcard as it prevents | |
7259 face-font-family-alternatives from working. | |
7260 * term/w32-win.el (mouse-set-font): Do not build fontset from | |
7261 chosen font. | |
7262 | |
27873 | 7263 2000-02-25 Sam Steingold <sds@goems.com> |
7264 | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
7265 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block' |
27873 | 7266 properly. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7267 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
7268 2000-02-25 Richard M. Stallman <rms@gnu.org> |
27873 | 7269 |
7270 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail. | |
7271 | |
27856 | 7272 2000-02-25 Gerd Moellmann <gerd@gnu.org> |
7273 | |
7274 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer | |
7275 writable. | |
7276 | |
27868 | 7277 * frame.el (busy-cursor-delay-seconds): New option. |
27866 | 7278 |
27847 | 7279 2000-02-24 Gerd Moellmann <gerd@gnu.org> |
7280 | |
7281 * frame.el (show-cursor-in-non-selected-windows): New option. | |
7282 | |
27845 | 7283 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu> |
7284 | |
7285 * diary-lib.el (include-other-diary-files): Undo the selective | |
7286 display in any included file and don't kill it. | |
7287 | |
27841 | 7288 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il> |
7289 | |
7290 * dired.el (dired-mode-map): Don't remove "Edit" from the menu | |
7291 bar. Menu items converted to (menu-item format, help strings | |
7292 added. | |
7293 [downcase, upcase]: Don't enable on MS-DOS. | |
7294 [symlink, symlinks]: Don't show if make-symbolic-link is not | |
7295 bound. | |
7296 [chown, chgrp]: Don't show on MS-DOS and MS-Windows. | |
7297 | |
27825 | 7298 2000-02-23 Dave Love <fx@gnu.org> |
7299 | |
27838 | 7300 * simple.el (zap-to-char, kill-line, kill-region, kill-word) |
7301 (backward-kill-word): Revert addition of * to interactive spec -- | |
7302 it's a feature. | |
7303 | |
7304 * paragraphs.el: (kill-paragraph, backward-kill-paragraph) | |
7305 (backward-kill-sentence, kill-sentence): Likewise. | |
7306 | |
27835 | 7307 * gud.el (gud-jdb-build-class-source-alist): Prepend space to |
7308 scratch buffer name. | |
7309 (gud-format-command): Use int-to-string in ?l case. Simplify | |
7310 slightly. | |
7311 | |
7312 * term/w32-win.el (internal-face-interactive): Update prompt for | |
7313 new read-face-name. | |
7314 | |
7315 * mail/footnote.el (footnote): Add :version to defgroup. | |
7316 (footnote-section-tag-regexp): Customize. | |
7317 (footnote-start-tag, footnote-end-tag): New option. | |
7318 (footnote-latin-regexp): New variable. | |
7319 (Footnote-latin): New function. | |
7320 (footnote-style-alist): Add element for latin style. | |
7321 (footnote-style): Moved. | |
7322 (Footnote-goto-footnote): Use eq to test arg. | |
7323 | |
7324 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message. | |
7325 | |
27825 | 7326 * emacs-lisp/byte-opt.el: Change old backquote syntax. |
7327 (byte-compile-trueconstp): Include keywords. | |
7328 (byte-optimize-quote, byte-optimize-lapcode): Use | |
7329 byte-compile-const-symbol-p. | |
7330 (byte-optimize-char-before): New optimization. | |
7331 | |
7332 * emacs-lisp/bytecomp.el: Change old backquote syntax. | |
7333 (byte-compile-const-symbol-p): New function. | |
7334 (byte-compile-constp, byte-compile-out-toplevel) | |
7335 (byte-compile-form, byte-compile-form, byte-compile-variable-ref): | |
7336 Use it. | |
7337 | |
7338 * subr.el (define-key-after): Default AFTER to t. Doc fix. | |
7339 | |
27813 | 7340 2000-02-23 Kenichi Handa <handa@etl.go.jp> |
7341 | |
27815 | 7342 * international/encoded-kb.el: Be sure to update minor-mode-alist |
7343 and minor-mode-map-alist. | |
7344 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift | |
7345 codes SS2 and SS3 correctly. | |
7346 (encoded-kbd-self-insert-ccl): New function. | |
7347 (encoded-kbd-setup-keymap): New function. | |
7348 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap | |
7349 by calling encoded-kbd-setup-keymap. | |
7350 | |
27813 | 7351 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte |
7352 characters. | |
7353 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t | |
7354 locally. | |
7355 | |
27811 | 7356 2000-02-22 Dave Love <fx@gnu.org> |
7357 | |
7358 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table) | |
7359 (lisp-mode-map, lisp-interaction-mode-map): Define all inside | |
7360 defvar. | |
7361 (lisp-mode-syntax-table): Set up for #|...|# comments. | |
7362 (lisp-imenu-generic-expression): Purecopy strings. Use syntax | |
7363 classes. Match `defface'. | |
7364 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options. | |
7365 (eval-defun-1): Fix for defcustom. | |
7366 (lisp-indent-region): Doc fix. | |
7367 | |
7368 * subr.el (when, unless, split-string): Doc fix. | |
7369 (read-passwd): Move call of clear-this-command-keys to the right | |
7370 place. | |
7371 (replace-regexps-in-string): New function. | |
7372 | |
27807 | 7373 2000-02-22 Gerd Moellmann <gerd@gnu.org> |
7374 | |
7375 * help.el (describe-variable): Set syntax table to | |
7376 emacs-lisp-mode-syntax-table when moving forward over the | |
7377 symbol's name. | |
7378 | |
27805 | 7379 2000-02-22 Dave Love <fx@gnu.org> |
7380 | |
7381 * xt-mouse.el: Doc fixes. | |
7382 (xterm-mouse-position-function): New function, replacing advice of | |
7383 mouse-position. | |
7384 (xterm-mouse-mode): Use it. Don't turn on under a window system. | |
7385 | |
7386 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition. | |
7387 | |
27794 | 7388 2000-02-21 Gerd Moellmann <gerd@gnu.org> |
7389 | |
7390 * format.el (format-annotate-single-property-change): Handle | |
7391 properties.with dotted-list values. | |
7392 (format-proper-list-p): New function. | |
7393 | |
7394 * enriched.el (enriched-face-ans): Handle '(foreground-color | |
7395 . COLOR) and (background-color . COLOR). | |
7396 | |
27788 | 7397 2000-02-20 Dave Love <fx@gnu.org> |
7398 | |
7399 * textmodes/flyspell.el (flyspell-mouse-map): Change definition | |
7400 and assignments to it. | |
7401 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting | |
7402 current local map. | |
7403 (make-flyspell-overlay): Use it. | |
7404 (flyspell-correct-word/mouse-keymap): Change XEmacs test. | |
7405 | |
7406 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level. | |
7407 (lm-get-header-re): Defun, not defsubst. | |
7408 (lm-get-package-name): Defun, not defsubst. Simplify. | |
7409 (lm-version): Doc fix. Simplify. | |
7410 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary) | |
7411 (lm-crack-address, lm-last-modified-date, lm-commentary) | |
7412 (lm-verify, lm-synopsis): Simplify. | |
7413 (lm-report-bug): Require emacsbug. Use compose-mail. | |
7414 | |
27785 | 7415 2000-02-20 Gerd Moellmann <gerd@gnu.org> |
7416 | |
7417 * dired.el (dired-mode): Call propertized-buffer-identification | |
7418 to set mode-line-buffer-identification to something having | |
7419 the right text properties. | |
7420 | |
7421 * bindings.el (propertized-buffer-identification): New function. | |
7422 | |
27777 | 7423 2000-02-20 Dave Love <fx@gnu.org> |
7424 | |
7425 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and | |
7426 check for t-mouse too. | |
7427 | |
7428 * cus-start.el: Make echo-keystrokes `number'. | |
7429 | |
27776 | 7430 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il> |
7431 | |
7432 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]: | |
7433 Don't call ring-empty-p unless tags-location-ring is bound. | |
7434 From Noah Friedman <friedman@splode.com>. | |
7435 | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7436 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org> |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7437 |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7438 * progmodes/hideshow.el (hs-flag-region): No longer use |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7439 `intangible' overlay property. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7440 |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7441 (hs-toggle-hiding): New command. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7442 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7443 |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7444 (hs-minor-mode): Move call to `hs-grok-mode-type' early on. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7445 Fix omission bug: Run `hs-minor-mode-hook' for both activation |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7446 and deactivation. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7447 |
27757 | 7448 2000-02-18 Gerd Moellmann <gerd@gnu.org> |
7449 | |
7450 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs. | |
7451 | |
27749 | 7452 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
7453 | |
27754 | 7454 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix. |
7455 | |
27749 | 7456 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax |
7457 of `*' to handle `(* ... *)' comments. | |
7458 | |
27732 | 7459 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il> |
7460 | |
27737 | 7461 * faces.el (list-faces-display): Use display-mouse-p instead of |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7462 window-system. |
27737 | 7463 |
27732 | 7464 * menu-bar.el (global-map): Menu-bar items converted to the new |
7465 format (menu-item..., rearranged for better CUA compliance, and | |
7466 their names changed for better clarity. Help strings added. | |
7467 | |
7468 * international/mule-cmds.el (mule-menu-keymap) | |
7469 (describe-language-environment-map, set-coding-system-map) | |
7470 (setup-language-environment-map): Convert to new (menu-item... | |
7471 form, add help strings. Change names of menu items for better | |
7472 clarity. "Mule" menu-bar item removed (it's now in the "Options" | |
7473 submenu). | |
7474 | |
27729 | 7475 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
7476 | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7477 * dired-aux.el (dired-do-copy): Remove spurious character.`n' |
27729 | 7478 within the code. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7479 |
27717 | 7480 2000-02-16 Dave Love <fx@gnu.org> |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7481 |
27717 | 7482 * faces.el: Don't require custom. Add more specific :groups to |
7483 various deffaces. | |
7484 (set-face-attribute): Purecopy args. | |
7485 (read-face-name): Default to name at point and use it in prompt. | |
7486 Remove colon from arg in all callers. | |
7487 (list-faces-display): Hyperlink to face descriptions and customize | |
7488 buffers. | |
7489 | |
27712 | 7490 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk> |
7491 | |
7492 * wid-edit.el (widget-match-inline): An atom never matches a | |
7493 list. | |
7494 | |
27707 | 7495 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> |
7496 | |
27713 | 7497 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path |
7498 at ':' characters by call to split-string. | |
27707 | 7499 |
7500 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7501 | |
27713 | 7502 * textmodes/bibtex.el: Added RCS version identification. |
27707 | 7503 |
7504 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7505 | |
27713 | 7506 * textmodes/bibtex.el: Some temporary comments removed. |
7507 (bibtex-field-name, bibtex-entry-type): Made the relationship | |
7508 explicit. | |
7509 (bibtex-field-const): Allow capital letters. | |
7510 (bibtex-start-of-string): Deleted because unused. | |
7511 | |
7512 * textmodes/bibtex.el: Unified some nomenclature. We no longer | |
7513 use the term 'reference' to describe a bibtex entry as a whole. | |
7514 Further, reference keys are no longer called 'labels'. | |
7515 (bibtex-keys): Renamed to bibtex-reference-keys. | |
7516 (bibtex-reformat-previous-labels): Renamed to | |
7517 bibtex-reformat-previous-reference-keys. | |
7518 (bibtex-reference-type): Renamed to bibtex-entry-type. | |
7519 (bibtex-reference-head): Renamed to bibtex-entry-head. | |
7520 (bibtex-reference-maybe-empty-head): Renamed to | |
7521 bibtex-entry-maybe-empty-head. | |
7522 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry. | |
7523 (bibtex-search-reference): Renamed to bibtex-search-entry. | |
7524 (bibtex-enclosing-reference-maybe-empty-head): Renamed to | |
7525 bibtex-enclosing-entry-maybe-empty-head. | |
7526 (bibtex-entry-field-alist, bibtex-entry-head, | |
7527 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry, | |
7528 bibtex-map-entries, bibtex-search-entry, | |
7529 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry, | |
7530 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode, | |
7531 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message, | |
7532 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer, | |
7533 bibtex-find-entry-location, bibtex-validate, bibtex-find-text, | |
7534 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat, | |
7535 bibtex-complete-key, bibtex-String) : Use the new nomenclature. | |
27707 | 7536 |
7537 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7538 | |
27713 | 7539 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant |
7540 comment. | |
7541 (bibtex-format-field-delimiters): New function, functionality | |
7542 extracted from bibtex-format-entry. | |
7543 (bibtex-autokey-get-yearfield-digits): New function, functionality | |
7544 extracted from bibtex-autokey-get-yearfield. | |
7545 | |
7546 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex | |
7547 entries in order to avoid stack overflow in the regexp matcher if | |
7548 field contents become large. | |
7549 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield, | |
7550 bibtex-field-string-part-not-braced, | |
7551 bibtex-field-string-part-no-inner-braces, | |
7552 bibtex-field-string-part-1-inner-brace, | |
7553 bibtex-field-string-part-2-inner-braces, | |
7554 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced, | |
7555 bibtex-field-string-quoted, bibtex-field-string, | |
7556 bibtex-field-string-or-const, bibtex-field-text, bibtex-field, | |
7557 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix, | |
7558 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted | |
7559 as parsing is now performed by the following functions. | |
7560 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced, | |
7561 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted, | |
7562 bibtex-parse-field-string, bibtex-search-forward-field-string, | |
7563 bibtex-parse-association, bibtex-field-name-for-parsing, | |
7564 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field, | |
7565 bibtex-search-forward-field, bibtex-search-backward-field, | |
7566 bibtex-start-of-field, bibtex-end-of-field, | |
7567 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field, | |
7568 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field, | |
7569 bibtex-parse-string-prefix, bibtex-parse-string-postfix, | |
7570 bibtex-parse-string, bibtex-search-forward-string, | |
7571 bibtex-search-backward-string, bibtex-start-of-string, | |
7572 bibtex-end-of-string, bibtex-start-of-reference-key-in-string, | |
7573 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string, | |
7574 bibtex-end-of-text-in-string): New functions for the parsing of bibtex | |
7575 entries. Instead of reporting the results of the parsing by | |
7576 match-beginning or match-end, these functions return data structures | |
7577 that hold the corresponding positions. | |
7578 (bibtex-enclosing-field): Changed to also report field boundaries by | |
7579 return values rather than by match-beginning or match-end. The | |
7580 following functions have been adapted to use the new parsing | |
7581 functions. | |
7582 (bibtex-skip-to-valid-entry, bibtex-search-reference, | |
7583 bibtex-enclosing-field, bibtex-format-entry, | |
7584 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring, | |
7585 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode, | |
7586 bibtex-print-help-message, bibtex-end-of-entry, | |
7587 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field, | |
7588 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, | |
7589 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new | |
7590 method for parsing. | |
7591 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry, | |
7592 bibtex-map-entries, bibtex-flash-head, | |
7593 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry, | |
7594 bibtex-autokey-change, bibtex-autokey-get-namefield, | |
7595 bibtex-autokey-get-names, bibtex-autokey-get-titlestring, | |
7596 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode, | |
7597 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer, | |
7598 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, | |
7599 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in | |
7600 order to make the new binding of case-fold-search immediately | |
7601 visible. | |
27707 | 7602 |
7603 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7604 | |
27713 | 7605 * textmodes/bibtex.el: Copyright notice is up to date. |
7606 Added constant 'bibtex-maintainer-salutation. | |
7607 | |
7608 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather | |
7609 than make-temp-name, use match-string-no-properties and eliminate | |
7610 a quadratic behavior when building bibtex-strings. | |
7611 | |
7612 * bibtex.el (bibtex-reference-key): Accept string entries whose | |
7613 reference key contains upper case letters. | |
27707 | 7614 |
7615 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7616 | |
27713 | 7617 * bibtex.el (bibtex-reference-head): Allow entries to start with |
7618 a new line. | |
27707 | 7619 |
7620 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7621 | |
27713 | 7622 * bibtex.el: Hiding of entry bodies is not longer provided by |
7623 bibtex.el directly. Instead the hideshow package can be used. | |
7624 Added a special bibtex entry to hs-special-modes-alist. | |
7625 (bibtex-hs-forward-sexp): Added for hideshow.el. | |
27729 | 7626 |
7627 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7628 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7629 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7630 at ':' characters by call to split-string. |
27729 | 7631 |
7632 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7633 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7634 * textmodes/bibtex.el: Added RCS version identification. |
27729 | 7635 |
7636 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7637 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7638 * textmodes/bibtex.el: Some temporary comments removed. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7639 (bibtex-field-name, bibtex-entry-type): Made the relationship |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7640 explicit. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7641 (bibtex-field-const): Allow capital letters. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7642 (bibtex-start-of-string): Deleted because unused. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7643 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7644 * textmodes/bibtex.el: Unified some nomenclature. We no longer |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7645 use the term 'reference' to describe a bibtex entry as a whole. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7646 Further, reference keys are no longer called 'labels'. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7647 (bibtex-keys): Renamed to bibtex-reference-keys. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7648 (bibtex-reformat-previous-labels): Renamed to |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7649 bibtex-reformat-previous-reference-keys. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7650 (bibtex-reference-type): Renamed to bibtex-entry-type. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7651 (bibtex-reference-head): Renamed to bibtex-entry-head. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7652 (bibtex-reference-maybe-empty-head): Renamed to |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7653 bibtex-entry-maybe-empty-head. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7654 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7655 (bibtex-search-reference): Renamed to bibtex-search-entry. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7656 (bibtex-enclosing-reference-maybe-empty-head): Renamed to |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7657 bibtex-enclosing-entry-maybe-empty-head. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7658 (bibtex-entry-field-alist, bibtex-entry-head, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7659 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7660 bibtex-map-entries, bibtex-search-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7661 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7662 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7663 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7664 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7665 bibtex-find-entry-location, bibtex-validate, bibtex-find-text, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7666 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7667 bibtex-complete-key, bibtex-String) : Use the new nomenclature. |
27707 | 7668 |
7669 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7670 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7671 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7672 comment. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7673 (bibtex-format-field-delimiters): New function, functionality |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7674 extracted from bibtex-format-entry. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7675 (bibtex-autokey-get-yearfield-digits): New function, functionality |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7676 extracted from bibtex-autokey-get-yearfield. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7677 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7678 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7679 entries in order to avoid stack overflow in the regexp matcher if |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7680 field contents become large. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7681 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7682 bibtex-field-string-part-not-braced, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7683 bibtex-field-string-part-no-inner-braces, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7684 bibtex-field-string-part-1-inner-brace, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7685 bibtex-field-string-part-2-inner-braces, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7686 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7687 bibtex-field-string-quoted, bibtex-field-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7688 bibtex-field-string-or-const, bibtex-field-text, bibtex-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7689 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7690 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7691 as parsing is now performed by the following functions. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7692 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7693 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7694 bibtex-parse-field-string, bibtex-search-forward-field-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7695 bibtex-parse-association, bibtex-field-name-for-parsing, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7696 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7697 bibtex-search-forward-field, bibtex-search-backward-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7698 bibtex-start-of-field, bibtex-end-of-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7699 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7700 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7701 bibtex-parse-string-prefix, bibtex-parse-string-postfix, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7702 bibtex-parse-string, bibtex-search-forward-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7703 bibtex-search-backward-string, bibtex-start-of-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7704 bibtex-end-of-string, bibtex-start-of-reference-key-in-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7705 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7706 bibtex-end-of-text-in-string): New functions for the parsing of bibtex |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7707 entries. Instead of reporting the results of the parsing by |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7708 match-beginning or match-end, these functions return data structures |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7709 that hold the corresponding positions. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7710 (bibtex-enclosing-field): Changed to also report field boundaries by |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7711 return values rather than by match-beginning or match-end. The |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7712 following functions have been adapted to use the new parsing |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7713 functions. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7714 (bibtex-skip-to-valid-entry, bibtex-search-reference, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7715 bibtex-enclosing-field, bibtex-format-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7716 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7717 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7718 bibtex-print-help-message, bibtex-end-of-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7719 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7720 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7721 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7722 method for parsing. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7723 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7724 bibtex-map-entries, bibtex-flash-head, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7725 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7726 bibtex-autokey-change, bibtex-autokey-get-namefield, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7727 bibtex-autokey-get-names, bibtex-autokey-get-titlestring, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7728 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7729 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7730 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7731 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7732 order to make the new binding of case-fold-search immediately |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7733 visible. |
27729 | 7734 |
7735 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7736 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7737 * textmodes/bibtex.el: Copyright notice is up to date. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7738 Added constant 'bibtex-maintainer-salutation. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7739 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7740 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7741 than make-temp-name, use match-string-no-properties and eliminate |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7742 a quadratic behavior when building bibtex-strings. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
7743 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7744 * bibtex.el (bibtex-reference-key): Accept string entries whose |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7745 reference key contains upper case letters. |
27729 | 7746 |
7747 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7748 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7749 * bibtex.el (bibtex-reference-head): Allow entries to start with |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7750 a new line. |
27729 | 7751 |
7752 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7753 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7754 * bibtex.el: Hiding of entry bodies is not longer provided by |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7755 bibtex.el directly. Instead the hideshow package can be used. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7756 Added a special bibtex entry to hs-special-modes-alist. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
7757 (bibtex-hs-forward-sexp): Added for hideshow.el. |
27729 | 7758 |
7759 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
7760 | |
27713 | 7761 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to |
27707 | 7762 proceedings entry type (for cross referencing). Thanks to Wagner |
7763 Toledo Correa for the suggestion. | |
7764 | |
27713 | 7765 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu. |
27707 | 7766 |
27690 | 7767 2000-02-14 Kenichi Handa <handa@etl.go.jp> |
7768 | |
7769 * international/characters.el: Setup case table for Vietnamese. | |
7770 | |
27687 | 7771 2000-02-12 Gerd Moellmann <gerd@gnu.org> |
7772 | |
7773 * uniquify.el (toplevel): Require CL at compile time. | |
7774 (uniquify-push): Removed. | |
7775 | |
7776 * shadowfile.el (shadow-when): Removed. | |
7777 | |
7778 * tempo.el (tempo-dolist, tempo-mapc): Removed. | |
7779 (tempo-process-and-insert-string): Use dolist instead of | |
7780 tempo-dolist. | |
7781 | |
7782 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from | |
7783 regexp for paragraph-start. | |
7784 | |
7785 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading | |
7786 commas as well. | |
7787 | |
27657 | 7788 2000-02-10 Dave Love <fx@gnu.org> |
7789 | |
7790 * wid-edit.el: (widgets) [defgroup]: Remove url link. | |
7791 (widget-color-choice-list, widget-color-history, widget-mouse-help): | |
7792 Deleted. | |
7793 (widget-specify-field, widget-specify-button): Don't use | |
7794 widget-mouse-help as help-echo property. | |
7795 (default): Use #'ignore for :validate and :mouse-down-action. | |
7796 (checkbox): Add help-echo. | |
7797 (widget-sexp-validate): Rewritten to clarify error messages. | |
7798 (character): Use char-valid-p in :match function. | |
7799 (widget-color-complete): Use facemenu-color-alist. | |
7800 (widget-color-action): Use facemenu-read-color. | |
7801 | |
7802 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't | |
7803 set up `caar' &c that we now have. | |
7804 | |
27713 | 7805 2000-02-09 Ray Blaak <blaak@gnu.org> |
7806 | |
7807 * delphi.el: Make resourcestring a declaration region, like const | |
7808 and var. | |
7809 | |
27652 | 7810 2000-02-09 Dave Love <fx@gnu.org> |
7811 | |
7812 * bindings.el (mode-line-input-method-map): New variable. | |
7813 (mode-line-mule-info): Use it; fix last change. | |
7814 (mode-line-mode-menu): Move definition. | |
7815 (mode-line-mouse-sensitive-p): Deleted. | |
7816 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p. | |
7817 (make-mode-line-mouse-sensitive): Deleted. Body moved to top | |
7818 level. | |
7819 | |
7820 * startup.el (command-line-1): Don't call | |
7821 make-mode-line-mouse-sensitive. | |
7822 | |
27644 | 7823 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it> |
7824 | |
7825 * mail/rmail.el (rmail-retry-failure): Use | |
7826 rmail-beginning-of-message before rmail-toggle-header, because the | |
7827 former toggles headers. | |
7828 | |
27636
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7829 2000-02-06 Stefan Monnier <monnier@cs.yale.edu> |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7830 |
27637
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
7831 * diff-mode.el (diff-kill-junk): New interactive function. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
7832 (diff-reverse-direction): Use delete-and-extract-region. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
7833 (diff-post-command-hook): Restrict the area so that the hook also works |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
7834 outside of any diff hunk. This is necessary for the minor-mode. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
7835 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
7836 (diff-minor-mode): Setup the hooks for header-hunk rewriting. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
7837 |
27636
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7838 * font-lock.el (font-lock-keywords): Fix doc for multiline matches. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7839 (font-lock-add-keywords): Make it work even if font-lock-mode is nil, |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7840 so that it can be used more easily in <foo>-mode-hook. Also make sure |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7841 to avoid duplicate entries. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7842 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7843 (font-lock-remove-keywords): Just as was done for `add', allow it to |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7844 work even if font-lock-mode is nil. Also make sure we don't modify |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7845 any pre-existing list by forcing a copy-sequence. Finally rename |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7846 `major-mode' to `mode'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7847 (font-lock-fontify-syntactic-anchored-keywords) |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7848 (font-lock-fontify-anchored-keywords) |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7849 (font-lock-fontify-keywords-region): Use line-end-position. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7850 Don't make `font-lock-multiline' local (it's now done in |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7851 font-lock-set-defaults). |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7852 (font-lock-set-defaults): Make `font-lock-multiline' local. Also |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7853 move the `font-lock-fontified' creation to inside the `unless'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
7854 |
27634
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
7855 2000-02-06 Andrew Innes <andrewi@gnu.org> |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
7856 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
7857 * term/w32-win.el (x-handle-args): Comment out call to message, |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
7858 which occurs before window system is initialized. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
7859 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
7860 * makefile.nt: Add support for recompiling lisp code. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
7861 |
27610 | 7862 2000-02-04 Dave Love <fx@gnu.org> |
7863 | |
27617 | 7864 * bindings.el (mode-line-mule-info): Fix/extend last change. |
7865 | |
27610 | 7866 * completion.el: Replace completion-dolist with dolist. |
7867 | |
7868 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, | |
7869 dotimes. | |
7870 | |
27609
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7871 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl> |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7872 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7873 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7874 environment names before they go into the section regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7875 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7876 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7877 char class in regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7878 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7879 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7880 `case-fold-search' to nil. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7881 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7882 * progmodes/idlwave.el (idlwave-template): Respect |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7883 `idlwave-abbrev-change-case'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7884 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7885 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7886 idlwave-while): respect `idlwave-reserved-word-upcase'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7887 (idlwave-rw-case): New function. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7888 (idlwave-statement-match): Fixed problem with assignment regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7889 (idlwave-font-lock-keywords): Improved regexp for keyword |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7890 parameters. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7891 (idlwave-surround): New argument LENGTH to support padding of |
27609
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7892 operators longer than 1 char. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7893 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7894 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7895 idlwave-shell-expression-overlay. Implemented printing of |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7896 expressions on higher levels of the calling stack. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7897 (idlwave-shell-display-level-in-calling-stack): Restore stack |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7898 level. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7899 (idlwave-retrieve-expression-from-level): New function. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7900 (idlwave-shell-last-calling-stack): Variable removed. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7901 (idlwave-shell-reset): Argument action reversed (`visible' to |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7902 `hidden'). Also remove stop-line overlay. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7903 (idlwave-shell-calling-stack-routine): New variable. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7904 (idlwave-shell-parse-stack-and-display): Messages now display |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7905 negative level numbers. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7906 (idlwave-shell-mode): Set `modeline-format'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7907 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7908 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7909 21. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7910 (idlwave-shell-print-expression-function): New option. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7911 |
27609
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7912 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7913 idlwave-toolbar-remove-everywhere): Keybindings prefix is now |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7914 `tool-bar' instead of `toolbar'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
7915 |
27590 | 7916 2000-02-02 Dave Love <fx@gnu.org> |
7917 | |
7918 * emacs-lisp/cl.el: Use bytecomp-load-hook, not | |
7919 emacs-lisp-mode-hook. Don't check for defalias being defined. | |
7920 | |
7921 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash) | |
7922 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use | |
7923 the new builtins directly. | |
7924 | |
7925 * whitespace.el (whitespace): Add :version to defgroup. | |
7926 | |
7927 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference): | |
7928 Doc fix. | |
7929 | |
7930 * thingatpt.el (sexp-at-point, symbol-at-point) | |
7931 (number-at-point, list-at-point): Add autoload cookie. | |
7932 | |
7933 * recentf.el (recentf): Add :version to defgroup. | |
7934 | |
7935 * quickurl.el (quickurl): Add :version to defgroup. | |
7936 | |
7937 * elide-head.el (elide-head): Use point-marker more. | |
7938 | |
7939 * bs.el (bs): Add :version to defgroup. | |
7940 | |
7941 * autorevert.el (global-auto-revert-mode): Add autoload cookie. | |
7942 | |
7943 * progmodes/delphi.el (delphi): Add :version to defgroup. | |
7944 | |
27587 | 7945 2000-02-02 Gerd Moellmann <gerd@gnu.org> |
7946 | |
7947 * ange-ftp.el (ange-ftp-write-region): Handle case that | |
7948 succeeding process operation sets a different coding system. | |
7949 | |
7950 * calculator.el: New file. | |
7951 | |
27572 | 7952 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il> |
7953 | |
7954 * frame.el (frames-on-display-list, framep-on-display): New | |
7955 functions. | |
7956 (display-mouse-p, display-popup-menus-p, display-graphic-p) | |
7957 (display-selections-p, display-screens, display-pixel-width) | |
7958 (display-pixel-height, display-mm-width, display-mm-height) | |
7959 (display-backing-store, display-save-under, display-planes) | |
7960 (display-color-cells, display-visual-class): New functions. | |
7961 | |
7962 * term/tty-colors.el (tty-color-gray-shades): New function. | |
7963 | |
7964 * faces.el (display-color-p): Use framep-on-display. | |
7965 (display-grayscale-p): New function. | |
7966 | |
27549 | 7967 2000-01-31 Dave Love <fx@gnu.org> |
7968 | |
7969 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it. | |
7970 (create-fontset-from-x-resource): Don't concat integers. | |
7971 | |
27545 | 7972 2000-01-31 Inge Frick <inge@nada.kth.se> |
7973 | |
7974 * view.el: Some changes in documentation. Removed some trailing | |
7975 whitespace. Changed some parameter names to agree with | |
7976 documentation. | |
7977 (view-mode-exit): Keep entry in `view-return-to-alist' only when a | |
7978 window is not deleted. Modifies change 1998-04-26. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7979 |
27541 | 7980 2000-01-31 Gerd Moellmann <gerd@gnu.org> |
7981 | |
27543 | 7982 * windmove.el: New file. |
7983 | |
27541 | 7984 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el, |
7985 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el, | |
27545 | 7986 progmodes/ebnf-yac.el: Update copyright and license info. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
7987 |
27541 | 7988 * jit-lock.el (jit-lock-function): Widen before calculating end |
7989 position. | |
7990 (jit-lock-stealth-chunk-start): Rewritten. | |
7991 | |
7992 * info.el (Info-title-face-alist): Removed. | |
7993 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New | |
7994 faces. | |
7995 (Info-fontify-node): Use these faces. | |
7996 | |
27527 | 7997 2000-01-30 Gerd Moellmann <gerd@gnu.org> |
7998 | |
7999 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list) | |
8000 (cl-macro-list1): Recognize `&allow-other-keys' instead of | |
8001 `&allow-other-keywords'. | |
8002 | |
8003 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to | |
8004 the list of directories scanned heuristically. | |
8005 | |
8006 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to | |
8007 exist. | |
8008 | |
27523 | 8009 2000-01-30 Jason Rumney <jasonr@gnu.org> |
8010 | |
8011 * w32-fns.el: Define w32-tty-standard-colors. | |
8012 | |
8013 * startup.el (command-line): Use w32-tty-standard-colors when in | |
8014 w32 console mode. | |
8015 | |
27510 | 8016 2000-01-30 Dave Love <fx@gnu.org> |
8017 | |
27513 | 8018 * jka-compr.el (jka-compr-load): Fix up load-history. |
8019 | |
27510 | 8020 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes. |
8021 | |
8022 * emacs-lisp/cl-macs.el: Revert previous change. | |
8023 | |
27499 | 8024 2000-01-29 Dave Love <fx@gnu.org> |
8025 | |
8026 * facemenu.el: Purecopy various strings. | |
8027 | |
8028 * timezone.el (timezone-fix-time): Window against 69 for two-digit | |
8029 years. Deal with three-digit years. | |
8030 | |
8031 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use | |
8032 defconst, purecopy. | |
8033 (help-back-label): Purecopy it. | |
8034 | |
27498 | 8035 2000-01-18 Gerd Moellmann <gerd@gnu.org> |
8036 | |
8037 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration | |
8038 variable. If non-nil, order the buffer list according to the | |
8039 currently selected frame. | |
8040 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is | |
8041 non-nil, pass the selected frame to function buffer-list. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8042 |
27496 | 8043 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
8044 | |
8045 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix | |
8046 | |
27486 | 8047 2000-01-28 Dave Love <fx@gnu.org> |
8048 | |
27491 | 8049 * emacs-lisp/cl-macs.el: Remove dotimes, dolist. |
8050 | |
27486 | 8051 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop. |
8052 Don't use lisp-indent-hook property. | |
8053 (cl-abs): Remove. | |
8054 | |
8055 * subr.el: Move out indent and edebug specs for when and unless. | |
8056 | |
8057 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes, | |
8058 when, unless. | |
8059 | |
8060 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist, | |
8061 unless, when. | |
8062 | |
27467 | 8063 2000-01-28 Gerd Moellmann <gerd@gnu.org> |
8064 | |
27481 | 8065 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize |
8066 `collecting' as synonym for `collect'. | |
8067 | |
8068 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name | |
8069 for the case it contains spaces. | |
8070 | |
8071 * simple.el (what-cursor-position): Change formatting of | |
8072 messages. | |
8073 | |
27473 | 8074 * frame.el (delete-other-frames): New function. |
8075 (toplevel): Bind it to C-x 5 1. | |
8076 | |
27469 | 8077 * sort.el (sort-numeric-base): New option. |
8078 (sort-numeric-fields): If number starts with `0' or `0[xX[', | |
8079 interpret it as octal or hexadecimal. Use sort-numeric-base | |
8080 as default base. | |
8081 | |
27467 | 8082 * progmodes/glasses.el: New file. |
8083 | |
27451 | 8084 2000-01-27 Gerd Moellmann <gerd@gnu.org> |
8085 | |
27461 | 8086 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched |
8087 userids differently. | |
8088 | |
27451 | 8089 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el, |
8090 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el, | |
8091 progmodes/ebnf-yac.el: New files. | |
8092 | |
27446 | 8093 2000-01-26 Dave Love <fx@gnu.org> |
8094 | |
8095 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose | |
8096 on a function with an empty body. [From Eric Ludlam.] | |
8097 | |
27437 | 8098 2000-01-25 Andre Spiegel <spiegel@gnu.org> |
8099 | |
8100 * vc.el (vc-version-diff): Make sure file name is expanded. | |
8101 | |
27433 | 8102 2000-01-25 Gerd Moellmann <gerd@gnu.org> |
8103 | |
8104 * scroll-bar.el (scroll-bar-timer): Variable removed. | |
8105 (scroll-bar-toolkit-scroll): Don't use a timer. | |
8106 | |
27419 | 8107 2000-01-25 Kenichi Handa <handa@etl.go.jp> |
8108 | |
8109 * language/thai-util.el (thai-composition-function): Delete | |
8110 superfluous `a'. | |
8111 | |
27418 | 8112 2000-01-24 Dave Love <fx@gnu.org> |
8113 | |
8114 * fortran.el (fortran-mode): Use beginning-of-defun-function, | |
8115 end-of-defun-function. | |
8116 | |
8117 * font-lock.el (turn-on-font-lock): Don't depend on window-system | |
8118 &c. | |
8119 | |
27405 | 8120 2000-01-22 Jason Rumney <jasonr@gnu.org> |
8121 | |
8122 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it | |
8123 conflicts with new face support. | |
8124 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
8125 2000-01-22 Richard M. Stallman <rms@gnu.org> |
27392
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
8126 |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
8127 * replace.el (query-replace): Rename last arg to DELIMITED. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
8128 (map-query-replace-regexp, query-replace-regexp-eval): Likewise. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
8129 (query-replace-regexp): Likewise. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
8130 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
8131 2000-01-20 Richard M. Stallman <rms@gnu.org> |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
8132 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
8133 * subr.el (with-syntax-table): Use make-symbol, not gensym. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
8134 |
27381
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8135 * emacs-lisp/lisp.el (beginning-of-defun-function): |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8136 Variable renamed from beginning-of-defun. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8137 Do not call make-variable-buffer-local. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8138 (beginning-of-defun-raw): Use new variable name; doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8139 (beginning-of-defun): Doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8140 (end-of-defun-function): Variable renamed from end-of-defun. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8141 Do not call make-variable-buffer-local. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8142 (end-of-defun): Use new variable name; doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
8143 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
8144 * subr.el (dolist, dotimes): Copied from cl-macs.el |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
8145 and made to work. |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
8146 |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8147 * mail/undigest.el (rmail-digest-end-regexps): |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
8148 Variable replaces rmail-digest-end-regexp. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
8149 Allows multiple regexps for detecting the end line. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
8150 (undigestify-rmail-message): Corresponding changes. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
8151 |
27366 | 8152 2000-01-19 Dave Love <fx@gnu.org> |
8153 | |
27368 | 8154 * files.el (user-init-file): Don't declare here -- is primitive. |
8155 | |
27366 | 8156 * startup.el (command-line): Check for compiled user-init-file and |
8157 set to uncompiled version if necessary. | |
8158 | |
27358 | 8159 2000-01-18 Gerd Moellmann <gerd@gnu.org> |
8160 | |
27361 | 8161 * mail/undigest.el (rmail-digest-end-regexp): New user option. |
8162 (undigestify-rmail-message): Use it. | |
8163 | |
27358 | 8164 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT. |
8165 | |
27351 | 8166 2000-01-17 Gerd Moellmann <gerd@gnu.org> |
8167 | |
8168 * tmm.el (tmm-goto-completions): Adapt to prompt being part | |
8169 of mini-buffer. | |
8170 | |
27326 | 8171 2000-01-14 Gerd Moellmann <gerd@gnu.org> |
8172 | |
27330 | 8173 * emacs-lisp/copyright.el (copyright-update): Removed the |
8174 requirement for a trailing space from `copyright-regexp', to | |
8175 support copyrights with owner specified on a separate line.. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8176 |
27327 | 8177 * align.el: New file. |
8178 | |
27326 | 8179 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu. |
8180 | |
8181 * net/eudc.el (toplevel): Define EUDC menu for Emacs. | |
8182 | |
27323 | 8183 2000-01-13 Dave Love <fx@gnu.org> |
8184 | |
8185 * ph.el: Removed. (Obsoleted by EUDC.) | |
8186 | |
27321 | 8187 2000-01-13 Gerd Moellmann <gerd@gnu.org> |
8188 | |
8189 * net/eudc.el (toplevel): Remove autoloaded code installing | |
8190 menu with easymenu, because that causes build problems. | |
8191 | |
8192 * frame.el (frame-notice-user-settings): New variable. | |
8193 (frame-notice-user-settings): Don't modify frame parameters | |
8194 if called a second time. | |
8195 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
8196 2000-01-13 Richard M. Stallman <rms@gnu.org> |
27321 | 8197 |
8198 * frame.el (frame-notice-user-settings): | |
8199 Notice default-frame-parameters even for non-window frames. | |
8200 | |
27318 | 8201 2000-01-13 Gerd Moellmann <gerd@gnu.org> |
8202 | |
8203 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds | |
8204 for Emacs. | |
8205 (eudc-bob-can-display-inline-images): Extend for Emacs. | |
8206 (eudc-bob-toggle-inline-display): Ditto. | |
8207 (eudc-bob-display-jpeg): Ditto. | |
8208 | |
27304 | 8209 2000-01-12 Gerd Moellmann <gerd@gnu.org> |
8210 | |
27313 | 8211 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el, |
8212 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el, | |
8213 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8214 |
27312 | 8215 * add-log.el (add-change-log-entry): Fix error trying an `(insert |
8216 nil)'. | |
8217 | |
8218 * subdirs.el: Add `net' directory. | |
8219 | |
27308 | 8220 * net: New directory. |
8221 | |
27304 | 8222 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from |
8223 eval-last-sexp. Don't bind debug-on-error here. | |
8224 (eval-last-sexp): New function. Bind debug-on-error if | |
8225 eval-expression-debug-on-error is non-nil. | |
8226 (eval-defun-2, eval-defun): Likewise. | |
8227 | |
8228 * simple.el (eval-expression): Don't bind debug-on-error if | |
8229 eval-expression-debug-on-error is nil. Detect changed | |
8230 debug-on-error, and propagate new value to global binding, if | |
8231 eval-expression-debug-on-error is non-nil, | |
8232 (eval-expression-debug-on-error): Change doc string. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8233 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
8234 2000-01-11 Richard M. Stallman <rms@gnu.org> |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8235 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8236 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8237 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8238 * emacs-lisp/lisp-mode.el (with-syntax-table): |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8239 Set up lisp-indent-function property. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8240 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8241 * subr.el (with-syntax-table): Moved from simple.el. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8242 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8243 * simple.el (with-syntax-table): Moved to subr.el. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
8244 |
27288 | 8245 2000-01-11 Gerd Moellmann <gerd@gnu.org> |
8246 | |
27291 | 8247 * tmm.el (tmm-shortcut): Delete region after prompt instead |
8248 of erasing buffer. | |
8249 | |
27288 | 8250 * textmodes/fill.el (fill-common-string-prefix): New function. |
27309 | 8251 (fill-context-prefix): Use the longest common prefix of first |
8252 and second line fill prefix, if there is one. | |
27288 | 8253 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
8254 2000-01-11 Richard M. Stallman <rms@gnu.org> |
27285
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
8255 |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
8256 * array.el (array-mode): Don't use make-variable-buffer-local. |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
8257 Use make-local-variable for `truncate-lines'. |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
8258 |
27282 | 8259 2000-01-11 Jari Aalto <jari.aalto@poboxes.com> |
8260 | |
8261 * add-log.el (add-log-current-defun): Handle user-defined | |
8262 add-log-current-function returning nil, | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8263 |
27280 | 8264 * add-log.el (add-change-log-entry): Insert version number |
27282 | 8265 if having found a current function |
27278 | 8266 |
8267 * add-log.el (add-log-current-defun): Call | |
8268 `add-log-current-defun-function'. Try matches at level 0 and | |
8269 level 1. Strip whitespace from defun found. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8270 |
27270
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
8271 2000-01-10 John Wiegley <johnw@gnu.org> |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
8272 |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
8273 * allout.el (isearch-done/outline-provisions): Added `edit' |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
8274 argument to correspond with the current definition of |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
8275 `isearch-done'. |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
8276 |
27265 | 8277 2000-01-10 Dave Love <fx@gnu.org> |
8278 | |
8279 * elide-head.el (elide-head): Use point-marker, not point. | |
8280 | |
27261 | 8281 2000-01-10 Gerd Moellmann <gerd@gnu.org> |
8282 | |
27263 | 8283 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates |
8284 before and after the year 2000. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8285 |
27261 | 8286 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p): |
8287 Add ispell- prefix. | |
8288 | |
8289 2000-01-10 Ken Stevens <k.stevens@ieee.org> | |
8290 | |
8291 * ispell.el: Only define dictionaries in menus when they exist. | |
8292 (version18p): New variable. | |
8293 (version20p): New variable. | |
8294 (xemacsp): New variable. | |
8295 (ispell-choices-win-default-height): Fix for XEmacs visibility. | |
8296 (ispell-dictionary-alist1): Added Brasileiro dictionary. | |
8297 (ispell-dictionary-alist6): Russian command lines no longer accept | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
8298 run-together words. |
27261 | 8299 (ispell-local-dictionary-alist): Add koi8-r to customize definition. |
8300 (ispell-dictionary-alist): Add koi8-r to customize definition. | |
8301 (check-ispell-version): Added documentation string. Returns | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
8302 library path when called non-interactively. |
27261 | 8303 (ispell-menu-map-needed): Uses new variables. |
8304 (ispell-library-path): New variable. | |
8305 (ispell-decode-string): XEmacs fix for bogus variable bindings. | |
8306 (ispell-word): Improved documentation string. Test for valid | |
8307 character mappings. Correctly check typed in word changes that can | |
8308 result in single words split into multiple words. Returns | |
8309 replacement word. | |
8310 (ispell-command-loop): Fixes XEmacs display bugs. Show word to | |
8311 replace in recursive query replace mode. Help message for | |
8312 recursive edit mode. | |
8313 (ispell-show-choices): Protect against bad framepop bindings. | |
8314 (ispell-help): Fix to work with XEmacs. | |
8315 (ispell-highlight-spelling-error): Use new variables. | |
8316 (ispell-overlay-window): Fix to work with XEmacs. | |
8317 (ispell-parse-output): Passed and returns location information | |
8318 tracking spelling corrections. Doesn't recheck same word on | |
8319 current line. | |
8320 (ispell-init-process): Protect against bogus XEmacs variable binding. | |
8321 Fix call to single argument in sleep-for. Use new variables. | |
8322 (ispell-region): Passed and returns location information tracking | |
8323 spelling corrections. Doesn't check same word on current line. | |
8324 Improved documentation string. Doesn't resend a line already | |
8325 checked to the ispell process - fixes bug in LaTeX parsing. | |
8326 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML. | |
8327 (ispell-skip-region): No longer skips <TT> in SGML. | |
8328 (ispell-process-line): Tracks location information with spelling | |
8329 corrections. Added documentation string. Accounts for words | |
8330 already accepted on this line. Don't allow query-replace on line | |
8331 starting with math characters. Doesn't resend a line already sent | |
8332 to ispell process. Fixes alignment error bug. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8333 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
8334 2000-01-10 Richard M. Stallman <rms@gnu.org> |
27256
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
8335 |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8336 * dired-x.el (dired-guess-shell-alist-default): |
27259
c41efa6c4be1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27256
diff
changeset
|
8337 Suggest xloadimage, which is free, not xv, which isn't. |
c41efa6c4be1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27256
diff
changeset
|
8338 |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8339 * ange-ftp.el (ange-ftp-file-name-nondirectory): |
27256
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
8340 Don't ever include the host name or user name in the value. |
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
8341 |
27255 | 8342 2000-01-09 Gerd Moellmann <gerd@gnu.org> |
8343 | |
8344 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead | |
8345 of a real newline. | |
8346 | |
27253 | 8347 2000-01-09 Stephen Eglen <stephen@gnu.org> |
8348 | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8349 * dired-x.el (dired-guess-shell-alist-default): Suggest xv |
27253 | 8350 for .png files. |
8351 | |
27251 | 8352 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk> |
8353 | |
8354 * cus-edit.el (custom-hook-convert-widget): Fix comment. | |
8355 | |
27247 | 8356 2000-01-09 Gerd Moellmann <gerd@gnu.org> |
8357 | |
27249 | 8358 * progmodes/cperl-mode.el: Replace ^F with ^L. |
8359 | |
27247 | 8360 * sendmail.el (toplevel): Provide `sendmail' when compiling |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
8361 before `require'ing rmail and mailalias to prevent infinite |
27247 | 8362 recursion. |
8363 | |
27244 | 8364 2000-01-08 Dave Love <fx@gnu.org> |
8365 | |
27265 | 8366 * emacs-lisp/backquote.el: Remove inappropriate customization |
8367 (allowing custom.el to use backquote). | |
27244 | 8368 |
27241 | 8369 2000-01-07 Dave Love <fx@gnu.org> |
8370 | |
8371 * add-log.el (add-log-debugging): Deleted. | |
8372 (add-change-log-entry): Treat a backup FILE-NAME as its parent | |
8373 file. Remove debugging code. | |
8374 (change-log-get-method-definition, change-log-name): Add doc. | |
8375 (change-log-sortable-date-at): New function. | |
8376 (change-log-merge): New command. | |
8377 | |
8378 * time.el (display-time-string-forms): Make the Mail string active. | |
8379 (display-time-update): Provide help-echo for load average. | |
8380 | |
8381 * bindings.el (make-mode-line-mouse2-map): New function. | |
8382 (mode-line-modified): Use it and simplify. | |
8383 (mode-line-mule-info): Provide help-echo info. | |
8384 (minor-mode-alist): Activate the strings. | |
8385 (make-mode-line-mouse-sensitive): Simplify for | |
8386 mode-line-buffer-identification. | |
8387 | |
27233 | 8388 2000-01-07 Gerd Moellmann <gerd@gnu.org> |
8389 | |
8390 * play/pong.el: New file. | |
8391 | |
27241 | 8392 2000-01-06 Dave Love <fx@gnu.org> |
8393 | |
8394 * array.el: Assorted cleanups for compiler warnings, doc strings, | |
8395 `array-' prefix for symbols. | |
8396 | |
8397 2000-01-05 Dave Love <fx@gnu.org> | |
8398 | |
8399 * textmodes/outline.el (outline-mode-menu-bar-map): Add | |
8400 outline-headers-as-kill. | |
8401 (outline-mode): Define imenu-generic-expression. | |
8402 (outline-headers-as-kill): New command. | |
8403 | |
8404 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^' | |
8405 from paragraph-start. | |
8406 (paragraph-indent-minor-mode): New command. | |
8407 | |
8408 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a, | |
8409 M-C-e, M-C-h, C-j, C-xnd, TAB. | |
8410 (fortran-mode): Set beginning-of-defun, end-of-defun. | |
8411 (fortran-column-ruler): Simplify. | |
8412 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted. | |
8413 (fortran-with-subprogram-narrowing): Likewise. | |
8414 (fortran-indent-subprogram): Call mark-defun. | |
8415 (fortran-check-for-matching-do): Change narrowing. | |
8416 | |
8417 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table. | |
8418 (cl-lucid-hash-tag): Delete. | |
8419 (cl-hash-table-p): Correct test for native table. | |
8420 (cl-hash-table-count): Use hash-table-count. | |
8421 | |
8422 * browse-url.el (browse-url): Fix case of | |
8423 browse-url-browser-function being an alist. | |
8424 | |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
8425 2000-01-05 Carsten Dominik <cd@gnu.org> |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
8426 |
27233 | 8427 * textmodes/reftex-vars.el (reftex-parse-file-extension) |
8428 (reftex-index-phrase-file-extension): New options. | |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
8429 |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
8430 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer): |
27233 | 8431 Use new option `reftex-index-phrase-file-extension'. |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
8432 |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
8433 * textmodes/reftex.el (reftex-access-parse-file): Use new option |
27233 | 8434 `reftex-parse-file-extension'. |
27232
1c7665b7a026
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27205
diff
changeset
|
8435 |
27191 | 8436 2000-01-05 Dave Love <fx@gnu.org> |
8437 | |
27241 | 8438 * emacs-lisp/lisp.el (beginning-of-defun): New variable. |
27191 | 8439 (beginning-of-defun-raw): Use it. |
8440 (end-of-defun): New variable. | |
8441 (end-of-defun): Use it. | |
8442 (check-parens): New command. | |
8443 | |
27182 | 8444 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org> |
8445 | |
27233 | 8446 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region) |
8447 (hs-show-block): Don't use `mapcar' when not accumulating. | |
27182 | 8448 |
27184
2b11879c1a93
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27182
diff
changeset
|
8449 Fix buglet in local variables initialization. |
2b11879c1a93
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27182
diff
changeset
|
8450 |
27176 | 8451 2000-01-05 Andreas Schwab <schwab@suse.de> |
8452 | |
8453 * hscroll.el (hscroll): Doc fix. | |
8454 | |
27175
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8455 2000-01-05 Carsten Dominik <cd@gnu.org> |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8456 |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8457 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8458 idlw-toolbar. |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8459 |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8460 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8461 file idlw-rinfo.el. |
27182 | 8462 (idlwave-customize): load must read file idlw-shell.el. |
8463 (idlwave-create-customize-menu): load must read file idlw-shell.el. | |
27175
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
8464 |
27173
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8465 2000-01-05 Carsten Dominik <dominik@astro.uva.nl> |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8466 |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8467 * progmodes/idlw-shell.el: Also provide idlwave-shell |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8468 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8469 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8470 |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8471 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8472 both reftex-dcr and reftex-vcr. |
27182 | 8473 |
27173
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8474 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
8475 |
27164 | 8476 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
27162 | 8477 |
8478 * ps-print.el: PostScript code now is in separate files, doc fix. | |
8479 (ps-print-version): New version number (5.0.3). | |
8480 (ps-header-lines, ps-left-header, ps-right-header): No more buffer | |
8481 local. | |
8482 (ps-spool-config): Initialization fix. | |
27233 | 8483 (ps-print-prologue-1, ps-print-prologue-2) |
8484 (ps-print-duplex-feature): PostScript code moved to separated file. | |
27162 | 8485 (ps-background-image): Little code reformating. |
8486 (ps-begin-file, ps-begin-job): Fix code. | |
27191 | 8487 (ps-postscript-code-directory, ps-mark-code-directory): New vars. |
27162 | 8488 (ps-prologue-file): New fun. |
8489 | |
27159 | 8490 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
8491 | |
27233 | 8492 * ps-vars.el: Eliminated. |
27159 | 8493 |
8494 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is | |
8495 `;;;###autoload'. | |
8496 | |
8497 * ps-print.el: ps-vars eliminated, doc fix. | |
8498 (ps-print-version): New version number (5.0.2). | |
8499 (ps-spool-config): Initialization fix. | |
8500 (ps-print-customize): New fun. | |
8501 | |
27155 | 8502 2000-01-04 Gerd Moellmann <gerd@gnu.org> |
8503 | |
8504 * autorevert.el (auto-revert-mode): Return value of | |
8505 auto-revert-mode. | |
8506 | |
27152 | 8507 2000-01-04 Dave Love <fx@gnu.org> |
8508 | |
27198 | 8509 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle |
8510 menu items. | |
27152 | 8511 |
27124 | 8512 2000-01-03 Dave Love <fx@gnu.org> |
8513 | |
27191 | 8514 * elide-head.el (elide-head) [defgroup]: Add :version. |
27126 | 8515 |
27241 | 8516 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar. |
27124 | 8517 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use |
8518 `cl-hash-table-p', not `hash-table-p'. | |
8519 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code. | |
8520 | |
27119 | 8521 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
8522 | |
8523 * faces.el (face-read-integer, read-face-attribute) | |
8524 (color-defined-p, color-values): unspecified-{f,b}g are now | |
8525 strings. | |
8526 | |
27112 | 8527 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org> |
8528 | |
8529 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces | |
8530 at comment end, and re-insert them after filling. | |
8531 | |
27103
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
8532 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
8533 |
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
8534 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el |
27110
3687809feff2
Renamed idlwave-*.el into idlw-*.el.
Eli Zaretskii <eliz@gnu.org>
parents:
27103
diff
changeset
|
8535 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el, |
3687809feff2
Renamed idlwave-*.el into idlw-*.el.
Eli Zaretskii <eliz@gnu.org>
parents:
27103
diff
changeset
|
8536 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el. |
27103
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
8537 |
27102 | 8538 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
8539 | |
8540 * term/x-win.el (xw-defined-colors): Call color-supported-p, | |
8541 the new name of face-color-supported-p. | |
8542 | |
8543 * term/w32-win.el (xw-defined-colors): Likewise. | |
8544 | |
27097 | 8545 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
8546 | |
8547 * simple.el (completion-setup-function): Count completion-size | |
8548 from minibuffer-prompt-end, not from point-min. | |
8549 | |
27091 | 8550 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> |
8551 | |
8552 * faces.el (read-face-attribute, defined-colors, color-defined-p): | |
8553 Pass the frame to tty-color-* functions. | |
8554 (display-color-p, frame-set-background-mode): Pass the frame to | |
8555 tty-display-color-p. | |
8556 | |
8557 * term/tty-colors.el (tty-defined-color-alist): Renamed from | |
8558 tty-color-alist. | |
8559 (tty-color-alist, tty-modify-color-alist): New functions. | |
8560 (tty-color-define, tty-color-clear, tty-color-approximate) | |
8561 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept | |
8562 an optional parameter FRAME. | |
8563 | |
27074 | 8564 2000-01-01 Gerd Moellmann <gerd@gnu.org> |
8565 | |
27082 | 8566 * image.el (create-image, defimage): Don't assume image data is a |
8567 string. | |
8568 | |
27074 | 8569 * image.el (defimage): Handle specifications containing :data |
8570 instead of :file. | |
8571 (image-type-from-data): New function. | |
8572 (image-type-from-file-header): Use it. | |
8573 (create-image): Add parameter DATA-P. | |
27182 | 8574 |
30729 | 8575 See ChangeLog.8 for earlier changes. |
30993 | 8576 |
8577 ;; Local Variables: | |
31291 | 8578 ;; coding: iso-2022-7bit-unix |
30993 | 8579 ;; End: |