*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2000-09-29 Gerd Moellmann <gerd@gnu.org>
2
3 * startup.el (startup-echo-area-message): New function.
4 (display-startup-echo-area-message): Use it.
5 (fancy-splash-screens): Rewritten to use keymaps and a timer.
6 (fancy-splash-default-action): New function.
7 (fancy-splash-screens-1): New function.
8 (fancy-splash-head): Put a help-echo and a keymap under the image.
9
10 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
11
12 * diff-mode.el (diff-add-log-file-name): Remove.
13 (diff-mode): Use add-log-buffer-file-name-function.
14
15 * add-log.el (find-change-log): New arg BUFFER-FILE.
16 (add-log-file-name): Obey add-log-file-name-function.
17 (add-log-buffer-file-name-function): New var.
18 (add-change-log-entry): Use it.
19
20 2000-09-29 Miles Bader <miles@gnu.org>
21
22 * image-file.el (image-file-name-extensions): New variable.
23 (image-file-name-regexps): Renamed from `image-file-regexps'.
24 New default value is nil. Call `auto-image-file-mode'.
25 (image-file-name-regexp): New function.
26 (auto-image-file-mode): New minor mode.
27 (insert-image-file): Don't make conditional on the image-file
28 handler being enabled.
29 (image-file-handler): Make the call here conditional instead.
30 (set-image-file-handler-enabled, enable-image-file-handler)
31 (disable-image-file-handler): Functions removed.
32
33 * emacs-lisp/authors.el (authors-print): Rephrase many-files
34 string.
35
36 2000-09-29 Gerd Moellmann <gerd@gnu.org>
37
38 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
39 it's a function from CL.
40 (latex-imenu-create-index): Replace eval-when-compile with progn
41 because latex-section-alist is not bound while compiling.
42
43 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
44
45 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
46 (outline-mode): Use define-derived-mode.
47
48 * progmodes/perl-mode.el (perl-mode):
49 * progmodes/awk-mode.el (awk-mode):
50 * progmodes/asm-mode.el (asm-mode):
51 Don't gratuitously override the default for comment-column.
52
53 * emacs-lisp/lisp.el (lisp-complete-symbol):
54 Distinguish the let-binding case from the funcall case.
55 (forward-sexp-function): New variable.
56 (forward-sexp): Use it.
57
58 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
59 (easy-mmode-defmap): Remove the now useless autoload.
60
61 * time.el (display-time-mode): Use define-minor-mode.
62
63 * subr.el (add-minor-mode): Don't eval NAME.
64 Don't depend on the presence of TOGGLE-FUN for any special behavior.
65 Use if rather than cond.
66
67 * simple.el (read-expression-map): Define more properly.
68 (comment-indent-hook): Remove.
69 (string-to-syntax): Bug fix.
70
71 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
72 (cvs-ediff-diff): Fix typo.
73 (cvs-revert-if-needed): Don't bother preserving read-only.
74
75 * paren.el (show-paren-mode): Use define-minor-mode.
76
77 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
78 (toggle-auto-compression): Remove.
79 (jka-compr-build-file-regexp): Remove useless grouping.
80
81 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
82 Avoid user-reserved bindings.
83 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
84 (diff-header-face): Revert to grey85.
85
86 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
87
88 * complete.el (partial-completion-mode) <defcustom>: Remove.
89 (partial-completion-mode): Use define-minor-mode.
90 (PC-do-completion): Understand `completion-auto-help = delay'
91 to mean to popup the completion buffer only the second time.
92 (PC-include-file-all-completions, PC-include-file-all-completions)
93 (PC-include-file-all-completions): Don't quote lambda.
94
95 * comint.el (comint-mode-hook): Docstring fix.
96 (comint-mode): Use define-derived-mode.
97 (comint-mode-map): Remove obsolete comment.
98 (make-comint): Minor stylistic change.
99 (comint-insert-clicked-input): Be more careful to find the overlay.
100 Use this-command-keys rather than hardcoding mouse-2.
101
102 * font-lock.el: Replace confusing (,@ with ,
103 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
104 Don't use regexp-opt-depth. Spice up the regexp for args.
105 Don't distinguish between cmds that can take an opt arg or not.
106 Use `append' and `prepend' rather than `keep'.
107
108 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
109 (latex-outline-regexp): New var.
110 (latex-outline-level): New fun.
111 (latex-section-alist): New var.
112 (latex-imenu-create-index): Use it. Use `push' as well.
113 (tex-shell-map): Initialize it properly.
114 (tex-mode): Minor stylistic change.
115 (plain-tex-mode): Use define-derived-mode.
116 (latex-mode): Use define-derived-mode.
117 Construct the paragraph regexps in a more readable way.
118 Set the buffer-local outline-{level,regexp} vars.
119 (slitex-mode): Derive from latex-mode.
120 (tex-common-initialization): Don't kill-all-vars anymore.
121 Add setting for comment-add and font-lock-defaults.
122 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
123 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
124 (tex-start-tex): New arg DIR (and send a chdir command for it).
125 Also display the shell buffer and save it in tex-last-buffer-texed.
126 (tex-region): Use expand-file-name rather than concat.
127 Remove code made useless by changes in tex-start-tex.
128 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
129
130 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
131
132 2000-09-28 Dave Love <fx@gnu.org>
133
134 * eshell/eshell.el (eshell) <defgroup>: Add :version.
135
136 2000-09-28 Gerd Moellmann <gerd@gnu.org>
137
138 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
139 `append'.
140
141 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
142
143 * info.el (Info-extract-pointer): Undo last change.
144 Instead, fix the position of the `bound' arg to re-search-backward.
145
146 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
147
148 * info.el (Info-extract-pointer):
149 Widen more carefully, to avoid finding pointers in other nodes.
150 (Info-index): Use push.
151
152 2000-09-27 Gerd Moellmann <gerd@gnu.org>
153
154 * frame.el (set-frame-font): Remove call to obsolete function
155 frame-update-faces.
156 (set-foreground-color, set-background-color): Likewise for
157 frame-update-face-colors.
158
159 2000-09-27 Miles Bader <miles@gnu.org>
160
161 * image-file.el: New file.
162
163 2000-09-27 Gerd Moellmann <gerd@gnu.org>
164
165 * frame.el (frame-notice-user-settings): Don't call
166 frame-update-faces, which is a no-op now.
167
168 * ediff-wind.el (ediff-control-frame-parameters): Add zero
169 tool-bar-lines.
170
171 2000-09-27 Dave Love <fx@gnu.org>
172
173 * mouse.el: Fix last change.
174
175 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
176
177 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
178
179 2000-09-22 Kenichi Handa <handa@etl.go.jp>
180
181 * international/quail.el (quail-help): The output message is
182 improved.
183
184 2000-09-26 Dave Love <fx@gnu.org>
185
186 * mouse.el (popup-menu): If POSITION is nil, set it using
187 mouse-position.
188
189 2000-09-25 Sam Steingold <sds@gnu.org>
190
191 * net/browse-url.el (browse-url-file-url): Check for null maps.
192
193 2000-09-26 Gerd Moellmann <gerd@gnu.org>
194
195 * frame.el (frame-notice-user-settings): Don't add a
196 tool-bar-lines frame parameter to default-frame-alist in batch mode.
197
198 * frame.el (frame-notice-user-settings):
199 Make tool-bar-mode and default-frame-alist consistent.
200
201 * toolbar/tool-bar.el (tool-bar-help): New function.
202
203 2000-09-25 Gerd Moellmann <gerd@gnu.org>
204
205 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
206 current-load-list in top-level forms. Else this leaks a cons cell
207 every time a defun is called.
208
209 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
210
211 2000-09-25 Dave Love <fx@gnu.org>
212
213 * startup.el (fancy-splash-head): Check XPM is available.
214
215 * autoinsert.el (auto-insert): Doc fix.
216 (auto-insert-alist): Following GNU notices, don't say `copyright
217 _by_'. Use line-beginning-position.
218 (auto-insert): Check buffer-file-name is non-nil before use.
219
220 2000-09-25 Gerd Moellmann <gerd@gnu.org>
221
222 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
223 starting with `@def' or `@multitable', in addition to ones
224 specified by the user in auto-fill-inhibit-regexp.
225
226 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
227
228 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
229 rmail-dont-reply-to-names matches the empty string.
230
231 2000-09-25 Gerd Moellmann <gerd@gnu.org>
232
233 * startup.el (command-line-1, fancy-splash-text): Change the
234 text to sound more friendly.
235
236 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
237
238 * progmodes/hideshow.el: Update author email address.
239 Generally, sync w/ maintainer version 5.22.
240 (hs-hide-all-non-comment-function): New var.
241 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
242 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
243 (hs-show-region): Delete this command.
244 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
245
246 2000-09-22 Dave Love <fx@gnu.org>
247
248 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
249 (hl-line-highlight): Specify buffer when moving overlay.
250
251 * progmodes/fortran.el (fortran-mode): Locally set
252 normal-auto-fill-function.
253 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
254 (fortran-mode-map): Adjust auto-fill menu entry.
255
256 2000-09-22 Gerd Moellmann <gerd@gnu.org>
257
258 * vc-rcs.el (toplevel): Require `vc' when compiling.
259
260 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
261
262 2000-09-22 Andre Spiegel <spiegel@gnu.org>
263
264 * vc.el (vc-switch-backend): Signal an error if the file is not
265 registered under the new backend.
266
267 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
268 without explicit revision number.
269
270 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
271
272 * diff-mode.el (diff-file-header-face): Reset to its previous value.
273 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
274 (diff-xor): New function.
275 (diff-find-source-location): Use it. Fix a stupid name clash.
276 (diff-hunk-status-msg): New function.
277 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
278 (diff-test-hunk): Use diff-find-source-location.
279 (diff-goto-source): Favor the `reverse'.
280 (diff-hunk-text): Properly handle one-sided context diffs.
281 (diff-apply-hunk): When done, advance to the next hunk.
282
283 2000-09-21 Gerd Moellmann <gerd@gnu.org>
284
285 * startup.el (command-line): If frame was created with a non-zero
286 tool-bar-lines parameter, switch tool-bar-mode on.
287
288 * add-log.el (change-log-date-face, change-log-name-face)
289 (change-log-email-face, change-log-file-face)
290 (change-log-list-face, change-log-conditionals-face)
291 (change-log-function-face, change-log-acknowledgement-face):
292 New faces, inheriting from font-lock faces.
293 (change-log-font-lock-keywords): Use them.
294
295 2000-09-21 Dave Love <fx@gnu.org>
296
297 * progmodes/cperl-mode.el (top-level): Clean up
298 `eval-when-compile's and assorted defvars.
299 (cperl-invalid-face): Don't double-quote value. Change custom
300 type.
301 (cperl-mode): Set normal-auto-fill-function and don't zap
302 auto-fill-function.
303 (cperl-imenu--function-name-regexp-perl): Renamed from
304 imenu-example--function-name-regexp-perl.
305 (cperl-imenu--create-perl-index): Renamed from
306 imenu-example--create-perl-index.
307 (cperl-xsub-scan): Don't require cl.
308
309 * msb.el (msb-mode-map): Use substitute-key-definition.
310 (msb-mode): Use msb-mode-map.
311
312 2000-09-21 Andre Spiegel <spiegel@gnu.org>
313
314 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
315 New functions.
316 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
317 (vc-switch-backend): New function.
318 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
319 (vc-register): Fix prompt.
320 (vc-unregister, vc-default-unregister): New functions.
321 (vc-version-diff): Handle empty buffer in sentinel.
322
323 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
324 (vc-rcs-state-heuristic): Use it to guess the state of files with
325 non-strict locking.
326 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
327 been set with -b, but not created yet.
328 (vc-rcs-fetch-master-state): With non-strict locking, compare file
329 contents in order to find the state.
330 (vc-rcs-checkin): Allow creation of branches with no changes.
331 (vc-rcs-unregister, vc-rcs-receive-file)
332 (vc-rcs-set-non-strict-locking): New functions.
333
334 * vc-hooks.el (vc-name): Force correct computation of the value
335 in case it is missing.
336
337 2000-09-21 Gerd Moellmann <gerd@gnu.org>
338
339 * startup.el (fancy-splash-tail): Use a different foreground
340 color on a dark frame background.
341
342 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
343
344 * info.el: Use the correct capitalization when making Info-mode
345 and Info-edit-mode `special' modes.
346
347 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
348
349 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
350 (diff-mode): Add support for add-log.el.
351 (diff-hunk-text): Use char offsets rather than line offsets.
352 (diff-find-source-location): Replace LINE with line-offset (nil
353 if not found) and always set POS to a meaningful position.
354 Adapt to the new char-offsets.
355 (diff-apply-hunk): Drop support for the unused `select' POPUP.
356 Adapt to the new diff-find-source-location.
357 (diff-goto-source): Adapt to the new diff-find-source-location.
358
359 * add-log.el (add-log-file-name): New function (split out of
360 add-change-log-entry).
361 (add-change-log-entry): Use it.
362 Call add-log-file-name-function with the changelog file name if
363 the current buffer is not associated with any file.
364 Avoid find-file if the selected window is dedicated.
365
366 * diff-mode.el (diff-find-source-location):
367 Move code from diff-apply-hunk. Return buffer rather than file.
368 (diff-apply-hunk): Use the new result from diff-find-source-location.
369 (diff-goto-source): Use the new diff-find-source-location.
370
371 2000-09-20 Dave Love <fx@gnu.org>
372
373 * iswitchb.el: Some doc fixes.
374 (iswitchb-mode-map): Define completely initially. Inherit
375 minibuffer-local-map.
376 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
377 fundamental-mode.
378 (iswitchb-global-map): New variable.
379 (iswitchb-summaries-to-end): Amalgamate regexps.
380 (iswitchb-mode): New.
381 (iswitchb-mode-hook): New variable.
382 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
383 `extensions'.
384
385 2000-09-20 Gerd Moellmann <gerd@gnu.org>
386
387 * ehelp.el (electric-help): New defgroup.
388 (electric-help-shrink-window): New user-option.
389 (with-electric-help): Use it.
390
391 * window.el (shrink-window-if-larger-than-buffer): If face
392 `mode-line' has a :box, and we're on a graphical frame, add 1
393 to the needed window height.
394
395 * frame.el (frame-notice-user-settings): Add a last parameter nil
396 to a call to `append', because the last list passed to `append' is
397 not copied, and so subsequent calls to assq-delete-all will modify
398 default-frame-alist.
399
400 * startup.el (fancy-splash-image): Change :type.
401 (fancy-splash-head): Use an XBM image if appropriate.
402 (command-line-1): Show splash screens in more cases.
403
404 * startup.el (fancy-splash-text): Don't quote faces.
405
406 * dired.el (dired-font-lock-keywords): Undo last change.
407 (dired-readin): Bind indent-tabs-mode to nil.
408
409 * startup.el (fancy-splash-head): If frame's background mode
410 is `dark', change the black background of the image to gray.
411 (fancy-splash-screens): Display startup echo area message.
412 (display-startup-echo-area-message): New function.
413
414 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
415
416 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
417
418 * info.el (info-header-node): Tweak for color ttys.
419
420 * faces.el (face-valid-attribute-values): Make sure directories we
421 search for stipples both exist and are readable before trying to
422 search them.
423
424 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
425 in the dry-run case.
426
427 * jka-compr.el (with-auto-compression-mode): New macro.
428
429 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
430 (custom-group-tag-face, custom-variable-tag-face): Use relative
431 :height and inherit from `variable-pitch' face instead of
432 hardwiring :family.
433 * hi-lock.el (hi-black-hb): Likewise.
434
435 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
436 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
437 toolbar-add-item, if image doesn't have a mask add a `:mask
438 heuristic'.
439
440 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
441
442 * diff-mode.el: Docstring fixes.
443 (diff-header-face, diff-comment-face): New faces.
444 (diff-font-lock-keywords): Highlight a bit differently.
445 (diff-find-source-location): Don't return SPAN any more.
446 (diff-hunk-text): Don't bother erasing the temp buffer.
447 (diff-find-text): Drop argument LINE.
448 (diff-apply-hunk): Update calls to diff-find-text.
449 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
450
451 * calendar/calendar.el: Docstring fixes.
452 (calendar-make-alist): Don't quote lambda.
453 (calendar-star-date): Use make-local-variable.
454
455 2000-09-19 Dave Love <fx@gnu.org>
456
457 * toolbar/tool-bar.el: Renamed from toolbar.el.
458 Change `toolbar' to `tool-bar' generally in symbols.
459 Make some items invisible in `special' major modes.
460 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
461 Add arg PROPS.
462
463 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
464 Add :version here.
465 (fancy-splash-delay, fancy-splash-image): Remove :version here.
466
467 2000-09-19 Gerd Moellmann <gerd@gnu.org>
468
469 * progmodes/sh-script.el (sh-search-word): Remove call to
470 `debug'.
471
472 * files.el (find-file-suppress-same-file-warnings): New
473 user-option.
474 (find-file-noselect): Use it.
475
476 * startup.el (fancy-splash-delay, fancy-splash-image): Add
477 :version.
478 (fancy-splash-screen): Defgroup.
479
480 * add-log.el (change-log-font-lock-keywords): Match names
481 more exactly for the case that font-lock-constant-face is
482 underlined.
483
484 2000-09-19 Richard M. Stallman <rms@gnu.org>
485
486 * progmodes/sh-script.el (sh-search-word): Rewritten for
487 speed.
488
489 2000-09-19 Andre Spiegel <spiegel@gnu.org>
490
491 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
492
493 2000-09-19 Gerd Moellmann <gerd@gnu.org>
494
495 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
496 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
497 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
498 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
499 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
500 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
501 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
502 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
503 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
504 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
505 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
506 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
507
508 * startup.el (fancy-splash-text): New variable.
509 (fancy-splash-delay, fancy-splash-image): New user-options.
510 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
511 (fancy-splash-screens): New functions.
512 (command-line-1): If display has a `display' frame parameter, has
513 colors, and we have XPM support, show more fancy splash screens.
514
515 2000-09-19 Dave Love <fx@gnu.org>
516
517 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
518 with null `help'. Use modern backquote syntax.
519
520 2000-09-19 Gerd Moellmann <gerd@gnu.org>
521
522 * font-lock.el (font-lock-mode): Change message telling the user
523 that ``the buffer is too big''.
524
525 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
526 for instance for the case that tab-width is 2.
527
528 2000-09-18 Gerd Moellmann <gerd@gnu.org>
529
530 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
531 toolbar-add-item, if image doesn't have a mask add a `:mask
532 heuristic'.
533
534 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
535
536 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
537 and return a cons if it's non-nil.
538 (diff-apply-hunk): Try to jump to the line in the source text
539 corresponding to the position of point in the in the hunk.
540
541 * info.el (Info-title-3-face, Info-title-2-face)
542 (Info-title-1-face): Use face inheritance and relative sizes
543 instead of hard-wiring things.
544
545 * faces.el (secondary-selection): Make dark-background variant sane.
546
547 2000-09-16 Andrew Innes <andrewi@gnu.org>
548
549 * makefile.nt (compile-files): No need to make .elc files
550 read-only, since they aren't under VC now.
551
552 * makefile.w32-in (compile-files-CMD): No need to make .elc files
553 read-only, since they aren't under VC now.
554
555 2000-09-17 Dave Love <fx@gnu.org>
556
557 * tmm.el: Replace mapcar with mapc in several places.
558
559 * loadhist.el (unload-feature): Maybe call elp-restore-list and
560 ad-unadvise.
561
562 * international/latin1-disp.el: New file.
563
564 * calendar/cal-move.el (scroll-calendar-left)
565 (scroll-calendar-right): Make arg optional (for active mode line).
566
567 * calendar/calendar.el (calendar-mode-line-format): Make fields
568 mouse-sensitive.
569 (calendar-read-date, calendar-read-date, calendar-window-list):
570 Unquote lambda.
571 (calendar-month-name): Use aref, not sref.
572
573 * view.el (minor-mode-alist): Propertize the string.
574
575 * international/characters.el (standard-case-table): Add entries
576 for Greek.
577
578 2000-09-18 Miles Bader <miles@gnu.org>
579
580 * info.el (info-node, info-xref): Add dark-background variants.
581
582 * faces.el (header-line): Change defaults to be less confusing
583 when mixed with mode-lines.
584
585 * info.el (Info-fontify-node): Make a few cleanups.
586 Add extra `help-echo' and `local-map' props to node xrefs.
587 Use header-specific faces for node-names & xrefs.
588 (Info-use-header-line): New variable.
589 (info-header-xref, info-header-node): New faces.
590 (Info-setup-header-line): New function.
591 (Info-select-node): Call Info-setup-header-line when enabled.
592 (Info-extract-pointer): Work even if the header line is hidden.
593 (Info-header-line): New variable.
594
595 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
596
597 * vms-patch.el (print-region-function): Don't quote lambda.
598
599 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
600
601 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
602 (lm-get-header-re): Allow spaces between the header and the colon.
603 (lm-header): Allow $ in non-RCS headers.
604 (lm-header-multiline): Put the strings back into order.
605 Stop at an empty line. Don't require two space chars if the
606 line is clearly not another header line.
607
608 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
609 (popup-menu-popup): Remove.
610
611 2000-09-15 Gerd Moellmann <gerd@gnu.org>
612
613 * toolbar/toolbar.el (toolbar-add-item): Use the same image
614 specification if or if not tool-bar item contains an `:enabled'
615 property.
616
617 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
618 current buffer has no file name.
619
620 2000-09-15 Dave Love <fx@gnu.org>
621
622 * strokes.el: Sync with maintainer's current version with changes
623 for Emacs, but avoid runtime cl and levents.
624 (toplevel): Change autoloads and compilation requires.
625 (strokes-version, strokes-bug-address, strokes-lift): Values
626 changed.
627 (strokes-xpm-header, strokes-insinuated): New variable.
628 (strokes): Add :link.
629 (strokes-mode): Customized.
630 (strokes-while-inhibiting-garbage-collector): New macro.
631 (strokes-remassoc): Avoid remove-if.
632 (strokes-fix-button2-command): Don't use ad-do-it.
633 (strokes-insinuate): New function.
634 (strokes-button-press-event-p, strokes-button-release-event-p):
635 New functions, used instead of non-`strokes-' versions..
636 (strokes-mouse-event-p): Rewritten.
637 (strokes-event-closest-point): Avoid event-point.
638 (strokes-get-grid-position): Avoid cdadr, caadr
639 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
640 functions.
641 (strokes-help): Use with-output-to-temp-buffer.
642 (strokes-window-configuration-changed-p): New function.
643 (strokes-update-window-configuration): Use buffer-live-p,
644 strokes-window-configuration-changed-p.
645 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
646 (strokes-char-face): New face.
647 (strokes-char-table, strokes-base64-chars): New variable.
648 (strokes-xpm-for-stroke, strokes-list-strokes)
649 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
650 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
651 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
652 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
653 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
654 functions.
655
656 2000-09-15 Gerd Moellmann <gerd@gnu.org>
657
658 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
659
660 * image.el (create-image): Doc fix.
661
662 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
663 instead of `:heuristic-mask t'.
664
665 2000-09-14 Andrew Innes <andrewi@gnu.org>
666
667 * makefile.w32-in: Revert to Unix line endings.
668
669 2000-09-14 Andrew Innes <andrewi@gnu.org>
670
671 * makefile.w32-in: Add bootstrap support. Also copy lisp source
672 when installing.
673
674 * makefile.nt (DONTCOMPILE): Fix typo.
675
676 * shell.el (shell-write-history-on-exit): New function.
677 (shell-dumb-shell-regexp): New custom variable.
678 (shell-mode): Make shell-write-history-on-exit the process
679 sentinel if shell name matches shell-dumb-shell-regexp.
680
681 * w32-fns.el: Comment out before-init-hook function which resets
682 source-directory based; this breaks bootstrap.
683
684 2000-09-14 Dave Love <fx@gnu.org>
685
686 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
687 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
688 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
689 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
690 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
691 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
692 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
693 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
694 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
695
696 * toolbar/toolbar.el: New.
697
698 * subdirs.el: Add toolbar.
699
700 2000-09-14 Gerd Moellmann <gerd@gnu.org>
701
702 * indent.el (indent-for-tab-command): Doc fix.
703
704 2000-09-14 Alex Schroeder <alex@gnu.org>
705
706 * ansi-color.el (ansi-colors): Doc change.
707 (ansi-color-get-face): Simplified regexp.
708 (ansi-color-faces-vector): Added more faces, doc change.
709 (ansi-color-names-vector): Doc change.
710 (ansi-color-regexp): Simplified regexp.
711 (ansi-color-parameter-regexp): New regexp.
712 (ansi-color-filter-apply): Doc change.
713 (ansi-color-filter-region): Doc change.
714 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
715 deal with zero length parameters.
716 (ansi-color-apply-on-region): Doc change.
717 (ansi-color-map): Doc change.
718 (ansi-color-map-update): Removed debugging message.
719 (ansi-color-get-face-1): Added condition-case to trap
720 args-out-of-range errors.
721 (ansi-color-get-face): Doc change.
722 (ansi-color-make-face): Removed.
723 (ansi-color-for-shell-mode): New option.
724
725 2000-09-13 Kenichi Handa <handa@etl.go.jp>
726
727 * international/quail.el (quail-start-translation): Translate KEY
728 if necessary even if it doesn't have any mapping in the current
729 input method.
730 (quail-start-conversion): Likewise.
731 (quail-help): The output message is improved.
732
733 2000-09-13 Miles Bader <miles@gnu.org>
734
735 * comint.el (comint-output-filter): Revert to using
736 `insert-before-markers'. Add bletcherous hack to undo damage
737 caused by `insert-before-markers'. Put `front-sticky' property on
738 overlays created here so that the field code understands how the
739 overlay works. Use a let when making comint-last-prompt-overlay,
740 so that the code is easier to read.
741
742 2000-09-13 Dave Love <fx@gnu.org>
743
744 * wid-edit.el (widget-default-format-handler): DTRT when
745 doc-property is a function.
746
747 2000-09-12 Francesco Potorti` <pot@gnu.org>
748
749 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
750 filed name if it's not there.
751
752 2000-09-12 Dave Love <fx@gnu.org>
753
754 * simple.el (read-mail-command): Doc fix.
755 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
756
757 * vc.el (vc-dired-listing-switches): Fix :version.
758
759 * vc-hooks.el: Doc fixes.
760
761 * subr.el (add-minor-mode): Use toggle-fun arg.
762
763 * speedbar.el: Add :version to several defcustoms.
764
765 * imenu.el (imenu--truncate-items, imenu--cleanup)
766 (imenu--generic-function): Avoid mapcar.
767 (imenu--replace-spaces): Function removed.
768 (imenu--completion-buffer): Use subst-char-in-string.
769 (imenu-add-to-menubar): Use keymap inheritance.
770
771 2000-09-12 Miles Bader <miles@gnu.org>
772
773 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
774 (diff-mode-map): Bind `diff-test-hunk'.
775 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
776
777 2000-09-11 Gerd Moellmann <gerd@gnu.org>
778
779 * bytecomp.el (byte-compile-defvar): Undo last change
780 because it breaks '(make-variable-buffer-local (defvar ...)'
781 which is used at least in dired.
782
783 2000-09-12 Kenichi Handa <handa@etl.go.jp>
784
785 * international/quail.el (quail-define-package): Docstring
786 modified.
787
788 2000-09-12 Kenichi Handa <handa@etl.go.jp>
789
790 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
791 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
792 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
793 docstring of "chinese-py".
794
795 * international/quail.el (quail-translation-docstring): New
796 variable.
797 (quail-show-keyboard-layout): Docstring modified.
798 (quail-select-current): Likewise.
799 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
800 infinite recursive call.
801 (quail-help): Check quail-translation-docstring. Format of the
802 output changed.
803 (quail-help-insert-keymap-description): Adjusted for the above
804 change.
805
806 2000-09-11 Gerd Moellmann <gerd@gnu.org>
807
808 * bytecomp.el (byte-compile-defvar): Only cons onto
809 current-load-list in top-level forms. Else this leaks a cons cell
810 every time a defun is called.
811
812 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
813
814 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
815 Now understands non-unified diffs. Some functionality moved into
816 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
817 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
818 modify anything. Only reposition point in the patched file if the
819 patch succeeds. Only pop up another window if POPUP is true.
820 Emit a message describing what happened if successful, and at what
821 line-offset. Automatically detect reversed hunks and do something
822 appropriate.
823 (diff-hunk-text, diff-find-text): New functions.
824 (diff-filter-lines): Function removed.
825 (diff-test-hunk): New function.
826 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
827
828 2000-09-10 Dave Love <fx@gnu.org>
829
830 * textmodes/tildify.el: Minor doc/commentary fixes.
831 (tildify) <defgroup>: Add :version.
832
833 * faces.el (face-x-resources): Make custom type more specific.
834 (frame-background-mode): Use mapc.
835 (region) <defcustom>: Add :version.
836
837 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
838
839 * vc-sccs.el (vc-sccs-register):
840 * vc-rcs.el (vc-rcs-register):
841 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
842 * vc.el (vc-register): Clear file's properties.
843
844 2000-09-08 Gerd Moellmann <gerd@gnu.org>
845
846 * faces.el (face-spec-set): Only face-spec-reset-face when
847 ATTRS is non-nil.
848
849 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
850
851 * help.el (help-insert-xref-button): Fix a typo in doc string.
852
853 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
854
855 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
856 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
857 methods.
858
859 * menu-bar.el (read-mail-item-name): New function.
860 (menu-bar-tools-menu): Use it to compute and display the package
861 used to read email.
862 (menu-bar-tools-menu): Fix typo in GUD's help string.
863
864 2000-09-07 Dave Love <fx@gnu.org>
865
866 * diff-mode.el (diff-mouse-goto-source): New function.
867
868 * vc-sccs.el: Doc fixes.
869 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
870
871 * vc-rcs.el: Doc fixes.
872 (vc-rcs-register-switches, vc-rcs-checkin-switches)
873 (vc-rcs-checkout-switches, vc-rcs-header)
874 (vc-rcs-master-templates): Add or change :version.
875
876 * vc-cvs.el: Doc fixes.
877 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
878 (vc-cvs-stay-local): Add :version.
879
880 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
881
882 2000-09-07 Kenichi Handa <handa@etl.go.jp>
883
884 * international/quail.el (quail-help): Fix previous change.
885
886 2000-09-07 Gerd Moellmann <gerd@gnu.org>
887
888 * faces.el (color-values): Doc fix.
889
890 * faces.el (frame-set-background-mode): Use frame-parameter
891 instead of frame-parameters.
892
893 * frame.el (filtered-frame-list): Reduce consing.
894 (frames-on-display-list): Call frame-parameter instead of
895 frame-parameters.
896
897 2000-09-07 Kenichi Handa <handa@etl.go.jp>
898
899 * language/devan-util.el (devanagari-to-indian-region): In the
900 loop, change the following char, not preceding char.
901
902 2000-09-07 Gerd Moellmann <gerd@gnu.org>
903
904 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
905 instead of frame-parameters.
906
907 * faces.el (set-face-attribute): Simplify by calling
908 internal-set-lisp-face-attribute with FRAME being 0.
909
910 * vc.el: Remove `Id' version control keyword.
911
912 2000-09-07 Kenichi Handa <handa@etl.go.jp>
913
914 * help.el (help-make-xrefs): Adjusted for the change of
915 help-xref-mule-regexp.
916 (help-insert-xref-button): New function.
917
918 * international/mule-cmds.el (help-xref-mule-regexp-template):
919 Include the pattern for character set.
920 (leim): New group.
921
922 * international/quail.el: Don't require face.
923 (quail): New group.
924 (quail-other-command): Dummy command to make quail-help work better.
925 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
926 (quail-keyboard-layout-substitution): New variable.
927 (quail-update-keyboard-layout): New function.
928 (quail-keyboard-layout-type): New customizable variable.
929 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
930 (quail-keyboard-translate): Pay attention to
931 quail-keyboard-layout-substitution.
932 (quail-insert-kbd-layout): New function.
933 (quail-show-keyboard-layout): New function.
934 (quail-get-translation): If the definition is a vector of length
935 1, and the element is a string of length 1, return the character
936 in that string.
937 (quail-update-current-translations): Fix the case of
938 relative-index out of range.
939 (quail-build-decode-map, quail-insert-decode-map): New Functions.
940 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
941 Show key sequences for all available characters.
942 (quail-help-insert-keymap-description): Don't show such verbose
943 key bindings as quail-self-insert-command.
944
945 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
946 Format changed, and each element now have extra documentations.
947 (tit-process-header): Delete invalid characters from TIT-PROMPT.
948 Adjusted for the change of quail-cxterm-package-ext-info.
949
950 2000-09-06 Gerd Moellmann <gerd@gnu.org>
951
952 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
953 requiring it leads to a recursive loading of vc.el and vc-hooks.el
954 during bootstrap.
955
956 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
957
958 * vc.el: (toplevel): Don't require `dired' at run-time.
959 (vc-dired-resynch-file): Remove autoload cookie.
960
961 2000-09-05 Andre Spiegel <spiegel@gnu.org>
962
963 * vc.el: Made several backend functions optional.
964 (vc-default-responsible-p): New function.
965 (vc-merge): Use RET for first version to trigger merge-news, not
966 prefix arg.
967 (vc-annotate): Handle backends that do not support annotation.
968 (vc-default-merge-news): Removed. The existence of a merge-news
969 implementation is now checked on caller sites.
970
971 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
972 case.
973
974 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
975 special case that has been removed from the default in vc-hooks.el.
976
977 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
978
979 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
980
981 2000-09-05 Andre Spiegel <spiegel@gnu.org>
982
983 * vc-hooks.el: Require vc during compilation.
984 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
985 macro `with-vc-properties' in vc.el.
986 (vc-file-getprop): Doc fix.
987 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
988
989 * vc.el: Require dired-aux during compilation.
990 (vc-name-assoc-file): Moved to vc-sccs.el.
991 (with-vc-properties): New macro.
992 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
993 vc-finish-steal): Use it.
994 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
995 to the backend-specific function is now supposed to do the checkout,
996 too.
997 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
998
999 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
1000 set file properties; that gets done in the generic code now.
1001
1002 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
1003 Changed parameter list, added code from vc.el that does the
1004 checkout, possibly with a double-take.
1005
1006 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
1007 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
1008 the above under the new name.
1009 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
1010 parameter list, added checkout command.
1011 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
1012 properties; that gets done in the generic code now.
1013
1014 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
1015
1016 * vc.el: Docstring fixes (courtesy of checkdoc).
1017
1018 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
1019
1020 * vc.el (vc-checkout-writable-buffer-hook)
1021 (vc-checkout-writable-buffer): Remove.
1022 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
1023 (vc-log-mode): Make it into a clean derived major mode.
1024 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
1025 vc-log-mode if log-edit is not available.
1026 (vc-dired-mode-map): Don't set-keymap-parent yet.
1027 (vc-dired-mode): Do set-keymap-parent here.
1028 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
1029
1030 2000-09-05 Gerd Moellmann <gerd@gnu.org>
1031
1032 * faces.el (set-face-attribute, face-spec-reset-face)
1033 (face-spec-set): Avoid consing by removing calls to `apply'.
1034
1035 * frame.el (frame-parameter): Move to C code.
1036
1037 2000-09-05 Dave Love <fx@gnu.org>
1038
1039 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
1040 insert-before-markers-and-inherit. Now checked systematically!
1041
1042 2000-09-05 Alex Schroeder <alex@gnu.org>
1043
1044 * sql.el (sql-postgres): Use sql-postgres-options.
1045 (sql-postgres-options): New variable.
1046
1047 2000-09-05 Alex Schroeder <alex@gnu.org>
1048
1049 * sql.el (sql-mode-menu): Work around missing variable mark-active
1050 in XEmacs.
1051 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
1052 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
1053 compatibility.
1054
1055 2000-09-04 Gerd Moellmann <gerd@gnu.org>
1056
1057 * vc.el (vc-dired-resynch-file): Add autoload cookie.
1058
1059 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
1060
1061 * Makefile.in (DONTCOMPILE): Fix typo in file name.
1062
1063 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1064
1065 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
1066 don't support anything else under SCCS yet.
1067
1068 * vc-hooks.el: Minor doc fixes.
1069
1070 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1071
1072 * vc.el (vc-next-action-on-file): Do not visit the file if it's
1073 not necessary. If verbose in state `needs-patch', do the same as
1074 under `up-to-date'. When NOT verbose and `needs-patch', check out
1075 latest version instead of `merge-news'.
1076 (vc-next-action-dired): Don't mess with default-directory here; it
1077 breaks other parts of dired. It is the job of the
1078 backend-specific functions to adjust it temporarily if they need it.
1079 (vc-next-action): Remove a special CVS case.
1080 (vc-clear-headers): New optional arg FILE.
1081 (vc-checkin, vc-checkout): Set properties vc-state and
1082 vc-checkout-time properly.
1083 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
1084 (vc-print-log): Use new backend function `show-log-entry'.
1085 (vc-cancel-version): Do the checks in a different order. Added a
1086 FIXME concerning RCS-only code.
1087
1088 * vc-rcs.el (vc-rcs-show-log-entry): New function.
1089 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
1090
1091 * vc-cvs.el (vc-cvs-show-log-entry): New function.
1092
1093 * vc-hooks.el (vc-default-mode-line-string): Show state
1094 `needs-patch' as a `-' too.
1095
1096 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1097
1098 * vc.el (vc-responsible-backend): New optional arg REGISTER.
1099 (vc-default-could-register): New function.
1100 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
1101 (vc-resynch-buffer): Call vc-dired-resynch-file.
1102 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
1103 vc-resynch-buffer instead of vc-resynch-window.
1104 (vc-next-action-dired): Don't redisplay here, that gets done as a
1105 result of the individual file operations.
1106 (vc-retrieve-snapshot): Corrected prompt order.
1107
1108 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
1109
1110 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
1111 as well.
1112 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
1113 hostname regexps. Updated all callers.
1114 (vc-cvs-responsible-p): Handle directories as well.
1115 (vc-cvs-could-register): New function.
1116 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
1117 properties up-to-date.
1118
1119 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
1120 user whether to create one.
1121
1122 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1123
1124 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
1125 check out a non-existing file.
1126
1127 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
1128 workfile does not exist.
1129
1130 * vc.el (vc-version-diff): Use `require' to check for existence of
1131 diff-mode.
1132
1133 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1134
1135 * vc-cvs.el (vc-cvs-registered): Use new function
1136 vc-cvs-parse-entry to do the actual work.
1137
1138 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1139
1140 * vc-hooks.el (vc-find-backend-function): If function doesn't
1141 exist, return nil instead of error.
1142 (vc-call-backend): Doc fix.
1143
1144 * vc.el (vc-do-command): Doc fix.
1145 (vc-finish-logentry): When checking in from vc-dired, choose the
1146 right backend for logentry check.
1147 (vc-dired-mode-map): Inherit from dired-mode-map.
1148 (vc-dired-mode): Local value of dired-move-to-filename-regexp
1149 simplified.
1150 (vc-dired-state-info): Removed, updated caller.
1151 (vc-default-dired-state-info): Use parentheses instead of hyphens.
1152 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
1153 (vc-dired-listing-switches): New variable.
1154 (vc-directory): Use it, instead of dired-listing-switches.
1155
1156 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
1157 (vc-cvs-dir-state): New function.
1158 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
1159 (vc-cvs-parse-entry): New function, also to be used in
1160 vc-cvs-registered.
1161
1162 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1163
1164 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
1165 *or* single-window-frames.
1166
1167 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1168
1169 * vc.el (vc-update-changelog): Split into generic part and default
1170 implementation. Doc string adapted.
1171 (vc-default-update-changelog): New function. Call the `rcs2log'
1172 script in exec-directory, to fix a long-standing nuisance.
1173
1174 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
1175 simply signals an error.
1176
1177 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1178
1179 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
1180 control-flow more clear and to avoid running `cvs' twice.
1181
1182 * vc.el (vc-next-action-on-file): Doc fix.
1183 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
1184 (vc-print-log): Eval `file' before constructing the continuation.
1185
1186 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1187
1188 * vc.el (vc-next-action-on-file): Corrected several messages.
1189 (vc-merge): Add prefix arg `merge-news'; handle it.
1190
1191 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
1192 is not reached. It is.
1193 (vc-cvs-merge): Set state to 'edited after merge.
1194 (vc-cvs-merge-news): Set workfile version to nil if not known.
1195 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
1196
1197 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
1198 via stdout. (Merge from main line.)
1199
1200 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1201
1202 * vc.el (vc-finish-logentry): Thinko in the "same comment"
1203 detection.
1204
1205 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1206
1207 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
1208 against kill-all-local-variables.
1209 (vc-log-edit): Don't save vc-parent-buffer any more.
1210 (vc-last-comment-match): Initialize to an empty string.
1211 (vc-post-command-functions): New hook.
1212 (vc-do-command): Run it.
1213 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
1214 (vc-finish-logentry): Only add the comment to the ring if it's
1215 different from the last comment entered.
1216 (vc-new-comment-index): New function.
1217 (vc-previous-comment): Use it. Make the minibuffer message
1218 slightly less terse.
1219 (vc-comment-search-reverse): Make it work forward as well. Don't
1220 set vc-comment-ring-index if no match is found. Use
1221 vc-new-comment-index.
1222 (vc-comment-search-forward): Use vc-comment-search-reverse.
1223 (vc-dired-mode-map): Don't inherit from dired-mode-map since
1224 define-derived-mode will do it for us. Bind `v' to a keymap that
1225 inherits from vc-prefix-map so that we can bind `vt' without
1226 binding C-x v t.
1227 (vc-retrieve-snapshot): Parenthesis typo.
1228
1229 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
1230 to 1. Make sure to switch to *vc* before looking for an error
1231 message. Use vc-parse-buffer.
1232
1233 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1234
1235 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
1236 and NAME.
1237 (vc-retrieve-snapshot): Split into two parts.
1238 (vc-default-retrieve-snapshot): New function.
1239
1240 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
1241 (vc-cvs-retrieve-snapshot): New function (untested).
1242 (vc-cvs-stay-local): Default to t.
1243 (vc-cvs-remote-p): New function and property.
1244 (vc-cvs-state): Stay local only if the above is t.
1245 (vc-handle-cvs): Removed.
1246 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
1247 done via vc-handled-backends now.
1248 (vc-cvs-header): Escape Id.
1249
1250 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1251
1252 * vc.el (vc-do-command): Remove unused commands.
1253 (vc-version-diff): Make sure default-directory ends with a slash.
1254 Move the window commands into a vc-exec-after.
1255 (vc-print-log): Move more of the code into the `vc-exec-after'.
1256
1257 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1258
1259 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
1260 (vc-print-log): Search current revision from beginning of buffer.
1261 (vc-revert-buffer): Clear echo area after the diff is finished.
1262 (vc-prefix-map): Removed definition of "t" for terse display in vc
1263 dired.
1264 (vc-dired-mode-map): Inherit from dired-mode-map. Added
1265 definition of "vt" for terse display.
1266 (vc-dired-mode): Fix dired-move-to-filename-regexp.
1267
1268 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1269
1270 * vc.el (vc-exec-after): Avoid caddr.
1271
1272 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1273
1274 * vc.el (vc-exec-after): New function.
1275 (vc-do-command): Use it to add a termination message for async
1276 procs.
1277 (vc-checkout): Try to handle a missing-backend situation.
1278 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
1279 of a directory with a backend using async diffs.
1280 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
1281 present.
1282
1283 * vc-sccs.el (vc-sccs-state-heuristic): Use
1284 file-ownership-preserved-p.
1285
1286 * vc-rcs.el (vc-rcs-state-heuristic): Use
1287 file-ownership-preserved-p.
1288 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
1289
1290 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1291
1292 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
1293 vc-do-command.
1294
1295 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
1296 when there are no changes.
1297
1298 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1299
1300 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
1301
1302 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
1303
1304 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1305
1306 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
1307
1308 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
1309 the `fset' outside of the defvar so that it works even if
1310 vc-prefix-map was already defined.
1311 (vc-setup-buffer): New function, split out of vc-do-command.
1312 (vc-do-command): Allow BUFFER to be t to mean `just use the
1313 current buffer without any fuss'.
1314 (vc-version-diff): Change the `diff' backend operation to just put
1315 the diff in the current buffer without erasing it. Always use
1316 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
1317 shrink-window-if-larger-than-buffer.
1318 (vc-print-log): Change the `print-log' backend operation to just
1319 put the log in the current buffer without erasing it. Protect
1320 shrink-window-if-larger-than-buffer.
1321 (vc-update-change-log): Fix setd typo.
1322
1323 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
1324 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
1325
1326 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
1327 (vc-rcs-diff): Insert in the current buffer and remove unused arg
1328 CMP.
1329
1330 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
1331 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
1332 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
1333
1334 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1335
1336 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
1337 not possible, use vc-BACKEND-workfile-unchanged-p.
1338 (vc-default-workfile-unchanged-p): New function. Delegates to a
1339 full vc-BACKEND-diff.
1340
1341 * vc-hooks.el (vc-simple-command): Removed.
1342
1343 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
1344 instead of vc-simple-command.
1345 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
1346 avoid doing a diff when opening a file.
1347 (vc-rcs-state): Added check for unlocked-changes.
1348 (vc-rcs-header): Escape Id.
1349 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
1350 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
1351 version.
1352
1353 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
1354 (vc-sccs-diff): Remove optional arg CMP.
1355 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
1356 SCCS-specific function.
1357
1358 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
1359 vc-simple-command.
1360
1361 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1362
1363 * vc.el (vc-editable-p): Renamed from vc-writable-p.
1364 (with-vc-file, vc-merge): Use vc-editable-p.
1365 (vc-do-command): Remove unused var vc-file and fix the
1366 doubly-defined `status' var. Add a user message when starting an
1367 async command.
1368 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
1369 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
1370 Use with-current-buffer.
1371 (vc-buffer-sync): Use unless.
1372 (vc-next-action-on-file): If the file is 'edited by read-only,
1373 make it read-write instead of trying to commit.
1374 (vc-version-diff, vc-update-change-log): Use `setq
1375 default-directory' rather than `cd'.
1376 (vc-log-edit): Don't forget to set default-directory in the
1377 buffer.
1378
1379 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
1380 (vc-sccs-state-heuristic): Use file-writable-p instead of
1381 comparing userids.
1382 (vc-sccs-checkout): Use `unless'.
1383
1384 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
1385 of comparing userids.
1386 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
1387 Simplify the logic by eliminating unreachable code.
1388 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
1389 just do a recursive call if we need to retry.
1390 (vc-rcs-checkout): Handle the case where rcs is missing by making
1391 the buffer read-write if requested and re-signalling the error.
1392
1393 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
1394
1395 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1396
1397 * vc-hooks.el (vc-handled-backends): Docstring change.
1398 (vc-ignore-vc-files): Mark obsolete.
1399 (vc-registered): Check vc-ignore-vc-files.
1400 (vc-find-file-hook, vc-file-not-found-hook): Don't check
1401 vc-ignore-vc-files.
1402
1403 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
1404
1405 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1406
1407 * vc.el (vc-checkout): Don't do anything special for ange-ftp
1408 files since ange-ftp already has vc-registered return nil.
1409
1410 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
1411 (vc-sccs-workfile-version): Use with-temp-buffer and new
1412 vc-parse-buffer and don't bother setting the property.
1413 (vc-sccs-add-triple): Use with-current-buffer and
1414 find-file-noselect.
1415 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
1416
1417 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
1418 derives from the old vc-parse-buffer but uses the revision number
1419 rather than the date (much easier to compare robustly).
1420 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
1421 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
1422 locking-user more directly. Check strict locking and set
1423 checkout-model appropriately.
1424 (vc-rcs-parse-locks): Remove.
1425 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
1426 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
1427 (vc-rcs-system-release): Use with-current-buffer and
1428 vc-parse-buffer.
1429 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
1430
1431 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
1432 (vc-simple-command): Docstring fix.
1433 (vc-registered): Align the way the file-handler is called with the
1434 way the function itself works.
1435 (vc-file-owner): Remove.
1436
1437 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
1438 extraction of fields and call to file-attributes because of a
1439 temporary bug in rcp.el.
1440 (vc-cvs-fetch-status): Use with-current-buffer.
1441
1442 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1443
1444 * vc.el (vc-do-command): Use file-relative-name.
1445 (vc-responsible-backend): Use vc-backend if possible.
1446 (vc-create-snapshot): Improve the `interactive' spec. Add support
1447 for branches and dispatch to backend-specific `create-snapshot'.
1448 (vc-default-create-snapshot): New function, containing the bulk of
1449 the old vc-create-snapshot.
1450 (vc-retrieve-snapshot): Improve the interactive spec.
1451
1452 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
1453 (vc-backend-hook-functions): Remove.
1454 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
1455 (vc-backend): Reintroduce the test for `file = nil' now that I
1456 know why it was there (and added a comment to better remember).
1457
1458 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
1459 code from vc-sccs-hooks.el.
1460 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
1461 'vc anymore.
1462 (vc-sccs-responsible-p): Use expand-file-name instead of concat
1463 and file-directory-p instead of file-exists-p.
1464 (vc-sccs-check-headers): Simplify the regexp.
1465
1466 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
1467 from vc-rcs-hooks.el. Don't require 'vc anymore.
1468 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
1469 file-directory-p instead of file-exists-p.
1470
1471 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
1472 from vc-cvs-hooks.el.
1473 (proto vc-cvs-registered): Require 'vc-cvs instead of
1474 'vc-cvs-hooks. Don't require 'vc anymore.
1475 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
1476 file-directory-p instead of file-exists-p.
1477 (vc-cvs-create-snapshot): New function, replacing
1478 vc-cvs-assign-name.
1479 (vc-cvs-assign-name): Remove.
1480
1481 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1482
1483 * vc-cvs.el (vc-cvs-header): New var.
1484
1485 * vc-rcs.el (vc-rcs-exists): Remove.
1486 (vc-rcs-header): New var.
1487
1488 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
1489 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
1490 (vc-sccs-header): New var.
1491
1492 * vc.el (vc-do-command): Get rid of the `last' argument.
1493 (vc-header-alist): Remove, replaced by vc-X-header.
1494 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
1495 (vc-dired-hook): Use expand-file-name instead of concat.
1496 (vc-directory): Use file-name-as-directory.
1497 (vc-snapshot-precondition, vc-create-snapshot)
1498 (vc-retrieve-snapshot): Allow the command to operate on any
1499 directory.
1500
1501 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
1502 just removing the 'WORKFILE argument or by removing the 'MASTER
1503 argument and replacing `file' with (vc-name file).
1504
1505 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1506
1507 * vc.el: Update Copyright and add a crude list of backend funs.
1508 (vc-writable-p): New function.
1509 (with-vc-file): Use vc-writable-p.
1510 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
1511 (vc-register): Avoid vc-name.
1512 (vc-locking-user): Remove.
1513 (vc-steal-lock): Make the `owner' arg non-optional.
1514 (vc-merge): Use vc-writable-p instead of vc-locking-user and
1515 vc-checkout-model.
1516 (vc-default-dired-state-info): Use vc-state instead of
1517 vc-locking-user and return special strings for special states.
1518 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
1519 and get rid of one of the special CVS cases.
1520 (vc-cancel-version): prettify error message with \\[...].
1521 (vc-rename-master): New function.
1522 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
1523 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
1524 the CVS special case generic.
1525 (vc-default-record-rename): Remove.
1526 (vc-file-tree-walk-internal): Only call FUNC for files that are
1527 under control of some VC backend and replace `concat' with
1528 expand-file-name.
1529 (vc-file-tree-walk): Update docstring.
1530 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
1531 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
1532
1533 * vc-sccs.el (vc-sccs-rename-file): Renamed from
1534 vc-sccs-record-rename. Use `find-file-noselect' rather than
1535 `find-file' and call `vc-rename-master' to do the actual move.
1536 (vc-sccs-diff): Remove unused `backend' variable.
1537
1538 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
1539 to delay loading of vc-sccs until it is really used.
1540 (vc-sccs-master-templates): Preload.
1541 (vc-sccs-state): Update call to vc-sccs-parse-locks.
1542 (vc-sccs-project-dir): Remove (merged into
1543 vc-sccs-search-project-dir).
1544 (vc-sccs-search-project-dir): Rewrite using file name handling ops
1545 rather than `concat', make sure it is preloaded and don't bother
1546 to check that the file actually exists.
1547 (vc-sccs-parse-locks): Remove unused `file' argument, remove
1548 `locks' argument (use buffer's content instead) and eliminate n^2
1549 behavior.
1550
1551 * vc-rcs.el: Update Copyright.
1552 (vc-rcs-rename-file): New function.
1553 (vc-rcs-diff): Remove unused `backend' variable.
1554
1555 * vc-hooks.el: Update Copyright.
1556 (vc-backend): Don't accept a nil argument any more.
1557 (vc-up-to-date-p): Turn into a defsubst.
1558 (vc-possible-master): New function.
1559 (vc-check-master-templates): Use `vc-possible-master' and allow
1560 funs in vc-X-master-templates to return a non-existent file.
1561
1562 * vc-cvs.el: Update Copyright.
1563 (vc-cvs-diff): Remove unused `backend' variable.
1564 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
1565
1566 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
1567
1568 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1569
1570 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
1571 since it can be called from vc-rcs.el.
1572 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
1573
1574 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1575
1576 * vc.el (vc-version-diff): Expand file name read from the
1577 minibuffer. Handle the case when a previous version number can't
1578 be guessed. Give suitable messages when there were no differences
1579 found.
1580 (vc-clear-headers): Call backend-specific implementation, if one
1581 exists.
1582 (vc-cancel-version): Made error checks generic. When done, clear
1583 headers generically, too.
1584
1585 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
1586 from vc-clear-headers in vc.el.
1587
1588 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
1589 correctly.
1590 (vc-rcs-latest-on-branch-p): Made second argument VERSION
1591 optional. Handle the case when it's not there.
1592
1593 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1594
1595 * vc.el (vc-locking-user): Moved from vc-hooks.el.
1596
1597 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1598
1599 * vc-hooks.el (vc-loadup): Remove.
1600 (vc-find-backend-function): Use `require'. Also, handle the case
1601 where vc-BACKEND-hooks.el doesn't exist.
1602 (vc-call-backend): Cleanup.
1603
1604 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1605
1606 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
1607 vc-rcs-grab-templates)
1608 (vc-rcs-registered): Remove. The default function works as well.
1609 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
1610 vc-sccs-grab-templates)
1611 (vc-sccs-registered): Remove. The default function works as well.
1612
1613 * vc.el (vc-version-diff): Left out a vc- in call to
1614 vc-call-backend.
1615 (vc-default-dired-state-info, vc-default-record-rename)
1616 (vc-default-merge-news): Update for the new backend argument.
1617
1618 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
1619 using the default function.
1620 (vc-call-backend): If calling the default function, pass it the
1621 backend as first argument. Update the docstring accordingly.
1622 (vc-default-state-heuristic, vc-default-mode-line-string): Update
1623 for the new backend argument.
1624 (vc-make-backend-sym): Renamed from vc-make-backend-function.
1625 (vc-find-backend-function): Use the new name.
1626 (vc-default-registered): New function.
1627
1628 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1629
1630 * vc.el (vc-merge): Use vc-find-backend-function.
1631
1632 * vc-hooks.el (vc-backend-functions): Remove.
1633 (vc-loadup): Don't setup 'vc-functions.
1634 (vc-find-backend-function): New function.
1635 (vc-call-backend): Use above fun and populate 'vc-functions
1636 lazily.
1637 (vc-backend-defines): Remove.
1638
1639 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1640
1641 * vc.el (vc-register): Put a FIXME note for a newly found bug.
1642 Call vc-call-backend without the leading vc-.
1643 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
1644 (vc-check-headers): Call vc-call-backend without the leading vc-.
1645 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
1646 (vc-annotate-display): Replace confusing use of `cond' with `or'.
1647 Call vc-call-backend without the leading vc-.
1648
1649 * vc-cvs.el (tail): Provide vc-cvs.
1650 * vc-sccs.el (tail): Provide vc-sccs.
1651 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
1652
1653 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
1654 (vc-make-backend-function, vc-call): Pass names without leading
1655 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
1656 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
1657 (vc-call-backend): Always try to load vc-X-hooks.
1658 (vc-registered): Remove vc- in call to vc-call-backend.
1659
1660 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1661
1662 * vc.el (vc-process-filter): New function.
1663 (vc-do-command): Setup `vc-process-filter' for the async process.
1664 (vc-maybe-resolve-conflicts): New function to reduce
1665 code-duplication. Additionally, it puts the buffer in
1666 `smerge-mode' if applicable.
1667 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
1668 calling `merge-news'.
1669 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
1670 (vc-log-edit): New function. Replacement for `vc-log-mode' by
1671 interfacing to log-edit.el.
1672 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
1673 log-edit is available.
1674 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
1675
1676 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1677
1678 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
1679 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
1680 defvar and the initialization.
1681 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
1682
1683 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
1684 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
1685
1686 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
1687
1688 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1689
1690 * vc.el (vc-file-clear-masterprops): Removed.
1691 (vc-checkin, vc-revert-buffer): Removed calls to the above.
1692 (vc-version-diff): Use buffer-size without argument.
1693 (vc-register): Heed vc-initial-comment.
1694
1695 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
1696 default branch.
1697
1698 * vc-rcs.el (vc-rcs-register): Parse command output to find master
1699 file name and workfile version.
1700 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
1701
1702 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
1703 vc-file-clear-masterprops.
1704
1705 * vc-sccs.el (vc-sccs-checkout): Removed call to
1706 vc-file-clear-masterprops. If writable, set vc-state to 'edited
1707 rather than user login name.
1708
1709
1710 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1711
1712 * vc.el (vc-workfile-unchanged-p): Remove unused argument
1713 `want-differences-if-changed' and simplify.
1714 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
1715 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
1716 output (which is invalid for async vc-diff) to decide whether to
1717 do the revert silently or not.
1718
1719 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1720
1721 * vc-hooks.el (vc-loadup): Load files quietly.
1722 (vc-call-backend): Oops, brain fart.
1723
1724 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1725
1726 * vc-cvs.el (vc-cvs-state): Typo.
1727 (vc-cvs-merge-news): Return the status code rather than the error msg.
1728
1729 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1730
1731 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
1732 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
1733 vc-state or vc-up-to-date-p.
1734 (vc-merge): Use vc-backend-defines to check whether merging is
1735 possible. Set state to 'edited after successful merge.
1736
1737 * vc-hooks.el (vc-locking-user): If locked by the calling user,
1738 return that name. Redocumented.
1739
1740 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1741
1742 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
1743 new `vc-state' semantics.
1744 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
1745 'vc-locking-user to the current user.
1746 (vc-merge): Inline vc-backend-merge. Comment out code that I
1747 don't understand and hence can't adapt to the new `vc-state' and
1748 `vc-locking-user' semantics.
1749 (vc-backend-merge): Remove.
1750
1751 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
1752 rather than 'vc-locking-user.
1753
1754 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
1755
1756 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
1757 (vc-state): Don't use 'reserved any more. Just use the same
1758 convention as the one used for vc-<backend>-state where the
1759 locking user (as a string) is returned.
1760 (vc-locking-user): Update, based on the above convention. The
1761 'vc-locking-user property has disappeared.
1762 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
1763
1764 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
1765 with a heuristic one.
1766 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
1767 (vc-cvs-checkin): Do a trivial parse to set the state in case of
1768 error. That allows us to get to 'needs-merge even in the
1769 stay-local case. There's still no way to detect 'needs-patch in
1770 such a setup (or to force an update for that matter).
1771 (vc-cvs-logentry-check): Remove, the default works as well.
1772
1773 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1774
1775 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
1776
1777 * vc.el (vc-do-command): kill-all-local-variables, to reset any
1778 major-mode in which the buffer might have been put earlier. Use
1779 `remove' and `when'. Allow `okstatus' to be `async' and use
1780 `start-process' in this case.
1781 (vc-version-diff): Handle the case where the diff looks empty
1782 because of the use of an async process.
1783
1784 2000-09-04 Andre Spiegel <spiegel@gnu.org>
1785
1786 * vc.el (vc-next-action-on-file): Removed optional parameter
1787 `simple'. Recompute state unconditionally.
1788 (vc-default-toggle-read-only): Removed.
1789
1790 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
1791 (vc-toggle-read-only): Undid prev change.
1792
1793 * vc-cvs.el (vc-cvs-stay-local): Renamed from
1794 vc-cvs-simple-toggle. Redocumented.
1795 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
1796 (vc-cvs-toggle-read-only): Removed.
1797
1798 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1799
1800 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
1801 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
1802 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
1803 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
1804 still is. So maybe it should be removed.
1805 (vc-head-version, vc-find-binary): Remove.
1806 (vc-recompute-state): Move from vc-hooks.el.
1807 (vc-next-action-on-file): Add a `simple' argument to allow
1808 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
1809 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
1810 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
1811 (vc-dired-mode-map): Properly defvar it.
1812 (vc-print-log): Call log-view-mode if available.
1813 (small-temporary-file-directory): defvar instead of use boundp.
1814 (vc-merge-news): Moved to vc-cvs.el.
1815 (vc-default-merge-news): New function.
1816
1817 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
1818 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
1819 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
1820 unknown `vc-latest-version' function. It should probably refer to
1821 vc-workfile-version or somesuch, but it's very unclear to me and I
1822 don't have SCCS to test things.
1823
1824 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
1825 (vc-sccs-state-heuristic): Fix typo.
1826 (vc-sccs-workfile-unchanged-p): Add missing argument.
1827
1828 * vc-rcs.el: Require vc and vc-rcs-hooks.
1829 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
1830 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
1831 (vc-release-greater-or-equal-p): Move from vc.
1832 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
1833 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
1834 (vc-rcs-checkout): Add a missing `new-version' argument in the
1835 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
1836
1837 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
1838 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
1839 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
1840 than the apparently unbound `workfile-version'.
1841
1842 * vc-hooks.el (vc-master-templates): Def the obsolete var.
1843 (vc-file-prop-obarray): Use `make-vector'.
1844 (vc-backend-functions): Add new hookable functions
1845 vc-toggle-read-only, vc-record-rename and vc-merge-news.
1846 (vc-loadup): If neither backend nor default functions exist, use
1847 the backend function rather than nil.
1848 (vc-call-backend): If the function if not bound yet, try to load
1849 the non-hook file to see if it provides it.
1850 (vc-call): New macro plus use it wherever possible.
1851 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
1852 nor `vc-find-binary' since it's only called from
1853 vc-mistrust-permission which is only used once the backend is known.
1854 (vc-checkout-model): Fix parenthesis.
1855 (vc-recompute-state, vc-prefix-map): Move to vc.el.
1856
1857 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
1858 (vc-cvs-release, vc-cvs-system-release): Remove.
1859 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
1860 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
1861 status symbols.
1862 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
1863 (vc-cvs-toggle-read-only): First cut at a function to allow a
1864 cvs-status-free vc-toggle-read-only.
1865 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
1866 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
1867 vc-cvs-status. Also set vc-state rather than vc-locking-user.
1868 (vc-cvs-checkout): Modify access rights directly if the user
1869 requested not to use `cvs edit'. And refresh the mode line.
1870
1871 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
1872 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
1873
1874 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
1875
1876 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
1877 workfile' that got lost when the code was extracted from vc.el.
1878 And merged the tail with the rest of the code (not possible in the
1879 old vc.el where the tail was shared among all backends). And
1880 explicitly set the state to 'edited if `writable' is set.
1881
1882 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
1883 (vc-cvs-state): Be careful to return the value from
1884 vc-cvs-parse-state.
1885 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
1886 property but return it instead. Also be careful to handle a nil
1887 or "" `rev' when workfile is non-nil (it was handled properly when
1888 workfile was nil).
1889
1890 * vc.el: Removed those pesky unnecessary `(function' quotes.
1891 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
1892 directly in the defvar.
1893 (vc-do-command): Bind inhibit-read-only so as to properly handle
1894 the case where the destination buffer has been made read-only.
1895 (vc-diff): Delegate to vc-version-diff in all cases.
1896 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
1897 (vc-annotate-mode-variables): Removed (code moved partly to
1898 defvars and partly to vc-annotate-add-menu).
1899 (vc-annotate-mode): Turned into a derived-mode.
1900 (vc-annotate-add-menu): Moved in code in
1901 vc-annotate-mode-variables.
1902 (vc-update-change-log): Use make-temp-file if available.
1903
1904 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
1905
1906 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
1907 `vc-checkout-model' updated to `vc-cvs-update-model'.
1908
1909 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
1910
1911 * vc.el (vc-next-action-on-file): Added handling of state
1912 `unlocked-changes'.
1913 (vc-checkout-carefully): Is now practically obsolete, unless the
1914 above is too slow to be enabled unconditionally.
1915 (vc-update-change-log): Fixed typo.
1916
1917 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
1918
1919 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
1920 Now handles state `unlocked-changes'.
1921 (vc-sccs-workfile-unchanged-p): New function, to support the above.
1922
1923 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
1924
1925 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
1926 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
1927 `unlocked-changes'.
1928 (vc-rcs-workfile-unchanged-p): Renamed from
1929 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
1930 function yet, but supposed to become one soon.
1931
1932 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
1933 `vc-steal-lock'.
1934 (vc-call-backend): Changed error message.
1935 (vc-state): Added description of state `unlocked-changes'.
1936
1937 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
1938
1939 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
1940 always return t in CVS-controlled directories.
1941
1942 * vc.el (vc-responsible-backend): New function.
1943 (vc-register): Largely rewritten.
1944 (vc-admin): Removed (implementation moved into vc-register).
1945 (vc-checkin): Redocumented.
1946 (vc-finish-logentry): If no backend defined yet (because we are in
1947 the process of registering), use the responsible backend.
1948
1949 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
1950 Updated function lists.
1951 (vc-call-backend): Fixed typo.
1952
1953 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
1954 New functions.
1955 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
1956 Removed query option. Redocumented.
1957
1958 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
1959
1960 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
1961
1962 * vc.el: Updated callers of `vc-checkout-required' to use
1963 `vc-checkout-model'.
1964
1965 2000-09-04 Martin Lorentzson <martinl@gnu.org>
1966
1967 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
1968 stuff updated to reference this function instead of the old
1969 `vc-backend-release-p'.
1970
1971 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
1972
1973 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
1974 vc-checkout-model. Return appropriate values. Updated callers.
1975
1976 2000-09-04 Martin Lorentzson <martinl@gnu.org>
1977
1978 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
1979 (vc-backend-revert): Function moved into `vc-revert';
1980 `vc-next-action' must be updated to accomodate this change.
1981 (vc-backend-steal): Function moved into `vc-finish-steal'.
1982 (vc-backend-logentry-check): Function moved into
1983 `vc-finish-logentry'.
1984 (vc-backend-printlog): Function moved into `vc-print-log'.
1985 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
1986 (vc-backend-assign-name): Function moved into
1987 `vc-create-snapshot'.
1988
1989 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
1990
1991 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
1992 Rename to vc-checkout-model. Return appropriate values.
1993 Update callers.
1994
1995 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
1996 to vc-checkout-model.
1997 (vc-checkout-required): Rename to vc-checkout-model.
1998 Re-implement and re-comment.
1999 (vc-after-save): Use vc-checkout-model.
2000
2001 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2002
2003 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
2004 Update to use the vc-BACKEND-diff functions instead.
2005 `vc-diff' is now working.
2006
2007 * vc-rcs.el (vc-rcs-logentry-check): New function.
2008
2009 * vc-cvs.el (vc-cvs-logentry-check): New function.
2010
2011 * vc-sccs.el (vc-sccs-diff): Function changed name from
2012 `vc-backend-diff'. This makes `vc-diff' work.
2013
2014 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
2015 of functions possibly implemented in a vc-BACKEND library.
2016 (vc-checkout-required): Fix bug that caused an error to be
2017 signaled during `vc-after-save'.
2018
2019 * vc.el: Fix typo.
2020 This checkin is made with our new VC code base for the very first time.
2021 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
2022
2023 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
2024 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
2025
2026 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
2027 updated to `vc-uses-locking'.
2028 (vc-checkout-required): Call to backend function.
2029 `vc-checkout-required' updated to `vc-uses-locking' instead.
2030
2031 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
2032 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
2033
2034 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
2035 to match the split into various backends.
2036 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
2037 (vc-retrieve-snapshot): Bug fix.
2038
2039 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2040
2041 * vc-sccs.el (vc-sccs-release): Doc fix.
2042
2043 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2044
2045 * vc.el (vc-next-action-on-file): Bug found and fixed.
2046 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
2047 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
2048
2049 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
2050 (vc-rcs-checkout): Name space cleaned up. No more revision number
2051 crunching function names that are not prefixed with vc-rcs.
2052 (vc-rcs-checkout-model): Function added. References to
2053 `vc-checkout-model' replaced.
2054
2055 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2056
2057 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
2058 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
2059 still need to be split, and implemented for RCS).
2060
2061 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2062
2063 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
2064
2065 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
2066 required by the vc.el file.
2067
2068 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
2069 required by the vc.el file.
2070 (vc-rcs-exists): Function added.
2071
2072 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
2073 required by the vc.el file.
2074
2075 * vc.el (vc-admin): Updated to handle selection of appropriate
2076 backend. Current implementation is crufty and need re-thinking.
2077
2078 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
2079
2080 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2081
2082 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
2083 beginning of annotate buffers correctly.
2084
2085 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
2086 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
2087 functionality updated quite a lot to support multiple backends.
2088 Variables `vc-annotate-mode', `vc-annotate-buffers',
2089 `vc-annotate-backend' added.
2090
2091 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
2092 `vc-annotate-difference' added to supported backend functions.
2093
2094 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2095
2096 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
2097 Use with-temp-file instead of /bin/sh. Merged from mainline
2098
2099 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2100
2101 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
2102
2103 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
2104
2105 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
2106
2107 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2108
2109 * vc-hooks.el: vc-state-heuristic added to
2110 vc-backend-hook-functions.
2111
2112 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
2113
2114 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
2115
2116 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
2117 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
2118 state to `reserved'.
2119
2120 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
2121 `vc-checkout-required'. Rename the `locked' state to `reserved'.
2122
2123 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2124
2125 * vc-rcs-hooks.el: Implement new state model. Hardly anything
2126 untouched.
2127
2128 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
2129
2130 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
2131 if defined. (Merged from main line, slightly adapted.)
2132
2133 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
2134 millenium problem (merged from mainline).
2135
2136 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2137
2138 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
2139 part and moved the non-BACKEND stuff to vc.el.
2140
2141 * vc.el: Split the annotate feature into a BACKEND specific part
2142 and moved it from the vc-cvs.el file to this one.
2143
2144 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2145
2146 * vc-hooks.el: Implement new state model.
2147 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
2148 (vc-locking-user): Simplify. Now only needed if the file is
2149 locked by somebody else.
2150 (vc-lock-from-permissions): Remove. Functionality is in
2151 vc-sccs-hooks.el and vc-rcs-hooks.el now.
2152 (vc-mode-line-string): New name for former vc-status. Adapted.
2153 (vc-mode-line): Adapt to use the above. Remove optional parameter.
2154
2155 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
2156 Various simplifications and adaptations all over the place.
2157
2158 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
2159 Simplify and adapt the rest.
2160
2161 * vc.el (vc-resynch-window): Add TODO comment: check for
2162 interaction with view mode according to recent RCS change.
2163 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
2164
2165 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2166
2167 * vc.el: Convert the remaining function comments to docstrings.
2168
2169 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2170
2171 * vc.el (vc-backend-release, vc-release-greater-or-equal)
2172 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
2173 (vc-minor-part, vc-previous-version): Functions that operate and
2174 compare revision numbers got proper documentation. Comments added
2175 about their possible removal.
2176
2177 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2178
2179 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
2180 the vc-backend.el files.
2181
2182 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
2183
2184 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
2185 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
2186 (vc-rcs-previous-version): Functions added.
2187
2188 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
2189
2190 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
2191
2192 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2193
2194 * vc-hooks.el (vc-master-templates): Is really obsolete.
2195 Comment out the definition for now. What is the right procedure
2196 to get rid of it?
2197 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
2198 rewritten.
2199 (vc-default-registered): Remove.
2200 (vc-check-master-templates): New function; does mostly what the
2201 above did before.
2202 (vc-locking-user): Don't rely on the backend to set the property.
2203
2204 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
2205 Rewrite documentation.
2206 (vc-rcs-templates-grabbed): New variable.
2207 (vc-rcs-grab-templates): New function.
2208 (vc-rcs-registered): Rewrite to use above mechanism.
2209
2210 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
2211 Rewrite documentation.
2212 (vc-sccs-templates-grabbed): New variable.
2213 (vc-sccs-grab-templates): New function.
2214 (vc-sccs-registered): Rewrite to use above mechanism.
2215 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
2216 Don't throw the result, simply return it.
2217
2218 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
2219 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
2220 (vc-cvs-registered): Does the check itself now. Simplify.
2221
2222 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
2223 from main line.
2224
2225 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2226
2227 * vc-cvs.el (vc-cvs-diff): New function.
2228
2229 * vc-sccs.el (vc-sccs-diff): New function.
2230
2231 * vc-rcs.el (vc-rcs-diff): New function.
2232 (vc-rcs-checkout): Bug (typo) found and fixed.
2233 (vc-rcs-register-switches): New variable.
2234
2235 * vc.el (vc-backend-diff): Function removed and placed in the
2236 backend files.
2237
2238 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2239
2240 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
2241
2242 * vc.el (vc-backend-checkout): Function removed and replaced in
2243 the vc-backend.el files.
2244
2245 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
2246
2247 * vc.el (vc-backend-admin): Removed and replaced in the
2248 vc-backend.el files.
2249
2250 * vc.el (Martin): Removed all the annotate functionality since it
2251 is CVS backend specific.
2252
2253 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2254
2255 * spec.txt: Added specification of vc-state.
2256
2257 * vc-sccs-hooks.el (vc-sccs-master-properties):
2258 Remove handling of vc-latest-version and
2259 vc-your-latest-version. What used to be vc-latest-version, is now
2260 returned as vc-workfile-version.
2261 (vc-sccs-workfile-version): Adapt.
2262
2263 2000-09-04 Dave Love <fx@gnu.org>
2264
2265 * vc.el: [Merged from mainline.]
2266 (vc-dired-mode): Make the dired-move-to-filename-regexp
2267 regexp match the date, to avoid treating date as file size.
2268 Add YYYY S option to WESTERN/
2269
2270 2000-09-04 Dave Love <fx@gnu.org>
2271
2272 * vc.el: Require `compile' when compiling.
2273 (vc-logentry-check-hook): New option.
2274 (vc-steal-lock): Use compose-mail.
2275 (vc-dired-mode-map): Defvar when compiling.
2276 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
2277 vc-sccs.el and renamed. Callers changed.
2278 (vc-backend-checkout, vc-backend-logentry-check)
2279 (vc-backend-merge-news): Doc fix.
2280 (vc-default-logentry-check): New function.
2281 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
2282 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
2283 (vc-backend-merge): Doc fix. Use backend functions.
2284 (vc-check-headers): Use backend functions.
2285
2286 * vc-cvs.el: Require vc when compiling.
2287 (vc-cvs-register-switches): Doc fix.
2288 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
2289 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
2290 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
2291 New functions (code from vc.el).
2292 (vc-annotate-display-default): Fix interactive spec.
2293 (vc-annotate-time-span): Doc fix.
2294
2295 * vc-rcs.el: Require vc when compiling.
2296 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
2297 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
2298 (vc-rcs-checkin): New functions (code from vc.el).
2299 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
2300 Doc fix.
2301 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
2302
2303 * vc-sccs.el: Require vc when compiling.
2304 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
2305 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
2306 (vc-sccs-revert)
2307 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
2308 from vc.el).
2309 (vc-sccs-add-triple, vc-sccs-record-rename)
2310 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
2311 (vc-sccs-admin): Doc fix.
2312
2313 2000-09-04 Martin Lorentzson <martinl@gnu.org>
2314
2315 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
2316 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
2317 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
2318 from vc.el.
2319
2320 * vc-sccs.el (vc-admin-sccs): Added from vc.el
2321
2322 * vc-cvs.el: Moved the annotate functionality from vc.el.
2323 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
2324
2325 2000-09-04 Dave Love <fx@gnu.org>
2326
2327 * vc.el (vc-backend-release): Call vc-system-release.
2328
2329 * vc-sccs.el (vc-sccs-system-release):
2330 Renamed from vc-sccs-backend-release.
2331
2332 * vc-rcs.el (vc-rcs-system-release):
2333 Renamed from vc-rcs-backend-release.
2334
2335 * vc-cvs.el (vc-cvs-system-release):
2336 Renamed from vc-cvs-backend-release.
2337
2338 2000-09-04 Dave Love <fx@gnu.org>
2339
2340 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
2341 backend files.
2342 (vc-backend-release): Dispatch to backend functions.
2343 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
2344 probably needs attention.]
2345
2346 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
2347 (vc-sccs-backend-release): New function.
2348
2349 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
2350 (vc-cvs-backend-release): New function.
2351
2352 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
2353 Doc fix.
2354 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
2355 (vc-default-dired-state-info): New function.
2356 (vc-dired-state-info): Dispatch to backends.
2357 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
2358
2359 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
2360 from vc.el and renamed.
2361
2362 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2363
2364 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
2365 (vc-version-other-window, vc-backend-assign-name): Removed
2366 references to vc-latest-version; sometimes changed into
2367 vc-workfile-version.
2368
2369 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
2370 vc-rcs-master-workfile-version.
2371 (vc-rcs-workfile-version): Use the above. Don't call
2372 vc-latest-version (that was unreachable code, anyway).
2373 (vc-rcs-fetch-master-properties): Doc fix.
2374
2375 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
2376 (vc-backend-hook-functions): Removed them from this list, too.
2377 (vc-fetch-properties): Removed.
2378 (vc-workfile-version): Doc fix.
2379
2380 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
2381 (vc-rcs-workfile-version, vc-rcs-locking-user)
2382 (vc-rcs-uses-locking): Use it.
2383
2384 * vc-hooks.el (vc-consult-rcs-headers):
2385 Moved into vc-rcs-hooks.el, under the name
2386 vc-rcs-consult-headers.
2387
2388 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
2389 headers.
2390 (vc-cvs-find-master): Use this name only; correct different
2391 versions of the name.
2392
2393 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
2394 New functions.
2395 (vc-sccs-locking-user): Use the latter.
2396
2397 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
2398 New functions.
2399
2400 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
2401 Moved into both
2402 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
2403 functions are implementation details of those two backends.
2404
2405 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2406
2407 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
2408 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
2409
2410 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
2411 (vc-sccs-parse-locks): SCCS-specific code moved here from
2412 vc-hooks.
2413
2414 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
2415 code moved here from vc-hooks.
2416
2417 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
2418 into back-end specific parts and removed. Callers not updated
2419 yet; because I guess these callers will disappear into back-end
2420 specific files anyway.
2421
2422 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2423
2424 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
2425 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
2426 `vc-uses-locking'.
2427
2428 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
2429 Store yes/no in the property, and return t/nil. Updated all
2430 callers.
2431
2432 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
2433 vc-sccs-uses-locking. Don't set property.
2434 (vc-sccs-locking-user): Don't set property.
2435
2436 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
2437 vc-cvs-uses-locking. Don't set property here; leave that to
2438 vc-hooks.
2439 (vc-cvs-locking-user): Reflect above change. Streamlined.
2440
2441 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
2442 vc-rcs-uses-locking.
2443 (vc-rcs-locking-user): Reflect above change.
2444
2445 2000-09-04 Dave Love <fx@gnu.org>
2446
2447 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
2448
2449 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
2450
2451 * vc-hooks.el (vc-checkout-model): Punt to backends.
2452
2453 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
2454
2455 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
2456
2457 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
2458 New functions.
2459
2460 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
2461 New functions.
2462
2463 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
2464 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
2465
2466 * vc-hooks.el (vc-default-locking-user): New function.
2467 (vc-locking-user, vc-workfile-version): Punt to backends.
2468
2469 2000-09-04 Dave Love <fx@gnu.org>
2470
2471 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
2472 (vc-master-workfile-version): Moved from vc-hooks.
2473
2474 * vc-rcs-hooks.el: Fix duplicate code in last change.
2475
2476 * vc-rcs-hooks.el: Require vc-hooks when compiling.
2477 (vc-rcs-master-templates): Improve :type.
2478 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
2479 vc-master-workfile-version): Moved from vc-hooks.
2480
2481 * vc-sccs-hooks.el: Require vc-hooks when compiling.
2482 (vc-sccs-master-templates): Improve :type.
2483 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
2484
2485 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
2486
2487 * vc-cvs-hooks.el: Require vc-hooks when compiling.
2488 (vc-cvs-master-templates): Improve :type. Use
2489 vc-cvs-find-cvs-master.
2490 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
2491 from vc-hooks.
2492 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
2493
2494 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
2495 Moved to vc-cvs-hooks.
2496
2497 * vc-hooks.el: Add doc strings in various places. Simplify the
2498 minor mode setup.
2499 (vc-handled-backends): New user variable.
2500 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
2501 simplification.
2502
2503 2000-09-04 Dave Love <fx@gnu.org>
2504
2505 * vc.el: Some doc fixes for autoloaded and interactive functions.
2506 Fix compilation warnings from ediff stuff.
2507 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
2508
2509 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
2510
2511 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
2512
2513 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
2514
2515 2000-09-04 Dave Love <fx@gnu.org>
2516
2517 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
2518 New variable.
2519 (vc-make-backend-function, vc-loadup, vc-call-backend)
2520 (vc-backend-defines): New functions.
2521
2522 * vc-hooks.el: Various doc fixes.
2523 (vc-default-back-end, vc-follow-symlinks): Custom fix.
2524 (vc-match-substring): Function removed. Callers changed to use
2525 match-string.
2526 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
2527 Simplify.
2528
2529 2000-09-04 Dave Love <fx@gnu.org>
2530
2531 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
2532 type.
2533 (vc-sccs-project-dir, vc-search-sccs-project-dir)
2534 (vc-sccs-registered): Doc fix.
2535
2536 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
2537 (vc-cvs-registered): Doc fix.
2538
2539 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
2540 (vc-rcs-registered): Doc fix.
2541
2542 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2543
2544 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
2545
2546 * vc-hooks.el: vc-registered has been renamed
2547 vc-default-registered. Some functions have been moved to the
2548 backend specific files. they all support the
2549 vc-BACKEND-registered functions.
2550
2551 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
2552
2553 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
2554
2555 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
2556
2557 2000-09-04 Dave Love <fx@gnu.org>
2558
2559 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
2560 menu-bar-update-hook.
2561
2562 * help.el (help-manyarg-func-alist): Add
2563 find-operation-coding-system.
2564
2565 * wid-edit.el (widget-sexp-validate): Fix garbled code.
2566
2567 * custom.el (custom-set-variables): Print message about errors in
2568 setting.
2569
2570 2000-09-03 Andrew Innes <andrewi@gnu.org>
2571
2572 * makefile.w32-in: Change to DOS line endings.
2573
2574 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
2575
2576 * mouse.el (mouse-popup-menubar): Supply the prompt string for
2577 minor-mode keymaps, if they don't have one.
2578
2579 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
2580
2581 * eshell/esh-module.el (eval-when-compile): Don't lose if
2582 esh-module.el's file name is truncated to DOS 8+3 limits.
2583
2584 2000-09-01 John Wiegley <johnw@gnu.org>
2585
2586 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
2587 predicate, which caused entries in the completion list to be
2588 doubled.
2589
2590 2000-08-30 John Wiegley <johnw@gnu.org>
2591
2592 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
2593 sending to subprocesses. Also, hook pre-command-hook if
2594 `eshell-send-direct-to-subprocesses' is non-nil.
2595 (eshell-send-direct-to-subprocesses): New config variable. If t,
2596 subprocess input is send immediately.
2597 (eshell-toggle-direct-send): New function.
2598 (eshell-self-insert-command): New function.
2599 (eshell-intercept-commands): New function.
2600 (eshell-send-input): If direct subprocess sending is enabled,
2601 don't echo any input to the Eshell buffer. Let the subprocess
2602 handle that. This requires "stty echo" in bash, for example.
2603
2604 2000-08-28 John Wiegley <johnw@gnu.org>
2605
2606 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
2607 completion function for Eshell's implementation of `unset'.
2608
2609 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
2610
2611 * info.el (Info-directory-list): Doc fix.
2612
2613 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
2614
2615 * filecache.el (file-cache-add-directory-using-find): Don't quote
2616 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
2617
2618 2000-08-31 Kenichi Handa <handa@etl.go.jp>
2619
2620 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
2621 coding systems.
2622
2623 2000-08-30 Andrew Innes <andrewi@gnu.org>
2624
2625 * timer.el (run-with-idle-timer): Undo last change, so that timer
2626 is not activated immediately if Emacs is already idle. Some
2627 existing code relies on this behaviour.
2628
2629 2000-08-30 Miles Bader <miles@gnu.org>
2630
2631 * frame.el (set-frame-font): Do completion of font-name for
2632 interactive use.
2633
2634 2000-08-30 Kenichi Handa <handa@etl.go.jp>
2635
2636 * international/quail.el (quail-start-translation): Bind locally
2637 last-command-event, last-command, and this-command.
2638 (quail-start-conversion): Likewise.
2639 (quail-self-insert-command): Fix docstring.
2640
2641 2000-08-29 Gerd Moellmann <gerd@gnu.org>
2642
2643 * progmodes/executable.el
2644 (executable-make-buffer-file-executable-if-script-p): Check that
2645 buffer contains at least 2 characters.
2646
2647 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
2648
2649 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
2650
2651 2000-08-29 Dave Love <fx@gnu.org>
2652
2653 * diff-mode.el (diff-mode) <defgroup>: Add :version.
2654 (diff-mode-shared-map): Bind mouse-2.
2655 (diff-imenu-generic-expression): New variable.
2656 (diff-mode): Use it.
2657
2658 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
2659 (mouse-popup-menubar): Add minor mode menus.
2660 (popup-menu): Check for lookup-key returning number.
2661
2662 2000-08-29 Miles Bader <miles@gnu.org>
2663
2664 * comint.el (comint-send-input): Create overlays using the proper
2665 front/read-advance arguments.
2666
2667 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2668
2669 * ps-print.el: Even/odd pages printing. Doc fix.
2670 (ps-print-version): New version number (6.0).
2671 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
2672 (ps-background, ps-begin-file, ps-begin-job): Code fix.
2673 (ps-print-duplex-feature): Variable eliminated.
2674 (ps-even-or-odd-pages): New variable.
2675
2676 * progmodes/ebnf2ps.el: Doc fix.
2677 (ebnf-version): New version (3.3).
2678 (ebnf-user-arrow): Change variable customization to sexp.
2679 (ebnf-user-arrow): Function eliminated.
2680 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
2681
2682 2000-08-29 Kenichi Handa <handa@etl.go.jp>
2683
2684 * help.el (help-xref-mule-regexp): New variable.
2685 (help-make-xrefs): Handle help-xref-mule-regexp.
2686
2687 * international/mule-cmds.el (help-xref-mule-regexp-template): New
2688 variable.
2689 (describe-input-method): Temporarily activate the specfied input
2690 method to display the information.
2691 (describe-language-environment): Hyperlinks to mule related items.
2692
2693 * international/mule-diag.el (charset-multibyte-form-string): New
2694 function.
2695 (list-character-sets-1): Use charset-multibyte-form-string.
2696 (describe-character-set): New function.
2697 (describe-coding-system): Hyperlinks to safe character sets.
2698
2699 * international/quail.el (quail-help): New arg PACKAGE.
2700 Hyperlinks to mule related items.
2701 (quail-help-insert-keymap-description): Use
2702 substitute-command-keys instead of describe-bindings.
2703 (quail-translation-help): Hyperlinks to mule related items.
2704
2705 2000-08-28 John Wiegley <johnw@gnu.org>
2706
2707 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
2708 have a defsubst call itself. Made `eshell-flatten-list' back into
2709 a function again.
2710
2711 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
2712 catch, in case re-centering point at bottom messes up the display.
2713 This happens frequently in Emacs 21, due I believe to variable
2714 line heights.
2715
2716 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
2717 to call `find-tag-interactive'.
2718
2719 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
2720 the list of remember directories.
2721
2722 2000-08-28 John Wiegley <johnw@gnu.org>
2723
2724 * align.el: Test align-region-separate to see if it's a symbol.
2725
2726 2000-08-28 John Wiegley <johnw@gnu.org>
2727
2728 * eshell/esh-util.el (eshell-flatten-list): Made this function
2729 into a defsubst form. It gets used very frequently, although
2730 calls don't occur all that often.
2731
2732 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
2733 examining it.
2734
2735 * eshell/esh-cmd.el (eshell-rewrite-while-command):
2736 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
2737 `eshell-protect'.
2738 (eshell-copy-handles): Created a new macro for duplicating the
2739 current set of open handles. This is needed by the looping
2740 functions.
2741 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
2742 is not incorrectly stomped on.
2743
2744 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
2745 declaration for pcomplete-use-paring.
2746 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
2747 value of eshell-cmpl-use-paring.
2748 * pcomplete.el (pcomplete-use-paring): New config variable, to
2749 indicate whether paring should be used.
2750 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
2751 completion alternatives that have already been used.
2752
2753 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
2754 bound to C-c C-y, which will repeat the previous N arguments
2755 (based on prefix argument).
2756 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
2757
2758 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
2759 if there is no *Help* buffer. This is for XEmacs, which renames
2760 its help buffers uniquely. TODO: Find out what the current buffer
2761 name to delete is.
2762
2763 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
2764 first entry that correlates to a passwd/group number. Later
2765 entries (used for group/user name aliasing to multiple IDs) are
2766 ignored.
2767
2768 * eshell/em-xtra.el (eshell/expr):
2769 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
2770 (eshell-grep, eshell/diff, eshell/locate):
2771 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
2772 argument list, before passing it to the system command.
2773
2774 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
2775 `find-tag' for use at final position in Eshell buffers (which
2776 otherwise triggers an error on Emacs 21).
2777 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
2778 buffer, if it is currently bound to `find-tag'.
2779
2780 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
2781 in the list of matched Makefile names.
2782 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
2783 directory, prefer its contents to Makefile.
2784
2785 * eshell/em-dirs.el (eshell/cd): cd commands that look up
2786 directory parts (like "cd old new", or "cd =regexp"), are now case
2787 sensitive on non-Windows/DOS platforms.
2788
2789 * eshell/esh-mode.el (eshell-parse-command-input): When a user
2790 types RET after an open delimiter (like "), display a message
2791 indicating that Eshell is waiting for the closing delimiter.
2792
2793 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
2794 environment variables.
2795
2796 * eshell/em-unix.el (eshell/diff): Added logic to fail more
2797 gracefully if the user enters incorrect arguments.
2798
2799 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
2800 Eshell buffers.
2801
2802 * eshell/esh-var.el (eshell-interpolate-variable):
2803 * eshell/esh-mode.el (eshell-move-argument):
2804 * eshell/em-unix.el (eshell-du-sum-directory):
2805 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
2806 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
2807 (not (= ...)).
2808
2809 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
2810 to ensure the `preserve' flag gets propagated when doing recursive
2811 directory copies.
2812
2813 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
2814
2815 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
2816 Don't convert \n into \0177 in memory.
2817 (eshell-read-history, eshell-write-history): Convert \n to \0177,
2818 and back again, when reading and writing.
2819
2820 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
2821
2822 * eshell/esh-util.el (eshell-processp): Added to relieve constant
2823 testing of `fboundp' on `processp'.
2824
2825 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
2826 (eshell/jobs): Don't call process-list if it is not bound.
2827 (eshell-gather-process-output): Support systems where async
2828 subprocesses aren't supported.
2829 (eshell-scratch-buffer, eshell-last-sync-output-start): New
2830 variables.
2831
2832 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
2833 eshell-do-eval returns t.
2834 (eshell-do-pipelines-synchronously): New defmacro.
2835 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
2836 when async subprocesses aren't supported.
2837 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
2838 if async subprocesses aren't supported.
2839 (eshell-resume-command): Don't assume STATUS is a string.
2840
2841 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
2842
2843 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
2844 (eshell-close-target, eshell-get-target): Use eshell-processp.
2845 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
2846 fix.
2847 (eshell-get-target, eshell-create-handles): Doc fix.
2848
2849 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
2850
2851 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
2852 criterion to include commands that output something, as long as it
2853 leaves both the command and the end-of-buffer visible when the
2854 command has exited.
2855 (eshell-review-quick-commands): Adjust the help doc string
2856 accordingly.
2857
2858 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
2859
2860 * locate.el (locate): Cleaned up locate command's interactive prompting
2861 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
2862
2863 * filecache.el (file-cache-case-fold-search): New variable
2864 (file-cache-assoc-function): New variable
2865 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
2866 Use file-cache-case-fold-search variable
2867 (file-cache-add-file): Use file-cache-assoc-function
2868 (file-cache-delete-file): likewise
2869 (file-cache-directory-name): likewise
2870 (file-cache-debug-read-from-minibuffer): likewise
2871
2872 2000-08-28 Gerd Moellmann <gerd@gnu.org>
2873
2874 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
2875 (abbrev-table-name): New function.
2876 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
2877 If non-nil list local abbrev, only.
2878
2879 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
2880
2881 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
2882 from Gnus support code, and use special article copy buffer
2883 `(gnus-original-article-buffer)' instead. This allows to get rid
2884 of article-hide-headers usage (which breaks in the latest Gnus
2885 version). Thanks to Detlev Zundel.
2886
2887 2000-08-28 Kenichi Handa <handa@etl.go.jp>
2888
2889 * international/quail.el (quail-use-package): Hide "... loaded"
2890 message.
2891 (quail-start-translation, quail-start-conversion): Likewise.
2892
2893 * international/kkc.el (kkc-region): Hide "... loaded" message.
2894
2895 2000-08-27 Dave Love <fx@gnu.org>
2896
2897 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
2898
2899 2000-08-27 Miles Bader <miles@gnu.org>
2900
2901 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
2902
2903 2000-08-27 Kenichi Handa <handa@etl.go.jp>
2904
2905 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
2906 'ja-dic-cnv), not (require 'skkdic-cnv).
2907
2908 2000-08-26 Miles Bader <miles@gnu.org>
2909
2910 * faces.el (face-x-resources): Add entry for :inherit.
2911 * cus-face.el (custom-face-attributes): Add support for :inherit
2912 attribute. Add support for relative face heights.
2913 (custom-face-attributes-get): Treat `nil' as being a default value
2914 for :inherit (as well as `unspecified').
2915
2916 * faces.el (set-face-attribute): Update doc string.
2917 (face-attribute-name-alist): Add :inherit.
2918 (face-valid-attribute-values): Handle :inherit.
2919 (face-read-string): Rephrase prompt to be less confusing.
2920 Assume that DEFAULT is a string, since we must return a string.
2921 (face-read-integer): Use `format' to turn DEFAULT into an
2922 acceptable default for face-read-string. Match NEW-VALUE against
2923 the string "unspecified", not the symbol `unspecified', since
2924 that's what face-read-string returns.
2925 (read-face-attribute): Lookup a name for old-value in valid, and
2926 use it as a default if we find one. Treat all values from
2927 face-read-string as strings. If the default is used, don't do any
2928 more processing on the value, just use the old value directly.
2929 (read-face-and-attribute, modify-face): Tweak prompt.
2930 (read-face-name): Don't assume prompt ends with a space.
2931
2932 * faces.el (describe-face): Add support for :inherit attribute.
2933
2934 2000-08-25 Kenichi Handa <handa@etl.go.jp>
2935
2936 * terminal.el (terminal-emulator): Fix args to `concat'. Now
2937 concat doesn't accept interger.
2938
2939 * international/kkc.el: Remove SKK from Keywords. Require
2940 ja-dic-utl instead of skkdic-utl.
2941
2942 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
2943 Provide ja-dic-cnv instead of skkdic-cnv.
2944 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
2945 (iso-2022-7bit-short): Add safe-charsets property.
2946 (skkdic-convert-postfix): Search Japanese chou-on character in
2947 addition to Hiragana character.
2948 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
2949 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
2950 (batch-skkdic-convert): Likewise.
2951
2952 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
2953 Provide ja-dic-utl instead of skkdic-utl.
2954 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
2955
2956 2000-08-24 Dave Love <fx@gnu.org>
2957
2958 * disp-table.el (standard-display-default): Make the test of `l'
2959 useful.
2960
2961 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
2962 mod sample text.
2963
2964 * international/iso-ascii.el: Make pilcrow convenient string
2965 consistent with section.
2966 (iso-ascii-display): Set up multibyte characters as well as
2967 unibyte.
2968
2969 2000-08-24 Kenichi Handa <handa@etl.go.jp>
2970
2971 * international/mule-cmds.el (reset-language-environment): Set
2972 default-process-coding-system to '(undecided . iso-latin-1), which
2973 makes process I/O almost consistent with file I/O. Call this
2974 function when mule-cmds.el[c] is loaded.
2975
2976 2000-08-22 Andrew Innes <andrewi@gnu.org>
2977
2978 * makefile.w32-in: New file.
2979
2980 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
2981
2982 * comint.el (comint-output-filter): Compare end of
2983 comint-last-output-overlay with the start of the newly inserted
2984 text, not the end, when deciding whether to extend it.
2985 Set saved-point's insertion type to advance after insertion.
2986
2987 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
2988 since this is now done independently of font-lock mode.
2989
2990 2000-08-21 Gerd Moellmann <gerd@gnu.org>
2991
2992 * server.el (server-kill-new-buffers): New user option.
2993 (server-existing-buffer): New buffer-local variable.
2994 (server-visit-files): When using an existing buffer, set
2995 server-existing-buffer to t.
2996 (server-buffer-done): If server-kill-new-buffers is t, kill the
2997 buffer, unless it was already present before visiting it with
2998 Emacs server.
2999
3000 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
3001
3002 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
3003 even if the display doesn't support colors: some displays will
3004 support bold/underline faces.
3005
3006 2000-08-21 Gerd Moellmann <gerd@gnu.org>
3007
3008 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
3009
3010 * startup.el (command-line): If user's init file had an error,
3011 add explanatory text to *Messages*.
3012
3013 2000-08-21 Kenichi Handa <handa@etl.go.jp>
3014
3015 * man.el (Man-getpage-in-background): Decode the process output by
3016 the system locale coding system.
3017
3018 2000-08-20 Dave Love <fx@gnu.org>
3019
3020 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
3021 Don't test x-popup-menu.
3022 (function) <complete-function>: Complete only fbound symbols.
3023 <validate, value>: New.
3024 (variable) <complete-function>: Complete only bound symbols.
3025 (coding-system): Add :base-only, :complete-function, :validate,
3026 :value, :prompt-match.
3027 (widget-coding-system-prompt-value): Use read-coding-system and
3028 act on :base-only.
3029 (editable-field): Add :help-echo.
3030 (widget-push-button-gui, widget-push-button-cache)
3031 (widget-gui-action, widget-editable-list-gui): COmment out, along
3032 with uses.
3033 (widget-at): Make arg optional.
3034 (widget-echo-help): Adjust for current help-echo calling sequence.
3035 (widget-specify-field, widget-specify-button)
3036 (widget-specify-insert, widget-get-sibling, widget-image-find)
3037 (widget-convert, widget-insert, widget-leave-text)
3038 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
3039 (widget-setup, widget-field-find, widget-before-change)
3040 (widget-after-change, widget-default-complete)
3041 (widget-default-create, widget-default-delete)
3042 (widget-push-button-value-create, editable-field)
3043 (widget-field-prompt-value, widget-field-validate)
3044 (widget-choice-value-create, widget-choice-action)
3045 (widget-choice-validate, widget-checklist-add-item)
3046 (widget-radio-add-item, widget-radio-chosen)
3047 (widget-radio-value-inline, widget-editable-list-value-create)
3048 (widget-editable-list-entry-create)
3049 (widget-documentation-link-add)
3050 (widget-documentation-string-value-create)
3051 (widget-regexp-validate, widget-file-complete)
3052 (widget-sexp-validate, widget-plist-convert-widget)
3053 (widget-plist-convert-widget, widget-alist-convert-widget)
3054 (widget-alist-convert-widget, widget-color-complete): Simplify,
3055 particularly to avoid bindings which aren't optimized out.
3056
3057 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
3058 Doc fix.
3059 (down-list, backward-up-list, up-list, kill-sexp)
3060 (backward-kill-sexp, mark-sexp): Make arg optional.
3061 (lisp-complete-symbol): Add optional arg PREDICATE.
3062
3063 * cus-start.el: Add display-buffer-reuse-frames,
3064 file-coding-system-alist.
3065
3066 2000-08-20 Gerd Moellmann <gerd@gnu.org>
3067
3068 * startup.el (command-line): Clear realized faces after
3069 modifying TTY color mappings.
3070
3071 2000-08-20 Miles Bader <miles@gnu.org>
3072
3073 * faces.el (face-attr-match-p): Don't return true if ATTRS are
3074 merely a subset of FACE's attributes.
3075
3076 2000-08-19 Miles Bader <miles@gnu.org>
3077
3078 * comint.el (comint-output-filter): Save the point with a marker,
3079 not just a buffer position.
3080
3081 * international/mule.el (set-buffer-process-coding-system): Make
3082 interactive prompt less confusing.
3083
3084 2000-08-19 Gerd Moellmann <gerd@gnu.org>
3085
3086 * hilit-chg.el: General cleanup of doc strings, comments and
3087 code formatting.
3088
3089 2000-08-19 Miles Bader <miles@gnu.org>
3090
3091 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
3092 Compiler macro removed; beginning-of-line is no longer always
3093 equivalent to forward-line, in the presence of fields.
3094
3095 * comint.el (comint-output-filter): Remove ad-hoc saving of
3096 restriction, and just use save-restriction, now that it works
3097 correctly. Don't adjust comint-last-input-start to account for
3098 our insertion; it shouldn't have moved because we don't use
3099 insert-before-markers anymore. Comment out call to
3100 `force-mode-line-update'; why is it here?
3101
3102 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
3103 while checking for prompt to delete. Use `forward-line 0'
3104 instead of beginning-of-line.
3105 (gud-filter): Temporarily widen gud comint buffer while
3106 examining output.
3107
3108 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
3109
3110 * progmodes/sh-script.el: Big bag of typos.
3111
3112 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
3113 check since ispell-process is not bound when ispell is not yet loaded.
3114
3115 2000-08-18 Dave Love <fx@gnu.org>
3116
3117 * image.el (find-image): Copy `spec' before using plist-put.
3118
3119 2000-08-18 Gerd Moellmann <gerd@gnu.org>
3120
3121 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
3122 `portugues'.
3123
3124 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
3125 backward-kill-sexp, analogous to kill-sexp.
3126
3127 * progmodes/icon.el (icon-indent-line)
3128 (icon-is-continuation-line): Handle comments specially.
3129
3130 2000-08-17 Ken Stevens <k.stevens@ieee.org>
3131
3132 * ispell.el: Set to standard author/maintainer/keyword fields.
3133 Fine tuning to menu map appearance and operation, and added help.
3134 Remove `start' and `end' error messages when compiling.
3135 (ispell-choices-win-default-height): Fixed comment string.
3136 (ispell-dictionary-alist-1): Fixed regexp in castellano and
3137 castellano8 dictionaries.
3138 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
3139 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
3140 dictionary, added italiano dictionary.
3141 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
3142 word character
3143 (ispell-tex-skip-alists): Added psfig support.
3144 (ispell-skip-html): Renamed from ispell-skip-sgml.
3145 (ispell-begin-skip-region-regexp, ispell-skip-region)
3146 (ispell-minor-check): Improved html skipping support to skip across
3147 code, and recognize `&' commands without propper `;' syntax;
3148 (ispell-process-line): Fix alignment error when manually
3149 correcting spelling.
3150 (ispell): Fix comment string.
3151 (ispell-add-per-file-word-list): Always put word list on new line.
3152
3153 2000-08-17 Gerd Moellmann <gerd@gnu.org>
3154
3155 * format.el (format-encode-run-method): Fix error message to say
3156 `encode' instead of `decode'. Use save-window-excursion around
3157 shell-command-on-region as in format-decode-run-method because
3158 shell-command-on-region can display a buffer with error output.
3159 (format-decode): Don't record undo information for the decoding.
3160 (format-annotate-function): Add parameter FORMAT-COUNT. Make
3161 that number part of the temporary buffer name so that more than
3162 one decoding using a temporary buffer can happen safely.
3163
3164 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
3165 of `A-z' in the regexp.
3166
3167 * hilit-chg.el: Fix typos in commentary.
3168
3169 * help.el (view-emacs-news): Rewritten for new naming scheme
3170 for old NEWS files.
3171
3172 * startup.el (command-line): Pop to *Messages* in case an error
3173 is signaled while loading user-init-file.
3174
3175 2000-08-17 Andreas Schwab <schwab@suse.de>
3176
3177 * files.el (insert-directory): Don't lose original file name,
3178 undoing an undocumented change.
3179
3180 2000-08-17 Alex Schroeder <alex@gnu.org>
3181
3182 * sql.el (sql-magic-go): Use comint-bol.
3183 (sql-copy-column): Use comint-line-beginning-position.
3184 (comint-line-beginning-position): Define a replacement for
3185 comint-line-beginning-position if it is not fboundp.
3186
3187 2000-08-17 Alex Schroeder <alex@gnu.org>
3188
3189 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
3190 it didn't have any effect anyway.
3191
3192 2000-08-17 Alex Schroeder <alex@gnu.org>
3193
3194 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
3195 --pset and pager=off instead of sending \\o|cat at the beginning
3196 of the session.
3197
3198 2000-08-17 Miles Bader <miles@gnu.org>
3199
3200 * progmodes/octave-inf.el: Add compatibility definition of
3201 comint-line-beginning-position.
3202
3203 2000-08-17 Kenichi Handa <handa@etl.go.jp>
3204
3205 * startup.el (normal-top-level): Look in each dir in load-path for
3206 a leim-list.el file too. This assures of loading leim-list.el
3207 that is created at Emacs installation time even if a user have his
3208 own leim-list.el.
3209
3210 2000-08-17 Miles Bader <miles@gnu.org>
3211
3212 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
3213 foreground color to black if the background is dark.
3214
3215 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
3216
3217 * loadhist.el (unload-feature): Typo.
3218
3219 * finder.el (finder-compile-keywords):
3220 * cus-dep.el (custom-make-dependencies): Add local-variable settings
3221 to the generated file.
3222
3223 * mail/mh-e.el (mh-make-local-vars):
3224 Replace make-variable-buffer-local with make-local-variable.
3225
3226 * play/landmark.el:
3227 * options.el (Edit-options-{set,toggle,t,nil}):
3228 * mail/mailabbrev.el (mail-abbrevs-mode):
3229 * textmodes/tex-mode.el (tex-expand-files):
3230 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
3231
3232 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
3233
3234 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
3235 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
3236 Allow going past the last element.
3237 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
3238 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
3239 (cvs-mouse-toggle-mark): Don't move point.
3240 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
3241
3242 * progmodes/compile.el (grep): Provide a default set of files.
3243 (next-error): Docstring fix.
3244 (compilation-find-file): Avoid find-file (fails in a dedicated window).
3245
3246 * emacs-lisp/easy-mmode.el (define-minor-mode):
3247 Use `symbol-value' to keep the byte-compiler quiet.
3248
3249 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
3250 (diff-find-source-location): New fun, extracted from diff-goto-source.
3251 (diff-goto-source): Use it.
3252 (diff-next-complex-hunk, diff-filter-lines): New function.
3253 (diff-apply-hunk): New command.
3254
3255 * smerge-mode.el (smerge-mode-menu): Doc fix.
3256
3257 * msb.el (msb-mode): Define it in terms of define-minor-mode.
3258
3259 2000-08-16 Dave Love <fx@gnu.org>
3260
3261 * windmove.el (windmove) <defgroup>: Add :version.
3262
3263 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
3264 (goto-address-fontify-p, goto-address-highlight-p)
3265 (goto-address-url-face, goto-address-url-mouse-face)
3266 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
3267 (goto-address-url-regexp): Use thing-at-point-url-regexp.
3268 (goto-address-fontify, goto-address-at-mouse): Simplify,
3269 (goto-address-at-point): browse-url-url-at-point,
3270 goto-address-find-address-at-point can return nil.
3271 (goto-address-find-address-at-point): Return nil on failure.
3272
3273 * align.el (align) <defgroup>: Add :version.
3274
3275 * calculator.el (calculator): Add :version.
3276 (calculator): Use two lines for calculator window if `modeline'
3277 face is boxed.
3278
3279 * play/5x5.el: Doc fixes.
3280 (5x5) <defgroup>: Add :version.
3281
3282 * play/fortune.el (fortune) <defgroup>: Add :version.
3283 (fortune-append): Fix error message.
3284 (fortune-from-region): Doc fix.
3285
3286 * play/pong.el (pong): Doc fix.
3287
3288 * play/morse.el: Keywords, commentary, autoloads.
3289
3290 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
3291
3292 * desktop.el (desktop-save): Don't look at symbol-value of a
3293 member of minor-mode-alist, unless it is boundp.
3294
3295 2000-08-16 Sam Steingold <sds@gnu.org>
3296
3297 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
3298 `while'; use `with-current-buffer' instead of `save-excursion'.
3299 Removed unnecessary kludges now that "*Buffer List*" is excluded.
3300
3301 2000-08-16 Kenichi Handa <handa@etl.go.jp>
3302
3303 * international/ccl.el (declare-ccl-program): Docstring modified.
3304 (ccl-execute-with-args): Likewise.
3305
3306 2000-08-16 Miles Bader <miles@gnu.org>
3307
3308 * progmodes/sql.el: Add compatibility definition of
3309 comint-line-beginning-position.
3310
3311 2000-08-15 Gerd Moellmann <gerd@gnu.org>
3312
3313 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
3314 'buffer-menu' property.
3315 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
3316 fails.
3317 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
3318 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
3319 wasn't killed.
3320
3321 * buff-menu.el (list-buffers-noselect): Don't display the
3322 *Buffer List* buffer.
3323
3324 * font-lock.el: Require jit-lock to prevent a very late
3325 `Loading jit-lock' message.
3326
3327 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
3328 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
3329 mail address.
3330
3331 2000-08-15 Miles Bader <miles@gnu.org>
3332
3333 * textmodes/ispell.el (ispell-graphic-p): New constant.
3334 (ispell-choices-win-default-height, ispell-help): Use
3335 `ispell-graphic-p' instead of `xemacsp'.
3336
3337 2000-08-15 Dave Love <fx@gnu.org>
3338
3339 * simple.el: Autoload widget-convert when compiling.
3340 (mail-user-agent): Doc fix.
3341
3342 * help.el (function-called-at-point, variable-at-point): Use
3343 with-syntax-table.
3344 (help-manyarg-func-alist): Add insert-and-inherit.
3345
3346 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
3347
3348 * delsel.el (delsel-unload-hook): New function.
3349
3350 * find-file.el: Doc fixes. Move provide to end.
3351 (ff) <defgroup>: Add :link.
3352 (ff-goto-click): Deleted.
3353 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
3354 Use mouse-set-point.
3355
3356 * textmodes/tildify.el: Doc fixes.
3357 (tildify) <defgroup>: Add:version.
3358
3359 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
3360 (glasses-custom-set): Use set-default, not set.
3361 (minor-mode-alist): Propertize the lighter.
3362 (glasses-mode): Provide optional arg.
3363
3364 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
3365 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
3366 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
3367 option. Provide :type.
3368 (cwarn-configuration): Provide :type.
3369 (cwarn-mode): Doc fix.
3370
3371 * add-log.el (change-log-merge): Doc fix.
3372 (change-log-redate): New command.
3373
3374 * net/browse-url.el (browse-url-filename-alist): Add a clause for
3375 Doze and Dog.
3376 (browse-url): Use dolist, not mapcar.
3377 (browse-url-at-point): Check for null url.
3378 (browse-url-event-buffer, browse-url-event-point): Functions
3379 deleted.
3380 (browse-url-at-mouse, browse-url-netscape): Simplify.
3381
3382 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
3383 modes.
3384 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
3385 Fix previous change to mapcan.
3386 (msb--init-file-alist, msb--add-separators)
3387 (msb--make-keymap-menu): Simplify.
3388 (msb--choose-file-menu): Use copy-sequence.
3389 (msb-mode-map): Add title to keymap.
3390 (msb-unload-hook): New function.
3391
3392 * bs.el: Fix indentation.
3393 (bs) <defgroup>: Add :links.
3394 (bs-show): Doc fix.
3395 (bs-apply-sort-faces): Don't use window-system.
3396 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
3397
3398 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
3399
3400 * calendar/timeclock.el (timeclock-file): Run .timelog through
3401 convert-standard-filename.
3402
3403 2000-08-14 Gerd Moellmann <gerd@gnu.org>
3404
3405 * emacs-lisp/authors.el: New file.
3406
3407 * paren.el (show-paren-priority): New user option.
3408 (show-paren-function): Set overlay priorities to
3409 show-paren-priority.
3410
3411 2000-08-14 Miles Bader <miles@gnu.org>
3412
3413 * comint.el (comint-bol): Use `forward-line 0' instead of calling
3414 beginning-of-line with inhibit-field-text-motion bound.
3415
3416 2000-08-14 Gerd Moellmann <gerd@gnu.org>
3417
3418 * calendar/timeclock.el: New file.
3419
3420 2000-08-14 David Ponce <david@dponce.com>
3421
3422 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
3423 `widget-button-click'. so that one can use left mouse button to
3424 click on dialog buttons.
3425
3426 2000-08-14 Emmanuel Briot <briot@gnat.com>
3427
3428 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
3429 identifiers, since XML is case sensitive
3430
3431 2000-08-12 Miles Bader <miles@gnu.org>
3432
3433 * comint.el (comint-output-filter): Don't bother frobbing
3434 window-start, it doesn't seem to be necessary.
3435
3436 * comint.el (comint-send-string, comint-send-region): Make into
3437 real functions. Snapshot the prompt before sending.
3438
3439 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
3440
3441 * info.el (Info-find-emacs-command-nodes): Rewrite to use
3442 technique similar to Info-index, instead of relying on specific
3443 names of relevant Index nodes.
3444 (Info-goto-emacs-command-node): Bind Info-history to nil when
3445 going to the first node found by Info-find-emacs-command-nodes.
3446
3447 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
3448
3449 * menu-bar.el (menu-bar-help-menu): Add a :help string.
3450
3451 2000-08-10 Miles Bader <miles@gnu.org>
3452
3453 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
3454
3455 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
3456
3457 * info.el (Info-file-list-for-emacs): More elements for the
3458 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
3459 and woman manuals.
3460
3461 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
3462
3463 * comint.el (comint-send-input): Make the newline boundary overlay
3464 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
3465 (comint-output-filter): Use `insert' instead of
3466 `insert-before-markers'. Extend comint-last-output-overlay when
3467 necessary since we can't rely on insert-before-markers to do it.
3468 * gud.el (gud-filter): Use `with-current-buffer' instead of
3469 save-excursion when inserting the output, so that point gets
3470 updated correctly; the old method relied on a rather dodgy
3471 side-effect of comint-output-filter to avoid the effect of
3472 save-excursion.
3473
3474 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
3475
3476 * files.el (recover-file): Call insert-directory instead of
3477 invoking `ls' directly.
3478
3479 2000-08-10 Miles Bader <miles@gnu.org>
3480
3481 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
3482 (comint-last-prompt-overlay): New variables.
3483 (comint-output-filter): Implement prompt highlighting.
3484 (comint-snapshot-last-prompt): New function.
3485 (comint-send-input): Snapshot the last prompt.
3486 Use comint-highlight-input-face.
3487 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
3488 Use defface instead of defcustom.
3489 (send-invisible, comint-send-eof): Snapshot the last prompt.
3490 (comint-delchar-or-maybe-eof): Use comint-send-eof.
3491 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
3492
3493 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
3494
3495 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
3496 (regexp-opt-group): Use a list of chars for `letters'.
3497 (regexp-opt-charset): `chars' is now a list of chars.
3498 Use a char-table rather than a vector so it works for multibyte chars.
3499
3500 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
3501 Set cvs-minor-current-files to the selected fileinfo.
3502 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
3503 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
3504
3505 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
3506
3507 * files.el (insert-directory): Don't call access-file on
3508 directories on DOS and Windows.
3509
3510 2000-08-09 Kenichi Handa <handa@etl.go.jp>
3511
3512 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
3513 longer if necessary.
3514 (ccl-embed-code): Call ccl-embed-data to store CODE in
3515 ccl-program-vector.
3516
3517 2000-08-09 Miles Bader <miles@gnu.org>
3518
3519 * comint.el (comint-output-filter): Properly handle the case where
3520 the text surrounded by comint-last-output-overlay was deleted.
3521
3522 2000-08-08 Gerd Moellmann <gerd@gnu.org>
3523
3524 * info.el (Info-insert-dir): Use Info-additional-directory-list if
3525 non-nil.
3526 (Info-file-list-for-emacs): Remove "info" from the list because
3527 that leads to trying to use the documentation from file `info'
3528 in various situations where it isn't appropriate, for instance
3529 C-h C-k C-h i.
3530
3531 * ffap.el (ffap-read-file-or-url-internal): Handle case that
3532 DIR and/or STRING are nil.
3533
3534 * progmodes/compile.el (compilation-setup): Make variable
3535 compilation-error-screen-columns buffer-local, as some comment
3536 in the code suggests it should be.
3537
3538 * files.el (auto-mode-interpreter-regexp): New variable.
3539 (set-auto-mode): Use it.
3540
3541 * indent.el (indent-for-tab-command): Doc fix.
3542
3543 * mouse-sel.el (mouse-sel-mode): Doc fix.
3544
3545 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
3546 labels.
3547
3548 * help.el (print-help-return-message): When
3549 display-buffer-reuse-frames is set, let the help window been quit,
3550 instead of deleting it, which might delete a reused frame.
3551
3552 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
3553
3554 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
3555 rename a directory to a name that differs only by its letter case.
3556
3557 2000-08-08 Kenichi Handa <handa@etl.go.jp>
3558
3559 * international/quail.el (quail-define-rules): Handle Quail decode
3560 map correctly. Add code for supporting annotations.
3561 (quail-install-decode-map): New function.
3562 (quail-defrule-internal): New optional arguments decode-map and
3563 props.
3564 (quail-advice): New function.
3565
3566 2000-08-07 Sam Steingold <sds@gnu.org>
3567
3568 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
3569 `defconst', `define-condition', `with-slots'.
3570 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
3571
3572 2000-08-03 Miles Bader <miles@gnu.org>
3573
3574 * comint.el (comint-use-prompt-regexp-instead-of-fields):
3575 New variable.
3576 (comint-prompt-regexp, comint-get-old-input): Document dependence on
3577 comint-use-prompt-regexp-instead-of-fields.
3578 (comint-send-input): Add `input' field property to stuff we send to
3579 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
3580 (comint-output-filter): Add `output' field property to process
3581 output, if comint-use-prompt-regexp-instead-of-fields is nil.
3582 (comint-replace-by-expanded-history)
3583 (comint-get-old-input-default, comint-show-output)
3584 (comint-backward-matching-input, comint-forward-matching-input)
3585 (comint-next-prompt, comint-previous-prompt): Use field
3586 properties if comint-use-prompt-regexp-instead-of-fields is nil.
3587 (comint-line-beginning-position): New function.
3588 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
3589 (comint-replace-by-expanded-history-before-point): Use
3590 comint-line-beginning-position and line-end-position.
3591 (comint-last-output-overlay): New variable.
3592 (comint-mode): Make `comint-last-output-overlay' buffer-local.
3593
3594 * shell.el (shell-prompt-pattern): Doc change.
3595 (shell-backward-command): Use line-beginning-position.
3596
3597 * gud.el (gud-gdb-complete-command): Use
3598 comint-line-beginning-position.
3599
3600 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
3601 comint-bol doesn't actually go to the beginning of the line.
3602
3603 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
3604 if comint-use-prompt-regexp-instead-of-fields is non-nil.
3605 (try-expand-line-all-buffers): Likewise.
3606
3607 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
3608 explicitly matching comint-prompt-regexp.
3609 (sql-copy-column): Use comint-line-beginning-position instead of
3610 explicitly matching comint-prompt-regexp.
3611
3612 * progmodes/octave-inf.el (inferior-octave-complete): Use
3613 comint-line-beginning-position.
3614
3615 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
3616
3617 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
3618 looking for a prompt, use `forward-line 0' instead of
3619 `beginning-of-line', to avoid getting caught by an input field.
3620
3621 2000-08-07 Gerd Moellmann <gerd@gnu.org>
3622
3623 * files.el (shell-quote-wildcard-pattern): Make sure to return
3624 PATTERN, in the Unix case.
3625
3626 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
3627
3628 * play/zone.el (zone): Discard any pending input before running
3629 the randomly-chosen pgm.
3630
3631 2000-08-07 Kenichi Handa <handa@etl.go.jp>
3632
3633 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
3634 checking the existence of any multibyte characters.
3635
3636 2000-08-06 Gerd Moellmann <gerd@gnu.org>
3637
3638 * help.el (describe-mode): Test minor-mode symbol for being
3639 bound before testing its value for being nil.
3640
3641 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
3642 `first', `second', and `third'.
3643
3644 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
3645 (second): Make it an alias for `cadr'.
3646
3647 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
3648
3649 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
3650 types of display support faces now.
3651
3652 2000-08-05 Gerd Moellmann <gerd@gnu.org>
3653
3654 * pcvs.el (require): Require `cl' during compilation, only.
3655
3656 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
3657 (toplevel): Remove `remq' and `remove' from autoloads.
3658 (cl-fake-autoloads): New variable. If set, arrange for an error
3659 when CL functions etc. are autoloaded.
3660
3661 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
3662
3663 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
3664
3665 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
3666 popped up, but the user clicks outside the menu, return an empty
3667 regexp (that causes unhighlight-regexp to have no effect).
3668
3669 * menu-bar.el (menu-bar-games-menu): Add Zone.
3670
3671 * hi-lock.el (toplevel): Require font-lock.
3672
3673 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3674
3675 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
3676 (ebnf-8-bit-chars): New var for bug fix.
3677 (ebnf-string): Bug fix.
3678
3679 2000-08-03 Sam Steingold <sds@gnu.org>
3680
3681 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
3682 instead of `buffer-string'.
3683 (require 'cl): Always, not just when compiling.
3684 `ignore-errors' in `interactive', `list*', `defun*' &c make this
3685 necessary.
3686
3687 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
3688
3689 * international/mule-cmds.el (select-safe-coding-system): Make
3690 the message text about selecting a safe coding system more clear.
3691
3692 2000-08-02 Gerd Moellmann <gerd@gnu.org>
3693
3694 * hi-lock.el: New file.
3695
3696 * play/zone.el: New file.
3697
3698 * replace.el (occur): Set tab-width in the *Occur* buffer to the
3699 value of tab-width in the original buffer. Choose a line number
3700 format that's a multiple of the original buffer's tab width, so
3701 that lines appear right.
3702
3703 * textmodes/ispell.el (ispell): New function, replacing an alias.
3704 Spell-check active region if in transient-mark-mode and mark
3705 is active; otherwise spell-check buffer.
3706
3707 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3708
3709 * ps-mule.el: Fix a customization problem on
3710 ps-mule-font-info-database-default.
3711
3712 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
3713
3714 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
3715 display-mouse-p instead of window-system.
3716 (ebrowse-member-mode-map): Ditto.
3717
3718 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3719
3720 * progmodes/ebnf2ps.el: Update ps-print functions call.
3721 Indentation fix. Doc fix.
3722 (ebnf-version): New version number (3.2).
3723 (ebnf-format-color, ebnf-begin-job): Code fix.
3724
3725 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
3726
3727 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
3728 font lock support on window-system.
3729 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
3730
3731 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
3732 display-color-p, if fboundp, instead of window-system.
3733
3734 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
3735
3736 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
3737 instead of window-system.
3738
3739 * wid-edit.el (widget-choose): Use display-mouse-p instead of
3740 window-system.
3741 (widget-choice-mouse-down-action): Use display-popup-menus-p
3742 instead of window-system.
3743
3744 * strokes.el (strokes-file): Run the file name through
3745 convert-standard-filename.
3746 (strokes-mode): Call display-mouse-p instead of looking at
3747 window-system. Change the error message accordingly.
3748
3749 * progmodes/cpp.el (toplevel): Support faces on tty's.
3750
3751 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
3752 (lm-plot-square, lm-init-display): Don't use window-system.
3753
3754 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
3755 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
3756
3757 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
3758 instead of looking at window-system.
3759
3760 2000-07-30 Gerd Moellmann <gerd@gnu.org>
3761
3762 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
3763 of testing if iswitchb-prepost-hooks is bound, because the
3764 latter will always be true when invoking a recursive minibuffer
3765 from an active Iswitchb buffer.
3766
3767 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
3768
3769 * files.el (shell-quote-wildcard-pattern): New function.
3770 (insert-directory): Call it. Only prepend "\" to command on Unix
3771 and GNU/Linux systems.
3772
3773 2000-07-30 Gerd Moellmann <gerd@gnu.org>
3774
3775 * eshell/esh-groups.el: Change custom :link file names
3776 from `eshell.info' to `eshell'.
3777
3778 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
3779
3780 * dired.el (dired-build-subdir-alist): Expand subdirectory names
3781 correctly in recursive ange-ftp listings.
3782
3783 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3784
3785 * ps-print.el: Fix bug 1: if ps-font-size-internal,
3786 ps-header-font-size-internal and
3787 ps-header-title-font-size-internal variables are not set,
3788 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
3789 face text property is (foreground-color . COLOR) or
3790 `(background-color . COLOR)', ps-print crashes. Doc fix.
3791 (ps-print-version): New version number (5.2.4).
3792 (ps-plot-region): Code fix.
3793 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
3794 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
3795 Bug fix 2.
3796
3797 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
3798
3799 * glasses.el (glasses-make-readable): Fix uncapitalization of
3800 identifiers like `myXMLDocument'.
3801
3802 2000-07-28 Karl Fogel <kfogel@red-bean.com>
3803
3804 * mail/mail-hist.el (mail-hist-previous-input)
3805 (mail-hist-next-input): Do the obvious code factorization.
3806 (mail-hist-retrieve-and-insert): New func, contains common
3807 code of above two.
3808 If inserting a message body, leave point at top.
3809
3810 2000-07-28 Sam Steingold <sds@gnu.org>
3811
3812 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
3813 Use `<=', not `<' to compare times!
3814 (ange-ftp-ls): Remove.
3815
3816 2000-07-27 Gerd Moellmann <gerd@gnu.org>
3817
3818 * play/cookie1.el: Add explanation of how to make cookie.el
3819 compatible with strfile(1) to comment.
3820
3821 * subr.el (remove, remq): New functions.
3822
3823 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
3824 escape `*' in regexps.
3825 (midnight-find): Reverse order of arguments in the funcall of
3826 TEST.
3827
3828 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
3829 and `.class'.
3830
3831 * play/meese.el: Add Commentary section.
3832
3833 2000-07-27 Alex Schroeder <alex@gnu.org>
3834
3835 * sql.el (sql-ms): Added autoload cookie.
3836 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
3837 (sql-oracle): Ditto.
3838 (sql-help): Doc change.
3839
3840 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
3841 types and exceptions.
3842
3843 2000-07-27 Alex Schroeder <alex@gnu.org>
3844
3845 * sql.el (sql-placeholder-history): New variable.
3846 (sql-query-placeholders-and-send): New function that will query
3847 the user and replace placeholders with user input.
3848 (sql-oracle): If running on NT, set comint-input-sender to
3849 sql-query-placeholders-and-send.
3850
3851 (sql-stop): If in the SQLi buffer, insert stop notification, else
3852 present it as a message.
3853
3854 2000-07-27 Alex Schroeder <alex@gnu.org>
3855
3856 * sql.el (sql-input-ring-separator): Doc change.
3857 (sql-input-ring-file-name): Doc change.
3858 (sql-interactive-mode): Use `sql-input-ring-separator' and
3859 `sql-input-ring-file-name' to set the comint-mode equivalents
3860 without making them local variables.
3861 (sql-stop): Don't bind `sql-input-ring-separator' and
3862 `sql-input-ring-file-name' dynamically to their comint-mode
3863 equivalents.
3864
3865 2000-07-27 Kenichi Handa <handa@etl.go.jp>
3866
3867 * international/mule.el (register-char-codings): New function.
3868 (make-coding-system): Handle `safe-chars' specification in the arg
3869 PROPERTY.
3870
3871 * international/mule-cmds.el
3872 (find-coding-systems-region-subset-p): This function deleted.
3873 (sort-coding-systems-predicate): New variable.
3874 (sort-coding-systems): New function.
3875 (find-coding-systems-region): Use
3876 find-coding-systems-region-internal.
3877 (find-coding-systems-string): Use find-coding-systems-region.
3878 (find-coding-systems-for-charsets): Check
3879 char-coding-system-table.
3880 (select-safe-coding-system-accept-default-p): New variable.
3881 (select-safe-coding-system): Mostly rewritten. New argument
3882 ACCEPT-DEFAULT-P.
3883 (select-message-coding-system): Call select-safe-coding-system
3884 with ACCEPT-DEFAULT-P arg.
3885 (reset-language-environment): Reset default-sendmail-coding-system
3886 to the default value iso-latin-1.
3887 (set-language-environment): Don't set the obsolete variable
3888 charset-origin-alist.
3889
3890 * international/codepage.el (cp-coding-system-for-codepage-1):
3891 Give `safe-chars' property to make-coding-system.
3892
3893 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
3894 calling select-message-coding-system twice.
3895
3896 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
3897 instead of `safe-charsets'.
3898 (cyrillic-alternativnyj): Likewise.
3899 (ccl-encode-alternativnyj): Don't check the charset
3900 cyrillic-iso8859-5.
3901
3902 2000-07-27 Kenichi Handa <handa@etl.go.jp>
3903
3904 * composite.el (compose-chars-after): Preserve match data.
3905
3906 2000-07-26 Sam Steingold <sds@gnu.org>
3907
3908 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
3909 (ange-ftp-real-file-newer-than-file-p): New function.
3910 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
3911 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
3912
3913 * tooltip.el (tooltip-float-time): Removed (use `float-time').
3914 * midnight.el (midnight-float-time): Ditto.
3915
3916 2000-07-26 Andreas Schwab <schwab@suse.de>
3917
3918 * files.el (normal-backup-enable-predicate): Correct
3919 interpretation of the return value of compare-strings.
3920
3921 2000-07-26 Gerd Moellmann <gerd@gnu.org>
3922
3923 * isearch.el (isearch-resume): New function.
3924 (isearch-done): Add something to command-history to resume
3925 the search.
3926 (isearch-yank-line, isearch-yank-word): Use
3927 buffer-substring-no-properties instead of buffer-substring.
3928
3929 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
3930 of flyspell-mouse-map.
3931
3932 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
3933 duplicate definition.
3934 (makefile-mode): Remove duplicate setting of local-abbrev-table.
3935
3936 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
3937 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
3938
3939 2000-07-25 Sam Steingold <sds@gnu.org>
3940
3941 * net/ange-ftp.el: Get modtime over the net.
3942 (ange-ftp-file-modtime): New function.
3943 (ange-ftp-write-region, ange-ftp-insert-file-contents)
3944 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
3945 Use it.
3946 (ange-ftp-dot-to-slash): New function.
3947 (ange-ftp-fix-name-for-vms): Use it.
3948
3949 * midnight.el (midnight-buffer-display-time): Use
3950 `with-current-buffer'.
3951
3952 2000-07-25 Gerd Moellmann <gerd@gnu.org>
3953
3954 * find-dired.el: Update copyright notice.
3955 (find-dired): Offer to kill a running `find'.
3956
3957 * enriched.el (enriched-face-ans): For a `foreground-color'
3958 property, return '(("x-color" COLOR))' so that COLOR will be
3959 output as a parameter of the x-color annotation. Likewise for the
3960 `background-color' property. In the case of normal face
3961 properties, don't return annotations for unspecified foreground
3962 and background face attributes.
3963
3964 2000-07-25 Kenichi Handa <handa@etl.go.jp>
3965
3966 * language/japan-util.el (japanese-katakana-region): Fix handling
3967 HANKAKU argument.
3968
3969 2000-07-25 Miles Bader <miles@gnu.org>
3970
3971 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
3972 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
3973 constrain-to-field.
3974
3975 2000-07-24 Andrew Innes <andrewi@gnu.org>
3976
3977 * timer.el (timer-activate-when-idle): Add optional parameter
3978 DONT-WAIT. Update docstring.
3979 (run-with-idle-timer): Specify extra parameter to
3980 timer-activate-when-idle, so that timer will be activated
3981 immediately if Emacs is already idle.
3982
3983 * w32-fns.el (w32-using-nt): Fix docstring.
3984
3985 2000-07-24 Dave Love <fx@gnu.org>
3986
3987 * mouse.el (popup-menu): Set last-command-event.
3988 (mouse-major-mode-menu-prefix): Declare.
3989
3990 2000-07-24 Gerd Moellmann <gerd@gnu.org>
3991
3992 * textmodes/flyspell.el: Update to author's version 1.5d.
3993
3994 * progmodes/hideshow.el: Update copyright notice.
3995
3996 * vcursor.el: Set maintainer to FSF, since author cannot
3997 be reached.
3998
3999 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
4000
4001 * info.el (Info-goto-emacs-key-command-node): Leave a space after
4002 the prompt.
4003
4004 * mouse.el (popup-menu): Run the keymap through indirect-function,
4005 in case it was defined with define-prefix-key. If the menu is a
4006 list of keymaps, look up the binding of user's choice in each one
4007 of the keymaps.
4008 (mouse-popup-menubar): If the global and local menu-bar keymaps
4009 don't have a prompt string, create one and insert it into the
4010 keymap. Don't barf if current-local-map returns nil.
4011
4012 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
4013
4014 * dired.el (dired-sort-R-check): Added to allow recursive listing
4015 to be undone.
4016 (dired-sort-other): Use it.
4017
4018 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4019
4020 * Release of cc-mode 5.27
4021
4022 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4023
4024 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
4025 c-beginning-of-statement-1 that caused a bad case of recursion
4026 which could consume a lot of CPU in large classes in languages
4027 that have in-expression classes (i.e. Java and Pike).
4028
4029 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
4030 statements before top level constructs (i.e. case 6 is moved
4031 before case 5 and is now case 4) to catch in-expression
4032 classes in top level expressions correctly.
4033
4034 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4035
4036 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
4037 objc-method-intro. Case 4 removed and case 5I added.
4038
4039 * cc-langs.el (c-append-paragraph-start): New variable used by
4040 c-common-init to get paragraph-start correct.
4041 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
4042 initialize paragraph-start to make it correct both with and
4043 without the javadoc special case.
4044
4045 * cc-mode.el (java-mode): Use c-append-paragraph-start to
4046 initialize paragraph-start for javadoc markup.
4047
4048 * cc-vars.el (c-style-variables-are-local-p): Incompatible
4049 change by defaulting this to t. It's motivated by the
4050 confusing behavior that otherwise arise from the style system
4051 when editing both java and non-java files at the same time
4052 (see the comments about style setting in c-common-init).
4053
4054 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4055
4056 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
4057 similar to the one in c-fill-paragraph to check the fill
4058 prefix from the adaptive fill function for sanity.
4059
4060 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4061
4062 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
4063 defun block.
4064
4065 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4066
4067 * cc-mode.texi Documented the change of cpp-macro.
4068
4069 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4070
4071 * cc-align.el (c-lineup-multi-inher): Handle lines with
4072 leading comma nicely. Extended to handle member initializers
4073 too.
4074
4075 * cc-engine.el: (c-beginning-of-inheritance-list,
4076 c-guess-basic-syntax): Fixed recognition of inheritance lists
4077 when the lines begins with a comma.
4078
4079 * cc-mode.texi: Updated doc for c-lineup-multi-inher.
4080
4081 * cc-vars.el (c-offsets-alist): Changed default for
4082 member-init-cont to c-lineup-multi-inher since it now handles
4083 member initializers and indents better for leading commas.
4084
4085 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4086
4087 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
4088 handling that caused class open lines to be recognized as
4089 statement-conts in some cases.
4090
4091 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
4092 guessed by the adaptive fill function unless point is on the
4093 first line of a block comment.
4094
4095 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
4096 when the buffer ends with a macro continuation char.
4097
4098 * cc-engine.el (c-guess-basic-syntax): Added support for
4099 function definitions as statements in Pike. The first
4100 statement in a lambda block is now labeled defun-block-intro
4101 instead of statement-block-intro.
4102
4103 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
4104 so that the class surrounding point is selected, not the one
4105 innermost in the state.
4106
4107 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
4108 recognition of switch labels having hanging multiline
4109 statements.
4110
4111 * cc-engine.el (c-beginning-of-member-init-list): Broke out
4112 some code in c-guess-basic-syntax to a separate function.
4113 * cc-engine.el (c-just-after-func-arglist-p): Fixed
4114 recognition of member inits with multiple line arglists.
4115 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
4116 member-init-cont when the commas are in funny places.
4117
4118 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4119
4120 * cc-defs.el (c-auto-newline): Removed this macro since it's
4121 not used anymore.
4122
4123 * cc-engine.el (c-looking-at-bos): New helper function.
4124 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
4125 inexpr and toplevel classes apart in Pike.
4126
4127 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
4128 of case 9A.
4129
4130 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
4131 constant, since "class" can introduce an in-expression class
4132 in Pike nowadays.
4133
4134 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4135
4136 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
4137 indentation on cpp-macro lines.
4138
4139 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
4140 a syntax modifier like comment-intro, to make it possible to
4141 get syntactic indentation for preprocessor directives. It's
4142 incompatible wrt to lineup functions on cpp-macro, but it has
4143 no observable effect in the 99.9% common case where cpp-macro
4144 is set to -1000.
4145
4146 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4147
4148 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
4149 member-init-cont when the preceding arglist is several lines.
4150
4151 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4152
4153 * cc-styles.el (c-style-alist): The basic offset for the BSD
4154 style corrected to 8.
4155
4156 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4157
4158 * cc-styles.el (c-style-alist): Adjusted the indentation of
4159 brace list openers in the gnu style.
4160
4161 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4162
4163 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
4164
4165 * cc-cmds.el (c-electric-brace, c-electric-slash,
4166 c-electric-star, c-electric-semi&comma, c-electric-colon,
4167 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
4168 when c-syntactic-indentation is nil.
4169
4170 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
4171 we were left at comments preceding the first statement when
4172 reaching the beginning of the buffer.
4173
4174 * cc-vars.el (c-syntactic-indentation): New variable to turn
4175 off all syntactic indentation.
4176
4177 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4178
4179 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
4180 between the text and the block comment ender when it hangs,
4181 depending on how many there are before the fill.
4182
4183 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4184
4185 * cc-engine.el (c-beginning-of-closest-statement): New helper
4186 function to go back to the closest preceding statement start,
4187 which could be inside a conditional statement.
4188 * cc-engine.el (c-guess-basic-syntax): Use
4189 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
4190
4191 * cc-engine.el (c-guess-basic-syntax): Better handling of
4192 arglist-intro, arglist-cont-nonempty and arglist-close when
4193 the arglist is nested inside parens. Cases 7A, 7C and 7F
4194 changed.
4195
4196 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
4197 up-to-date with javadoc 1.2.
4198
4199 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4200
4201 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
4202 multiline Pike type decls.
4203
4204 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4205
4206 * cc-cmds.el (c-indent-new-comment-line): Always break
4207 multiline comments in multiline mode, regardless of
4208 comment-multi-line.
4209
4210 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4211
4212 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
4213 fully::qualified::names in C++ member init lists. Preamble in
4214 case 5D changed.
4215
4216 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4217
4218 * cc-langs.el (c-common-init): Handling of obsolete variables
4219 moved to c-initialize-cc-mode. More compatible style override
4220 when using global style variables.
4221 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
4222 variables moved here.
4223
4224 * cc-mode.texi: Documented the special behavior of
4225 c-special-indent-hook as a style variable. Don't talk about
4226 doing (c-make-styles-buffer-local t) in a mode hook, since
4227 that's already too late to work right.
4228
4229 * cc-styles.el (c-make-styles-buffer-local): Flag style
4230 variable localness in c-style-variables-are-local-p to make
4231 the compatibility measure in c-common-init work well.
4232
4233 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
4234 longer contain set-from-style.
4235 * cc-styles.el (c-initialize-builtin-style): Don't check for
4236 set-from-style on c-special-indent-hook.
4237 * cc-styles.el (c-copy-tree): Obsolete. The standard function
4238 copy-alist is sufficient now.
4239
4240 * cc-styles.el (c-set-style, c-set-style-1,
4241 c-get-style-variables): Fixes to variable initialization so
4242 that duplicate entries in styles have the same effect
4243 regardless of DONT-OVERRIDE.
4244
4245 * cc-styles.el (c-set-style-2): Fixed bug where the
4246 initialization of inheriting styles failed when the
4247 dont-override flag is set.
4248
4249 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
4250 on this.
4251
4252 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4253
4254 * cc-defs.el (c-forward-comment): Removed the workaround
4255 introduced in 5.38 since it had worse side-effects. If a line
4256 contains the string "//\"", it regarded the // as a comment
4257 start since the \ temporarily doesn't have escape syntax.
4258
4259 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
4260
4261 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
4262 ada-xref.el before ada-prj.el, so that the Project menu is created
4263 when ada-prj tries to add to it.
4264 (ada-activate-keys-for-case): Suppress the characters that are not
4265 part of the Ada syntax. Better compatibility with else-mode
4266 (ada-adjust-case-interactive): When auto-casing is not active,
4267 correctly insert newlines (used to insert only ^M). Prevent the
4268 syntax table from being changed in case of an error
4269 (or '_' becomes part of a word and some commands are confused).
4270 Do nothing if ada-auto-case is nil.
4271 (ada-after-keyword-p): Ignore keywords that are also attributes
4272 (ada-batch-reformat): Update usage comment
4273 (ada-call-from-contextual-menu): New function
4274 (ada-case-read-exceptions): Reinitialize the casing exception list
4275 first to nil first, so that the casing exception file can be
4276 shared.
4277 (ada-check-defun-name): Handles "configure" keyword for gnatdist
4278 files.
4279 (ada-compile-goto-error): Fix regexp used to detect a file:line
4280 anywhere in the error message
4281 (ada-contextual-menu-last-point): New variable
4282 (ada-create-keymap): If the variable delete-key-deletes-forward is
4283 t on XEmacs, it means that DEL should delete one character
4284 forward.
4285 (ada-create-menu): Use :included instead of :visible for XEmacs.
4286 New submenu "Options".
4287 (ada-end-stmt-re): Correctly indent "select ... then abort"
4288 statements.
4289 (ada-fill-comment-paragraph): Correctly delete all leading '--'
4290 even if they don't match ada-fill-comment-prefix Fix handling of
4291 paragraphs on the first or last line of a file.
4292 (ada-format-paramlist): Fix handling of default parameter values.
4293 (ada-get-body-name): New function.
4294 (ada-get-current-indent): Optimized by searchling directly for an
4295 existing generic part or a statement outside of it. Handle
4296 ada-indent-align-comments when indenting comments Replaced some
4297 regexps by testing directly the next character. This results in a
4298 huge speedup on some files. New indentation scheme for renames
4299 statements. Stop looking for the 'while' or 'for' associated with
4300 a 'loop' at the first semicolon encountered. A "return" can also
4301 match an anonymous access subprogram declaration.
4302 (ada-get-indent-noindent): Ignore strings and comments when
4303 looking for the keywords "record" and "private".
4304 (ada-goto-matching-decl-start): When matching "if", make sure we
4305 are not in fact seeing "end if". Ignore "when" statements except
4306 when initial keyword was "begin". Fix handling of nested
4307 procedures. Add a recursive call to this function to skip over
4308 other 'end' statmts. Fix indentation for "when .. => begin"
4309 (ada-in-open-paren-p): Fix indentation for complex boolean
4310 expressions, where 'and then', 'or else' and parenthesis
4311 statements are mixed up.
4312 (ada-in-paramlist-p): Skip comments while searching for the
4313 beginning Fix handling of operator declarations.
4314 (ada-indent-align-comments): New variable
4315 (ada-indent-current): Change the syntax table only in the
4316 protected section, so that we are sure it is restored correctly.
4317 (ada-indent-on-previous-lines): Use ada-use-indent and
4318 ada-with-indent Correctly indent "select ... then"
4319 (ada-indent-region): Slight speedup.
4320 (ada-indent-renames): New variable.
4321 (ada-last-which-function-subprog, ada-last-which-function-line):
4322 New variables
4323 (ada-looking-at-semi-private): Correctly indent the 'private'
4324 keyword when it is the first word in a package declaration.
4325 (ada-loose-case-word): Stop searching if at the end of the buffer.
4326 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
4327 even if point is not initially at the end of the word.
4328 (ada-matching-decl-start-re): Add "when".
4329 (ada-mode): Add support for abbrev-mode, outline-mode and
4330 which-func-mode Override the old find-file.el entry in
4331 ff-special-constructs since it is using the obsolete
4332 ada-spec-suffix variable
4333 (ada-no-auto-case): New function
4334 (ada-scan-paramlist): When parsing the argument type, accept
4335 spaces (as in "X 'Class", generated by Rational Rose).
4336 (ada-other-file-name): No longer loads the other file.
4337 (ada-popup-menu): Save and restore the current buffer and cursor
4338 position before and after displaying the menu.
4339 (ada-search-ignore-complex-boolean): New function.
4340 (ada-uncomment-region): Emacs21 already knows how to delete
4341 comments not starting in the first column.
4342 (ada-use-indent): New variable
4343 (ada-which-function): New function.
4344 (ada-with-indent): New variable
4345 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
4346 can be batch-compiled from the command line.
4347
4348 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
4349 Add to the menu when the file is loaded, not in ada-mode-hook.
4350 Add -toolbar to the default ddd command Switches moved from
4351 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
4352 ada-prj-default-comp-opt
4353 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
4354 Reference Manual to the menu
4355 (ada-check-current): rewritten as a call to ada-compile-current
4356 (ada-compile): Removed.
4357 (ada-compile-application, ada-compile-current, ada-check-current):
4358 Set the compilation-search-path so that compile.el automatically
4359 finds the sources in src_dir. Automatic scrollong of the
4360 compilation buffer. C-uC-cC-c asks for confirmation before
4361 compiling
4362 (ada-compile-current): New parameter, prj-field
4363 (ada-complete-identifier): Load the .ali file before doing
4364 processing
4365 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
4366 conform to gnatmake's behavior.
4367 (ada-find-file-in-dir): New function
4368 (ada-find-references): Set the environment variables for gnatfind
4369 (ada-find-src-file-in-dir): New function.
4370 (ada-first-non-nil): Removed
4371 (ada-gdb-application): Add support for jdb, the java debugger.
4372 (ada-get-ada-file-name): Load the original-file first if not done
4373 yet.
4374 (ada-get-all-references): Handles the new ali syntax (parent types
4375 are found between <>).
4376 (ada-initialize-runtime-library): New function
4377 (ada-mode-hook): Always load a project file when a file is opened,
4378 so that the casing exceptions are correctly read.
4379 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
4380 (ada-parse-prj-file): Use find-file-noselect instead of find-file
4381 to open the project file, since the latter does not work with
4382 speedbar Get default values before loading the prj file, or the
4383 default executable file name is wrong. Use the absolute value of
4384 src_dir to initialize ada-search-directories and
4385 compilation-search-path,... Add the standard runtime library to
4386 the search path for find-file.
4387 (ada-prj-default-debugger): Was missing an opening '{'
4388 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
4389 variables.
4390 (ada-prj-default-gnatmake-opt): New variable
4391 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
4392 buffers, the project file is the default one Save the windows
4393 configuration before displaying the menu.
4394 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
4395 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
4396 ...) regexp-quote identifiers names to support operators +,
4397 -,... in regexps.
4398 (ada-remote): New function.
4399 (ada-run-application): Erase the output buffer before starting the
4400 run Support remote execution of the application. Use
4401 call-process, or the arguments are incorrectly parsed
4402 (ada-set-default-project-file): Reread the content of the active
4403 project file, not the one from the current buffer When a project
4404 file is set as the default project, all directories are
4405 automatically associated with it.
4406 (ada-set-environment): New function
4407 (ada-treat-cmd-string): New special variable ${current}
4408 (ada-treat-cmd-string): Revised. The substitution is now done for
4409 any ${...} substring
4410 (ada-xref-current): If no body was found, compiles the spec
4411 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
4412 compiler to get rid of command line length limitations.
4413 (ada-xref-get-project-field): New function
4414 (ada-xref-project-files): New variable
4415 (ada-xref-runtime-library-specs-path)
4416 (ada-xref-runtime-library-ali-path): New variables
4417 (ada-xref-set-default-prj-values): Default run command now does a
4418 cd to the build directory. New field: main_unit Provide a default
4419 file name even if the current buffer has no prj file.
4420
4421 * ada-prj.el:
4422 Rewritten to show a tabbed-dialog.
4423 (ada-prj-add-ada-menu): Remove the map and name parameters.
4424 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
4425 New function
4426 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
4427 (ada-prj-load-from-file): New function
4428 (ada-prj-save): Always save fields that depend on the current buffer
4429 (ada-prj-show-value): New function
4430
4431 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
4432 Ada mode. This will allow us to display the Ada menu in any buffer
4433 we want (for project items).
4434 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
4435 number of spaces in the header.
4436
4437 2000-07-24 Dave Love <fx@gnu.org>
4438
4439 * ediff-init.el (ediff-region-help-echo): Bind face-help.
4440
4441 2000-07-23 Noah Friedman <friedman@splode.com>
4442
4443 * type-break.el (type-break): perform autosave.
4444 Suggested by Stephen Gildea <gildea@intouchsys.com>.
4445 (type-break-do-query): Cancel query schedule while performing
4446 actual query, to avoid possibility of a second query being made
4447 while first one is already in progress.
4448 (type-break-time-stamp-format): New variable.
4449 (type-break-time-stamp): New function.
4450 (type-break-time-warning): Use it.
4451 (type-break-keystroke-warning): Use it.
4452 (type-break-noninteractive-query): Use it.
4453
4454 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
4455 cookie.
4456 Use add-minor-mode to set minor-mode-alist, if available.
4457 (eldoc-echo-area-use-multiline-p): New user option.
4458 (eldoc-echo-area-multiline-supported-p): New variable.
4459 (eldoc-docstring-format-sym-doc): Use them.
4460 (eldoc-mode): If not using idle timers, append to local post and
4461 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
4462 (eldoc-display-message-no-interference-p): Don't interfere with
4463 edebug.
4464 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
4465 (eldoc-function-arglist): New function.
4466 (eldoc-function-argstring): Use it.
4467
4468 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
4469 auto save directory exists before calling directory-files.
4470
4471 2000-07-23 Dave Love <fx@gnu.org>
4472
4473 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
4474 ^o, ^u.
4475
4476 2000-07-21 Dave Love <fx@gnu.org>
4477
4478 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
4479 now passed to the function. It now works properly.
4480
4481 * smerge-mode.el (smerge-mode-menu): Fill it out.
4482
4483 2000-07-20 Gerd Moellmann <gerd@gnu.org>
4484
4485 * info-look.el (info-lookup): If *info* is shown in another frame
4486 on the same display, select that frame, instead of switching to
4487 the Info buffer in another window of the selected frame.
4488
4489 * simple.el (universal-argument-map): Bind numeric keypad keys
4490 kp-0 to kp-9 and kp-subtract.
4491 (digit-argument): Handle these keys.
4492
4493 2000-07-20 Dave Love <fx@gnu.org>
4494
4495 * net/goto-addr.el (goto-address-fontify): Don't bother with
4496 buffer-modified and read-only stuff -- irrelevant with overlays.
4497 Put an extra property on the overlays and use it to clean up in
4498 case goto-address is re-run.
4499
4500 2000-07-19 Richard M. Stallman <rms@gnu.org>
4501
4502 * timer.el (run-with-idle-timer): Doc fix.
4503
4504 * mail/mail-utils.el (mail-strip-quoted-names):
4505 Handle case where <...> appears inside "...".
4506 Use replace-match to edit the string more simply.
4507 (rmail-dont-reply-to): Cope with an unmatched ".
4508
4509 2000-07-19 Dave Love <fx@gnu.org>
4510
4511 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
4512 implementation.
4513
4514 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
4515 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
4516 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
4517
4518 2000-07-19 Gerd Moellmann <gerd@gnu.org>
4519
4520 * textmodes/refer.el: Correct maintainer's email address.
4521
4522 * progmodes/hideif.el: Correct author's email address.
4523 Fix typo in comment.
4524
4525 * xml.el: New file.
4526
4527 * mail/mailheader.el: Correct author's mail address.
4528
4529 * gnus/parse-time.el: Correct author's mail address.
4530
4531 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
4532
4533 * comint.el (comint-highlight-input, comint-highlight-face):
4534 New user options.
4535 (comint-input-ring-file-name): Change custom type.
4536 (comint-mode-map): Bind mouse-2.
4537 (comint-insert-clicked-input): New function.
4538 (comint-send-input): Handle input highlighting.
4539
4540 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
4541
4542 * mouse.el (popup-menu): New function.
4543 (mouse-major-mode-menu): Use it.
4544
4545 2000-07-18 Dave Love <fx@gnu.org>
4546
4547 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
4548 improvements.
4549
4550 2000-07-18 Gerd Moellmann <gerd@gnu.org>
4551
4552 * faces.el (face-font-selection-order)
4553 (face-font-family-alternatives): Add custom type.
4554
4555 2000-07-18 Dave Love <fx@gnu.org>
4556
4557 * cus-edit.el (custom-variable-reset-saved)
4558 (custom-variable-reset-standard): Remove unused bindings.
4559
4560 * rect.el (open-rectangle-line): Remove unused let.
4561
4562 * hl-line.el (hl-line-highlight): Check hl-line-mode.
4563
4564 2000-07-18 Gerd Moellmann <gerd@gnu.org>
4565
4566 * cdl.el: Fix `Maintainer' keyword.
4567
4568 * play/pong.el: Add author's email address.
4569
4570 2000-07-17 Sam Steingold <sds@gnu.org>
4571
4572 * files.el (insert-directory): Call `split-string' instead of
4573 re-implementing it.
4574
4575 2000-07-18 Gerd Moellmann <gerd@gnu.org>
4576
4577 * mail/vms-pmail.el: Change maintainer to FSF.
4578
4579 * net/goto-addr.el: Change maintainer to FSF.
4580
4581 * recentf.el: Update from author.
4582
4583 * info.el (Info-title-face-alist): Removed.
4584
4585 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
4586
4587 * eshell/eshell.el (eshell): Replace links to eshell.info with
4588 links to eshell, to avoid problems on systems where the manual is
4589 installed as `eshell'.
4590 * eshell/esh-cmd.el (eshell-cmd): Ditto.
4591 * eshell/em-smart.el (eshell-smart): Ditto.
4592 * eshell/em-banner.el (eshell-banner): Ditto.
4593 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
4594
4595 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
4596 same-file check in the MS-DOS version (it does support inodes).
4597
4598 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
4599
4600 * eshell/eshell.el (eshell-directory-name):
4601 Run default directory name through convert-standard-filename.
4602
4603 2000-07-18 Kenichi Handa <handa@etl.go.jp>
4604
4605 * international/mule-cmds.el (select-safe-coding-system):
4606 Fix typo in the comment.
4607
4608 * language/european.el (compound-text):
4609 Force katakana-jisx0201 to be designated to G1.
4610
4611 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
4612 Don't translate some national variant characters of latin-jisx0201.
4613 (x-ctext): Force katakana-jisx0201 to be designated to G1.
4614
4615 * international/kkc.el (kkc-after-update-conversion-functions):
4616 New variable.
4617 (kkc-update-conversion): Run functions in it at the tail.
4618
4619 2000-07-16 John Wiegley <johnw@gnu.org>
4620
4621 * lisp/align.el (align-newline-and-indent):
4622 Adding new function. for auto-aligning blocks of code on RET.
4623 (align-region): Fixed badly formatted minibuffer message.
4624
4625 2000-07-17 Kenichi Handa <handa@etl.go.jp>
4626
4627 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
4628 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
4629 the conversion list at first if appropriate.
4630 (kkc-next): Don't update kkc-next-count here.
4631 (kkc-prev): Don't update kkc-prev-count here.
4632 (kkc-show-conversion-list-update): Fix setting up of conversion
4633 list message.
4634
4635 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
4636
4637 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
4638
4639 2000-07-16 Dave Love <fx@gnu.org>
4640
4641 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
4642 function to be more specific.
4643
4644 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
4645 non-string help-echo.
4646 (widget-types-convert-widget): Defsubst it.
4647 (widget-echo-help): Try to cope with a help-echo function of two
4648 possible sorts.
4649
4650 2000-07-15 Jason Rumney <jasonr@gnu.org>
4651
4652 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
4653 Declare as obsolete.
4654
4655 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
4656
4657 2000-07-14 Gerd Moellmann <gerd@gnu.org>
4658
4659 * hilit-chg.el: Fix typo.
4660
4661 2000-07-14 Dave Love <fx@gnu.org>
4662
4663 * info.el (Info-mode-menu): Fix use of :help, :enable.
4664
4665 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
4666
4667 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
4668
4669 2000-07-13 Dave Love <fx@gnu.org>
4670
4671 * emacs-lisp/easymenu.el: Doc fixes.
4672 (easy-menu-remove): Defalias to ignore.
4673
4674 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
4675 Call throw correctly.
4676
4677 2000-07-13 Gerd Moellmann <gerd@gnu.org>
4678
4679 * faces.el (frame-background-mode): Doc fix.
4680
4681 * simple.el (eval-expression-print-length): Change custom type to
4682 allow entering nil as value.
4683
4684 2000-07-13 Dave Love <fx@gnu.org>
4685
4686 * progmodes/fortran.el (fortran-imenu-generic-expression):
4687 Change definition layout.
4688 (fortran-mode-menu): Reinstate customize entries.
4689
4690 * cus-edit.el (custom-group-menu-create, customize-menu-create):
4691 Use :filter, per old XEmacs code.
4692
4693 2000-07-12 Gerd Moellmann <gerd@gnu.org>
4694
4695 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
4696 event when deciding what to send to the terminal.
4697
4698 2000-07-12 Dave Love <fx@gnu.org>
4699
4700 * cus-start.el: Add optional version as 4th element of specs and
4701 use it for several things new in v21. Remove load-path. Fix type
4702 of line-number-display-limit.
4703
4704 2000-07-11 Dave Love <fx@gnu.org>
4705
4706 * progmodes/fortran.el: Don't require easymenu.
4707 Use repeat counts in various regexps.
4708 (fortran-mode-syntax-table): Defvar directly.
4709 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
4710 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
4711 Use defvar, not defconst.
4712 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
4713 (fortran-mode): Set fortran-comment-line-start-skip,
4714 fortran-comment-line-start-skip, dabbrev-case-fold-search.
4715 (fortran-comment-indent): Use defsubst.
4716 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
4717 Use fortran-comment-indent, not fortran-comment-indent-function.
4718 (fortran-comment-region, fortran-electric-line-number): Simplify.
4719 (fortran-auto-fill): New function.
4720 (fortran-do-auto-fill): Deleted.
4721 (fortran-find-comment-start-skip):
4722 Check for non-null comment-start-skip.
4723 (fortran-auto-fill-mode, fortran-fill-statement):
4724 Use fortran-auto-fill.
4725 (fortran-fill): Use fortran-auto-fill. Check for null
4726 comment-start-skip. Simplify final clause and use end-of-line finally.
4727
4728 * widget.el (widget-plist-member): New alias.
4729
4730 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
4731
4732 * eshell/esh-module.el (toplevel): Reference
4733 byte-compile-current-file only if it is bound.
4734
4735 2000-07-10 Gerd Moellmann <gerd@gnu.org>
4736
4737 * dired.el: Don't require `dired-aux'.
4738
4739 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
4740
4741 * dired-aux.el (dired-show-file-type): New function.
4742 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
4743 (dired-show-file-type): Add autoload.
4744
4745 2000-07-10 Kenichi Handa <handa@etl.go.jp>
4746
4747 * international/mule-diag.el (describe-font): Adjusted for the
4748 change of fontset-info.
4749 (print-fontset): Likewise.
4750
4751 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
4752
4753 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
4754
4755 2000-07-07 Gerd Moellmann <gerd@gnu.org>
4756
4757 * bindings.el: Bind `[delete]' to delete-char.
4758
4759 * dired.el (dired-find-alternate-file): New function.
4760 (dired-mode-map): Bind `a' to dired-find-alternate-file.
4761 (toplevel): Require dired-aux when compiling.
4762 (dired-buffers): Move defvar within file to avoid compiler warning.
4763
4764 * info.el (Info-last-search): Variable removed.
4765 (Info-search-history): New variable.
4766 (Info-search): New Info-search-history.
4767
4768 * battery.el, info-look.el: Change author's mail address.
4769
4770 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
4771
4772 * mail/rmail.el (rmail-clear-headers): Don't throw an error
4773 if rmail-ignored-headers is nil.
4774 (rmail-retry-failure): Bind rmail-ignored-headers and
4775 rmail-displayed-headers to nil.
4776
4777 2000-07-06 Gerd Moellmann <gerd@gnu.org>
4778
4779 * lpr.el (lpr-page-header-switches): Add `-h' switch.
4780 (print-region-1): Don't hard code `-h' here.
4781
4782 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
4783
4784 2000-07-01 Francesco Potorti` <pot@gnu.org>
4785
4786 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
4787 exim can use "your message" instead of "the message".
4788
4789 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
4790
4791 * facemenu.el: Docstrings fixes.
4792 (facemenu-get-face): Don't use internal-find-face.
4793 (facemenu-iterate): Rename arg to match the docstring.
4794
4795 * newcomment.el (uncomment-region): Be more careful when skipping
4796 backwards over `=' not to bump into BOBP.
4797
4798 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
4799
4800 * ediff-diff.el (ediff-wordify): Use syntax table.
4801 * ediff-init.el (ediff-has-face-support-p): Use
4802 ediff-color-display-p.
4803 (ediff-color-display-p): Use display-color-p, changed to defun
4804 from defsubst.
4805 Got rid of special cases for NeXT and OS/2.
4806 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
4807 face.
4808
4809 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
4810
4811 * emacs-lisp/lucid.el: Require CL.
4812 (copy-tree, remprop): Remove, it's provided by CL.
4813 (map-keymap): Define in terms of cl-map-keymap.
4814 (extent-property, set-extent-end-glyph): New functions.
4815
4816 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
4817
4818 2000-07-05 Gerd Moellmann <gerd@gnu.org>
4819
4820 * Makefile.in (DONTCOMPILE): Add comment that the name may
4821 not be changed without changing the make-dist script.
4822
4823 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
4824 (cl-mapc): Use mapc instead of cl-old-mapc.
4825
4826 2000-07-05 Andrew Innes <andrewi@gnu.org>
4827
4828 * makefile.nt: Add support for `bootstrap' and related targets.
4829
4830 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
4831
4832 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
4833 (easy-menu-do-define): Use `menu-item' format.
4834 Handle case where easy-menu-create-menu returns a symbol.
4835 Manually call the potential top-level filter in the function binding.
4836 (easy-menu-filter-return): New arg NAME.
4837 Convert to a keymap if MENU is an XEmacs menu.
4838 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
4839 (easy-menu-converted-items-table, easy-menu-convert-item):
4840 New var and fun to memoize easy-menu-convert-item-1.
4841 (easy-menu-do-add-item): Use it.
4842 (easy-menu-create-menu): Use easy-menu-convert-item.
4843 Wrap easy-menu-filter-return around any :filter specification.
4844 Don't convert the menu if a filter was specified.
4845 Tell easy-menu-make-symbol not to check for MENU being an expression.
4846 (easy-menu-make-symbol): New arg NOEXP.
4847
4848 2000-07-05 Gerd Moellmann <gerd@gnu.org>
4849
4850 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
4851 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
4852 (eval-defun): If called with prefix arg, instrument code for
4853 Edebug.
4854
4855 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
4856 similar to that of eval-defun.
4857
4858 2000-07-04 Dave Love <fx@gnu.org>
4859
4860 * hl-line.el (hl-line-overlay): Make it permanent-local.
4861
4862 * calendar/todo-mode.el: Replaced with a working version, based on
4863 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
4864
4865 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
4866
4867 * paths.el (prune-directory-list): New function.
4868 (Info-default-directory-list): Rewritten to more methodically
4869 enumerate a big list of possible info directories (based on the
4870 list used by the standalone info reader).
4871
4872 * info.el (info-initialize): Use prune-directory-list to remove
4873 non-existent directories from Info-directory-list.
4874
4875 * paths.el (Info-default-directory-list): Try a list of possible
4876 info-directories instead of a single one. Add the possible
4877 info directory "/usr/share/info".
4878
4879 * woman.el (woman-man.conf-path): Explicitly include the debian
4880 man-db config file "/etc/manpath.config".
4881 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
4882 are present in `manpath.config'.
4883 (woman-manpath): Include "/usr/share/man".
4884
4885 2000-07-03 Gerd Moellmann <gerd@gnu.org>
4886
4887 * frame.el (blink-cursor-mode): Don't hide cursor initially.
4888
4889 * startup.el (command-line): Initialize blink-cursor based
4890 on window-system.
4891
4892 * frame.el (blink-cursor): Default to nil if not running under
4893 a window-system.
4894
4895 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
4896 (face-x-resources): Remove duplicate entry for :font.
4897
4898 * textmodes/refer.el (refer-find-entry-internal): Use some-window
4899 instead of cycling through windows with next-window.
4900
4901 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
4902 of cycling through windows with next-window.
4903
4904 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
4905 of cycling through windows with next-window.
4906
4907 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
4908 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
4909 instead of cycling through windows with next-window.
4910
4911 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
4912 instead of cycling through windows with next-window.
4913
4914 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
4915 of cycling through windows with next-window.
4916
4917 * terminal.el (te-process-output): Use walk-windows instead of
4918 cycling through windows with next-window.
4919
4920 * server.el (server-switch-buffer): Use some-window instead of
4921 cycling through windows with next-window.
4922
4923 * window.el (some-window): New function.
4924 (walk-windows): Remove reference to walk-windows-start.
4925
4926 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
4927
4928 2000-07-03 Richard Stallman <rms@gnu.org>
4929
4930 * window.el (walk-windows): Guarantee termination by keeping a list
4931 of all the windows already handled.
4932
4933 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
4934
4935 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
4936 window-system.
4937
4938 * man.el (Man-notify-when-ready): Don't use window-system. If
4939 Man-notify-method is newframe, and the display is not
4940 multi-frame, select the frame created for the man page.
4941 (Man-init-defvars): Doc fix.
4942
4943 2000-06-28 Gerd Moellmann <gerd@gnu.org>
4944
4945 * faces.el (region): Change background color for light background.
4946
4947 * ediff-wind.el (ediff-setup-control-frame): Remove :box
4948 attribute from mode-line face of Ediff control frame.
4949
4950 * replace.el (query-replace-map): Bind `e' like `E'.
4951
4952 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
4953
4954 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
4955 Change name to "Select All".
4956
4957 * dos-fns.el (convert-standard-filename): Fix last change.
4958
4959 2000-06-27 Gerd Moellmann <gerd@gnu.org>
4960
4961 * help.el (describe-variable): Don't insert a second `'s' in front
4962 of the string `value is shown below'. Since the syntax-table is
4963 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
4964 an existing `'s', so that this won't be deleted.
4965
4966 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
4967 * pcmpl-unix.el: New files.
4968
4969 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
4970
4971 * wid-edit.el (widget-member): Use the new plist-member.
4972
4973 2000-06-26 Gerd Moellmann <gerd@gnu.org>
4974
4975 * replace.el (perform-replace): Undo change of 2000-04-04.
4976 Instead, move backward 1 character at the end of the loop when
4977 necessary.
4978
4979 * faces.el (fringe): Change face for different backgrounds.
4980
4981 * eshell/esh-module.el (toplevel): Load defgroup's differently;
4982 patch from John.
4983
4984 * eshell/*.el: Change spelling of the Free Software Foundation.
4985
4986 * eshell/esh-toggle.el: Removed.
4987
4988 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
4989
4990 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
4991 interactively.
4992
4993 2000-06-26 Alex Schroeder <alex@gnu.org>
4994
4995 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
4996 `define-key'; instead of checking `(emacs-version)' check for
4997 `set-keymap-parent' and `set-keymap-name' directly. Add entries
4998 for `;' and `o' which might be electric.
4999
5000 (sql-electric-stuff): New user option.
5001 (sql-magic-go): New function which uses `sql-electric-stuff'.
5002 (sql-magic-semicolon): New function which uses
5003 `sql-electric-stuff'.
5004
5005 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
5006 is not fboundp.
5007
5008 (sql-oracle-options): New variable.
5009 (sql-oracle): Use it.
5010
5011 (sql-imenu-generic-expression): Doc change.
5012 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
5013 is used.
5014
5015 (sql-informix): Added command line parameter "-" to force
5016 sql-informix-program to use stdout.
5017
5018 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
5019
5020 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
5021 (cp864-decode-table): Doc fix.
5022 (cp720-decode-table): New variable, supports the Arabic OEM
5023 codepage used by Windows.
5024 (cp737-decode-table): New, Greek OEM codepage used by Windows.
5025
5026 2000-06-23 Dave Love <fx@gnu.org>
5027
5028 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
5029 (font-lock-fontify-anchored-keywords): Use
5030 line-beginning-position.
5031 (global-font-lock-mode): Use mapc.
5032
5033 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
5034
5035 * eshell/esh-module.el: Require CL when compiling.
5036
5037 2000-06-23 Gerd Moellmann <gerd@gnu.org>
5038
5039 * comint.el (comint-substitute-in-file-name): Call replace-match
5040 with second and third arg t.
5041
5042 * cus-edit.el (custom-button-face, custom-button-pressed-face):
5043 Specify foreground color.
5044
5045 * faces.el (tool-bar, mode-line, header-line): Specify foreground
5046 color.
5047
5048 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
5049
5050 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
5051 cddr instead of cdddr.
5052
5053 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
5054 instead of copy-list.
5055
5056 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
5057 of copy-list.
5058
5059 * subdirs.el: Add eshell subdirectory.
5060
5061 * eshell: New subdirectory containing the Eshell package.
5062
5063 * pcomplete.el: New file.
5064
5065 2000-06-23 Paul Eggert <eggert@twinsun.com>
5066
5067 * mail/mailpost.el (post-mail-send-it): Make sure file has
5068 proper permissions from birth.
5069
5070 * files.el (basic-save-buffer-2): When temporarily setting
5071 file modes, set them to current modes plus 0200, not to 0777.
5072
5073 * emerge.el (emerge-make-temp-file): Make sure file has proper
5074 permissions from birth.
5075
5076 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
5077
5078 * files.el (make-backup-file-name-1): On DOS/Windows, run the
5079 backup file name through convert-standard-filename.
5080
5081 * dos-fns.el (convert-standard-filename): Convert leading
5082 directories as well. When long file names are supported, convert
5083 characters that are invalid in Windows file names.
5084
5085 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5086
5087 * ps-print.el: Fix bug: if ^L is the very first buffer character,
5088 ps-print crashes. New feature: page selection for printing. Create
5089 raw-text-unix coding system for XEmacs. Doc fix.
5090 (ps-print-version): New version number (5.2.3).
5091 (ps-plot-region): Bug fix.
5092 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
5093 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
5094 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
5095 funs.
5096 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
5097 (ps-last-page): New vars.
5098
5099 2000-06-21 Gerd Moellmann <gerd@gnu.org>
5100
5101 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
5102 empty option string.
5103
5104 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
5105
5106 * man.el (man): Doc fix.
5107
5108 2000-06-21 Kenichi Handa <handa@etl.go.jp>
5109
5110 * international/mule-cmds.el (set-language-info-alist): Docstring
5111 fixed.
5112
5113 2000-06-20 Gerd Moellmann <gerd@gnu.org>
5114
5115 * version.el (emacs-version): Use ISO date format.
5116
5117 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
5118 instead of `M-backspace'.
5119
5120 * simple.el (turn-off-auto-fill): New function.
5121
5122 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
5123
5124 * jit-lock.el (with-buffer-prepared-for-jit-lock):
5125 Renamed from with-buffer-prepared-for-font-lock and use
5126 inhibit-modification-hooks rather than setting *-change-functions.
5127 Update all functions to use the new name.
5128 (jit-lock-first-unfontify-pos): New semantics (and doc).
5129 (jit-lock-mode): Make non-interactive.
5130 Don't automatically turn on font-lock.
5131 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
5132 Always use jit-lock-after-change.
5133 Remove and restore font-lock-after-change-function.
5134 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
5135 (jit-lock-after-unfontify-buffer): Remove.
5136 (jit-lock-stealth-fontify):
5137 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
5138 (jit-lock-after-change): Set the `fontified' text-prop to nil.
5139
5140 2000-06-20 Sam Steingold <sds@gnu.org>
5141
5142 * emacs-lisp/cl-indent.el (toplevel): Indent
5143 `print-unreadable-object' properly. Untabify.
5144
5145 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
5146
5147 * textmodes/reftex.el (reftex-find-citation-regexp-format):
5148 Support for bibentry.
5149 (reftex-compile-variables): Fixed problem with end of section-re.
5150
5151 * texmodes/reftex-dcr.el (reftex-view-crossref,
5152 reftex-view-crossref-from-bibtex):
5153 Deal with changed `reftex-find-citation-regexp-format'.
5154 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
5155 Replaced `remprop' with `put'.
5156 (reftex-view-crossref, reftex-view-crossref-when-idle):
5157 Support for bibentry.
5158
5159 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
5160 New entry for bibentry package.
5161
5162 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
5163 Regexp also matches "\nobibliography".
5164
5165 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
5166 Call `reftex-ensure-write-access' before doing anything.
5167 (reftex-ensure-write-access): New function.
5168
5169 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
5170
5171 * progmodes/idlwave.el: File re-installed (update to version 4.2)
5172
5173 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
5174
5175 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
5176
5177 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
5178
5179
5180 2000-06-20 Dave Love <fx@gnu.org>
5181
5182 * faces.el (frame-background-mode): Use set-default, not set, in
5183 setter.
5184 (frame-update-faces, frame-update-face-colors): Define with
5185 defalias.
5186
5187 * enriched.el (enriched-decode-foreground)
5188 (enriched-decode-background): Don't use internal-find-face.
5189
5190 * apropos.el: Doc fixes.
5191
5192 * cus-edit.el (customize-changed-options): Check arg.
5193 (customize-version-lessp): Don't require decimal point.
5194
5195 * custom.el (defcustom, defgroup): Doc fix.
5196
5197 * newcomment.el (comment) <defgroup>: Add :version.
5198 (comment-multi-line): Doc fix.
5199
5200 * emulation/mlsupport.el (define-hooked-local-abbrev,
5201 define-hooked-global-abbrev): Fix, using define-abbrev.
5202
5203 2000-06-19 Gerd Moellmann <gerd@gnu.org>
5204
5205 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
5206 the whole buffer.
5207
5208 2000-06-19 Dave Love <fx@gnu.org>
5209
5210 * menu-bar.el (menu-bar-options-save): New function.
5211 (menu-bar-options-menu): Use it.
5212 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
5213 Simplify.
5214
5215 2000-06-19 Andreas Schwab <schwab@suse.de>
5216
5217 * progmodes/etags.el (tags-query-replace): Put new parameters
5218 START and END at the end, for backward compatibility.
5219
5220 2000-06-19 Kenichi Handa <handa@etl.go.jp>
5221
5222 * international/codepage.el:
5223 (cp-coding-system-for-codepage-1): Delete special codes for
5224 generating xxx-dos coding system because now a CCL based coding
5225 system can handle EOL conversion by default.
5226
5227 * international/mule.el (make-coding-system): Generate subsidiary
5228 coding systems for EOL handling variants even for a CCL based
5229 coding system.
5230
5231 2000-06-19 Kenichi Handa <handa@etl.go.jp>
5232
5233 * international/isearch-x.el (isearch-minibuffer-input-method)
5234 (isearch-minibuffer-input-method-function): These variables
5235 deleted.
5236 (isearch-with-input-method): Don't use the above variables.
5237 (isearch-process-search-multibyte-characters): Likewise. Call
5238 read-string with the arg INHERIT-INPUT-METHOD t.
5239
5240 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
5241
5242 * font-lock.el (font-lock-after-fontify-buffer)
5243 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
5244
5245 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
5246 Use consistent make-local-variable style for font-lock-fontified.
5247 (jit-lock-fontify-buffer):
5248 Don't bother checking for font-lock-mode and jit-lock-mode.
5249
5250 * time.el: Remove trailing ^M that prevent CVS-merging.
5251
5252 2000-06-16 Gerd Moellmann <gerd@gnu.org>
5253
5254 * Makefile.in (distclean): New target.
5255
5256 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
5257
5258 * Makefile.in (srcdir): Define for update-subdirs.
5259
5260 2000-06-16 Gerd Moellmann <gerd@gnu.org>
5261
5262 * find-lisp.el: New file.
5263
5264 2000-06-16 Andrew Innes <andrewi@gnu.org>
5265
5266 * time.el (display-time-mail-function): New variable, to allow
5267 external packages to indicate when new mail is available.
5268 (display-time-update): Use it.
5269
5270 2000-06-16 Kenichi Handa <handa@etl.go.jp>
5271
5272 * international/mule.el (mule-version): Change version name to
5273 SAKAKI. AOI has already been used by Meadow.
5274
5275 * international/quail.el (quail-show-guidance-buf): To find the
5276 bottom window (but minibuffer), pay attention to the height of
5277 minibuffer.
5278
5279 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
5280
5281 * arc-mode.el (archive-mode-map): Use the new menu-item format for
5282 menu-bar menus. Add help strings. Don't remove the Edit menu
5283 from the menu bar, as the menu bar has enough space now.
5284
5285 * Makefile.in (SHELL): Make sure /bin/sh is used.
5286
5287 * woman.el (woman-man-buffer): Fix bold and underlined CJK
5288 characters, which use series of two ^H characters instead of one.
5289
5290 2000-06-15 Gerd Moellmann <gerd@gnu.org>
5291
5292 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
5293 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
5294 functions.
5295 (Info-find-node-2): Try a case-sensitive search first, then
5296 do a case-insensitive search.
5297
5298 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
5299 tutorials.
5300
5301 * complete.el (PC-env-vars-alist): New variable.
5302 (PC-complete-as-file-name): New function.
5303 (partial-completion-mode): Initialize PC-env-vars-alist from
5304 process-environment.
5305 (PC-do-completion): Handle completion of env vars.
5306
5307 * info.el (Info-set-mode-line): Show file name in mode line,
5308 use `*Info*' instead of `Info:'.
5309
5310 * startup.el (command-line-1): Change copyright messages to year
5311 2000.
5312
5313 2000-06-15 Dave Love <fx@gnu.org>
5314
5315 * net/goto-addr.el (goto-address-fontify): Use keymap property,
5316 not local-map.
5317
5318 2000-06-15 Kenichi Handa <handa@etl.go.jp>
5319
5320 * international/mule.el (set-buffer-file-coding-system): Almost
5321 rewritten to handle `undecided' as no-op.
5322
5323 2000-06-14 Gerd Moellmann <gerd@gnu.org>
5324
5325 * Makefile.in: New file.
5326
5327 * Makefile: Removed.
5328
5329 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
5330 (goto-address-highlight-keymap): Bind C-c RET.
5331
5332 2000-06-14 Kenichi Handa <handa@etl.go.jp>
5333
5334 * mail/sendmail.el (sendmail-send-it): The temporary buffer
5335 inherits buffer-file-coding-system of the current buffer.
5336
5337 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
5338 0. Give correct argument to set-auto-coding-function.
5339 (tar-expunge): For goto-char, use (point-min), not 0.
5340 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
5341 (tar-subfile-save-buffer): Likewize.
5342
5343 * international/mule.el
5344 (after-insert-file-set-buffer-file-coding-system): Call
5345 set-buffer-file-coding-system with the arg FORCE t.
5346
5347 2000-06-13 Gerd Moellmann <gerd@gnu.org>
5348
5349 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
5350 nil. Contemporary sendmails issue an X-Authentication-Warning if
5351 the sender is set with `-f'.
5352
5353 2000-06-13 Dave Love <fx@gnu.org>
5354
5355 * help.el (describe-function-1): Kluge around cases of functions
5356 fset to subrs whose doc doesn't match their symbol-name.
5357
5358 * image.el (insert-image): Default STRING to a space.
5359
5360 * info.el Doc fixes.
5361 (Info-build-node-completions): Match Ref tags.
5362
5363 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
5364
5365 * frame.el (display-multi-frame-p, display-multi-font-p): New
5366 defaliases for display-graphic-p.
5367
5368 * hl-line.el: Fixed a typo in commentary.
5369
5370 2000-06-13 Kenichi Handa <handa@etl.go.jp>
5371
5372 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
5373 fixed.
5374
5375 2000-06-12 Dave Love <fx@gnu.org>
5376
5377 * image.el (insert-image): Save a little consing.
5378
5379 2000-06-12 Kenichi Handa <handa@etl.go.jp>
5380
5381 * language/tibet-util.el: Convert all tibetan-1-column characters
5382 to the corresponding tibetan characters.
5383 (tibetan-add-components): Delete code for the special treatment of
5384 'a chung.
5385
5386 * language/tibetan.el (tibetan-composable-pattern): Fix previous
5387 change.
5388 (tibetan-vowel-transcription-alist): More rules added.
5389 (tibetan-composite-vowel-alist): New variable.
5390 (tibetan-precomposition-rule-alist): More rules added.
5391
5392 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
5393
5394 * startup.el (command-line): Only call menu-bar-mode if interactive.
5395
5396 * thingatpt.el (toplevel symbol-properties):
5397 * textmodes/makeinfo.el (makeinfo-compile):
5398 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
5399 * progmodes/hideif.el (hif-compress-define-list)
5400 (hide-ifdef-use-define-alist):
5401 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
5402 (ange-ftp-vms-add-file-entry):
5403 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
5404 * man.el (Man-build-man-command):
5405 * mail/rnewspost.el (news-reply-header-hook):
5406 * info.el (Info-insert-dir):
5407 * emulation/mlconvert.el (backward-word, forward-word, setq):
5408 * emacs-lisp/gulp.el (gulp-send-requests):
5409 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
5410 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
5411 (byte-optimize-apply, end of file):
5412 * emacs-lisp/advice.el (ad-advice-class-completion-table)
5413 (ad-make-freeze-definition):
5414 * startup.el (command-line, command-line-1): Don't quote lambdas.
5415
5416 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
5417 (cvs-cleanup-removed): New function.
5418 (cvs-cleanup-functions): New var.
5419 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
5420 some flexibility in specifying additional entries to auto-cleanup.
5421 (cvs-quickdir): New function.
5422 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
5423 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
5424 (cvs-mode-find-file): Check that we are on a filename or dirname
5425 when invoked through a mouse-click.
5426 (cvs-full-path): Remove.
5427 (cvs-dired-action): Re-introduced.
5428 (cvs-dired-noselect): Use it.
5429 (vc-post-command-functions): use this new hook if available.
5430
5431 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
5432 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
5433 (cvs-filename-map, cvs-dirname-map): Remove.
5434 (cvs-default-action): Remove.
5435 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
5436 if the arg is really a keymap.
5437 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
5438 Don't hardcode the mapping from state (aka type) to face, but check
5439 the var cvs-fi-<type>-face instead.
5440 (cvs-fileinfo-from-entries): New function.
5441
5442 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
5443 Docstring fix.
5444 (cvs-find-file-and-jump): Change default to be safer.
5445 (cvs-mode-diff-map): Define it as a function as well.
5446 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
5447 Bind mouse-2 in this global map rather than with text-properties.
5448
5449 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
5450 file to resolve the ambiguity between C(conflict) and C(need-merge).
5451
5452 2000-06-12 Kenichi Handa <handa@etl.go.jp>
5453
5454 * international/mule.el (set-buffer-file-coding-system): If
5455 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
5456 unconditionally.
5457
5458 2000-06-12 Dave Love <fx@gnu.org>
5459
5460 * wid-edit.el (widget-specify-button): Really suppress the face if
5461 required.
5462
5463 2000-06-11 Gerd Moellmann <gerd@gnu.org>
5464
5465 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
5466
5467 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
5468
5469 * imenu.el (imenu-generic-expression): Docstring fix.
5470
5471 * composite.el (composition-function-table): Move the `put'
5472 below the autoload cookie so we can load the file before loaddefs.
5473
5474 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
5475
5476 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
5477 Handle easy-mmode-define-global-mode.
5478 For complex macros like define-minor-mode that can generate
5479 several autoload entries, try to autoload entries in the
5480 macroexpanded code.
5481
5482 * emacs-lisp/easy-mmode.el (define-minor-mode):
5483 If KEYMAP is a symbol, just use it.
5484 Use byte-compile-current-file and load-file-name to infer the
5485 proper :require to pass to defcustom.
5486 Wrap the hook var into `progn' so as not to autoload it.
5487 Add a :autoload-end cookie.
5488 Be more careful about the evaluation of KEYMAP.
5489 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
5490 (define-derived-mode): Move define-abbrev-table outside of defvar.
5491
5492 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
5493
5494 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
5495 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
5496 (backup-compiled-files): Ignore errors during `tar'.
5497 (bootstrap): Make autoloads before elc files.
5498
5499 2000-06-10 Kenichi Handa <handa@etl.go.jp>
5500
5501 * international/mule.el (set-buffer-file-coding-system): If one of
5502 undecided-XXX is specified, change only EOL conversion.
5503
5504 * international/mule-conf.el (unix): New alias for the coding
5505 system undecided-unix.
5506
5507 2000-06-09 Dave Love <fx@gnu.org>
5508
5509 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
5510
5511 * progmodes/executable.el: Byte compile dynamic.
5512 (executable-insert): Change custom type.
5513 (executable-find): Add autoload cookie.
5514 (executable-make-buffer-file-executable-if-script-p): New
5515 function. After Noah Friedman.
5516
5517 * files.el (after-save-hook): Customize, with
5518 executable-make-buffer-file-executable-if-script-p as an option.
5519
5520 2000-06-09 Kenichi Handa <handa@etl.go.jp>
5521
5522 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
5523 "tib24p-mule.bdf" for Tibetan.
5524
5525 * composite.el (decompose-composite-char): Declare it as obsolete.
5526
5527 * man.el (Man-fontify-manpage): Pay attention to underline and
5528 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
5529
5530 2000-06-08 Gerd Moellmann <gerd@gnu.org>
5531
5532 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
5533 Set maintainer to FSF since author isn't reachable.
5534
5535 2000-06-08 Dave Love <fx@gnu.org>
5536
5537 * international/mule-cmds.el (select-safe-coding-system): If
5538 DEFAULT-CODING-SYSTEM is not specified, also check the most
5539 preferred coding-system if buffer-file-coding-system is
5540 `undecided'. From Handa.
5541
5542 2000-06-08 Kenichi Handa <handa@etl.go.jp>
5543
5544 * international/mule.el
5545 (after-insert-file-set-buffer-file-coding-system): If the buffer
5546 size is greater than INSERTED, judget that we are not visiting.
5547
5548 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
5549
5550 * whitespace.el (defgroup whitespace): Comment out `:version'.
5551 XEmacs 20.4 has problems defining the group with this present.
5552 We'll have this commented out till get resolve the problem.
5553
5554 2000-06-07 Gerd Moellmann <gerd@gnu.org>
5555
5556 * align.el: Update from author.
5557
5558 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
5559
5560 * apropos.el (apropos-mode-hook): New user variable.
5561 (apropos-mode): Run apropos-mode-hook.
5562
5563 2000-06-07 David Ponce <david@dponce.com>
5564
5565 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
5566 commands. Require `wid-edit' at run-time.
5567
5568 2000-06-07 David Ponce <david@dponce.com>
5569
5570 * recentf.el: Added some "Commentary".
5571 (recentf-open-more-files, recentf-edit-list): Minor changes to
5572 move the point at the top of the file list. This behaviour is
5573 consistent with the menu one when the list contains a lot of
5574 files.
5575 (recentf-cleanup): Now displays the number of items removed from
5576 the list.
5577 (recentf-relative-filter) New menu filter to show filenames
5578 relative to `default-directory'.
5579
5580 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5581
5582 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
5583 with/without giving an error if PostScript printer doesn't have this
5584 kind of page size. Zebra Stripe continues or restarts on next page.
5585 Manual/automatic paper feeding. Switch or not the header.
5586 (ps-print-version): New version number (5.2.2).
5587 (ps-windows-system): Include emx as a Windows system.
5588 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
5589 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
5590 (ps-background-text): Code fix.
5591 (ps-error-handler-message, ps-user-defined-prologue)
5592 (ps-print-prologue-header, ps-printer-name)
5593 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
5594 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
5595 (ps-use-face-background): Customization fix.
5596 (ps-n-up-database): Data fix.
5597 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
5598 (ps-switch-header): New vars.
5599 (ps-xemacs-color-name, ps-face-foreground-name)
5600 (ps-face-background-name, ps-boolean-constant): New funs.
5601
5602 2000-06-07 Dave Love <fx@gnu.org>
5603
5604 * allout.el: New version from Manheimer.
5605
5606 2000-06-07 Kenichi Handa <handa@etl.go.jp>
5607
5608 * textmodes/fill.el (fill-find-break-point): Check the validity of
5609 charset.
5610
5611 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
5612
5613 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
5614 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
5615 Call display-color-p and display-mouse-p instead of looking at
5616 window-system.
5617
5618 2000-06-06 Dave Love <fx@gnu.org>
5619
5620 * image.el (find-image): Doc fix. Return nil if image not found.
5621 (put-image, insert-image): Make STRING arg optional.
5622
5623 2000-06-06 Kenichi Handa <handa@etl.go.jp>
5624
5625 * language/vietnamese.el: Remove eval-when-compile.
5626 (viet-viscii-nonascii-translation-table): Define it as a
5627 translation table made from viet-viscii-decode-table.
5628 (viet-viscii-encode-table): Define it as a translation table made
5629 from the reverse map of above.
5630 (viet-vscii-nonascii-translation-table): Define it as a
5631 translation table made from viet-vscii-decode-table.
5632 (viet-vscii-encode-table): Define it as a translation table made
5633 from the reverse map of above.
5634 (ccl-decode-viscii): Use translate-character.
5635 (ccl-encode-viscii, ccl-encode-viscii-font)
5636 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
5637 Likewize.
5638
5639 * language/cyrillic.el: Remove eval-when-compile.
5640 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
5641 translation table made from cyrillic-koi8-r-decode-table.
5642 (cyrillic-koi8-r-encode-table): Define it as a translation table
5643 made from the reverse map of above.
5644 (ccl-decode-koi8): Use translate-character.
5645 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
5646 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
5647 a translation table made from cyrillic-alternativnyj-decode-table.
5648 (cyrillic-alternativnyj-encode-table): Define it as a translation
5649 table made from the reverse map of above.
5650 (ccl-decode-alternativnyj): Use translate-character.
5651 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
5652 Likewize
5653
5654 * international/mule-diag.el (non-iso-charset-alist): Specify
5655 translation table symbol instead of translation table itself.
5656 (list-block-of-chars): CHARSET may be a translation table symbol.
5657
5658 * international/mule.el (make-coding-system): If CODING-SYSTEM
5659 already exists, override it.
5660
5661 * international/fontset.el: Use family `proportional' for Tibetan
5662 fonts.
5663
5664 * international/ccl.el (ccl-compile-translate-character): Don't
5665 check if Rrr has property translation-table.
5666 (ccl-compile-map-multiple): Modified to avoid compiler warning.
5667
5668 2000-06-05 Gerd Moellmann <gerd@gnu.org>
5669
5670 * info.el: Bind case-fold-search to t when searching in case
5671 a user sets it to nil in a hook.
5672
5673 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
5674
5675 * autoarg.el (autoarg-mode, autoarg-kp-mode):
5676 * hl-line.el (hl-line-mode): Use the new :global key argument.
5677
5678 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
5679 (tar-clip-time-string): Prepend a space.
5680 (tar-grind-file-mode): Construct a string rather than modifying one.
5681 (tar-header-block-summarize): Fix docstring.
5682 Use `format' rather than an error-prone set of copy-loops.
5683
5684 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
5685 (diff-goto-source, diff-unified->context, diff-context->unified)
5686 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
5687 understand the format output by the `-p' argument to diff.
5688
5689 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
5690 (sh-re-done): Use defconst.
5691 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
5692 (sh-help-string-for-variable, sh-guess-basic-offset):
5693 Don't quote lambdas.
5694 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
5695 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
5696
5697 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
5698 (mh-letter-mode): Derive from text-mode.
5699 This implicitly means that it now calls kill-all-local-variables.
5700 Also remove the Emacs-18 compatibility code.
5701
5702 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
5703 Make use of symbol-property doc-string-elt.
5704 Use memq rather than a sequence of eq.
5705 (doc-string-elt): Fix the wrong or missing previously unused values.
5706 (autoload-print-form): New function extracted from
5707 generate-file-autoloads to allow recursion when handling progn
5708 so that defvar's and defun's docstrings are properly printed.
5709 (generate-file-autoloads): Use it.
5710
5711 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
5712 Use find-file-hooks in the minor-mode function.
5713 Be careful not to loop indefinitely in the post-command-hook function.
5714
5715 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
5716
5717 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
5718 tty's.
5719 * ediff-diff.el (ediff-exec-process): Use --binary for fine
5720 differences whenever appropriate.
5721 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
5722 * viper.el (find-file, find-file-other-window): Get viper to do
5723 wildcards.
5724
5725 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
5726
5727 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
5728 (jit-lock-fontify-buffer): New function for JIT refontification.
5729 (jit-lock-mode): Fix docstring.
5730 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
5731 Remove jit-lock-after-change from the _local_ hook.
5732 (jit-lock-function-1): Fix docstring.
5733
5734 * info.el (Info-on-current-buffer): Initialize info.
5735
5736 * newcomment.el (comment-indent): Ignore comment-indent-hook.
5737
5738 * progmodes/tcl.el (tcl-indent-for-comment):
5739 Ignore comment-indent-hook.
5740
5741 * emacs-lisp/easy-mmode.el: Require CL during compilation.
5742 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
5743 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
5744 and improve to use the lighter to guess the capitalization.
5745 (define-minor-mode): Inline code from easy-mmode-define-toggle.
5746 Add keyword arguments to specify global-ness or the custom group.
5747 Add local-map and help-echo properties to the lighter.
5748 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
5749 (easy-mmode-define-global-mode): New macro.
5750
5751 2000-06-02 Dave Love <fx@gnu.org>
5752
5753 * wid-edit.el: byte-compile-dynamic since we typically don't use
5754 all the widgets. Don't require cl or widget. Remove
5755 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
5756 (widget-read-event): Removed. Callers changed to use read-event.
5757 (widget-button-release-event-p): Renamed from
5758 button-release-event-p.
5759 (widget-field-add-space, widget-field-use-before-change):
5760 Uncustomize.
5761 (widget-specify-field): Use keymap property, not local-map.
5762 (widget-specify-button): Obey :suppress-face.
5763 (widget-specify-insert): Use modern backquote syntax.
5764 (widget-image-directory): Renamed from widget-glyph-directory.
5765 (widget-image-enable): Renamed from widget-glyph-enable.
5766 (widget-image-find): Replaces widget-glyph-find.
5767 (widget-button-pressed-face): Move defvar.
5768 (widget-image-insert): Replaces widget-glyph-insert.
5769 (widget-convert): Use keywordp.
5770 (widget-leave-text, widget-children-value-delete): Use mapc.
5771 (widget-keymap): Remove XEmacs stuff.
5772 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
5773 (widget-button-click): Don't set point at the click, but re-centre
5774 if we scroll out of window. Rewritten for images v. glyphs &c.
5775 (widget-tabable-at): Use POS arg, not point.
5776 (widget-beginning-of-line, widget-end-of-line)
5777 (widget-item-value-create, widget-sublist, widget-princ-to-string)
5778 (widget-sexp-prompt-value, widget-echo-help): Simplify.
5779 (widget-default-create): Use widget-image-insert; some rewriting.
5780 (widget-visibility-value-create)
5781 (widget-push-button-value-create, widget-toggle-value-create): Use
5782 widget-image-insert.
5783 (checkbox): Create on and off images dynamically.
5784 (documentation-link): Change :help-echo.
5785 (widget-documentation-link-echo-help): Remove.
5786
5787 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
5788
5789 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
5790
5791 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
5792 (easy-mmode-define-toggle, define-minor-mode): Use it.
5793 (easy-mmode-define-keymap): Docstring fix.
5794 (define-derived-mode): Default PARENT to fundamental-mode.
5795 Add the derived-mode-parent symbol-property.
5796 (easy-mmode-derived-mode-p): New function.
5797
5798 2000-06-02 Dave Love <fx@gnu.org>
5799
5800 * files.el (convert-standard-filename): Doc fix.
5801 (normal-backup-enable-predicate): New function.
5802 (backup-enable-predicate): Use it to replace the lambda form.
5803
5804 * calendar/todo-mode.el: [This needs more work on the outline
5805 stuff.] Doc fixes.
5806 (todo) <defgroup>: Add :version.
5807 (todo-add-category): Don't use pushnew.
5808 (todo-cmd-raise): Fix typo.
5809 (todo-top-priorities): Change temp buffer name.
5810 (todo-category-alist): Avoid redundant lambda.
5811 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
5812 Use outline-next-heading.
5813
5814 * autoarg.el: Rewritten to use define-minor-mode.
5815 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
5816 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
5817
5818 2000-06-02 Kenichi Handa <handa@etl.go.jp>
5819
5820 * isearch.el (isearch-other-meta-char): Fix previous change.
5821
5822 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
5823
5824 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
5825 (log-edit-done): Only add the comment to the ring if it's different
5826 from the last comment entered.
5827
5828 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
5829
5830 2000-06-01 Dave Love <fx@gnu.org>
5831
5832 * hl-line.el: Rewritten using define-minor-mode.
5833
5834 * help.el (describe-function-1): Distinguish special form from
5835 builtin function. Sanity-check presence of arglist for builtins.
5836
5837 2000-06-01 Kenichi Handa <handa@etl.go.jp>
5838
5839 * international/characters.el: Fix syntax/category setting of
5840 Tibetan characters.
5841
5842 * language/tibet-util.el (tibetan-add-components): Fixes for new
5843 encoding of Tibetan characters.
5844 (tibetan-decompose-precomposition-alist): New variable.
5845 (tibetan-decompose-region): Convert precomposed characters to
5846 non-precomposed characters.
5847 (tibetan-decompose-string): Likewise.
5848 (tibetan-composition-function): Fix args to
5849 thibetan-compose-string.
5850
5851 * language/tibetan.el (tibetan-composable-pattern): More
5852 characters included.
5853 (tibetan-consonant-transcription-alist): Rule for "R" added.
5854 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
5855 "+R" added.
5856 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
5857
5858 * language/lao-util.el (lao-composition-function): Fix args to
5859 compose-string.
5860
5861 * language/thai-util.el (thai-composition-function): Fix args to
5862 compose-string.
5863
5864 * isearch.el (isearch-update): Set disable-point-adjustment to t
5865 to prevent the point moving to the end of a composition when a
5866 part of a composition is searched.
5867 (isearch-other-meta-char): If the key invoking this command can be
5868 mapped by function-key-map to a printing char, call
5869 isearch-process-search-char directly.
5870
5871 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
5872
5873 * emacs-lisp/bytecomp.el:
5874 * frame.el:
5875 * international/mule-cmds.el:
5876 * international/mule-util.el:
5877 * international/mule.el:
5878 * mouse.el:
5879 * subr.el:
5880 * faces.el: Update calls to make-obsolete with a WHEN argument.
5881
5882 * byte-run.el (make-obsolete, make-obsolete-variable):
5883 Add an optional WHEN argument and change the format of the
5884 symbol-property information.
5885 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
5886 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
5887 new obsolete-symbol-property format and print WHEN if it is provided.
5888
5889 2000-05-31 Dave Love <fx@gnu.org>
5890
5891 * loadhist.el (loadhist-hook-functions): Remove
5892 before-change-function, after-change-function.
5893 (unload-feature): Deal with symbols which are both bound and
5894 fbound.
5895
5896 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
5897 before-change-function, after-change-function.
5898
5899 * simple.el (newline): Don't bind before-change-function,
5900 after-change-function.
5901
5902 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
5903
5904 * whitespace.el (whitespace-rescan-timer-time): Update interval
5905 set to 600 seconds (10 minutes) instead of 60 seconds since
5906 a large number of whitespace buffers causes emacs to `freeze'
5907 for a considerable amount of time.
5908
5909 * whitespace.el: Updated email address
5910
5911 2000-05-31 Dave Love <fx@gnu.org>
5912
5913 * add-log.el (change-log-font-lock-keywords) <function>: Add
5914 pattern for function of change.
5915 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
5916 acknowledgements patterns.
5917
5918 2000-05-31 Kenichi Handa <handa@etl.go.jp>
5919
5920 * isearch.el (isearch-printing-char): If keyboard coding system is
5921 being used, call isearch-process-search-multibyte-characters.
5922
5923 * international/isearch-x.el: Mostly rewritten.
5924
5925 * international/quail.el (quail-start-conversion): Don't include
5926 unhandled events in the returned events, but set them in
5927 unread-command-events. Exit if all inputs are deleted.
5928
5929 2000-05-30 Jason Rumney <jasonr@gnu.org>
5930
5931 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
5932
5933 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
5934 Reenable code to create initial fontsets.
5935 Use set-fontset-font in place of put-charset-property.
5936
5937 2000-05-30 Gerd Moellmann <gerd@gnu.org>
5938
5939 * progmodes/perl-mode.el (perl-indent-line): When looking for a
5940 label, ensure that the first colon isn't followed by another.
5941
5942 * paths.el (Info-default-directory-list): Doc fix.
5943
5944 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
5945 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
5946 send a query containing USER only, not USER@HOST.
5947
5948 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
5949 and rmail-msgend to compute the restriction at the end, instead of
5950 computing it.
5951
5952 2000-05-29 Gerd Moellmann <gerd@gnu.org>
5953
5954 * dabbrev.el (dabbrev-expand): Don't display messages in the
5955 echo area if the minibuffer window is active.
5956
5957 * jit-lock.el (jit-lock-mode): Add after change function to
5958 local hook.
5959
5960 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
5961
5962 * antlr-mode.el: New commands: hide/unhide actions,
5963 upcase/downcase literals.
5964 (antlr-tiny-action-length): New user option.
5965 (antlr-hide-actions): New command. Suggested by
5966 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
5967 (antlr-mode-map): New binding [C-c C-v].
5968 (antlr-mode-menu): New entries.
5969 (antlr-downcase-literals): New command.
5970 (antlr-upcase-literals): Ditto.
5971
5972 * antlr-mode.el: Minor changes: indendation, mode-name.
5973 (antlr-indent-line): Indent cpp directive at column 0.
5974 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
5975
5976 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
5977 (antlr-font-lock-additional-keywords): Workaround for intentional
5978 bug in XEmacs version of font-lock.
5979 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
5980 be used by a smarter version of `buffers-menu-grouping-function'.
5981
5982 2000-05-29 Gerd Moellmann <gerd@gnu.org>
5983
5984 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
5985 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
5986
5987 2000-05-29 Kenichi Handa <handa@etl.go.jp>
5988
5989 * international/encoded-kb.el
5990 (encoded-kbd-iso2022-designation-map): Pay attention to that
5991 charset-iso-final-char return -1 for eight-bit-control and
5992 eight-bit-graphic.
5993
5994 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
5995
5996 * speedbar.el (speedbar-use-images, speedbar-update-flag)
5997 (speedbar-easymenu-definition-base): Use display-graphic-p where
5998 available, instead of window-system.
5999
6000 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
6001
6002 * international/codepage.el (cp-coding-system-for-codepage-1): Add
6003 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
6004 coding systems.
6005
6006 2000-05-26 Dave Love <fx@gnu.org>
6007
6008 * disp-table.el (standard-display-underline): Don't use
6009 internal-find-face.
6010
6011 * mail/reporter.el: Maintainer change. Doc fixes.
6012 (reporter-version): Deleted.
6013
6014 * emacs-lisp/elp.el: Maintainer change.
6015 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
6016
6017 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
6018
6019 * add-log.el (add-change-log-entry): Merge the current entry with the
6020 previous one if the previous one is empty.
6021
6022 2000-05-26 Dave Love <fx@gnu.org>
6023
6024 * loadhist.el (unload-feature): Fix interactive spec [from
6025 lijnzaad@ebi.ac.uk].
6026
6027 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
6028 subr-arity to check primitives.
6029 (byte-compile-flush-pending, byte-compile-file-form-progn)
6030 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
6031 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
6032 mapcar.
6033
6034 2000-05-26 Kenichi Handa <handa@etl.go.jp>
6035
6036 * international/fontset.el: Set family names of non-latin charsets
6037 in default fontset to "*".
6038
6039 * international/mule-diag.el (print-fontset): Combine family part
6040 and registry part of the fontname by "-*-" instead of "-".
6041
6042 * international/mule-cmds.el (encode-coding-char): Make strings
6043 multibyte before calling encode-coding-string.
6044
6045 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
6046
6047 * derived.el: Fix keywords.
6048 (define-derived-mode): Only define if needed.
6049
6050 * simple.el (fill-comment, comment-column, comment-start)
6051 (comment-start-skip, comment-end, comment-indent-function)
6052 (block-comment-start, block-comment-end, indent-for-comment)
6053 (set-comment-column, kill-comment, comment-padding, comment-region)
6054 (comment-multi-line, indent-new-comment-line): Remove.
6055
6056 * bindings.el (esc-map): Change ; to comment-dwim and use the new
6057 function names for comment operations.
6058
6059 * newcomment.el: Add abundant autoload cookies.
6060 (comment-style): Don't depend on runtime data at compile-time.
6061 (comment-indent-hook): Remove.
6062 (comment-indent): Check if comment-indent-hook is bound.
6063 (comment-region): Docstring fix.
6064
6065 2000-05-25 Dave Love <fx@gnu.org>
6066
6067 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
6068 byte-code-function-p.
6069
6070 * mail/rmailsum.el: Add provide.
6071
6072 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
6073
6074 * smerge-mode.el (smerge-diff-switches): Don't use list* in
6075 defcustom.
6076
6077 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
6078
6079 * ediff-diff.el (ediff-exec-process): delete --binary option from
6080 non-buffer ediff jobs.
6081
6082 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
6083
6084 * hilit-chg.el (highlight-changes-mode): Ask about color or
6085 grayscale support, not about window-system.
6086
6087 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
6088 window-system.
6089 (ffap-highlight): Always default to t.
6090
6091 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
6092 display-popup-menus-p instead of looking at window-system.
6093
6094 * disp-table.el (standard-display-g1, standard-display-graphic):
6095 Only refuse to use string glyphs on X and MS-Windows.
6096
6097 * avoid.el: Remove window-system from commentary, suggest to use
6098 display-*-p instead.
6099
6100 * apropos.el (apropos-print): Use display-mouse-p instead of
6101 window-system.
6102
6103 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
6104
6105 * international/codepage.el (cp-decoding-vector-for-codepage):
6106 Fill up unsupported characters with their own codes. From Kenichi
6107 Handa.
6108
6109 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
6110
6111 * international/mule-diag.el (describe-char-after): Use
6112 display-graphic-p instead of window-system, so that this function
6113 works on MS-DOS.
6114
6115 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
6116
6117 * international/codepage.el (cp-make-coding-systems-for-codepage):
6118 Remove the eight-bit-graphic and eight-bit-control charsets from
6119 the list of charsets which we convert into `?'.
6120
6121 2000-05-25 Kenichi Handa <handa@etl.go.jp>
6122
6123 * international/mule-conf.el: Specify CHARSET-ID explicitely for
6124 private charsets.
6125 (mule-unicode-0100-24ff, japanese-jisx0213-1,
6126 japanese-jisx0213-2): New charsets.
6127
6128 * international/fontset.el: Setup default fontset for new charsets.
6129
6130 2000-05-24 Dave Love <fx@gnu.org>
6131
6132 * info.el (Info-find-node-2): Restructure [following "Vadim
6133 S. Solomin" <sovs@uic.nnov.ru>].
6134
6135 * icomplete.el: Fix header for Finder.
6136
6137 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
6138
6139 * rmailout.el (rmail-output-to-rmail-file): Added optional param
6140 STAY.
6141
6142 * rmail.el (rmail-automatic-folder-directives): New user variable.
6143 (rmail-show-message): Add call to `rmail-auto-file' during
6144 display.
6145 (rmail-auto-file): New function.
6146
6147 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
6148
6149 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
6150 account.
6151 (ediff-test-utility,ediff-diff-mandatory-option)
6152 (ediff-reset-diff-options): Utilities for proper initialization of
6153 ediff-diff-options and ediff-diff3-options on Windows.
6154
6155 * ediff-init.el (ediff-merge-filename-prefix): New customizable
6156 variable.
6157
6158 * ediff-mult.el (ediff-filegroup-action): Use
6159 ediff-merge-filename-prefix.
6160
6161 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
6162
6163 * viper-ex.el (ex-write): Set selective display to nil.
6164
6165 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
6166
6167 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
6168 aliases for hebrew-iso-8bit.
6169
6170 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
6171
6172 * woman.el: New version from Francis J. Wright
6173 <F.J.Wright@Maths.QMW.ac.uk>.
6174 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
6175 names in environment variables regardless of the path separator.
6176 (woman-topic-all-completions-1): Don't call file-name-directory-p
6177 on all files, since woman-file-regexp already filters out any
6178 directories.
6179
6180 2000-05-24 Kenichi Handa <handa@etl.go.jp>
6181
6182 * international/quail.el (quail-start-translation): Don't change
6183 modified-p of the current buffer.
6184 (quail-start-conversion): Likewise.
6185
6186 * international/kkc.el (kkc-region): Don't change modified-p of
6187 the current buffer.
6188
6189 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
6190 conform to RFC1468.
6191 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
6192
6193 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
6194
6195 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
6196 (speedbar-insert-button): Invisible text property fix.
6197 (speedbar-directory-plus): Renamed from speedbar-directory-+
6198 (speedbar-directory-minus): Renamed from speedbar-directory--
6199 (speedbar-page-plus): Renamed from speedbar-file-+
6200 (speedbar-page-minus): Renamed from speedbar-file--
6201 (speedbar-page): Renamed from speedbar-file-
6202 (speedbar-tag): Renamed from speedbar-tag-
6203 (speedbar-tag-plus): Renamed from speedbar-tag-+
6204 (speedbar-tag-minus): Renamed from speedbar-tag--
6205 (speedbar-expand-image-button-alist): Use above renames.
6206
6207 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
6208 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
6209 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
6210 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
6211 * sb-pg.xpm: Renamed from sb-file.xpm
6212 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
6213 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
6214
6215 2000-05-24 Kenichi Handa <handa@etl.go.jp>
6216
6217 * international/quail.el (quail-show-guidance-buf): Set
6218 current-input-method of the guidance buffer to the name of the
6219 curren input method.
6220
6221 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
6222
6223 * progmodes/compile.el (compile-internal): Style typo.
6224
6225 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
6226 quote vars and functions in the docstring.
6227
6228 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
6229
6230 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
6231 Don't quote lambdas.
6232
6233 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
6234
6235 2000-05-23 Gerd Moellmann <gerd@gnu.org>
6236
6237 * startup.el (command-line): Determine source file of compiled
6238 user init file differently. Warn if compiled user init file
6239 is older than its source file.
6240
6241 * ffap.el (ffap-url-regexp): Add `https'.
6242
6243 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
6244
6245 * files.el (make-backup-file-name-1): Replace slashes with `!'
6246 rather than `|' (which is not allowed on Windows). Replace the
6247 drive letters with a string "drive_X".
6248
6249 2000-05-23 Gerd Moellmann <gerd@gnu.org>
6250
6251 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
6252
6253 * files.el (interpreter-mode-alist): Add `bash2'.
6254
6255 2000-05-22 Dave Love <fx@gnu.org>
6256
6257 * loadhist.el (feature-symbols, file-provides, file-requires): Use
6258 mapc.
6259 (feature-file): Avoid calling symbol-name. Doc fix.
6260 (file-set-intersect, file-dependents): Use dolist, not mapcar.
6261 (loadhist-hook-functions): Add mouse-position-function.
6262 (unload-feature): Change uses of mapcar.
6263
6264 * files.el (parse-colon-path): Doc fix.
6265 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
6266 (set-auto-mode): Use mapc.
6267
6268 * complete.el (PC-look-for-include-file): Use :alnum: character
6269 class.
6270 (partial-completion-mode): Add autoload cookie.
6271
6272 2000-05-22 Sam Steingold <sds@gnu.org>
6273
6274 * info.el (Info-fontify-node): Fixed the call to
6275 `add-text-properties' (bug introduced on 2000-05-18).
6276
6277 2000-05-22 Dave Love <fx@gnu.org>
6278
6279 * bindings.el: Remove debug-ignored-errors set in other files.
6280
6281 * progmodes/etags.el: Add to debug-ignored-errors.
6282 (visit-tags-table-buffer): Clear out buffers holding old tables
6283 when making a new list.
6284 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
6285 mapc.
6286
6287 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
6288 quote keywords.
6289 (cmpl-string-case-type): Use character classes.
6290
6291 * comint.el:
6292 * textmodes/ispell.el:
6293 * imenu.el:
6294 * mail/mh-e.el:
6295 * progmodes/compile.el: Add to debug-ignored-errors.
6296
6297 * dabbrev.el: Add to debug-ignored-errors.
6298 (dabbrev-completion): Use mapc.
6299
6300 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
6301
6302 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
6303 (woman-mapcan, woman-parse-man.conf)
6304 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
6305 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
6306 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
6307 path syntax better.
6308 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
6309 (woman-manpath): Call woman-parse-man.conf.
6310 (woman-emulation): New defcustom, defaults to nroff.
6311 (woman-font-support): New defconst.
6312 (woman-use-symbol-font): New defcustom.
6313 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
6314 "Emulation".
6315 Many functions: Doc fix.
6316
6317 2000-05-22 Kenichi Handa <handa@etl.go.jp>
6318
6319 * international/quail.el (quail-simple-translation-keymap): Map
6320 128..255 to quail-self-insert-command.
6321 (quail-keyboard-layout-alist): Add definition for "pc102-de".
6322
6323 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
6324
6325 * help.el (help-manyarg-func-alist): Typo.
6326
6327 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
6328 intervals which makes it heaps simpler.
6329
6330 * newcomment.el (comment-region-internal): Go back to BEG after quoting
6331 the nested comment markers.
6332
6333 * subr.el (remove-hook): Don't turn the hook's value into a list.
6334
6335 2000-05-21 Dave Love <fx@gnu.org>
6336
6337 * edmacro.el (edmacro-parse-keys): Return vector if any elements
6338 are invalid characters.
6339
6340 * international/mule-util.el (detect-coding-with-priority): Use
6341 mapc. Remove redundant lambda.
6342
6343 * international/mule-diag.el (list-non-iso-charset-chars)
6344 (describe-fontset): Remove redundant lambda.
6345
6346 * emulation/crisp.el (brief-mode): New alias.
6347
6348 * emacs-lisp/ring.el (ring-elements): New function.
6349
6350 * emacs-lisp/easymenu.el (easy-menu-create-menu)
6351 (easy-menu-do-add-item): Use keywordp.
6352
6353 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
6354
6355 * replace.el: Doc and error message fixes.
6356 (replace-highlight): Use facep, not internal-find-face.
6357
6358 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
6359
6360 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
6361
6362 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
6363 (log-edit-insert-changelog): Drop `:' as well.
6364
6365 * log-view.el: Fix file description.
6366 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
6367 available.
6368 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
6369 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
6370
6371 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
6372 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
6373 Print a status message if the toggle is called interactively.
6374 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
6375 for global minor modes and use `defcustom' for them.
6376 Use add-minor-mode.
6377 (easy-mmode-define-derived-mode): Remove.
6378 (define-derived-mode): Fancier default docstring.
6379 (easy-mmode-define-navigation): Signal an error rather than (ding).
6380
6381 * newcomment.el (comment-styles): New `box-multi'.
6382 (comment-normalize-vars): Better default for comment-continue to
6383 avoid whitespace-only continuations.
6384 (comment-search-forward): Always move even in the no-syntax case.
6385 (comment-padright): Only obey N if it's only obeyed for padleft.
6386 (comment-make-extra-lines): Better handling of empty continuations.
6387 Use `=' for the filler if comment-start has only one character.
6388 (uncomment-region): Try handling the special `=' filler.
6389 (comment-region): Allow LINES even if MULTI is nil.
6390 (comment-box): Choose box style based on comment-style.
6391
6392 2000-05-20 Kenichi Handa <handa@etl.go.jp>
6393
6394 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
6395 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
6396
6397 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
6398
6399 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
6400 and insert, not subst-char-in-region.
6401
6402 * international/mule-diag.el (list-character-sets-1): Handle
6403 charsets eight-bit-control and eight-bit-graphic.
6404 (list-iso-charset-chars): Likewise.
6405 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
6406 charactes as is. Use indent-to to align characters.
6407
6408 * international/mule-cmds.el (find-multibyte-characters): Never
6409 exclude charsets eight-bit-control and eight-bit-graphic.
6410
6411 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
6412
6413 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
6414 Don't quote lambdas.
6415
6416 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
6417
6418 2000-05-19 Gerd Moellmann <gerd@gnu.org>
6419
6420 * gud.el (gud-jdb-directories): Doc fix.
6421
6422 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
6423
6424 * newcomment.el: New file.
6425
6426 2000-05-19 Gerd Moellmann <gerd@gnu.org>
6427
6428 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
6429
6430 2000-05-18 Andreas Schwab <schwab@suse.de>
6431
6432 * dired.el (dired-between-files): Also skip lines beginning with
6433 `used'.
6434
6435 2000-05-18 Gerd Moellmann <gerd@gnu.org>
6436
6437 * msb.el (msb-menu-cond): Add choice `user'.
6438
6439 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6440
6441 * ps-print.el: Compatibility, customization and doc fix.
6442 (ps-printer-name-option): Replace defconst by defvar.
6443 (ps-postscript-code-directory): XEmacs compatibility.
6444 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
6445 fix.
6446 (ps-user-defined-prologue, ps-print-prologue-header)
6447 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
6448 compatibility and code fix.
6449 (ps-print-background-image, ps-print-background-text):
6450 Customization fix.
6451 (ps-line-number-start, ps-n-up-on): New vars.
6452
6453 2000-05-18 Espen Skoglund <esk@ira.uka.de>
6454
6455 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
6456 the indent-comment function to just return the appropriate indent.
6457
6458 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
6459
6460 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
6461 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
6462 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
6463
6464 2000-05-18 Dave Love <fx@gnu.org>
6465
6466 * info.el (Info-fontify-node): Add intangible property as well as
6467 invisible.
6468
6469 * calendar/appt.el (appt-make-list): Match all lines of entry.
6470 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
6471
6472 2000-05-18 Kenichi Handa <handa@etl.go.jp>
6473
6474 * international/mule-diag.el (describe-char-after): Call
6475 internal-char-font, not char-font. If internal-char-font returns
6476 nil, display "-- none --".
6477
6478 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
6479
6480 * image.el (image-type-available-p): Don't reference image-types
6481 if it isn't bound.
6482
6483 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
6484
6485 * autoarg.el (autoarg-mode): Typo in the :set argument.
6486
6487 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
6488
6489 * startup.el (command-line-1): Don't signal an error if the
6490 directory for auto-save-list files does not yet exist.
6491
6492 2000-05-17 Kenichi Handa <handa@etl.go.jp>
6493
6494 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
6495
6496 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
6497
6498 * subr.el (remove-hook): `setq' hook-value, not `set'.
6499
6500 2000-05-16 Sam Steingold <sds@gnu.org>
6501
6502 * info.el (debug-ignored-errors): More errors to ignore.
6503
6504 2000-05-16 Dave Love <fx@gnu.org>
6505
6506 * cus-edit.el: Don't require cl or easymenu.
6507 (custom-variable-prompt): Test standard-value property, not
6508 user-variable-p.
6509
6510 2000-05-16 Sam Steingold <sds@gnu.org>
6511
6512 * subr.el (add-hook): `setq' hook-value, not `set'.
6513
6514 2000-05-16 Gerd Moellmann <gerd@gnu.org>
6515
6516 * startup.el (command-line-1): Mention the FAQ in the startup
6517 message.
6518
6519 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
6520
6521 * progmodes/compile.el (compilation-parse-errors): Collect
6522 `nomessage' regexps last.
6523
6524 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
6525
6526 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
6527 to the function name.
6528
6529 2000-05-15 Dave Love <fx@gnu.org>
6530
6531 * speedbar.el (speedbar-recenter): Typo.
6532 (speedbar-expand-line): Make arg optional.
6533 (speedbar-mode): Avoid a compiler warning.
6534
6535 2000-05-15 Gerd Moellmann <gerd@gnu.org>
6536
6537 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
6538 user-specified option string is empty.
6539
6540 * mouse.el (mouse-yank-at-click): Doc fix.
6541
6542 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
6543
6544 * term/internal.el (IT-character-translations): More updates of
6545 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
6546 documents.
6547
6548 2000-05-15 Gerd Moellmann <gerd@gnu.org>
6549
6550 * env.el (getenv): New function, interactively callable.
6551 (setenv, getenv): Remove autoload cookies.
6552
6553 * loadup.el: Load `env'.
6554
6555 * progmodes/f90.el: Change author's mail address.
6556
6557 2000-05-14 Dave Love <fx@gnu.org>
6558
6559 * mail/rmail.el (rmail-show-message-hook): Customize and offer
6560 goto-addr as an option.
6561
6562 * help.el (help-xref-stack): Doc fix.
6563 (help-xref-following): New variable.
6564 (help-make-xrefs): Use it.
6565 (help-xref-go-back): Use position information from stack element.
6566 (help-follow): Make position in stack element a pair. Use
6567 help-xref-following.
6568
6569 * autoarg.el: New file.
6570
6571 * faces.el: Declare more functions obsolete.
6572
6573 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
6574 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
6575 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
6576 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
6577 Remove all the setup-...-environment functions.
6578
6579 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
6580
6581 * speedbar.el: Updated the commentary section. xemacs20p now uses
6582 >= when detecting. Require `defimage' safely.
6583 (speedbar-easymenu-definition-base): Add toggle for images.
6584 (speedbar-easymenu-definition-special): Add flush cache & expand.
6585 (speedbar-visiting-tag-hook): Set new defaults. Added options.
6586 (speedbar-reconfigure-keymaps-hook): New variable.
6587 (speedbar-frame-parameters): Updated documentation.
6588 (speedbar-use-imenu-flag): Updated custom tag
6589 (speedbar-dynamic-tags-function-list): New variable.
6590 (speedbar-tag-hierarchy-method): Updated doc & custom.
6591 (speedbar-indentation-width, speedbar-indentation-width) New
6592 variables.
6593 (speedbar-hide-button-brackets-flag): Customizable.
6594 (speedbar-vc-indicator): Doc update.
6595 (speedbar-ignored-path-expressions): Updated default value.
6596 (speedbar-supported-extension-expressions): Updated default value.
6597 (speedbar-syntax-table): Remove {} paren status.
6598 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
6599 as "+". Added overlay aliases.
6600 (speedbar-mode): Use `speedbar-mode-line-update' instead of
6601 `force-mode-line-update'.
6602 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
6603 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
6604 `mouse-set-point'
6605 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
6606 (speedbar-item-info-tag-helper): Revamped to handle a wider range
6607 of arbitrary text, and new helper functions.
6608 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
6609 filename finder.
6610 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
6611 (speedbar-directory-buttons): Update path search/expansion.
6612 (speedbar-make-tag-line): Pay attention to
6613 `speedbar-indentation-width'. Use more care w/ invisible
6614 properties.
6615 (speedbar-change-expand-button-char): Call
6616 `speedbar-insert-image-button-maybe'.
6617 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
6618 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
6619 (speedbar-trim-words-tag-hierarchy)
6620 (speedbar-simple-group-tag-hierarchy): New functions
6621 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
6622 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
6623 functions.
6624 (speedbar-mouse-set-point): New function
6625 (speedbar-power-click): Updated documentation.
6626 (speedbar-line-token, speedbar-goto-this-file): Handle more types
6627 of tag prefix text.
6628 (speedbar-expand-line, speedbar-contract-line): Make more robust
6629 to strange text.
6630 (speedbar-expand-line): Takes universal argument to flush the
6631 cache.
6632 (speedbar-flush-expand-line): New function.
6633 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
6634 Use new generator insertion method.
6635 (speedbar-fetch-dynamic-tags): New function.
6636 (speedbar-fetch-dynamic-imenu): Removed code now handled in
6637 `speedbar-fetch-dynamic-imenu'.
6638 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
6639 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
6640 "Revert Buffer" menu items.
6641 (speedbar-buffer-buttons-engine): Be smarter when creating a
6642 filename tag (for expansion purposes.).
6643 (speedbar-highlight-one-tag-line,
6644 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
6645 (speedbar-recenter): New functions.
6646 (defimage-speedbar): Image loading abstraction.
6647 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
6648 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
6649 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
6650 (speedbar-tag-type, speedbar-tag-mail): New images.
6651 (speedbar-expand-image-button-alist): New variable.
6652 (speedbar-insert-image-button-maybe): Insert an image over some
6653 buttons.
6654
6655 2000-05-13 Kenichi Handa <handa@etl.go.jp>
6656
6657 * international/mule-cmds.el (encode-coding-char): An ASCII
6658 character is always encodable.
6659
6660 * international/mule-conf.el: Add more information in descriptions
6661 of character sets.
6662
6663 * international/mule-diag.el (describe-char-after): New function.
6664 (describe-font-internal): Adjusted for the change of font-info.
6665 (describe-font): Likewise.
6666 (print-fontset): Rewritten for the new fontset implementation.
6667 (describe-fontset): Include fontset alias names in completion.
6668 (list-fontsets): Adjusted for the change of print-fontset.
6669
6670 * simple.el (what-cursor-position): If DETAIL is non-nil, call
6671 describe-char-after instead of displaying the detail in the echo
6672 area.
6673 (syntax-code-table): Format changed.
6674 (string-to-syntax): Adjusted for the above change.
6675
6676 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
6677
6678 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
6679
6680 2000-05-12 Dave Love <fx@gnu.org>
6681
6682 * calendar/todo-mode.el: Remove some compatibility stuff and CL
6683 dependence. Use line-{beginning,end}-position, not
6684 point-at{b,e}ol. Some doc fixes.
6685 (todo-position): New function. Fix callers of position to use it.
6686 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
6687
6688 2000-05-12 Gerd Moellmann <gerd@gnu.org>
6689
6690 * time.el (display-time-mail-icon): Use `:ascent center'.
6691
6692 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
6693 handling FTP security extensions.
6694
6695 2000-05-11 Dave Love <fx@gnu.org>
6696
6697 * calendar/todo-mode.el: New file.
6698
6699 2000-05-11 Gerd Moellmann <gerd@gnu.org>
6700
6701 * comint.el (comint-read-input-ring): Move reference to
6702 comint-input-ring-size outside of the save-excursion. It was
6703 causing the default value to be the only one ever seen.
6704
6705 * font-lock.el: Update copyright. Remove Simon Marshall's email
6706 address on request from him.
6707
6708 * subr.el (substitute-key-definition): Add comment describing
6709 the meaning of PREFIX.
6710
6711 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
6712
6713 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
6714
6715 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
6716 (add-minor-mode): Don't make the variable buffer-local and add a
6717 reference to define-minor-mode in the docstring.
6718
6719 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
6720 HEADER/FOOTER and fix bug with trailing empty directory.
6721 (cvs-append-to-ignore): Use vc-editable-p if available.
6722 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
6723 (vc-do-command): Tweak advice to handle the new VC.
6724
6725 * log-view.el (log-view-goto-rev): New function for the new VC.
6726 (log-view-minor-wrap): Use mark-active.
6727
6728 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
6729 (log-edit-changelog-full-paragraphs): New var.
6730 (log-edit-insert-changelog): Remove a lonely leading `* file'.
6731 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
6732 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
6733 (log-edit-changelog-ours-p, log-edit-changelog-entries)
6734 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
6735 Replace the `cvs' prefix with `log-edit'.
6736
6737 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
6738
6739 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
6740 (diff-font-lock-defaults): Explicitly turn off multiline.
6741 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
6742 (diff-ediff-patch): Fix call to ediff-patch-file.
6743 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
6744 Handle comments.
6745
6746 * frame.el (automatic-hscrolling): Typo.
6747
6748 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
6749
6750 2000-05-09 Sam Steingold <sds@goems.com>
6751
6752 * apropos.el (apropos-print): use `describe-face' instead of
6753 `customize-face-other-window'.
6754
6755 2000-05-09 Dave Love <fx@gnu.org>
6756
6757 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
6758
6759 * help.el (describe-variable): Have customize button pop the
6760 help-xref stack when invoked.
6761 (help-xref-symbol-regexp): Add `face'.
6762 (help-make-xrefs): Check for quoted face names and adapt regexp
6763 submatch numbers to cope.
6764 (help-xref-interned): Maybe insert face doc too. Separate
6765 sections with a line of hyphens.
6766
6767 * faces.el: Some doc fixes. Declare some functions obsolete.
6768 (describe-face): Add customize button. Return the help
6769 text. Fix prompt.
6770
6771 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
6772
6773 * term/internal.el (IT-character-translations): Fix last change.
6774
6775 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
6776
6777 * woman.el: New file
6778 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
6779
6780 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
6781
6782 * term/internal.el (IT-character-translations): Update ASCII
6783 simulations for greek-iso8859-7, add latin-iso8859-14 and
6784 latin-iso8859-15.
6785
6786 * international/mule-cmds.el (set-language-info-alist): Call
6787 define-prefix-command with 3 arguments, to make the map suitable
6788 for a menu.
6789
6790 2000-05-07 Dave Love <fx@gnu.org>
6791
6792 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
6793
6794 2000-05-05 Dave Love <fx@gnu.org>
6795
6796 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
6797 list in doc string. Don't quote keyword symbols.
6798 * emacs-lisp/cl.el: Likewise
6799 * emacs-lisp/cl-seq.el: Likewise
6800
6801 2000-05-05 Gerd Moellmann <gerd@gnu.org>
6802
6803 * abbrev.el (abbrev-mode): Make ARG optional.
6804
6805 2000-05-04 Gerd Moellmann <gerd@gnu.org>
6806
6807 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
6808
6809 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
6810
6811 * subr.el (substitute-key-definition): Clarify documentation.
6812
6813 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
6814
6815 * glasses.el (glasses-convert-to-unreadable): Use
6816 `glasses-separator' instead of the hard-wired "_".
6817 (glasses-mode): Call `glasses-make-unreadable' only in a single
6818 place.
6819
6820 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
6821
6822 * term/internal.el (cjk-codepages-alist): Add associations for
6823 Chinese and Korean codepages. Remove FIXME comment.
6824
6825 2000-05-03 Dave Love <fx@gnu.org>
6826
6827 * time.el (display-time-mail-face, display-time-use-mail-icon):
6828 New option.
6829 (display-time-mail-icon): New variable.
6830 (display-time-string-forms): Use the above. Fix the local-map.
6831
6832 2000-05-03 Gerd Moellmann <gerd@gnu.org>
6833
6834 * replace.el (query-replace-map): Add binding for `E'.
6835 (query-replace-help): Extend help text.
6836 (perform-replace): Allow editing the replacement string.
6837
6838 * make-mode.el (makefile-mode-abbrev-table): New variable.
6839 (makefile-mode): Set local abbrev table to
6840 makefile-mode-abbrev-table.
6841 (makefile-font-lock-keywords): Fontify includes and conditionals.
6842
6843 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
6844 set TOGGLE's value.
6845
6846 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
6847 mail-interactive-insert-alias.
6848 (mail-abbrev-complete-alias): New command.
6849 (mail-mode-map): Bind it to `M-TAB'.
6850
6851 2000-05-03 Kenichi Handa <handa@etl.go.jp>
6852
6853 * language/lao-util.el (lao-compose-region): New function.
6854
6855 2000-05-02 Gerd Moellmann <gerd@gnu.org>
6856
6857 * files.el (recover-session): Make directories as necessary
6858 if they don't exist yet.
6859
6860 * calendar/cal-french.el
6861 (french-calendar-multibyte-special-days-array)
6862 (french-calendar-special-days-array): Change French text.
6863 (calendar-french-date-string): Change output.
6864 (calendar-goto-french-date): Likewise.
6865
6866 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
6867
6868 * wid-edit.el (widget-default-active): Obey `:always-active'.
6869 (widget-documentation-string-value-create): Set `:always-active'.
6870
6871 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
6872
6873 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
6874 default prefix to `~/_emacs.d/auto-save.list/_s'.
6875 (normal-top-level): Create the directory for auto-save files, if
6876 it doesn't already exist (in the ms-dos case only).
6877
6878 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
6879
6880 * international/mule-cmds.el (set-language-environment): Don't
6881 concat an integer (dos-codepage), use format instead.
6882
6883 2000-05-02 Dave Love <fx@gnu.org>
6884
6885 * help.el (help-xref-on-pp): Check for constant symbols.
6886
6887 2000-04-29 Gerd Moellmann <gerd@gnu.org>
6888
6889 * startup.el (normal-top-level): Put a condition-case around
6890 the code loading subdirs.el.
6891
6892 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6893
6894 * ps-print.el: Upside-down and face background color printing,
6895 line number step, doc fix.
6896 (ps-print-version): New version number (5.2).
6897 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
6898 (ps-face-attribute-list, ps-plot-with-face): Code fix.
6899 (ps-spool-config): Var fix.
6900 (ps-printer-name-option): Const fix.
6901 (ps-print-upside-down, ps-use-face-background)
6902 (ps-line-number-step): New vars.
6903 (ps-window-system, ps-lp-system): New consts.
6904 (ps-face-background): New fun.
6905
6906 2000-04-28 Richard Stallman <rms@gnu.org>
6907
6908 * files.el (make-auto-save-file-name):
6909 Apply auto-save-file-name-transforms to visited file name
6910 before generating auto save file name.
6911 (auto-save-file-name-transforms): New variable.
6912
6913 * files.el (backup-enable-predicate):
6914 Correctly test for a file under a temporary directory.
6915
6916 2000-04-28 Gerd Moellmann <gerd@gnu.org>
6917
6918 * subr.el (add-minor-mode): Rewritten.
6919
6920 2000-04-28 Kenichi Handa <handa@etl.go.jp>
6921
6922 * mail/sendmail.el (sendmail-send-it): Set
6923 buffer-file-coding-system to the selected coding system for MIME
6924 header.
6925
6926 2000-04-27 Gerd Moellmann <gerd@gnu.org>
6927
6928 * dired.el (dired-move-to-filename-regexp): Allow format where
6929 YYYY is followed by two spaces.
6930
6931 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
6932 in the second character class of the regexp.
6933
6934 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
6935 mh-etc, too.
6936
6937 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
6938 nil.
6939
6940 * subr.el (add-minor-mode): Use `set' instead of `setq'.
6941
6942 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
6943 argument.
6944
6945 2000-04-27 Sen Nagata <sen@eccosys.com>
6946
6947 * emacs-lisp/crm.el (crm-completion-table): New variable.
6948 (crm-collection-fn, crm-test-completion)
6949 (completing-read-multiple): Use it.
6950
6951 2000-04-27 Dave Love <fx@gnu.org>
6952
6953 * help.el (locate-library): Use mapc.
6954 (help-manyarg-func-alist): Add call-process-region.
6955
6956 2000-04-26 Gerd Moellmann <gerd@gnu.org>
6957
6958 * subr.el (add-minor-mode): Make argument MAP optional.
6959
6960 * desktop.el (desktop-save): Save list of minor modes.
6961 (desktop-create-buffer): Restore minor modes.
6962 (desktop-minor-mode-table): New user-option.
6963
6964 * subr.el (add-minor-mode): New function.
6965
6966 * image.el (find-image): New function.
6967 (defimage): Rewritten to find image at load time.
6968
6969 * startup.el (normal-top-level-add-to-load-path): Handle
6970 case that the default directory is not in load-path.
6971
6972 * help.el: Old patch from Stefan Monnier.
6973 (help-xref-on-pp): New function.
6974 (describe-variable): Use it to display xrefs in a symbol's value.
6975
6976 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
6977
6978 * cus-edit.el (custom-face): Fix parenthesis.
6979
6980 2000-04-26 Kenichi Handa <handa@etl.go.jp>
6981
6982 * mail/rmail.el (rmail-expunge): When there are no deleted
6983 messages, do nothing.
6984
6985 2000-04-26 Dave Love <fx@gnu.org>
6986
6987 * international/mule-cmds.el (locale-translation-file-name):
6988 Defvar to nil.
6989 (set-locale-environment): Set it here (at runtime).
6990
6991 2000-04-25 Gerd Moellmann <gerd@gnu.org>
6992
6993 * replace.el (perform-replace): Add parameters START and END. Use
6994 them instead of the check for a region in Transient Mark mode.
6995 (query-replace-read-args): Return two more list elements for the
6996 start and end of the region in Transient Mark mode.
6997 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6998 (map-query-replace-regexp, replace-string, replace-regexp): Add
6999 optional last arguments START and END and pass them to
7000 perform-replace.
7001
7002 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
7003 form with additional arguments for perform-replace.
7004
7005 * progmodes/etags.el (tags-query-replace): Add parameters START
7006 and END. Construct a form with additional arguments for
7007 perform-replace.
7008
7009 * simple.el (shell-command): Set default directory for "*Shell
7010 Command Output" buffer.
7011
7012 * language/european.el (iso-latin-4): Fix typo.
7013
7014 * emacs-lisp/crm.el: New file.
7015
7016 2000-04-24 Dave Love <fx@gnu.org>
7017
7018 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
7019 (Custom-reset-saved, Custom-reset-standard)
7020 (custom-group-value-create, custom-group-set, custom-group-save)
7021 (custom-group-reset-current, custom-group-reset-saved)
7022 (custom-group-reset-standard): Use mapc.
7023 (custom-buffer-create-internal): Disable undo when creating items.
7024 Use mapc.
7025 (custom-face): Avoid redundant lambda.
7026
7027 2000-04-24 Gerd Moellmann <gerd@gnu.org>
7028
7029 * startup.el (auto-save-list-file-prefix): Set default to
7030 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
7031
7032 2000-04-24 Sam Steingold <sds@gnu.org>
7033
7034 * time-stamp.el (time-stamp-string-preprocess): Always convert
7035 `field-result' to a string.
7036
7037 2000-04-24 Gerd Moellmann <gerd@gnu.org>
7038
7039 * frame.el (scrolling): New group.
7040 (automatic-hscrolling): New user-option.
7041
7042 * startup.el (command-line-x-option-alist): Add `-lsp' and
7043 `--line-spacing'.
7044
7045 2000-04-19 Dave Love <fx@gnu.org>
7046
7047 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
7048 (cl-mapc): Rename from mapc. Fix the funcall.
7049
7050 2000-04-19 Gerd Moellmann <gerd@gnu.org>
7051
7052 * simple.el (clone-indirect-buffer-other-window): New command.
7053 (clone-indirect-buffer): Add optional arg NORECROD.
7054 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
7055
7056 * help.el (resize-temp-buffer-window): Use count-screen-lines.
7057
7058 * window.el (count-screen-lines): New function.
7059 (shrink-window-if-larger-than-buffer): Use count-screen-lines
7060 instead of window-buffer-height.
7061
7062 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
7063 non-existing variable comint-input-sentinel.
7064 (inferior-lisp-args-to-list): Removed.
7065 (inferior-lisp): Use split-string instead of
7066 inferior-lisp-args-to-list.
7067
7068 * hexl.el (hexl-insert-hex-string): New command.
7069
7070 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
7071 instead of concat.
7072
7073 2000-04-18 Gerd Moellmann <gerd@gnu.org>
7074
7075 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
7076 at the start of an existing but empty folder.
7077
7078 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7079
7080 * ps-mule.el: Customization fix, doc fix.
7081 (ps-multibyte-buffer): Customization fix.
7082
7083 2000-04-17 Richard M. Stallman <rms@gnu.org>
7084
7085 * subr.el (read-passwd): Use read-char-exclusive.
7086
7087 2000-04-17 Gerd Moellmann <gerd@gnu.org>
7088
7089 * textmodes/texinfo.el (texinfo-insert-@email)
7090 (texinfo-insert-@emph, texinfo-insert-@quotation)
7091 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
7092 (texinfo-mode-map): Add key bindings for them.
7093
7094 * files.el (basic-save-buffer-2): Use a template with `$'
7095 instead of `#' for VMS.
7096
7097 * simple.el (clone-indirect-buffer): New function.
7098
7099 2000-04-16 Stephen Eglen <stephen@gnu.org>
7100
7101 * iswitchb.el (iswitchb-case): New function. If the user input
7102 contains any upper-case characters, the search is made
7103 case-sensitive.
7104
7105 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
7106
7107 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
7108 comment-end.
7109 (texinfo-font-lock-syntactic-keywords): New var.
7110 (texinfo-font-lock-keywords): Remove comment regexp.
7111 (texinfo-insert-block): New function.
7112 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
7113 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
7114 and font-lock-defaults. Use regexp-opt for outline-regexp.
7115 (texinfo-environments): New var.
7116 (texinfo-environment-regexp): Use regexp-opt and
7117 texinfo-environments.
7118
7119 * textmodes/ispell.el (ispell-menu-map-needed): Check that
7120 ispell-process is bound since this might be eval'd before ispell
7121 is loaded.
7122 (ispell-message): Use a tiny bit less magic and a bit more hard
7123 data to figure out what kind of sc-cite-regexp to use.
7124
7125 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
7126
7127 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
7128 (insert-cyclic-diary-entry): Unquote the lambda.
7129
7130 * gud.el (gud-jdb-build-source-files-list): Fix typo.
7131
7132 * files.el (backup-enable-predicate): Unquote the lambda.
7133
7134 * cus-edit.el (custom-face, face): Unquote the lambda.
7135
7136 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7137
7138 * ps-print.el: Check for line-beginning-position definition.
7139
7140 * ps-print.el: Fix counting lines in a region.
7141 (ps-print-version): New version number (5.1.5).
7142 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
7143 (ps-printing-region): Fun code fix.
7144
7145 2000-04-15 Gerd Moellmann <gerd@gnu.org>
7146
7147 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
7148 to file-directory-p.
7149
7150 2000-04-14 Gerd Moellmann <gerd@gnu.org>
7151
7152 * gud.el (gud-jdb-build-source-files-list): Check that directory
7153 exists before calling directory-files.
7154
7155 2000-04-13 Dave Love <fx@gnu.org>
7156
7157 * emacs-lisp/trace.el: Change maintainer. Use new backquote
7158 syntax.
7159
7160 * emacs-lisp/cl-specs.el: Remove when, unless.
7161
7162 * emacs-lisp/cl-extra.el: Don't quote keywords.
7163 (cl-old-mapc): New variable.
7164 (mapc): Use it.
7165 (cl-map-intervals): Use with-current-buffer. Don't check for
7166 next-property-change.
7167 (cl-map-overlays): Use with-current-buffer.
7168 (cl-expt): Remove.
7169 (copy-tree, remprop): Define unconditionally.
7170
7171 * emacs-lisp/cl-compat.el (keywordp): Remove.
7172
7173 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
7174 to use keywordp.
7175 (edebug-spec): Enable keywordp.
7176
7177 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
7178 string-lessp.
7179
7180 * cus-start.el: Use keywordp.
7181
7182 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7183
7184 * diary-lib.el (include-other-diary-files): Fix the fix of
7185 2000-02-18 by doing a save-excursion.
7186
7187 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7188
7189 * ps-print.el: Customization fix, doc fix.
7190 (ps-print-version): New version number (5.1.4).
7191 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
7192 (ps-print-preprint): Adjust code.
7193 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
7194 (ps-print-prologue-header, ps-print-control-characters)
7195 (ps-spool-config): Customization fix.
7196
7197 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
7198
7199 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
7200 converted to the new menu-item format, names silightly changed,
7201 help strings added.
7202
7203 Support for spelling without async subprocesses:
7204
7205 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
7206 (ispell-session-buffer): New variables.
7207 (ispell-start-process, ispell-process-status,
7208 ispell-accept-output, ispell-send-string): New functions, for
7209 Ispell invocation when async subprocesses aren't supported.
7210 (ispell-word, ispell-pdict-save, ispell-command-loop,
7211 ispell-process-line, ispell-buffer-local-parsing): Replace calls
7212 to process-send-string with calls to ispell-send-string, and
7213 accept-process-output with ispell-accept-output.
7214 (ispell-init-process): Call ispell-process-status instead of
7215 process-status with.
7216 (ispell-init-process): Call ispell-start-process. Call
7217 ispell-accept-output and ispell-send-string. Don't call
7218 process-kill-without-query and kill-process if they are unbound.
7219 (ispell-async-processp): New function.
7220
7221 2000-04-12 Dave Love <fx@gnu.org>
7222
7223 * info.el: Add debug-ignored-errors.
7224 (Info-mode-menu): Add some items.
7225 (Info-directory): Add autoload cookie.
7226
7227 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
7228 Modify `truncate-lines'. Make `describe-language-environment'
7229 always visible and add help. Modify `describe-key' help. Invoke
7230 Info-directory from `info'. New entry `emacs-manual'.
7231
7232 2000-04-10 Gerd Moellmann <gerd@gnu.org>
7233
7234 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
7235 propertized-buffer-identification.
7236 (ebrowse-update-member-buffer-mode-line): Likewise.
7237 (ebrowse--mode-strings): Removed.
7238 (ebrowse--mode-line-props): Removed.
7239
7240 * files.el (auto-mode-alist): Add `EBROWSE'.
7241
7242 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
7243 space before testing for end of buffer.
7244 (ebrowse-load): Removed.
7245 (ebrowse-revert-tree-buffer-from-file): Rewritten.
7246 (ebrowse-create-tree-buffer): Rewritten.
7247 (ebrowse-tree-mode): Read tree from buffer.
7248
7249 * progmodes/ebrowse-ffh.el: Removed.
7250
7251 2000-04-10 Kenichi Handa <handa@etl.go.jp>
7252
7253 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
7254
7255 2000-04-10 Gerd Moellmann <gerd@gnu.org>
7256
7257 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
7258 at the wrong place.
7259
7260 2000-04-09 Dave Love <fx@gnu.org>
7261
7262 * files.el (backup-enable-predicate): Use
7263 temporary-file-directory, small-temporary-file-directory.
7264 (make-backup-file-name-function, backup-directory-alist): New
7265 variables.
7266 (make-backup-file-name-1): New function.
7267 (make-backup-file-name): Use it.
7268 (find-backup-file-name): Likewise. Use format for clarity, not
7269 concat.
7270 (file-newest-backup): Use make-backup-file-name.
7271
7272 2000-04-09 Gerd Moellmann <gerd@gnu.org>
7273
7274 * progmodes/ebrowse-ffh.el: New file.
7275
7276 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
7277 to ebrowse-ffh.el.
7278 (ebrowse-load): Add autoload.
7279
7280 * finder.el (finder-commentary): Add autoload cookie.
7281
7282 * mail/rfc2368.el: Correct author's email address.
7283
7284 * progmodes/ebrowse.el: New file.
7285
7286 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
7287 item help string.
7288 (easy-menu-do-add-item): Ditto.
7289 (easy-menu-define): Extend doc string.
7290
7291 * jit-lock.el (with-buffer-unmodified): Use
7292 restore-buffer-modified-p.
7293 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
7294 (jit-lock-function, jit-lock-stealth-fontify): Don't use
7295 with-buffer-unmodified.
7296
7297 2000-04-08 Dave Love <fx@gnu.org>
7298
7299 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
7300 unless, when.
7301
7302 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
7303
7304 * viper-util.el (viper-put-on-search-overlay): New subroutine.
7305 (viper-flash-search-pattern): No operation when using Emacs
7306 doesn't support face.
7307 Use `viper-put-on-search-overlay'.
7308
7309 2000-04-04 Gerd Moellmann <gerd@gnu.org>
7310
7311 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
7312 like C-r.
7313
7314 * progmodes/make-mode.el: Some doc fixes.
7315 (makefile-mode-abbrev-table): New variable.
7316 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
7317 (makefile-font-lock-keywords): Fontify includes and conditionals.
7318 (toplevel): Require `dabbrev' and `add-log' when compiling.
7319
7320 * replace.el (perform-replace): Don't move forward one char
7321 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
7322 to do that because it leaves point 1 position after the last
7323 replacement, after everything has been replaced.
7324
7325 * jit-lock.el (with-buffer-unmodified): New macro.
7326 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
7327 modified state.
7328 (jit-lock-function-1): Extracted from jit-lock-function; not
7329 preserving buffer's modified state.
7330 (jit-lock-function, jit-lock-stealth-fontify): Call
7331 jit-lock-function-1.
7332
7333 * mail/rfc2368.el: Remove supernumerary copyright line.
7334
7335 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
7336
7337 * glasses.el: Provide facilities for inserting space before left
7338 parentheses and uncapitalization of identifiers.
7339 (glasses-mode): Try to remove old overlays in all cases.
7340
7341 2000-04-03 Gerd Moellmann <gerd@gnu.org>
7342
7343 * progmodes/compile.el (compile-internal): Display the compilation
7344 buffer in a different frame, if it's already displayed there.
7345
7346 * mail/rfc2368.el: New file.
7347
7348 * simple.el (sendmail-user-agent-compose): Recognize a `body'
7349 header and insert its value as mail body.
7350
7351 * subr.el (member-ignore-case): New function.
7352
7353 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
7354 (dabbrev--find-expansion): Ignore buffers matching a regexp
7355 from dabbrev-ignored-regexps.
7356
7357 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
7358 to extensions handled by gzip.
7359
7360 2000-04-03 Richard M. Stallman <rms@gnu.org>
7361
7362 * files.el (insert-directory): List the total free space
7363 along with the used space.
7364
7365 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
7366 line is followed by one that matches CITATION-REGEXP, end the
7367 paragraph.
7368
7369 2000-04-03 Markus Rost <rost@delysid.gnu.org>
7370
7371 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
7372 (rmail-make-basic-summary-line): Use that option.
7373
7374 2000-04-03 Kenichi Handa <handa@etl.go.jp>
7375
7376 * international/mule-cmds.el (encoded-string-description):
7377 Rewritten. Try pretty description for ISO 2022 escape sequences
7378 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
7379 for hexadecimal format.
7380
7381 2000-04-01 Dave Love <fx@gnu.org>
7382
7383 * cpp.el: Change customization group to `c' from `C'.
7384
7385 * vcursor.el (vcursor-move): Use display-color-p.
7386
7387 * international/mule-util.el: Provide mule-utils.
7388 (string-to-sequence): Simplify and speed up.
7389
7390 * international/mule.el (make-coding-system): Purecopy doc-string.
7391
7392 * international/mule-cmds.el: Various menu changes.
7393 (describe-specified-language-support): Handle `Default'.
7394 (set-language-info): Purecopy `info'.
7395
7396 2000-03-31 Andrew Innes <andrewi@gnu.org>
7397
7398 * vc.el (vc-backend-diff): Return the correct status if we had to
7399 retry the rcsdiff command without the --brief option.
7400
7401 2000-03-31 Dave Love <fx@gnu.org>
7402
7403 * help.el (help-manyarg-func-alist): Correct several omissions.
7404
7405 * add-log.el: Don't require cl, fortran.
7406 (add-log-current-defun-function): Doc fix.
7407 (change-log-version-number-regexp-list): Remove SCCS part. Doc
7408 fix.
7409 (change-log-version-rcs): Function deleted.
7410 (change-log-version-number-search): Doc fix. Use
7411 vc-workfile-version. Avoid CL dolist.
7412 (add-change-log-entry): Just call add-log-current-defun to get
7413 defun. Simplify somewhat.
7414 (change-log-get-method-definition-1): Likewise.
7415 (add-log-current-defun): Return nil if calling
7416 add-log-current-defun-function does so. Move Fortran stuff to
7417 fortran.el. Return string without properties.
7418
7419 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
7420 and :alpha: char classes.
7421
7422 * mail/supercite.el: Defvar curline when compiling.
7423 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
7424 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
7425 rather than a-zA-Z0-9 to allow non-ASCII characters.
7426
7427 2000-03-31 Gerd Moellmann <gerd@gnu.org>
7428
7429 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
7430
7431 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7432 Re-enable new code.
7433
7434 * lpr.el (print-region-1): Use -d to specify printer name for
7435 systems `usg-unix-v*, `dgux', `hpux', `irix'.
7436
7437 2000-03-31 Dave Love <fx@gnu.org>
7438
7439 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
7440 for function definition in symbol's function value slot first
7441 instead of first consulting byte-compile-function-environment.
7442
7443 2000-03-31 Kenichi Handa <handa@etl.go.jp>
7444
7445 * language/european.el ("Polish"): New language environment.
7446 (setup-polish-environment): New function.
7447
7448 2000-03-30 Gerd Moellmann <gerd@gnu.org>
7449
7450 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7451 Disable new code.
7452
7453 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
7454 trying to `load' the symbol of an autoload instead of the file
7455 recorded in the autoload. Fix error messages.
7456
7457 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7458
7459 * ps-print.el: PostScript programming fix for ghostview, doc fix.
7460 (ps-print-version): New version number (5.1.3).
7461 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
7462 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
7463 (ps-generate-postscript-with-faces): Code fix.
7464 (ps-color-values): XEmacs compatibility.
7465 (ps-print-background-image, ps-print-background-text, ps-printer-name)
7466 (ps-default-fg, ps-default-bg): Adjust customization.
7467 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
7468 (ps-color-scale): Renaming old ps-color-value fun.
7469 (ps-print-headers): Replace ps-print-header group to avoid conflict
7470 with ps-print-header variable.
7471 (ps-print-miscellany): New group.
7472 (ps-format-color, ps-rgb-color): New funs.
7473 (ps-default-foreground): New var.
7474 (ps-printer-name-option): New const.
7475
7476 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
7477
7478 * net/net-utils.el:
7479 (network-connection-host, network-connection-service): New variables
7480 (network-connection-mode): New mode, derived from comint-mode
7481 (network-connection-mode-setup): New function, saves host and
7482 service information in local variables.
7483
7484 * lisp/locate.el:
7485 (locate-word-at-point): Added this function
7486 (locate): Default to using locate-word-at-point as input
7487 Run dired-mode-hook
7488
7489 2000-03-29 Dave Love <fx@gnu.org>
7490
7491 * calendar/appt.el: Doc fixes.
7492 (appt-check): Convert min-to-app to a string before passing to
7493 appt-disp-window-function or concat.
7494 (appt-delete-window): Remove test for frame-root-window.
7495 (appt-select-lowest-window, appt-convert-time): Simplify.
7496
7497 * emacs-lisp/bytecomp.el: Doc fixes.
7498 (byte-compile-file-form-autoload): Update
7499 byte-compile-function-environment.
7500
7501 2000-03-29 Andreas Schwab <schwab@suse.de>
7502
7503 * emacs-lisp/autoload.el: Also print defsubst doc string
7504 specially.
7505
7506 * dired.el (dired-insert-directory): If dired-free-space-program
7507 failed just delete its output.
7508
7509 2000-03-29 Dave Love <fx@gnu.org>
7510
7511 * international/iso-cvt.el: Move provide to end. Doc fixes.
7512 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
7513 (iso-iso2sgml, iso-sgml2iso): New functions.
7514 (iso-cvt-define-menu): Fix some entries and use backquote for
7515 clarity.
7516
7517 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
7518
7519 2000-03-28 Gerd Moellmann <gerd@gnu.org>
7520
7521 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
7522 ISO-DATE. If non-nil, return date in ISO 8601 format.
7523
7524 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
7525
7526 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
7527 if it ever becomes used.
7528 (log-edit-mode-hook): Default to vc-log-mode-hook.
7529 (log-edit-mode): Fix the docstring.
7530
7531 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
7532 the code.
7533
7534 2000-03-26 Dave Love <fx@gnu.org>
7535
7536 * net/browse-url.el (browse-url): Re-fix case of
7537 browse-url-browser-function being an alist.
7538 (browse-url): Add :link to defgroup.
7539
7540 * files.el: Doc fixes.
7541 (file-truename): Include `[' in wildcard characters.
7542 (automount-dir-prefix): Customize.
7543 (find-file-wildcards): Add :version.
7544 (find-file-noselect): Simplify a mapcar call.
7545
7546 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
7547 compatible with inf-lisp version.
7548 (eval-defun-1): Fix custom-declare-variable case.
7549
7550 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
7551
7552 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
7553
7554 2000-03-24 Gerd Moellmann <gerd@gnu.org>
7555
7556 * Makefile (COMPILE_FIRST): New macro.
7557 (compile-files): Compile files from COMPILE_FIRST first.
7558
7559 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
7560 code.
7561
7562 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
7563 matching open parenthesis in column 0 to defun-prompt-regexp
7564 only if open-paren-in-column-0-is-defun-start is set.
7565
7566 * sun-curs.el: Require CL at compile-time only.
7567
7568 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
7569 instead of copy-list which is a function from CL.
7570 (msb--choose-menu, msb--mode-menu-cond)
7571 (msb--create-buffer-menu-2): Use dolist instead of mapc.
7572 (msb--init-file-alist): Use mapcar instead of mapcan.
7573 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
7574 `(' in column 0 in doc string.
7575 (msb--add-separators): Use mapcar instead of mapcan.
7576
7577 * cus-dep.el: Require CL at compile-time only.
7578
7579 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
7580
7581 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
7582 (byte-compile-warnings): New warning `noruntime'.
7583 (byte-compile-constants, byte-compile-variables): Fix docstring.
7584 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
7585 execute `eval-whenc-compile's body.
7586 (byte-compile-unresolved-functions): Fix docstring.
7587 (byte-compile-eval): New function.
7588 (byte-compile-callargs-warn): Check if the function will be available
7589 at runtime (via property `byte-compile-noruntime').
7590 (byte-compile-print-syms): New function.
7591 (byte-compile-warn-about-unresolved-functions): Also warn about
7592 `noruntime' functions (and use `byte-compile-print-syms').
7593 (byte-compile-file): Capitalize the message.
7594
7595 2000-03-24 Gerd Moellmann <gerd@gnu.org>
7596
7597 * mail/rmail.el (rmail-confirm-expunge): New user-option.
7598 (rmail-expunge): Ask for confirmation depending on the setting
7599 of rmail-confirm-expunge.
7600
7601 2000-03-23 Gerd Moellmann <gerd@gnu.org>
7602
7603 * Makefile (bootstrap-clean): If $(emacs) exists, build
7604 loaddefs.el first. A loaddefs.el that's not up-to-date might
7605 cause a bootstrap failure because things don't autoload as
7606 expected.
7607
7608 2000-03-23 Dave Love <fx@gnu.org>
7609
7610 * net/browse-url.el: Restore previous use of
7611 browse-url-maybe-new-window.
7612
7613 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7614
7615 * ps-print.el: Skip banner page fix.
7616 (ps-print-version): New version number (5.1.2).
7617 (ps-begin-file, ps-end-file, ps-generate): Code fix.
7618
7619 2000-03-23 Dave Pearson <davep@davep.org>
7620
7621 * net/quickurl.el Changed the type of parameter passed to the
7622 function defined by `quickurl-format-function'. Before only the
7623 text of the URL was passed. Now the whole URL structure is passed
7624 and the function is responsible for extracting the parts it
7625 requires. Changed the default of `quickurl-format-function'
7626 accordingly.
7627 (quickurl-insert): Changed the `funcall' of
7628 `quickurl-format-function' to match the above change.
7629 (quickurl-list-insert): Changed the `url' case so that it makes
7630 use of `quickurl-format-function', previous to this the format was
7631 hard wired.
7632
7633 2000-03-22 Gerd Moellmann <gerd@gnu.org>
7634
7635 * startup.el: Change some spellings for the X Window System.
7636
7637 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
7638
7639 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
7640 up the code and the regexp and make sure the cursor is temporarily
7641 moved to the suspicious line while querying the user.
7642
7643 2000-03-22 Jason Rumney <jasonr@gnu.org>
7644
7645 * w32-fns.el (w32-charset-info-alist): Initialize.
7646
7647 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7648
7649 * ps-print.el: N-up last page fix.
7650 (ps-print-version): New version number (5.1.1).
7651 (ps-end-file, ps-end-job, ps-generate): Code fix.
7652
7653 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
7654
7655 * files.el (find-file-run-dired): Update docstring.
7656 (find-directory-functions): New hook.
7657 (find-file-noselect): Run find-directory-functions rather than
7658 calling dired directly.
7659
7660 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
7661
7662 * pcvs.el: Add a minimal leading commentary.
7663 (cvs-make-cvs-buffer): Change the header part by removing the startup
7664 message and adding a `Module' entry. Also replace the FOOTER and
7665 HEADER special fileinfos with the new support in ewoc for updating
7666 its own footer and header.
7667 (cvs-update-header): Update to use the header/footer of the ewoc.
7668 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
7669 (cvs-is-within-p): New function.
7670 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
7671 to only examine some subset of the buffers.
7672
7673 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
7674 `format' instead of our own ad-hoc functions.
7675 Remove HEADER and FOOTER cases, now handled in the EWOC.
7676 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
7677
7678 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
7679 output to avoid scaring the user.
7680 (cvs-parse-table): Catch message for non-up-to-date commits.
7681
7682 * pcvs-defs.el (cvs-startup-message): Remove.
7683 (cvs-global-menu): New autoloaded menu.
7684
7685 * pcvs-util.el (cvs-string-fill): Remove.
7686
7687 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
7688 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
7689 PP part of it and also make it work for footers and headers.
7690 (ewoc-create): Drop POS and BUFFER arguments.
7691 Use the DLL's dummy node to store the end-of-footer position.
7692 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
7693 (ewoc-refresh): Remove unused `header' variable.
7694 (ewoc-(get|set)-hf): New functions.
7695
7696 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
7697 log-view-*-(message|file) and use easy-mmode-define-navigation.
7698 (log-view-message-re): Match SCCS format as well.
7699 And match the revision line rather than the dashed separator line.
7700 (log-view-mode): Use the new define-derived-mode.
7701 (log-view-current-tag): Fill in with an actual implementation.
7702
7703 * cvs-status.el (cvs-status-(prev|next)): Rename from
7704 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
7705 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
7706 to let the output "breathe" a little more (more readable).
7707 (cvs-status-mode): Use the new define-derived-mode.
7708
7709 * smerge-mode.el (smerge-auto-leave): New function and variable.
7710 (smerge-basic-map): Rename from smerge-basic-keymap.
7711 Change the bindings for smerge-diff-*.
7712 (smerge-*-map): Use easy-mmode-defmap.
7713 (smerge-(next|prev)): Use easy-mmode-define-navigation.
7714 (smerge-keep-*): Use smerge-auto-leave.
7715
7716 2000-03-21 Jason Rumney <jasonr@gnu.org>
7717
7718 * cus-edit.el (custom-button-face): Use 3D look for w32.
7719 (custom-button-pressed-face): Likewise.
7720
7721 2000-03-21 Gerd Moellmann <gerd@gnu.org>
7722
7723 * progmodes/etags.el (tags-case-fold-search): New user-option.
7724 (tags-loop-eval): New function. Bind case-fold-search around eval
7725 depending on the value of tags-case-fold-search.
7726 (tags-loop-continue): Use tags-loop-eval.
7727 (find-tag-in-order): Bind case-fold-search depending on the value
7728 of tags-case-fold-search.
7729
7730 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
7731
7732 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
7733 (diff-end-of-hunk): Return the end position for use in
7734 `easy-mmode-define-navigation'.
7735 (diff-recenter): Remove.
7736 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
7737 of `easy-mmode-define-navigation'.
7738 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
7739 previous renaming) and fix to use new names.
7740 (diff-merge-strings): Use \n as separator: simpler, faster.
7741 (diff-mode): Use `define-derived-mode'.
7742
7743 * derived.el (define-derived-mode): Don't autoload anymore.
7744 Prefer the macro-only version provided by easy-mmode.el.
7745
7746 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
7747 `easy-mmode-define-derived-mode'.
7748 Use `combine-run-hooks'.
7749 (easy-mmode-define-navigation): New macro.
7750
7751 * subr.el (combine-run-hooks): New function.
7752
7753 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
7754
7755 * term/x-win.el: Fontsets related initialization is simplified.
7756
7757 * international/mule-diag.el (describe-font): Don't refer to
7758 global-fontset-alist, instead call font-list.
7759 (describe-fontset, list-fontsets, mule-diag): Likewise.
7760 (print-fontset): Adjusted for the change of fontset
7761 implementation.
7762
7763 * international/fontset.el (x-charset-registries): Variable
7764 removed, instead the corresponding data is stored in the default
7765 fontset.
7766 (register-alternate-fontnames): Function removed.
7767 (resolved-ascii-font): Variable removed.
7768 (x-compose-font-name): Ignore the second argument REDOCE.
7769 (x-complement-fontset-spec): Complement only an ASCII font and
7770 element for those charsets than can use that ASCII font.
7771 (generate-fontset-menu): Don't refer to global-fontset-alist,
7772 instead call fontset-list.
7773 (uninstantiated-fontset-alist): Variable removed.
7774 (x-style-funcs-alist): Likewise.
7775 (fontset-default-styles): Likewise.
7776 (x-modify-font-name): Function removed.
7777 (create-fontset-from-fontset-spec): Ignore the argument
7778 STYLE-VARIANT.
7779 (create-fontset-from-ascii-font): Docsting adjusted for the above
7780 change.
7781 (instantiate-fontset, resolve-fontset-name): Functions removed.
7782 (fontset-list): Now implemented by C code.
7783
7784 * faces.el (read-face-font): Fix TABLE arg to completing-read.
7785 (describe-face): Include `font' attribute in the description.
7786
7787 2000-03-21 Kenichi Handa <handa@etl.go.jp>
7788
7789 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
7790
7791 2000-03-20 Gerd Moellmann <gerd@gnu.org>
7792
7793 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
7794 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
7795 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
7796
7797 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
7798 about behavior of set-buffer-modified-p wrt redisplay.
7799
7800 2000-03-19 Richard M. Stallman <rms@gnu.org>
7801
7802 * view.el (view-mode-disable): Kill local binding of view-read-only.
7803
7804 2000-03-18 Gerd Moellmann <gerd@gnu.org>
7805
7806 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
7807 is a string, convert it to a syntax cell using string-to-syntax.
7808
7809 * simple.el (syntax-code-table, syntax-flag-table): New variables.
7810 (string-to-syntax): New function.
7811
7812 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
7813 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
7814 try to use passive ftp mode.
7815
7816 2000-03-17 Gerd Moellmann <gerd@gnu.org>
7817
7818 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
7819
7820 * simple.el (append-to-buffer): Update point of windows after
7821 insertion.
7822
7823 * abbrev.el (inverse-add-abbrev): Identify word by first moving
7824 forward then moving backward. Reindent.
7825
7826 * frame.el (other-frame): Call x-focus-frame only if
7827 focus-follows-mouse is off.
7828
7829 2000-03-17 Dave Love <fx@gnu.org>
7830
7831 * pcvs-util.el (cvs-strings->string): Rename
7832 replace-regexps-in-string.
7833
7834 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
7835
7836 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
7837 regexp for labels cannot span several lines.
7838
7839 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
7840 `(setq :<key> ':<key>)' to the macro expansion.
7841
7842 2000-03-16 Dave Love <fx@gnu.org>
7843
7844 * progmodes/f90.el (f90): Put custom group under `languages', not
7845 `fortran'.
7846 (f90-mode-hook): Customize.
7847 (f90-mode): Set add-log-current-defun-function.
7848 (f90-current-defun): New function.
7849
7850 2000-03-16 Gerd Moellmann <gerd@gnu.org>
7851
7852 * cus-edit.el (custom-variable-tag-face): Handle case that
7853 default face's height is not a number.
7854 (custom-face-tag-face, custom-group-tag-face-1)
7855 (custom-group-tag-face): Ditto.
7856 (custom-group-tag-face-1): Add :group.
7857
7858 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
7859
7860 2000-03-15 Gerd Moellmann <gerd@gnu.org>
7861
7862 * pcvs-defs.el (toplevel): Remove autoload cookie for form
7863 requiring easymenu.
7864
7865 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7866
7867 * ps-print.el: PostScript user-defined prologue, PostScript error
7868 handler, doc fix.
7869 (ps-print-version): New version number (5.1).
7870 (ps-user-defined-prologue, ps-error-handler-message)
7871 (ps-print-prologue-0, ps-error-handler-alist): New vars.
7872 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
7873 (ps-insert-string): New function.
7874
7875 2000-03-15 Kenichi Handa <handa@etl.go.jp>
7876
7877 * international/ccl.el (ccl-compile-expression): Don't generate
7878 invalid self-assignment code.
7879
7880 2000-03-14 Dave Love <fx@gnu.org>
7881
7882 * subr.el (replace-regexp-in-string): Renamed from
7883 replace-regexps-in-string. Doc fix.
7884
7885 2000-03-12 Dave Love <fx@gnu.org>
7886
7887 * cus-edit.el: Doc fixes.
7888 (customize-set-variable, customize-save-variable): Rename args for
7889 doc.
7890 (custom-variable-tag-face, custom-face-tag-face)
7891 (custom-group-tag-face-1, custom-group-tag-face): Modify from
7892 style which user identify as hyperlink.
7893 (hook): Don't add undefined functions to the hook.
7894 (debug-ignored-errors): Transfer message from bindings.el.
7895
7896 2000-03-12 Gerd Moellmann <gerd@gnu.org>
7897
7898 * recentf.el (recentf-keep-non-readable-files-p): Remove
7899 double/nested definition.
7900
7901 2000-03-12 Dave Love <fx@gnu.org>
7902
7903 * facemenu.el (facemenu-get-face): Use display-color-p.
7904 * enriched.el (enriched-decode-foreground): Likewise.
7905 (enriched-decode-background): Likewise.
7906 * isearch.el (isearch-highlight): Likewise.
7907 * info-look.el (info-lookup): Likewise.
7908 * simple.el (completion-setup-function): Likewise.
7909
7910 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
7911 :options.
7912
7913 * bindings.el (mode-line-format): Fix line-number and
7914 column-number items. Add help-echo for the background.
7915 (mode-line-mule-info): Modify help-echo.
7916
7917 * avoid.el (mouse-avoidance-mode): Add autoload cookie to
7918 defcustom.
7919
7920 * files.el (load-file): Allow completion to .elc.
7921
7922 * man.el: Doc fixes.
7923 (Man-init-defvars): Use display-color-p to set fontification.
7924
7925 * play/hanoi.el (hanoi-internal): Don't use oddp.
7926
7927 2000-03-12 Gerd Moellmann <gerd@gnu.org>
7928
7929 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
7930
7931 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
7932
7933 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
7934
7935 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
7936 Fix comment.
7937
7938 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
7939
7940 * font-lock.el (font-lock-keywords): Fix the doc now that
7941 regexp-opt-depth is unnecessary.
7942 (save-buffer-state): Set an edebug spec.
7943 (font-lock-fontify-anchored-keywords): Properly handle the case when
7944 the matcher goes past the limit.
7945
7946 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
7947 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
7948
7949 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
7950 dll.el and cookie.el (from Elib) with heavy renaming and other
7951 massaging.
7952
7953 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
7954 Autoload the functions used.
7955 (easy-mmode-define-syntax): Fix CL typo.
7956 (easy-mmode-define-derived-mode): Improve the docstring generation.
7957
7958 2000-03-10 Gerd Moellmann <gerd@gnu.org>
7959
7960 * textmodes/texinfo.el (texinfo-version): Variable and function
7961 removed.
7962
7963 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
7964
7965 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
7966 allow more flexibility.
7967 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
7968 fns.
7969 (easy-mmode-defmap, easy-mmode-defsyntax)
7970 (easy-mmode-define-derived-mode): New macros.
7971
7972 2000-03-09 Didier Verna <didier@xemacs.org>
7973
7974 * rect.el (replace-rectangle): New function.
7975
7976 2000-03-09 Dave Love <fx@gnu.org>
7977
7978 * progmodes/fortran.el (fortran-comment-line-start): Define as
7979 "C".
7980 (fortran-comment-line-start-skip): Don't match cpp stuff.
7981 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
7982 (fortran-mode-map): Remove over-eager custom-menu-create for now.
7983 (fortran-mode): Don't set fortran-comment-line-start-skip,
7984 fortran-comment-line-start here. Set comment-start,
7985 add-log-current-defun.
7986 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
7987 (fortran-current-defun): New function.
7988
7989 2000-03-09 Gerd Moellmann <gerd@gnu.org>
7990
7991 * emacs-lisp/re-builder.el: New file.
7992
7993 * mouse.el (mouse-drag-region): Don't run up-event handler
7994 if hscroll has changed.
7995
7996 * octave-mod.el (octave-font-lock-keywords): To font-lock the
7997 builtin operators, use `font-lock-builtin-face' for Emacs and
7998 `font-lock-preprocessor-face' otherwise.
7999
8000 * font-lock.el (lisp-font-lock-keywords-1): Highlight
8001 `(defun (setf foo)' differently.
8002
8003 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
8004
8005 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
8006 (regexp-opt): Update comment and adapt the code the new meaning of
8007 the `paren' argument of regex-opt-group for shy-groups.
8008 (regexp-opt-depth): Handle shy groups as well as backslashed
8009 backslashes.
8010 (regexp-opt-group): Turn the leading comment into a docstring.
8011 Allow `paren' to be a string (the string to use to open a group).
8012 Remove open-presuf and close-presuf. Instead of checking for `all
8013 one-char' and then later on check for `several one-char', handle
8014 both cases close together. Also apply a more generic algorithm
8015 for suffixes (the mirror image of the algorithm used for
8016 prefixes). Use shy-groups. Use nreverse rather than reverse.
8017 (regexp-opt-try-suffix): Removed.
8018
8019 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
8020 from comint-mode-map, so we can just inherit from it. Also, move
8021 the initialization into the `defvar' since there's no docstring
8022 anyway and it's fairly short.
8023 (inferior-scheme-mode): Define it as derived-mode: the code is
8024 shorter and this way we inherit from comint-mode-map rather than
8025 copying it.
8026
8027 * subr.el (replace-regexps-in-string): Properly handle the case
8028 where we match an empty string.
8029
8030 * comint.el (comint-exec-1): Add the current-dir to the exec-path
8031 when the command has a directory component (such as "./testml").
8032 Also fix a typo in the comment.
8033
8034 2000-03-08 Gerd Moellmann <gerd@gnu.org>
8035
8036 * Makefile (compile-files): Compile files one by one because
8037 that's the only way to ensure a clean compilation environment for
8038 each individual file.
8039
8040 * frame.el (other-frame): Call x-focus-frame.
8041
8042 2000-03-07 Dave Love <fx@gnu.org>
8043
8044 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
8045 :require to defcustom.
8046
8047 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
8048 lists.
8049
8050 * files.el (auto-mode-alist): Add configure.in.
8051
8052 * progmodes/autoconf.el: New file.
8053
8054 2000-03-07 Gerd Moellmann <gerd@gnu.org>
8055
8056 * mail/mh-e.el: Change maintainer to `none'.
8057
8058 * recentf.el (recentf-keep-non-readable-files-p): Quote args
8059 to remove-hook and add-hook.
8060
8061 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
8062
8063 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
8064 it as the default.
8065 (mail-send): Test mail-send-nonascii also for the new `mime' value.
8066 (sendmail-send-it): Conditionally add MIME headers specifying the
8067 used character set.
8068
8069 2000-03-07 Dave Love <fx@gnu.org>
8070
8071 * winner.el: Fix keywords, autoload cookies. Split
8072 eval-when-compile form to avoid compilation failure.
8073
8074 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
8075
8076 * international/mule.el: Modify comment about coding system
8077 property `coding-category'.
8078 (make-coding-system): New argument EOL-TYPE. Pay attention to
8079 coding-category property of PROPERTIES.
8080
8081 * international/mule-conf.el (coding-category-utf-8,
8082 coding-category-utf-16-be, coding-category-utf-16-le): New coding
8083 categories. Include them in the argument for set-coding-priority.
8084
8085 * international/mule-cmds.el (reset-language-environment): Include
8086 coding-category-utf-8, coding-category-utf-16-be, and
8087 coding-category-utf-16-le in the argument for set-coding-priority.
8088 (reset-language-environment): Initialize coding-category-utf-8,
8089 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
8090
8091 2000-03-06 Karl Fogel <kfogel@red-bean.com>
8092
8093 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
8094 code abstracted out of `bookmark-jump-noselect'. Now tries info
8095 extensions as well as compression extensions.
8096 (bookmark-jump-noselect): Use above new func.
8097
8098 2000-03-03 Gerd Moellmann <gerd@gnu.org>
8099
8100 * strokes.el: Change maintainer's mail address.
8101
8102 2000-03-03 Kenichi Handa <handa@etl.go.jp>
8103
8104 * international/mule-diag.el (list-character-sets): Make help-echo
8105 string by substitute-command-keys.
8106 (list-character-sets): Likewise.
8107 (sort-listed-character-sets): Call help-setup-xref.
8108
8109 2000-03-02 Gerd Moellmann <gerd@gnu.org>
8110
8111 * time.el (display-time-mail-file): Add `none' to the list of
8112 choices.
8113
8114 2000-03-01 Dave Love <fx@gnu.org>
8115
8116 * help.el (help-xref-go-back): Don't try to set position.
8117
8118 * international/mule-diag.el (list-character-sets): Call
8119 help-setup-xref. Add help-echo to xrefs.
8120 (list-character-sets-1): Add help-echo to xrefs.
8121
8122 2000-03-02 Gerd Moellmann <gerd@gnu.org>
8123
8124 * frame.el (blink-cursor-mode): Switch cursor on when turning
8125 the mode off.
8126
8127 * add-log.el (add-log-current-defun): Add support for
8128 Autoconf mode.
8129
8130 * mail/rmail.el (rmail-quit-hook): New variable.
8131
8132 2000-03-01 Dave Love <fx@gnu.org>
8133
8134 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
8135
8136 * help.el (help-xref-button): Add help-echo arg.
8137 (describe-function-1, describe-variable, help-make-xrefs): Use it.
8138
8139 * faces.el (list-faces-display): Supply help-echo with
8140 help-make-xrefs.
8141
8142 * facemenu.el (list-text-properties-at): Set help-xref-stack to
8143 nil.
8144
8145 2000-03-01 Gerd Moellmann <gerd@gnu.org>
8146
8147 * image.el (defimage): Look for image files in load-path.
8148
8149 * frame.el (busy-cursor-delay-seconds): Change type to
8150 `number'.
8151
8152 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
8153
8154 * recentf.el (recentf): Added version tag to the defgroup of
8155 recentf.
8156
8157 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
8158
8159 * recentf.el (recentf-cleanup): Changed to remove excluded file
8160 too.
8161 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
8162 action to select/unselect a file.
8163 (recentf-edit-list): Code cleanup and improvement.
8164 (recentf-open-more-files-action): `recentf-open-more-files' button
8165 widget action to open a file.
8166 (recentf-open-more-files): No more use standard completion but
8167 widgets.
8168 (recentf-more-collection): Deleted.
8169 (recentf-more-history): Deleted.
8170 (recentf-setup-more-completion): Deleted.
8171
8172 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
8173
8174 * recentf.el (recentf-mode): No more needs that Emacs is running
8175 under a window-system.
8176
8177 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
8178
8179 * recentf.el (recentf-edit-list): New command to edit the recent
8180 list which allow the user to remove files.
8181 (recentf-edit-selected-items): New global variable, used by
8182 `recentf-edit-list' to hold the list of files to be removed from
8183 the recent list.
8184 (recentf-make-menu-items): Updated to display a "Edit list..."
8185 menu item. Minor code cleanup.
8186
8187 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
8188
8189 * recentf.el (recentf-open-more-files): New command to open files
8190 that are not displayed in the menu.
8191 (recentf-more-collection): New global variable holding the set of
8192 permissible completions used by `recentf-open-more-files'.
8193 (recentf-more-history): New global variable holding the history list
8194 used by `recentf-open-more-files' completion.
8195 (recentf-setup-more-completion): New function to setup completion for
8196 `recentf-open-more-files'.
8197 (recentf-make-menu-items): Updated to display a "More..." menu item.
8198
8199 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
8200
8201 * recentf.el (recentf-menu-action): Doc fixed.
8202
8203 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
8204
8205 * recentf.el (recentf-menu-filter): Doc updated.
8206 (recentf-update-menu-hook): Allow menu filters to force menu update.
8207 (recentf-make-menu-items): New menu filter handling.
8208 (recentf-make-menu-item): New helper function.
8209 (recentf-menu-elements): New menu handling function.
8210 (recentf-sort-ascending): Updated to new menu filter handling.
8211 (recentf-sort-descending): Updated to new menu filter handling.
8212 (recentf-sort-basenames-ascending): New menu filter function.
8213 (recentf-sort-basenames-descending): New menu filter function.
8214 (recentf-show-basenames): New menu filter function.
8215 (recentf-show-basenames-ascending): New menu filter function.
8216 (recentf-show-basenames-descending): New menu filter function.
8217
8218 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8219
8220 * diary-lib.el (list-diary-entries): Don't try to go forward at
8221 the end of the buffer.
8222
8223 2000-02-29 Kenichi Handa <handa@etl.go.jp>
8224
8225 * international/mule-diag.el (list-character-sets): Completely
8226 rewritten.
8227 (sort-listed-character-sets): New function.
8228 (list-character-sets-1): Completely rewritten.
8229 (list-character-sets-2): New function.
8230 (non-iso-charset-alist): New variable.
8231 (decode-codepage-char): New function.
8232 (charset-history): New variable.
8233 (read-charset) (list-block-of-chars)
8234 (list-iso-charset-chars)
8235 (list-non-iso-charset-chars)
8236 (list-charset-chars): New functions.
8237 (mule-diag): Call list-character-sets-2, not
8238 list-character-sets-2.
8239 (dump-charsets): Likewise.
8240
8241 2000-02-29 Gerd Moellmann <gerd@gnu.org>
8242
8243 * dired-x.el (dired-filename-at-point): Add `@' to valid
8244 file name characters.
8245 (dired-filename-at-point): Handle ange-ftp file names.
8246
8247 * frame.el (frame-notice-user-settings): Use assq-delete-all
8248 instead of assoc-delete-all.
8249 (frame-notice-user-settings): Ditto.
8250
8251 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
8252 Don't copy alist.
8253
8254 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
8255
8256 * calculator.el (calculator-use-menu): New option.
8257 (calculator-initial-bindings): Changed some bindings to work as
8258 macros.
8259 (calculator-forced-input): Removed.
8260 (calculator-restart-other-mode): New variable.
8261 (calculator-mode-map): Set up menu.
8262
8263 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
8264
8265 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
8266 tags.
8267
8268 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
8269
8270 * viper-cmd.el (viper-envelop-ESC-key): added the option to
8271 translate all ESC key sequences.
8272 (viper-goto-mark-subr): restore markers for files for which
8273 they were saved.
8274 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
8275 * viper-util.el (viper-set-replace-overlay-glyphs,
8276 viper-set-replace-overlay): always check if the replacement
8277 overlay is live.
8278 * viper.el (viper-vi-state-mode-list): added major modes.
8279 * ediff-wind.el: minor comment changes.
8280 * ediff.el: copyright notice date fix.
8281
8282 2000-02-27 Jason Rumney <jasonr@gnu.org>
8283
8284 * faces.el (face-font-family-alternatives): Add arial to helv.
8285 (mode-line, header-line, tool-bar): Same default as x for w32.
8286 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
8287 face-font-family-alternatives from working.
8288 * term/w32-win.el (mouse-set-font): Do not build fontset from
8289 chosen font.
8290
8291 2000-02-25 Sam Steingold <sds@goems.com>
8292
8293 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
8294 properly.
8295
8296 2000-02-25 Richard M. Stallman <rms@gnu.org>
8297
8298 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
8299
8300 2000-02-25 Gerd Moellmann <gerd@gnu.org>
8301
8302 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
8303 writable.
8304
8305 * frame.el (busy-cursor-delay-seconds): New option.
8306
8307 2000-02-24 Gerd Moellmann <gerd@gnu.org>
8308
8309 * frame.el (show-cursor-in-non-selected-windows): New option.
8310
8311 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8312
8313 * diary-lib.el (include-other-diary-files): Undo the selective
8314 display in any included file and don't kill it.
8315
8316 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
8317
8318 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
8319 bar. Menu items converted to (menu-item format, help strings
8320 added.
8321 [downcase, upcase]: Don't enable on MS-DOS.
8322 [symlink, symlinks]: Don't show if make-symbolic-link is not
8323 bound.
8324 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
8325
8326 2000-02-23 Dave Love <fx@gnu.org>
8327
8328 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
8329 (backward-kill-word): Revert addition of * to interactive spec --
8330 it's a feature.
8331
8332 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
8333 (backward-kill-sentence, kill-sentence): Likewise.
8334
8335 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
8336 scratch buffer name.
8337 (gud-format-command): Use int-to-string in ?l case. Simplify
8338 slightly.
8339
8340 * term/w32-win.el (internal-face-interactive): Update prompt for
8341 new read-face-name.
8342
8343 * mail/footnote.el (footnote): Add :version to defgroup.
8344 (footnote-section-tag-regexp): Customize.
8345 (footnote-start-tag, footnote-end-tag): New option.
8346 (footnote-latin-regexp): New variable.
8347 (Footnote-latin): New function.
8348 (footnote-style-alist): Add element for latin style.
8349 (footnote-style): Moved.
8350 (Footnote-goto-footnote): Use eq to test arg.
8351
8352 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
8353
8354 * emacs-lisp/byte-opt.el: Change old backquote syntax.
8355 (byte-compile-trueconstp): Include keywords.
8356 (byte-optimize-quote, byte-optimize-lapcode): Use
8357 byte-compile-const-symbol-p.
8358 (byte-optimize-char-before): New optimization.
8359
8360 * emacs-lisp/bytecomp.el: Change old backquote syntax.
8361 (byte-compile-const-symbol-p): New function.
8362 (byte-compile-constp, byte-compile-out-toplevel)
8363 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
8364 Use it.
8365
8366 * subr.el (define-key-after): Default AFTER to t. Doc fix.
8367
8368 2000-02-23 Kenichi Handa <handa@etl.go.jp>
8369
8370 * international/encoded-kb.el: Be sure to update minor-mode-alist
8371 and minor-mode-map-alist.
8372 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
8373 codes SS2 and SS3 correctly.
8374 (encoded-kbd-self-insert-ccl): New function.
8375 (encoded-kbd-setup-keymap): New function.
8376 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
8377 by calling encoded-kbd-setup-keymap.
8378
8379 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
8380 characters.
8381 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
8382 locally.
8383
8384 2000-02-22 Dave Love <fx@gnu.org>
8385
8386 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
8387 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
8388 defvar.
8389 (lisp-mode-syntax-table): Set up for #|...|# comments.
8390 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
8391 classes. Match `defface'.
8392 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
8393 (eval-defun-1): Fix for defcustom.
8394 (lisp-indent-region): Doc fix.
8395
8396 * subr.el (when, unless, split-string): Doc fix.
8397 (read-passwd): Move call of clear-this-command-keys to the right
8398 place.
8399 (replace-regexps-in-string): New function.
8400
8401 2000-02-22 Gerd Moellmann <gerd@gnu.org>
8402
8403 * help.el (describe-variable): Set syntax table to
8404 emacs-lisp-mode-syntax-table when moving forward over the
8405 symbol's name.
8406
8407 2000-02-22 Dave Love <fx@gnu.org>
8408
8409 * xt-mouse.el: Doc fixes.
8410 (xterm-mouse-position-function): New function, replacing advice of
8411 mouse-position.
8412 (xterm-mouse-mode): Use it. Don't turn on under a window system.
8413
8414 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
8415
8416 2000-02-21 Gerd Moellmann <gerd@gnu.org>
8417
8418 * format.el (format-annotate-single-property-change): Handle
8419 properties.with dotted-list values.
8420 (format-proper-list-p): New function.
8421
8422 * enriched.el (enriched-face-ans): Handle '(foreground-color
8423 . COLOR) and (background-color . COLOR).
8424
8425 2000-02-20 Dave Love <fx@gnu.org>
8426
8427 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
8428 and assignments to it.
8429 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
8430 current local map.
8431 (make-flyspell-overlay): Use it.
8432 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
8433
8434 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
8435 (lm-get-header-re): Defun, not defsubst.
8436 (lm-get-package-name): Defun, not defsubst. Simplify.
8437 (lm-version): Doc fix. Simplify.
8438 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
8439 (lm-crack-address, lm-last-modified-date, lm-commentary)
8440 (lm-verify, lm-synopsis): Simplify.
8441 (lm-report-bug): Require emacsbug. Use compose-mail.
8442
8443 2000-02-20 Gerd Moellmann <gerd@gnu.org>
8444
8445 * dired.el (dired-mode): Call propertized-buffer-identification
8446 to set mode-line-buffer-identification to something having
8447 the right text properties.
8448
8449 * bindings.el (propertized-buffer-identification): New function.
8450
8451 2000-02-20 Dave Love <fx@gnu.org>
8452
8453 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
8454 check for t-mouse too.
8455
8456 * cus-start.el: Make echo-keystrokes `number'.
8457
8458 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
8459
8460 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
8461 Don't call ring-empty-p unless tags-location-ring is bound.
8462 From Noah Friedman <friedman@splode.com>.
8463
8464 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
8465
8466 * progmodes/hideshow.el (hs-flag-region): No longer use
8467 `intangible' overlay property.
8468
8469 (hs-toggle-hiding): New command.
8470 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
8471
8472 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
8473 Fix omission bug: Run `hs-minor-mode-hook' for both activation
8474 and deactivation.
8475
8476 2000-02-18 Gerd Moellmann <gerd@gnu.org>
8477
8478 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
8479
8480 2000-02-17 Gerd Moellmann <gerd@gnu.org>
8481
8482 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
8483
8484 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
8485 of `*' to handle `(* ... *)' comments.
8486
8487 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
8488
8489 * faces.el (list-faces-display): Use display-mouse-p instead of
8490 window-system.
8491
8492 * menu-bar.el (global-map): Menu-bar items converted to the new
8493 format (menu-item..., rearranged for better CUA compliance, and
8494 their names changed for better clarity. Help strings added.
8495
8496 * international/mule-cmds.el (mule-menu-keymap)
8497 (describe-language-environment-map, set-coding-system-map)
8498 (setup-language-environment-map): Convert to new (menu-item...
8499 form, add help strings. Change names of menu items for better
8500 clarity. "Mule" menu-bar item removed (it's now in the "Options"
8501 submenu).
8502
8503 2000-02-17 Gerd Moellmann <gerd@gnu.org>
8504
8505 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
8506 within the code.
8507
8508 2000-02-16 Dave Love <fx@gnu.org>
8509
8510 * faces.el: Don't require custom. Add more specific :groups to
8511 various deffaces.
8512 (set-face-attribute): Purecopy args.
8513 (read-face-name): Default to name at point and use it in prompt.
8514 Remove colon from arg in all callers.
8515 (list-faces-display): Hyperlink to face descriptions and customize
8516 buffers.
8517
8518 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
8519
8520 * wid-edit.el (widget-match-inline): An atom never matches a
8521 list.
8522
8523 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8524
8525 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
8526 at ':' characters by call to split-string.
8527
8528 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8529
8530 * textmodes/bibtex.el: Added RCS version identification.
8531
8532 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8533
8534 * textmodes/bibtex.el: Some temporary comments removed.
8535 (bibtex-field-name, bibtex-entry-type): Made the relationship
8536 explicit.
8537 (bibtex-field-const): Allow capital letters.
8538 (bibtex-start-of-string): Deleted because unused.
8539
8540 * textmodes/bibtex.el: Unified some nomenclature. We no longer
8541 use the term 'reference' to describe a bibtex entry as a whole.
8542 Further, reference keys are no longer called 'labels'.
8543 (bibtex-keys): Renamed to bibtex-reference-keys.
8544 (bibtex-reformat-previous-labels): Renamed to
8545 bibtex-reformat-previous-reference-keys.
8546 (bibtex-reference-type): Renamed to bibtex-entry-type.
8547 (bibtex-reference-head): Renamed to bibtex-entry-head.
8548 (bibtex-reference-maybe-empty-head): Renamed to
8549 bibtex-entry-maybe-empty-head.
8550 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
8551 (bibtex-search-reference): Renamed to bibtex-search-entry.
8552 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
8553 bibtex-enclosing-entry-maybe-empty-head.
8554 (bibtex-entry-field-alist, bibtex-entry-head,
8555 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
8556 bibtex-map-entries, bibtex-search-entry,
8557 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
8558 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
8559 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
8560 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
8561 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
8562 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
8563 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
8564
8565 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8566
8567 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
8568 comment.
8569 (bibtex-format-field-delimiters): New function, functionality
8570 extracted from bibtex-format-entry.
8571 (bibtex-autokey-get-yearfield-digits): New function, functionality
8572 extracted from bibtex-autokey-get-yearfield.
8573
8574 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
8575 entries in order to avoid stack overflow in the regexp matcher if
8576 field contents become large.
8577 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
8578 bibtex-field-string-part-not-braced,
8579 bibtex-field-string-part-no-inner-braces,
8580 bibtex-field-string-part-1-inner-brace,
8581 bibtex-field-string-part-2-inner-braces,
8582 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
8583 bibtex-field-string-quoted, bibtex-field-string,
8584 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
8585 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
8586 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
8587 as parsing is now performed by the following functions.
8588 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
8589 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
8590 bibtex-parse-field-string, bibtex-search-forward-field-string,
8591 bibtex-parse-association, bibtex-field-name-for-parsing,
8592 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
8593 bibtex-search-forward-field, bibtex-search-backward-field,
8594 bibtex-start-of-field, bibtex-end-of-field,
8595 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
8596 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
8597 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
8598 bibtex-parse-string, bibtex-search-forward-string,
8599 bibtex-search-backward-string, bibtex-start-of-string,
8600 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
8601 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
8602 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
8603 entries. Instead of reporting the results of the parsing by
8604 match-beginning or match-end, these functions return data structures
8605 that hold the corresponding positions.
8606 (bibtex-enclosing-field): Changed to also report field boundaries by
8607 return values rather than by match-beginning or match-end. The
8608 following functions have been adapted to use the new parsing
8609 functions.
8610 (bibtex-skip-to-valid-entry, bibtex-search-reference,
8611 bibtex-enclosing-field, bibtex-format-entry,
8612 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
8613 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
8614 bibtex-print-help-message, bibtex-end-of-entry,
8615 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
8616 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
8617 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
8618 method for parsing.
8619 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
8620 bibtex-map-entries, bibtex-flash-head,
8621 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
8622 bibtex-autokey-change, bibtex-autokey-get-namefield,
8623 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
8624 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
8625 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
8626 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
8627 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
8628 order to make the new binding of case-fold-search immediately
8629 visible.
8630
8631 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8632
8633 * textmodes/bibtex.el: Copyright notice is up to date.
8634 Added constant 'bibtex-maintainer-salutation.
8635
8636 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
8637 than make-temp-name, use match-string-no-properties and eliminate
8638 a quadratic behavior when building bibtex-strings.
8639
8640 * bibtex.el (bibtex-reference-key): Accept string entries whose
8641 reference key contains upper case letters.
8642
8643 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8644
8645 * bibtex.el (bibtex-reference-head): Allow entries to start with
8646 a new line.
8647
8648 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8649
8650 * bibtex.el: Hiding of entry bodies is not longer provided by
8651 bibtex.el directly. Instead the hideshow package can be used.
8652 Added a special bibtex entry to hs-special-modes-alist.
8653 (bibtex-hs-forward-sexp): Added for hideshow.el.
8654
8655 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8656
8657 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
8658 at ':' characters by call to split-string.
8659
8660 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8661
8662 * textmodes/bibtex.el: Added RCS version identification.
8663
8664 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8665
8666 * textmodes/bibtex.el: Some temporary comments removed.
8667 (bibtex-field-name, bibtex-entry-type): Made the relationship
8668 explicit.
8669 (bibtex-field-const): Allow capital letters.
8670 (bibtex-start-of-string): Deleted because unused.
8671
8672 * textmodes/bibtex.el: Unified some nomenclature. We no longer
8673 use the term 'reference' to describe a bibtex entry as a whole.
8674 Further, reference keys are no longer called 'labels'.
8675 (bibtex-keys): Renamed to bibtex-reference-keys.
8676 (bibtex-reformat-previous-labels): Renamed to
8677 bibtex-reformat-previous-reference-keys.
8678 (bibtex-reference-type): Renamed to bibtex-entry-type.
8679 (bibtex-reference-head): Renamed to bibtex-entry-head.
8680 (bibtex-reference-maybe-empty-head): Renamed to
8681 bibtex-entry-maybe-empty-head.
8682 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
8683 (bibtex-search-reference): Renamed to bibtex-search-entry.
8684 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
8685 bibtex-enclosing-entry-maybe-empty-head.
8686 (bibtex-entry-field-alist, bibtex-entry-head,
8687 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
8688 bibtex-map-entries, bibtex-search-entry,
8689 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
8690 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
8691 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
8692 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
8693 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
8694 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
8695 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
8696
8697 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8698
8699 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
8700 comment.
8701 (bibtex-format-field-delimiters): New function, functionality
8702 extracted from bibtex-format-entry.
8703 (bibtex-autokey-get-yearfield-digits): New function, functionality
8704 extracted from bibtex-autokey-get-yearfield.
8705
8706 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
8707 entries in order to avoid stack overflow in the regexp matcher if
8708 field contents become large.
8709 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
8710 bibtex-field-string-part-not-braced,
8711 bibtex-field-string-part-no-inner-braces,
8712 bibtex-field-string-part-1-inner-brace,
8713 bibtex-field-string-part-2-inner-braces,
8714 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
8715 bibtex-field-string-quoted, bibtex-field-string,
8716 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
8717 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
8718 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
8719 as parsing is now performed by the following functions.
8720 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
8721 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
8722 bibtex-parse-field-string, bibtex-search-forward-field-string,
8723 bibtex-parse-association, bibtex-field-name-for-parsing,
8724 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
8725 bibtex-search-forward-field, bibtex-search-backward-field,
8726 bibtex-start-of-field, bibtex-end-of-field,
8727 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
8728 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
8729 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
8730 bibtex-parse-string, bibtex-search-forward-string,
8731 bibtex-search-backward-string, bibtex-start-of-string,
8732 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
8733 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
8734 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
8735 entries. Instead of reporting the results of the parsing by
8736 match-beginning or match-end, these functions return data structures
8737 that hold the corresponding positions.
8738 (bibtex-enclosing-field): Changed to also report field boundaries by
8739 return values rather than by match-beginning or match-end. The
8740 following functions have been adapted to use the new parsing
8741 functions.
8742 (bibtex-skip-to-valid-entry, bibtex-search-reference,
8743 bibtex-enclosing-field, bibtex-format-entry,
8744 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
8745 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
8746 bibtex-print-help-message, bibtex-end-of-entry,
8747 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
8748 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
8749 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
8750 method for parsing.
8751 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
8752 bibtex-map-entries, bibtex-flash-head,
8753 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
8754 bibtex-autokey-change, bibtex-autokey-get-namefield,
8755 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
8756 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
8757 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
8758 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
8759 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
8760 order to make the new binding of case-fold-search immediately
8761 visible.
8762
8763 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8764
8765 * textmodes/bibtex.el: Copyright notice is up to date.
8766 Added constant 'bibtex-maintainer-salutation.
8767
8768 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
8769 than make-temp-name, use match-string-no-properties and eliminate
8770 a quadratic behavior when building bibtex-strings.
8771
8772 * bibtex.el (bibtex-reference-key): Accept string entries whose
8773 reference key contains upper case letters.
8774
8775 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8776
8777 * bibtex.el (bibtex-reference-head): Allow entries to start with
8778 a new line.
8779
8780 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8781
8782 * bibtex.el: Hiding of entry bodies is not longer provided by
8783 bibtex.el directly. Instead the hideshow package can be used.
8784 Added a special bibtex entry to hs-special-modes-alist.
8785 (bibtex-hs-forward-sexp): Added for hideshow.el.
8786
8787 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8788
8789 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
8790 proceedings entry type (for cross referencing). Thanks to Wagner
8791 Toledo Correa for the suggestion.
8792
8793 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
8794
8795 2000-02-14 Kenichi Handa <handa@etl.go.jp>
8796
8797 * international/characters.el: Setup case table for Vietnamese.
8798
8799 2000-02-12 Gerd Moellmann <gerd@gnu.org>
8800
8801 * uniquify.el (toplevel): Require CL at compile time.
8802 (uniquify-push): Removed.
8803
8804 * shadowfile.el (shadow-when): Removed.
8805
8806 * tempo.el (tempo-dolist, tempo-mapc): Removed.
8807 (tempo-process-and-insert-string): Use dolist instead of
8808 tempo-dolist.
8809
8810 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
8811 regexp for paragraph-start.
8812
8813 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
8814 commas as well.
8815
8816 2000-02-10 Dave Love <fx@gnu.org>
8817
8818 * wid-edit.el: (widgets) [defgroup]: Remove url link.
8819 (widget-color-choice-list, widget-color-history, widget-mouse-help):
8820 Deleted.
8821 (widget-specify-field, widget-specify-button): Don't use
8822 widget-mouse-help as help-echo property.
8823 (default): Use #'ignore for :validate and :mouse-down-action.
8824 (checkbox): Add help-echo.
8825 (widget-sexp-validate): Rewritten to clarify error messages.
8826 (character): Use char-valid-p in :match function.
8827 (widget-color-complete): Use facemenu-color-alist.
8828 (widget-color-action): Use facemenu-read-color.
8829
8830 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
8831 set up `caar' &c that we now have.
8832
8833 2000-02-09 Ray Blaak <blaak@gnu.org>
8834
8835 * delphi.el: Make resourcestring a declaration region, like const
8836 and var.
8837
8838 2000-02-09 Dave Love <fx@gnu.org>
8839
8840 * bindings.el (mode-line-input-method-map): New variable.
8841 (mode-line-mule-info): Use it; fix last change.
8842 (mode-line-mode-menu): Move definition.
8843 (mode-line-mouse-sensitive-p): Deleted.
8844 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
8845 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
8846 level.
8847
8848 * startup.el (command-line-1): Don't call
8849 make-mode-line-mouse-sensitive.
8850
8851 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
8852
8853 * mail/rmail.el (rmail-retry-failure): Use
8854 rmail-beginning-of-message before rmail-toggle-header, because the
8855 former toggles headers.
8856
8857 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
8858
8859 * diff-mode.el (diff-kill-junk): New interactive function.
8860 (diff-reverse-direction): Use delete-and-extract-region.
8861 (diff-post-command-hook): Restrict the area so that the hook also works
8862 outside of any diff hunk. This is necessary for the minor-mode.
8863 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
8864 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
8865
8866 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
8867 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
8868 so that it can be used more easily in <foo>-mode-hook. Also make sure
8869 to avoid duplicate entries.
8870 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
8871 (font-lock-remove-keywords): Just as was done for `add', allow it to
8872 work even if font-lock-mode is nil. Also make sure we don't modify
8873 any pre-existing list by forcing a copy-sequence. Finally rename
8874 `major-mode' to `mode'.
8875 (font-lock-fontify-syntactic-anchored-keywords)
8876 (font-lock-fontify-anchored-keywords)
8877 (font-lock-fontify-keywords-region): Use line-end-position.
8878 Don't make `font-lock-multiline' local (it's now done in
8879 font-lock-set-defaults).
8880 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
8881 move the `font-lock-fontified' creation to inside the `unless'.
8882
8883 2000-02-06 Andrew Innes <andrewi@gnu.org>
8884
8885 * term/w32-win.el (x-handle-args): Comment out call to message,
8886 which occurs before window system is initialized.
8887
8888 * makefile.nt: Add support for recompiling lisp code.
8889
8890 2000-02-04 Dave Love <fx@gnu.org>
8891
8892 * bindings.el (mode-line-mule-info): Fix/extend last change.
8893
8894 * completion.el: Replace completion-dolist with dolist.
8895
8896 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
8897 dotimes.
8898
8899 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
8900
8901 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
8902 environment names before they go into the section regexp.
8903
8904 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
8905 char class in regexp.
8906
8907 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
8908 `case-fold-search' to nil.
8909
8910 * progmodes/idlwave.el (idlwave-template): Respect
8911 `idlwave-abbrev-change-case'.
8912 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
8913 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
8914 idlwave-while): respect `idlwave-reserved-word-upcase'.
8915 (idlwave-rw-case): New function.
8916 (idlwave-statement-match): Fixed problem with assignment regexp.
8917 (idlwave-font-lock-keywords): Improved regexp for keyword
8918 parameters.
8919 (idlwave-surround): New argument LENGTH to support padding of
8920 operators longer than 1 char.
8921
8922 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
8923 idlwave-shell-expression-overlay. Implemented printing of
8924 expressions on higher levels of the calling stack.
8925 (idlwave-shell-display-level-in-calling-stack): Restore stack
8926 level.
8927 (idlwave-retrieve-expression-from-level): New function.
8928 (idlwave-shell-last-calling-stack): Variable removed.
8929 (idlwave-shell-reset): Argument action reversed (`visible' to
8930 `hidden'). Also remove stop-line overlay.
8931 (idlwave-shell-calling-stack-routine): New variable.
8932 (idlwave-shell-parse-stack-and-display): Messages now display
8933 negative level numbers.
8934 (idlwave-shell-mode): Set `modeline-format'.
8935 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
8936 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
8937 21.
8938 (idlwave-shell-print-expression-function): New option.
8939
8940 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
8941 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
8942 `tool-bar' instead of `toolbar'.
8943
8944 2000-02-02 Dave Love <fx@gnu.org>
8945
8946 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
8947 emacs-lisp-mode-hook. Don't check for defalias being defined.
8948
8949 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
8950 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
8951 the new builtins directly.
8952
8953 * whitespace.el (whitespace): Add :version to defgroup.
8954
8955 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
8956 Doc fix.
8957
8958 * thingatpt.el (sexp-at-point, symbol-at-point)
8959 (number-at-point, list-at-point): Add autoload cookie.
8960
8961 * recentf.el (recentf): Add :version to defgroup.
8962
8963 * quickurl.el (quickurl): Add :version to defgroup.
8964
8965 * elide-head.el (elide-head): Use point-marker more.
8966
8967 * bs.el (bs): Add :version to defgroup.
8968
8969 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
8970
8971 * progmodes/delphi.el (delphi): Add :version to defgroup.
8972
8973 2000-02-02 Gerd Moellmann <gerd@gnu.org>
8974
8975 * ange-ftp.el (ange-ftp-write-region): Handle case that
8976 succeeding process operation sets a different coding system.
8977
8978 * calculator.el: New file.
8979
8980 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
8981
8982 * frame.el (frames-on-display-list, framep-on-display): New
8983 functions.
8984 (display-mouse-p, display-popup-menus-p, display-graphic-p)
8985 (display-selections-p, display-screens, display-pixel-width)
8986 (display-pixel-height, display-mm-width, display-mm-height)
8987 (display-backing-store, display-save-under, display-planes)
8988 (display-color-cells, display-visual-class): New functions.
8989
8990 * term/tty-colors.el (tty-color-gray-shades): New function.
8991
8992 * faces.el (display-color-p): Use framep-on-display.
8993 (display-grayscale-p): New function.
8994
8995 2000-01-31 Dave Love <fx@gnu.org>
8996
8997 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
8998 (create-fontset-from-x-resource): Don't concat integers.
8999
9000 2000-01-31 Inge Frick <inge@nada.kth.se>
9001
9002 * view.el: Some changes in documentation. Removed some trailing
9003 whitespace. Changed some parameter names to agree with
9004 documentation.
9005 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
9006 window is not deleted. Modifies change 1998-04-26.
9007
9008 2000-01-31 Gerd Moellmann <gerd@gnu.org>
9009
9010 * windmove.el: New file.
9011
9012 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
9013 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
9014 progmodes/ebnf-yac.el: Update copyright and license info.
9015
9016 * jit-lock.el (jit-lock-function): Widen before calculating end
9017 position.
9018 (jit-lock-stealth-chunk-start): Rewritten.
9019
9020 * info.el (Info-title-face-alist): Removed.
9021 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
9022 faces.
9023 (Info-fontify-node): Use these faces.
9024
9025 2000-01-30 Gerd Moellmann <gerd@gnu.org>
9026
9027 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
9028 (cl-macro-list1): Recognize `&allow-other-keys' instead of
9029 `&allow-other-keywords'.
9030
9031 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
9032 the list of directories scanned heuristically.
9033
9034 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
9035 exist.
9036
9037 2000-01-30 Jason Rumney <jasonr@gnu.org>
9038
9039 * w32-fns.el: Define w32-tty-standard-colors.
9040
9041 * startup.el (command-line): Use w32-tty-standard-colors when in
9042 w32 console mode.
9043
9044 2000-01-30 Dave Love <fx@gnu.org>
9045
9046 * jka-compr.el (jka-compr-load): Fix up load-history.
9047
9048 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
9049
9050 * emacs-lisp/cl-macs.el: Revert previous change.
9051
9052 2000-01-29 Dave Love <fx@gnu.org>
9053
9054 * facemenu.el: Purecopy various strings.
9055
9056 * timezone.el (timezone-fix-time): Window against 69 for two-digit
9057 years. Deal with three-digit years.
9058
9059 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
9060 defconst, purecopy.
9061 (help-back-label): Purecopy it.
9062
9063 2000-01-18 Gerd Moellmann <gerd@gnu.org>
9064
9065 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
9066 variable. If non-nil, order the buffer list according to the
9067 currently selected frame.
9068 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
9069 non-nil, pass the selected frame to function buffer-list.
9070
9071 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9072
9073 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
9074
9075 2000-01-28 Dave Love <fx@gnu.org>
9076
9077 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
9078
9079 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
9080 Don't use lisp-indent-hook property.
9081 (cl-abs): Remove.
9082
9083 * subr.el: Move out indent and edebug specs for when and unless.
9084
9085 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
9086 when, unless.
9087
9088 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
9089 unless, when.
9090
9091 2000-01-28 Gerd Moellmann <gerd@gnu.org>
9092
9093 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
9094 `collecting' as synonym for `collect'.
9095
9096 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
9097 for the case it contains spaces.
9098
9099 * simple.el (what-cursor-position): Change formatting of
9100 messages.
9101
9102 * frame.el (delete-other-frames): New function.
9103 (toplevel): Bind it to C-x 5 1.
9104
9105 * sort.el (sort-numeric-base): New option.
9106 (sort-numeric-fields): If number starts with `0' or `0[xX[',
9107 interpret it as octal or hexadecimal. Use sort-numeric-base
9108 as default base.
9109
9110 * progmodes/glasses.el: New file.
9111
9112 2000-01-27 Gerd Moellmann <gerd@gnu.org>
9113
9114 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
9115 userids differently.
9116
9117 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
9118 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
9119 progmodes/ebnf-yac.el: New files.
9120
9121 2000-01-26 Dave Love <fx@gnu.org>
9122
9123 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
9124 on a function with an empty body. [From Eric Ludlam.]
9125
9126 2000-01-25 Andre Spiegel <spiegel@gnu.org>
9127
9128 * vc.el (vc-version-diff): Make sure file name is expanded.
9129
9130 2000-01-25 Gerd Moellmann <gerd@gnu.org>
9131
9132 * scroll-bar.el (scroll-bar-timer): Variable removed.
9133 (scroll-bar-toolkit-scroll): Don't use a timer.
9134
9135 2000-01-25 Kenichi Handa <handa@etl.go.jp>
9136
9137 * language/thai-util.el (thai-composition-function): Delete
9138 superfluous `a'.
9139
9140 2000-01-24 Dave Love <fx@gnu.org>
9141
9142 * fortran.el (fortran-mode): Use beginning-of-defun-function,
9143 end-of-defun-function.
9144
9145 * font-lock.el (turn-on-font-lock): Don't depend on window-system
9146 &c.
9147
9148 2000-01-22 Jason Rumney <jasonr@gnu.org>
9149
9150 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
9151 conflicts with new face support.
9152
9153 2000-01-22 Richard M. Stallman <rms@gnu.org>
9154
9155 * replace.el (query-replace): Rename last arg to DELIMITED.
9156 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
9157 (query-replace-regexp): Likewise.
9158
9159 2000-01-20 Richard M. Stallman <rms@gnu.org>
9160
9161 * subr.el (with-syntax-table): Use make-symbol, not gensym.
9162
9163 * emacs-lisp/lisp.el (beginning-of-defun-function):
9164 Variable renamed from beginning-of-defun.
9165 Do not call make-variable-buffer-local.
9166 (beginning-of-defun-raw): Use new variable name; doc fix.
9167 (beginning-of-defun): Doc fix.
9168 (end-of-defun-function): Variable renamed from end-of-defun.
9169 Do not call make-variable-buffer-local.
9170 (end-of-defun): Use new variable name; doc fix.
9171
9172 * subr.el (dolist, dotimes): Copied from cl-macs.el
9173 and made to work.
9174
9175 * mail/undigest.el (rmail-digest-end-regexps):
9176 Variable replaces rmail-digest-end-regexp.
9177 Allows multiple regexps for detecting the end line.
9178 (undigestify-rmail-message): Corresponding changes.
9179
9180 2000-01-19 Dave Love <fx@gnu.org>
9181
9182 * files.el (user-init-file): Don't declare here -- is primitive.
9183
9184 * startup.el (command-line): Check for compiled user-init-file and
9185 set to uncompiled version if necessary.
9186
9187 2000-01-18 Gerd Moellmann <gerd@gnu.org>
9188
9189 * mail/undigest.el (rmail-digest-end-regexp): New user option.
9190 (undigestify-rmail-message): Use it.
9191
9192 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
9193
9194 2000-01-17 Gerd Moellmann <gerd@gnu.org>
9195
9196 * tmm.el (tmm-goto-completions): Adapt to prompt being part
9197 of mini-buffer.
9198
9199 2000-01-14 Gerd Moellmann <gerd@gnu.org>
9200
9201 * emacs-lisp/copyright.el (copyright-update): Removed the
9202 requirement for a trailing space from `copyright-regexp', to
9203 support copyrights with owner specified on a separate line..
9204
9205 * align.el: New file.
9206
9207 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
9208
9209 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
9210
9211 2000-01-13 Dave Love <fx@gnu.org>
9212
9213 * ph.el: Removed. (Obsoleted by EUDC.)
9214
9215 2000-01-13 Gerd Moellmann <gerd@gnu.org>
9216
9217 * net/eudc.el (toplevel): Remove autoloaded code installing
9218 menu with easymenu, because that causes build problems.
9219
9220 * frame.el (frame-notice-user-settings): New variable.
9221 (frame-notice-user-settings): Don't modify frame parameters
9222 if called a second time.
9223
9224 2000-01-13 Richard M. Stallman <rms@gnu.org>
9225
9226 * frame.el (frame-notice-user-settings):
9227 Notice default-frame-parameters even for non-window frames.
9228
9229 2000-01-13 Gerd Moellmann <gerd@gnu.org>
9230
9231 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
9232 for Emacs.
9233 (eudc-bob-can-display-inline-images): Extend for Emacs.
9234 (eudc-bob-toggle-inline-display): Ditto.
9235 (eudc-bob-display-jpeg): Ditto.
9236
9237 2000-01-12 Gerd Moellmann <gerd@gnu.org>
9238
9239 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
9240 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
9241 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
9242
9243 * add-log.el (add-change-log-entry): Fix error trying an `(insert
9244 nil)'.
9245
9246 * subdirs.el: Add `net' directory.
9247
9248 * net: New directory.
9249
9250 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
9251 eval-last-sexp. Don't bind debug-on-error here.
9252 (eval-last-sexp): New function. Bind debug-on-error if
9253 eval-expression-debug-on-error is non-nil.
9254 (eval-defun-2, eval-defun): Likewise.
9255
9256 * simple.el (eval-expression): Don't bind debug-on-error if
9257 eval-expression-debug-on-error is nil. Detect changed
9258 debug-on-error, and propagate new value to global binding, if
9259 eval-expression-debug-on-error is non-nil,
9260 (eval-expression-debug-on-error): Change doc string.
9261
9262 2000-01-11 Richard M. Stallman <rms@gnu.org>
9263
9264 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
9265
9266 * emacs-lisp/lisp-mode.el (with-syntax-table):
9267 Set up lisp-indent-function property.
9268
9269 * subr.el (with-syntax-table): Moved from simple.el.
9270
9271 * simple.el (with-syntax-table): Moved to subr.el.
9272
9273 2000-01-11 Gerd Moellmann <gerd@gnu.org>
9274
9275 * tmm.el (tmm-shortcut): Delete region after prompt instead
9276 of erasing buffer.
9277
9278 * textmodes/fill.el (fill-common-string-prefix): New function.
9279 (fill-context-prefix): Use the longest common prefix of first
9280 and second line fill prefix, if there is one.
9281
9282 2000-01-11 Richard M. Stallman <rms@gnu.org>
9283
9284 * array.el (array-mode): Don't use make-variable-buffer-local.
9285 Use make-local-variable for `truncate-lines'.
9286
9287 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
9288
9289 * add-log.el (add-log-current-defun): Handle user-defined
9290 add-log-current-function returning nil,
9291
9292 * add-log.el (add-change-log-entry): Insert version number
9293 if having found a current function
9294
9295 * add-log.el (add-log-current-defun): Call
9296 `add-log-current-defun-function'. Try matches at level 0 and
9297 level 1. Strip whitespace from defun found.
9298
9299 2000-01-10 John Wiegley <johnw@gnu.org>
9300
9301 * allout.el (isearch-done/outline-provisions): Added `edit'
9302 argument to correspond with the current definition of
9303 `isearch-done'.
9304
9305 2000-01-10 Dave Love <fx@gnu.org>
9306
9307 * elide-head.el (elide-head): Use point-marker, not point.
9308
9309 2000-01-10 Gerd Moellmann <gerd@gnu.org>
9310
9311 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
9312 before and after the year 2000.
9313
9314 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
9315 Add ispell- prefix.
9316
9317 2000-01-10 Ken Stevens <k.stevens@ieee.org>
9318
9319 * ispell.el: Only define dictionaries in menus when they exist.
9320 (version18p): New variable.
9321 (version20p): New variable.
9322 (xemacsp): New variable.
9323 (ispell-choices-win-default-height): Fix for XEmacs visibility.
9324 (ispell-dictionary-alist1): Added Brasileiro dictionary.
9325 (ispell-dictionary-alist6): Russian command lines no longer accept
9326 run-together words.
9327 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
9328 (ispell-dictionary-alist): Add koi8-r to customize definition.
9329 (check-ispell-version): Added documentation string. Returns
9330 library path when called non-interactively.
9331 (ispell-menu-map-needed): Uses new variables.
9332 (ispell-library-path): New variable.
9333 (ispell-decode-string): XEmacs fix for bogus variable bindings.
9334 (ispell-word): Improved documentation string. Test for valid
9335 character mappings. Correctly check typed in word changes that can
9336 result in single words split into multiple words. Returns
9337 replacement word.
9338 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
9339 replace in recursive query replace mode. Help message for
9340 recursive edit mode.
9341 (ispell-show-choices): Protect against bad framepop bindings.
9342 (ispell-help): Fix to work with XEmacs.
9343 (ispell-highlight-spelling-error): Use new variables.
9344 (ispell-overlay-window): Fix to work with XEmacs.
9345 (ispell-parse-output): Passed and returns location information
9346 tracking spelling corrections. Doesn't recheck same word on
9347 current line.
9348 (ispell-init-process): Protect against bogus XEmacs variable binding.
9349 Fix call to single argument in sleep-for. Use new variables.
9350 (ispell-region): Passed and returns location information tracking
9351 spelling corrections. Doesn't check same word on current line.
9352 Improved documentation string. Doesn't resend a line already
9353 checked to the ispell process - fixes bug in LaTeX parsing.
9354 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
9355 (ispell-skip-region): No longer skips <TT> in SGML.
9356 (ispell-process-line): Tracks location information with spelling
9357 corrections. Added documentation string. Accounts for words
9358 already accepted on this line. Don't allow query-replace on line
9359 starting with math characters. Doesn't resend a line already sent
9360 to ispell process. Fixes alignment error bug.
9361
9362 2000-01-10 Richard M. Stallman <rms@gnu.org>
9363
9364 * dired-x.el (dired-guess-shell-alist-default):
9365 Suggest xloadimage, which is free, not xv, which isn't.
9366
9367 * ange-ftp.el (ange-ftp-file-name-nondirectory):
9368 Don't ever include the host name or user name in the value.
9369
9370 2000-01-09 Gerd Moellmann <gerd@gnu.org>
9371
9372 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
9373 of a real newline.
9374
9375 2000-01-09 Stephen Eglen <stephen@gnu.org>
9376
9377 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
9378 for .png files.
9379
9380 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
9381
9382 * cus-edit.el (custom-hook-convert-widget): Fix comment.
9383
9384 2000-01-09 Gerd Moellmann <gerd@gnu.org>
9385
9386 * progmodes/cperl-mode.el: Replace ^F with ^L.
9387
9388 * sendmail.el (toplevel): Provide `sendmail' when compiling
9389 before `require'ing rmail and mailalias to prevent infinite
9390 recursion.
9391
9392 2000-01-08 Dave Love <fx@gnu.org>
9393
9394 * emacs-lisp/backquote.el: Remove inappropriate customization
9395 (allowing custom.el to use backquote).
9396
9397 2000-01-07 Dave Love <fx@gnu.org>
9398
9399 * add-log.el (add-log-debugging): Deleted.
9400 (add-change-log-entry): Treat a backup FILE-NAME as its parent
9401 file. Remove debugging code.
9402 (change-log-get-method-definition, change-log-name): Add doc.
9403 (change-log-sortable-date-at): New function.
9404 (change-log-merge): New command.
9405
9406 * time.el (display-time-string-forms): Make the Mail string active.
9407 (display-time-update): Provide help-echo for load average.
9408
9409 * bindings.el (make-mode-line-mouse2-map): New function.
9410 (mode-line-modified): Use it and simplify.
9411 (mode-line-mule-info): Provide help-echo info.
9412 (minor-mode-alist): Activate the strings.
9413 (make-mode-line-mouse-sensitive): Simplify for
9414 mode-line-buffer-identification.
9415
9416 2000-01-07 Gerd Moellmann <gerd@gnu.org>
9417
9418 * play/pong.el: New file.
9419
9420 2000-01-06 Dave Love <fx@gnu.org>
9421
9422 * array.el: Assorted cleanups for compiler warnings, doc strings,
9423 `array-' prefix for symbols.
9424
9425 2000-01-05 Dave Love <fx@gnu.org>
9426
9427 * textmodes/outline.el (outline-mode-menu-bar-map): Add
9428 outline-headers-as-kill.
9429 (outline-mode): Define imenu-generic-expression.
9430 (outline-headers-as-kill): New command.
9431
9432 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
9433 from paragraph-start.
9434 (paragraph-indent-minor-mode): New command.
9435
9436 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
9437 M-C-e, M-C-h, C-j, C-xnd, TAB.
9438 (fortran-mode): Set beginning-of-defun, end-of-defun.
9439 (fortran-column-ruler): Simplify.
9440 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
9441 (fortran-with-subprogram-narrowing): Likewise.
9442 (fortran-indent-subprogram): Call mark-defun.
9443 (fortran-check-for-matching-do): Change narrowing.
9444
9445 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
9446 (cl-lucid-hash-tag): Delete.
9447 (cl-hash-table-p): Correct test for native table.
9448 (cl-hash-table-count): Use hash-table-count.
9449
9450 * browse-url.el (browse-url): Fix case of
9451 browse-url-browser-function being an alist.
9452
9453 2000-01-05 Carsten Dominik <cd@gnu.org>
9454
9455 * textmodes/reftex-vars.el (reftex-parse-file-extension)
9456 (reftex-index-phrase-file-extension): New options.
9457
9458 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
9459 Use new option `reftex-index-phrase-file-extension'.
9460
9461 * textmodes/reftex.el (reftex-access-parse-file): Use new option
9462 `reftex-parse-file-extension'.
9463
9464 2000-01-05 Dave Love <fx@gnu.org>
9465
9466 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
9467 (beginning-of-defun-raw): Use it.
9468 (end-of-defun): New variable.
9469 (end-of-defun): Use it.
9470 (check-parens): New command.
9471
9472 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
9473
9474 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
9475 (hs-show-block): Don't use `mapcar' when not accumulating.
9476
9477 Fix buglet in local variables initialization.
9478
9479 2000-01-05 Andreas Schwab <schwab@suse.de>
9480
9481 * hscroll.el (hscroll): Doc fix.
9482
9483 2000-01-05 Carsten Dominik <cd@gnu.org>
9484
9485 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
9486 idlw-toolbar.
9487
9488 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
9489 file idlw-rinfo.el.
9490 (idlwave-customize): load must read file idlw-shell.el.
9491 (idlwave-create-customize-menu): load must read file idlw-shell.el.
9492
9493 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
9494
9495 * progmodes/idlw-shell.el: Also provide idlwave-shell
9496 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
9497 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
9498
9499 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
9500 both reftex-dcr and reftex-vcr.
9501
9502 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
9503
9504 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9505
9506 * ps-print.el: PostScript code now is in separate files, doc fix.
9507 (ps-print-version): New version number (5.0.3).
9508 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
9509 local.
9510 (ps-spool-config): Initialization fix.
9511 (ps-print-prologue-1, ps-print-prologue-2)
9512 (ps-print-duplex-feature): PostScript code moved to separated file.
9513 (ps-background-image): Little code reformating.
9514 (ps-begin-file, ps-begin-job): Fix code.
9515 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
9516 (ps-prologue-file): New fun.
9517
9518 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9519
9520 * ps-vars.el: Eliminated.
9521
9522 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
9523 `;;;###autoload'.
9524
9525 * ps-print.el: ps-vars eliminated, doc fix.
9526 (ps-print-version): New version number (5.0.2).
9527 (ps-spool-config): Initialization fix.
9528 (ps-print-customize): New fun.
9529
9530 2000-01-04 Gerd Moellmann <gerd@gnu.org>
9531
9532 * autorevert.el (auto-revert-mode): Return value of
9533 auto-revert-mode.
9534
9535 2000-01-04 Dave Love <fx@gnu.org>
9536
9537 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
9538 menu items.
9539
9540 2000-01-03 Dave Love <fx@gnu.org>
9541
9542 * elide-head.el (elide-head) [defgroup]: Add :version.
9543
9544 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
9545 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
9546 `cl-hash-table-p', not `hash-table-p'.
9547 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
9548
9549 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
9550
9551 * faces.el (face-read-integer, read-face-attribute)
9552 (color-defined-p, color-values): unspecified-{f,b}g are now
9553 strings.
9554
9555 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
9556
9557 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
9558 at comment end, and re-insert them after filling.
9559
9560 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
9561
9562 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
9563 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
9564 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
9565
9566 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
9567
9568 * term/x-win.el (xw-defined-colors): Call color-supported-p,
9569 the new name of face-color-supported-p.
9570
9571 * term/w32-win.el (xw-defined-colors): Likewise.
9572
9573 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
9574
9575 * simple.el (completion-setup-function): Count completion-size
9576 from minibuffer-prompt-end, not from point-min.
9577
9578 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
9579
9580 * faces.el (read-face-attribute, defined-colors, color-defined-p):
9581 Pass the frame to tty-color-* functions.
9582 (display-color-p, frame-set-background-mode): Pass the frame to
9583 tty-display-color-p.
9584
9585 * term/tty-colors.el (tty-defined-color-alist): Renamed from
9586 tty-color-alist.
9587 (tty-color-alist, tty-modify-color-alist): New functions.
9588 (tty-color-define, tty-color-clear, tty-color-approximate)
9589 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
9590 an optional parameter FRAME.
9591
9592 2000-01-01 Gerd Moellmann <gerd@gnu.org>
9593
9594 * image.el (create-image, defimage): Don't assume image data is a
9595 string.
9596
9597 * image.el (defimage): Handle specifications containing :data
9598 instead of :file.
9599 (image-type-from-data): New function.
9600 (image-type-from-file-header): Use it.
9601 (create-image): Add parameter DATA-P.
9602
9603 See ChangeLog.8 for earlier changes.
9604
9605 ;; Local Variables:
9606 ;; coding: iso-2022-7bit-unix
9607 ;; End: