]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
(shiftf): Fix more. Simplify.
[gnu-emacs] / lisp / ChangeLog
1 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
2
3 * emacs-lisp/cl-macs.el (shiftf): Fix more. Simplify.
4
5 2001-11-29 Stefan Monnier <monnier@cs.yale.edu>
6
7 * emacs-lisp/crm.el (completing-read-multiple): Better preserve
8 the value of require-match in minibuffer-completion-confirm.
9 Use crm-local-completion-map.
10
11 * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
12 (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
13 (cl-make-type-test): Use char-valid-p for `character'.
14
15 * info.el (Info-complete-next-re, Info-complete-cache): New vars.
16 (Info-complete-menu-item): Rewrite. Add the ability to search
17 several sequential nodes. Add a simple caching mechanism.
18 (Info-goto-index): New function extracted from Info-index.
19 (Info-index): Use it. Add completion to the interactive spec.
20 (Info-menu-update): Simplify call to `Info-complete-menu-item'.
21
22 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
23
24 * COPYING: Removed.
25
26 2001-11-29 Dave Love <fx@gnu.org>
27
28 * progmodes/fortran.el: Fontify rewind, backspace. Doc fixes.
29 (fortran-window-create, fortran-window-create-momentarily):
30 Rewrite, moving error condition.
31 (fortran-beginning-do, fortran-beginning-if): Fix regexps.
32 (fortran-mode-syntax-table): Revert last change.
33
34 * international/mule.el: Doc fixes.
35 (map-charset-chars): New function.
36 (register-char-codings): Use it to cope with generic chars in
37 safe-chars.
38
39 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
40
41 * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
42
43 * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
44
45 * play/studly.el (studlify-word, studlify-region)
46 (studlify-buffer): Fix doc-string.
47 (studlify-buffer): Add autoload cookie.
48
49 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
50
51 * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
52 (outline-up-heading-all): Remove.
53 (hide-sublevels): Move to end-of-heading before calling flag-region.
54 (outline-copy-overlay, outline-discard-overlays): Remove.
55 (outline-flag-region): Use `remove-overlays'.
56 Don't move to end-of-heading.
57 (outline-next-visible-heading, outline-back-to-heading)
58 (outline-on-heading-p): Use outline-invisible-p.
59 (outline-font-lock-level): Use outline-up-heading's new arg.
60 (outline-minor-mode): Simplify.
61 (outline-map-tree, outline-reveal-toggle-invisible): New funs.
62 (outline): Put a `reveal-toggle-invisible' property.
63 (outline-level-heading): New var.
64 (outline-insert-heading, outline-promote, outline-demote)
65 (outline-toggle-children): New commands.
66
67 * progmodes/hideif.el (hif-end-of-line): New function.
68 (hide-ifdef-mode): Set line-move-ignore-invisible.
69 (hide-ifdef-region-internal): New function.
70 (hide-ifdef-region): Use it.
71 (hif-defined): Return an integer.
72 (hif-infix-to-prefix): Remove.
73 (hif-tokenize): Parse from the buffer rather than from a string.
74 Correctly tokenize integers. Use forward-comment.
75 (hif-expr): Use hif-or.
76 (hif-term): Use hif-and.
77 (hif-factor): Use hif-not. Handle numbers properly.
78 Don't require parenthesis around `defined's argument.
79 (hif-and, hif-or, hif-not): New funs.
80 (hif-canonicalize): Pass a region to hif-tokenize. Use hif-not.
81 (hif-hide-line): Don't hide the \n before the line.
82 (hif-possibly-hide): Correctly handle numeric evaluation results.
83
84 * progmodes/make-mode.el: Use line-(end|beginning)-position.
85 (makefile-mode): Set indent-line-function.
86 (makefile-browser-insert-continuation): Use with-current-buffer.
87 (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
88
89 2001-11-28 Karl Fogel <kfogel@red-bean.com>
90
91 * isearch.el (isearch-yank-internal): New helper function.
92 (isearch-yank-char): New function.
93 (isearch-yank-word, isearch-yank-line): Rewrite to use
94 isearch-yank-internal.
95
96 2001-11-28 Eli Zaretskii <eliz@is.elta.co.il>
97
98 * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
99 aren't supported. Print a message to that effect if invoked.
100
101 2001-11-27 Stephen Eglen <stephen@gnu.org>
102
103 * locate.el (locate): Put point at first matching file rather
104 than top of buffer.
105
106 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
107
108 * reveal.el: New file.
109
110 * progmodes/hideif.el: Misc cleanup.
111 (hide-ifdef-mode-submap): Put the def in the defvar.
112 Use substitute-key-definition.
113 (hide-ifdef-mode): Use define-minor-mode.
114 (hif-outline-flag-region): Remove.
115 (hif-show-all): Define in terms of hif-show-ifdef-region.
116 (hif-after-revert-function): Rename from hif-before-revert-function.
117 (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
118 (hif-tokenize): Use with-syntax-table.
119 (hif-make-range): Use `else' also for `else-p'.
120 (hif-range-else-p): Remove.
121 (hif-find-range): Simplify.
122 (hif-hide-line): Don't bother preserving buffer-modified-p.
123 (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
124 Don't use selective-display and inhibit-read-only.
125
126 * subr.el (copy-overlay, remove-overlays): New funs.
127
128 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
129
130 2001-11-27 Sam Steingold <sds@gnu.org>
131
132 * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
133 * lazy-lock.el, mouse-sel.el, mail/feedmail.el
134 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
135 * obsolete/c-mode.el, obsolete/cplus-md.el
136 * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
137 * term/sun-mouse.el, textmodes/artist.el:
138 Converted backquote to the new style.
139 * mouse.el, reposition.el: Likewise (in comments).
140 * expand.el: Likewise (in a string).
141
142 2001-11-27 Richard M. Stallman <rms@gnu.org>
143
144 * cus-edit.el (custom-load-symbol): Don't always load locate-library.
145
146 2001-11-26 Richard M. Stallman <rms@gnu.org>
147
148 * wid-edit.el (widget-toggle-value-create): On graphic terminal,
149 if :on-glyph or :off-glyph is a list, eval it and store it back.
150 (checkbox): Quote the values for :on-glyph and :off-glyph.
151
152 * cus-start.el (recursive-load-depth-limit): Delete item.
153
154 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
155
156 * help-fns.el (describe-categories, help-describe-category-set): New.
157 describe-categories moved here from src/category.c.
158
159 2001-11-26 Sam Steingold <sds@gnu.org>
160
161 * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
162 arguments to `insert' are strings.
163
164 2001-11-26 Richard M. Stallman <rms@gnu.org>
165
166 * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
167
168 2001-11-26 Eli Zaretskii <eliz@is.elta.co.il>
169
170 * loaddefs.el: Regenerated.
171
172 * international/mule-diag.el: Require help-fns instead of
173 help-funs.
174
175 * help-fns.el: Renamed from help-funs.el.
176
177 * startup.el (command-line-1): Don't try to call process-list if
178 it is not fboundp.
179
180 2001-11-26 Sam Steingold <sds@gnu.org>
181
182 * frame.el (show-trailing-whitespace): Remove :set argument (the
183 value was essentially identical to the defalt).
184
185 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
186
187 * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
188
189 * icomplete.el (icomplete-minibuffer-setup): Likewise.
190
191 * hilit-chg.el (hilit-chg-set): Likewise.
192
193 * speedbar.el (speedbar-mode): Likewise.
194
195 * calendar/calendar.el (calendar-mode): Likewise.
196
197 * play/yow.el (psychoanalyze-pinhead): Use insert instead of
198 insert-string.
199
200 * play/gamegrid.el (gamegrid-init-buffer): Likewise.
201
202 * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
203
204 * term/sun-mouse.el (sun-yank-selection): Likewise.
205
206 * textmodes/bib-mode.el (return-key-bib): Likewise.
207
208 * calendar/appt.el (appt-disp-window): Likewise.
209
210 * calendar/diary-lib.el (list-diary-entries): Likewise.
211
212 * array.el (array-reconfigure-rows): Likewise.
213
214 * filecache.el (file-cache-minibuffer-complete): Likewise.
215
216 * obsolete/cplus-md.el (fill-c++-comment): Likewise.
217
218 * strokes.el (strokes-prompt-user-save-strokes): Likewise.
219
220 * allout.el (outline-version, outline-open-topic)
221 (outline-rebullet-heading, outline-insert-listified)
222 (outline-latex-verbatim-quote-curr-line)
223 (outline-latexify-one-item, outlineify-sticky): Likewise.
224
225 * vc.el (vc-next-action-on-file): Likewise.
226 (vc-dired-mode): Remove make-local-hook.
227
228 2001-11-26 Andre Spiegel <spiegel@gnu.org>
229
230 * vc.el (vc-find-version): New function.
231 (vc-version-other-window): Redefined in terms of the above.
232
233 * log-view.el (log-view-find-version): New function.
234 (log-view-mode-map): Bind it to `f'.
235
236 2001-11-26 Gerd Moellmann <gerd@gnu.org>
237
238 * language/devan-util.el (dev-char-glyph): Escape `"' in
239 string literals.
240 (dev-glyph-glyph, dev-glyph-glyph-2)
241 (devanagari-compose-syllable-region): Likewise.
242
243 2001-11-26 Richard M. Stallman <rms@gnu.org>
244
245 * window.el (save-selected-window): No error if saved window is dead.
246
247 * help-funs.el (describe-syntax): Put (interactive) after doc string.
248
249 2001-11-26 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
250
251 * international/quail.el (quail-help): Require help-mode in
252 top-level instead.
253
254 * iswitchb.el (iswitchb-exhibit): Use insert instead of
255 insert-string.
256
257 * icomplete.el (icomplete-exhibit): Likewise.
258
259 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
260
261 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
262 (diff-hunk-kill): Simplify.
263 (diff-post-command-hook): Only apply to a single hunk.
264 (diff-hunk-text): Make `char-offset' non-optional.
265 (diff-find-text): Return a cons cell.
266 (diff-find-approx-text): New fun.
267 (diff-find-source-location): Use it.
268 (diff-apply-hunk, diff-test-hunk, diff-goto-source):
269 Adapt to new retval of diff-find-text.
270
271 * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
272 rather than integer- representation of dates.
273
274 * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
275
276 * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
277 (syntax-after): New fun.
278
279 * help-funs.el (describe-syntax): New fun.
280
281 * font-lock.el (font-lock-cache-state, font-lock-cache-position)
282 (font-lock-ppss-stats, font-lock-ppss): Remove.
283 (font-lock-fontify-syntactically-region): Remove tuning code.
284 (font-lock-compile-keywords): Fix off-by-one bug.
285 (font-lock-set-defaults): Don't set removed vars.
286 (c-keywords): Add `inline'.
287 (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
288
289 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
290 Set syntax-begin-function.
291 (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
292 (lisp-interaction-mode): Don't set local-abbrev-table any more.
293 (lisp-mode-auto-fill): Use syntax-ppss and obey
294 comment-auto-fill-only-comments.
295 (lisp-fill-paragraph): Use syntax-ppss.
296
297 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
298
299 * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
300 version of rmail-enable-mime.
301 (rmail-forward): Use it.
302
303 2001-11-25 Richard M. Stallman <rms@gnu.org>
304
305 * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
306
307 * international/quail.el (quail-keyboard-layout-button):
308 Define button type.
309 (quail-keyboard-customize-button): Likewise.
310 (quail-help): Use those button types. Require `help-mode'.
311 Avoid altering the argument `package'.
312
313 * help-mode.el (help-function, help-variable, help-face)
314 (help-coding-system, help-input-method, help-character-set):
315 Define each button type with its own explicit define-button-type.
316
317 * language/devan-util.el: Comment out parts of the file
318 which apparently are garbled.
319
320 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
321
322 * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
323 insert-string.
324
325 2001-11-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
326
327 * play/snake.el (snake-mode): Remove make-local-hook.
328
329 * play/tetris.el (tetris-mode): Likewise.
330
331 * play/decipher.el (decipher-mode): Likewise.
332
333 * tmm.el (tmm-add-prompt): Likewise.
334
335 2001-11-25 Sam Steingold <sds@gnu.org>
336
337 * menu-bar.el (menu-bar-apropos-menu): New variable.
338 Moved all `apropos' bindings to this menu.
339 (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
340
341 2001-11-24 KAWABATA, Taichi <batta@beige.ocn.ne.jp>
342
343 The following changes are for new indian languages support based
344 on Unicode charset and CDAC fonts.
345
346 * international/mule-conf.el: Change indian-1-column charset to
347 indian-glyph charset.
348
349 * international/characters.el: Adjusted for the change of
350 indian-1-column -> indian-glyph.
351
352 * international/fontset.el: Delete the setting for indian-1-column
353 and add the setting for indian-glyph in the default fontset.
354
355 * language/indian.el: Completely re-written.
356
357 * language/devanagari.el: Completely re-written.
358
359 * language/devan-util.el: Completely re-written.
360
361 * language/ind-util.el: New file.
362
363 2001-11-24 Richard M. Stallman <rms@gnu.org>
364
365 * startup.el (command-line-1): Don't do startup screen
366 if a subprocess is running. Call the startup screen buffer
367 "GNU Emacs". Make a special mode-line-format for it.
368
369 * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
370 (browse-url-galeon): Use that variable.
371
372 * mail/supercite.el (sc-toggle-var): Don't use set-variable or
373 eval-expression. Eval and set the variable simply.
374
375 * files.el (temporary-file-directory): Use defcustom.
376 (small-temporary-file-directory): Likewise.
377 (normal-backup-enable-predicate): Move down in file
378 after definition of temporary-file-directory.
379
380 * bindings.el (last-buffer, unbury-buffer): Doc fixes.
381
382 2001-11-24 Colin Walters <walters@debian.org>
383
384 * calc/calc-ext.el (calc-init-extensions): Update the rest of the
385 autoload names to match files renamed on initial calc import.
386
387 * calc/calc.el (Commentary): Cleanup, and add logistic curve
388 fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
389
390 2001-11-23 Colin Walters <walters@debian.org>
391
392 * Makefile.in (finder_setwins, setwins): Include Calc again.
393
394 * calc/calc-rules.el: Add header comment.
395
396 2001-11-23 Andre Spiegel <spiegel@gnu.org>
397
398 * vc.el (with-vc-properties): Don't bind `filename' locally.
399 (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
400 to avoid name clashes. Fix `lisp-indent-function' property for
401 both.
402
403 2001-11-23 Francesco Potorti` <pot@gnu.org>
404
405 * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
406
407 2001-11-22 Colin Walters <walters@debian.org>
408
409 * calc/calc-misc.el (report-calc-bug):
410 Use `reporter-prompt-for-summary-p'.
411
412 * calc/INSTALL, calc/Makefile: Remove.
413
414 2001-11-22 Miles Bader <miles@gnu.org>
415
416 * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
417 (reb-match-2, reb-match-3): Add dark-background variants.
418
419 2001-11-22 Colin Walters <walters@debian.org>
420
421 * calc/calc-misc.el (calc-info): Don't perform voodoo, just
422 (info "Calc").
423 (report-calc-bug): Use reporter.el.
424
425 * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
426
427 2001-11-21 Richard M. Stallman <rms@gnu.org>
428
429 * which-func.el (which-function): Call imenu--make-index-alist
430 if necessary to get a list of functions.
431 (which-function-imenu-failed): New variable.
432 (which-func-update): Handle all visible windows.
433 (which-func-update-1): New subroutine broken out of which-func-update.
434
435 * files.el (temporary-file-directory, null-device)
436 (small-temporary-file-directory): Definitions moved up.
437
438 * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
439 (cperl-non-problems, cperl-praise): Doc fixes.
440
441 * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
442 (sh-mode-syntax-table): Function restored.
443 Variable set up for use by function sh-mode-syntax-table.
444 (sh-set-shell): Set the syntax table.
445
446 * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
447
448 * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
449
450 * international/encoded-kb.el: Don't alter minor-map-alist.
451
452 2001-11-20 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
453
454 * files.el (auto-save-file-name-transforms): Put remote files in
455 temporary-file-directory rather than /tmp.
456
457 2001-11-21 Colin Walters <walters@debian.org>
458
459 * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
460 of (function ...) wrapper.
461
462 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
463
464 * derived.el (define-derived-mode): Create the abbrev-table
465 from inside the `defvar'.
466
467 * jit-lock.el (jit-lock-defer-time): New var.
468 (jit-lock-defer-timer, jit-lock-buffers): New vars.
469 (jit-lock-mode): Initialize them. Cancel the timers more carefully.
470 (jit-lock-function): Defer fontification if requested.
471 (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
472 (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
473 text property.
474 (jit-lock-deferred-fontify): New fun.
475
476 2001-11-20 Richard M. Stallman <rms@gnu.org>
477
478 * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
479 Set local-abbrev-table to lisp-mode-abbrev-table.
480
481 * emacs-lisp/re-builder.el (reb-mode):
482 Don't use define-derived-mode. Call kill-all-local-variables.
483
484 * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
485 Don't use define-derived-mode.
486
487 * help-mode.el (help-mode): Undo 2001-10-07 change.
488
489 * replace.el (occur-mode): Undo 2001-5-20 change.
490
491 2001-11-20 Jason Rumney <jasonr@gnu.org>
492
493 * w32-fns.el (w32-system-coding-system): Change to an alias for
494 locale-coding-system.
495 (set-w32-system-coding-system): Document the above change.
496 Set locale-coding-system instead.
497
498 2001-11-20 Richard M. Stallman <rms@gnu.org>
499
500 * ruler-mode.el: Add pagination.
501 (ruler-mode-toggle-show-tab-stops): No need to
502 test `ruler-mode' variable.
503
504 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
505
506 * play/landmark.el: Mark lm-mode as special.
507
508 * play/gomoku.el: Mark gomoku-mode as special.
509
510 2001-11-20 Juanma Barranquero <lektu@terra.es>
511
512 * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
513 (top-level): Bind it to C-c C-b.
514 (re-builder): Don't re-enter RE Builder Mode.
515
516 * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
517
518 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
519
520 * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
521 `manual-program'.
522
523 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
524 to a line without a comment.
525
526 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
527
528 * dired.el (dired-listing-switches): Mention in the doc string
529 that some switches are not supported by ls-lisp.el
530
531 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
532
533 * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
534 (imenu--create-keymap-2): Remove.
535 (imenu--create-keymap-1): Simplify, remove third argument.
536 (imenu--generic-function): Use dolist.
537 (imenu-find-default): New function.
538 (imenu--completion-buffer): Use it.
539 (imenu--mouse-menu): Use popup-menu.
540 (imenu--menubar-select): Return t rather than calling imenu.
541
542 * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
543 New functions, extracted from fill-region-as-paragraph.
544 (fill-region-as-paragraph): Use them.
545 Use an end marker instead of eob.
546 Ignore whitespace-only fill-prefixes when indenting according to mode.
547 Simplify the loop that searches for spaces backwards.
548
549 * textmodes/picture.el (picture-vertical-step)
550 (picture-horizontal-step): Don't use defconst for variables.
551
552 * mail/mail-extr.el: Use backquote/dolist/mapc/when. Docstring fixes.
553 (mail-extract-address-components): Downcase domain names.
554 (mail-extr-delete-char): Remove. Use delete-char instead.
555
556 * emulation/pc-select.el: Doc string fixes.
557 (pc-selection-mode): Don't treat macos as a tty.
558
559 * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
560
561 * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
562
563 * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
564 (mouse-wheel-progessive-speed): New var.
565 (mwheel-scroll): Use it and handle float values.
566
567 * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
568
569 * iswitchb.el (iswitchb-mode): Use define-minor-mode.
570 (iswitchb): Fix the case where the result was selected with the mouse.
571 (iswitchb-completion-help): Use the normal *Completions* now that
572 mouse selection works.
573 (iswitchb-minibuffer-setup): Simplify.
574
575 * newcomment.el (comment-column, comment-style, comment-multi-line)
576 (comment-auto-fill-only-comments): Remove :group arg.
577 (comment-padding): Add :type.
578 (comment-indent-new-line): Ignore comment-auto-fill-only-comments
579 if called interactively.
580
581 2001-11-19 Colin Walters <walters@verbum.org>
582
583 * calc/calc.el (toplevel): Add comment and version header.
584 (calc-init-base): Bump version to 2.02f, update date.
585
586 2001-11-19 Richard M. Stallman <rms@gnu.org>
587
588 * net/browse-url.el: Support Mozilla and Galeon.
589 By default, find the installed browser whichever it is.
590 (browse-url-mozilla): New function.
591 (browse-url-mozilla-sentinel): New function.
592 (browse-url-galeon, browse-url-galeon-sentinel): New functions.
593 (browse-url-default-browser): New function.
594 (browse-url-process-environment): Use browse-url-browser-display.
595 (browse-url-browser-display): Renamed from browse-url-netscape-display.
596 (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
597 (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
598 (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
599 (browse-url-browser-function): New default, new options.
600
601 2001-11-19 Sam Steingold <sds@gnu.org>
602
603 * bindings.el (last-buffer, unbury-buffer): New function.
604 (mode-line-unbury-buffer): Use `unbury-buffer'.
605
606 2001-11-18 Stephen Eglen <stephen@gnu.org>
607
608 * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
609 control behaviour when no further completion is possible.
610
611 2001-11-19 Colin Walters <walters@verbum.org>
612
613 * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
614 (math-showing-full-precision, math-with-extra-prec, math-working)
615 (calc-with-default-simplification)
616 (calc-with-trail-buffer): Use backtick.
617 (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
618 (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
619 (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
620 (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
621 (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
622 (Math-num-integerp, Math-bignum-test, Math-equal-int)
623 (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
624 (calc-record-compilation-date-macro): Deleted. Callers updated.
625 (math-format-radix-digit): Move to calc-bin.el.
626
627 * calc/calc.el (calc-record-compilation-date): Remove.
628 (calc-bug-address): Update.
629 (calc-settings-file): Use `user-init-file'.
630
631 * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
632 Handle null `calc-settings-file'.
633
634 * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
635 * calc/calc-keypd.el (calc-keypad-mode): New.
636 (calc-do-keypad): Use it.
637 (calc-keypad-map): Move into `calc-keypad-mode'.
638
639 * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
640 to defalias argument.
641
642 * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
643 (calcFunc-floor): Ditto.
644
645 * calc-units.el (calcFunc-usimplify): Ditto.
646
647 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
648 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
649 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
650 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
651 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
652 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
653 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
654 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
655 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
656 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
657 * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
658 and move them before their first use. Use `when', `unless'.
659 Remove trailing periods from error forms. Add description and
660 headers suggested by Emacs Lisp coding conventions.
661
662 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
663
664 * newcomment.el (comment-indent):
665 Fix misindentation for comment-only lines.
666 (comment-indent-new-line): Only obey comment-multi-line if the
667 comment-ender is not the end-of-line.
668
669 2001-11-19 Richard M. Stallman <rms@gnu.org>
670
671 * net/net-utils.el (network-connection-service-abbrev-alist):
672 New variable.
673
674 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
675 Advance to start of 3rd sexp by moving fwd and backing over it.
676 At first three elements, act like defun.
677
678 * delsel.el (delete-selection-pre-hook): Handle and resignal
679 file-supersession errors to interact properly with userlock.el.
680
681 2001-11-18 Richard M. Stallman <rms@gnu.org>
682
683 * progmodes/fortran.el (fortran-mode-syntax-table):
684 Specify punctuation syntax for backslash.
685
686 * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
687 All calls deleted.
688
689 * international/mule-util.el (string-to-sequence): Make it obsolete.
690 (string-to-list, string-to-vector): Implement them directly
691 using append and vconcat, not with string-to-sequence.
692
693 * startup.el (command-line): Set abbrevs-changed to nil after
694 reading the init file and the abbrevs file.
695
696 * isearch.el (isearch): Use magenta2 as bg for (background light)
697
698 2001-11-17 Richard M. Stallman <rms@gnu.org>
699
700 * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
701
702 * simple.el (minibuffer-history-sexp-flag): Doc fix.
703
704 2001-11-17 Stefan Monnier <monnier@cs.yale.edu>
705
706 * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
707 If set and if applicable, add a regexp to highlight defun-like
708 text inside comments and strings.
709 (font-lock-fontify-keywords-region): Pass that new arg.
710 (font-lock-set-defaults): Move the code to set `font-lock-keywords'
711 to the end and pass that new arg.
712 (c-font-lock-keywords-2): Fix regex for labels.
713 (font-lock-match-c++-style-declaration-item-and-skip-to-next):
714 Make it work when LIMIT is several lines further.
715 (c-font-lock-keywords-3, c++-font-lock-keywords-3)
716 (objc-font-lock-keywords-3, java-font-lock-keywords-3):
717 Use backquote and make the regexes for `int a, b, c;' work on
718 multiple lines.
719
720 * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
721 (font-lock-defaults-alist): Don't change it any more.
722 (reb-subexp-mode-map): Cleanup.
723
724 * custom.el (custom-current-group-alist): New var.
725 (custom-declare-group): Set it.
726 (custom-current-group): New fun.
727 (custom-declare-variable, custom-handle-all-keywords):
728 Use it as a default if no :group argument is specified.
729
730 * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
731 (standard-keyboard-coding-systems): New var.
732 (set-locale-environment): Use it to decide whether or not to call
733 set-keyboard-coding-system.
734 (locale-language-names): Use \"French\" for "fr".
735
736 2001-11-17 Richard M. Stallman <rms@gnu.org>
737
738 * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
739 (add-to-list): Delete compatibility code.
740 (checkdoc-next-message-error): Doc fix.
741
742 2001-11-17 Stephen Eglen <stephen@gnu.org>
743
744 * locate.el (locate): Show default locate pattern within the
745 prompt, but don't insert it into the minibuffer contents.
746 Catch the case when pattern is the empty string.
747
748 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
749
750 * language/european.el ("French"): New language environment.
751
752 2001-11-16 Richard M. Stallman <rms@gnu.org>
753
754 * calendar/todo-mode.el (todo-save): Fix previous change.
755
756 * subr.el (functionp): Do use cdr-safe on object.
757
758 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
759
760 * bindings.el (mode-line-mode-name): Only put the help-echo property
761 if the local-map property was put as well.
762 (global-map): Bind switch-frame, delete-frame, iconify-frame
763 and make-frame-visible events.
764
765 * emacs-lisp/elp.el (elp-not-profilable): New var.
766 (elp-not-profilable-p): New function.
767 (elp-instrument-function): Use it. Use backquotes and push.
768
769 * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
770 (byte-stack+-info, byte-compile-last-warned-form)
771 (byte-compile-last-logged-file): Don't defconst a variable.
772 (no-byte-compile): Declare.
773 (byte-compile-file): Don't boundp-check no-byte-compile any more.
774 (byte-compile-defvar): Leave defconst as is.
775
776 * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
777 (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
778 (edebug-current-offset, edebug-old-def-name, edebug-error-point)
779 (edebug-best-error): Don't defconst a variable.
780 (edebug-read-syntax-table): Use a char-table.
781 (edebug-lemacs-specific): Remove.
782 Toplevel: Eliminate check for Lucid Emacs.
783
784 * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
785
786 * rect.el (move-to-column-force): Mark obsolete.
787 (operate-on-rectangle, delete-extract-rectangle-line)
788 (insert-rectangle, delete-whitespace-rectangle-line)
789 (open-rectangle-line, clear-rectangle-line): Use move-to-column.
790 (string-rectangle-history): New var.
791 (string-rectangle, string-insert-rectangle): Use it.
792 (delete-rectangle-line): Fix pos/column mixup and simplify.
793
794 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
795 (normal-top-level, command-line, command-line-1): Simplify.
796
797 * tar-mode.el (tar-mode): Use define-derived-mode.
798
799 * view.el (view-mode-enable): Don't use make-local-hook.
800
801 * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
802
803 2001-11-16 Richard M. Stallman <rms@gnu.org>
804
805 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
806 if it doesn't make sense as anything else.
807 Don't recognize a "telephone number" at the beginning of the name.
808 (mail-extr-leading-garbage): Match non-word characters only.
809
810 2001-11-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
811
812 * startup.el (command-line-processed): Doc fix.
813
814 * apropos.el (apropos-next-label-button): Doc fix.
815
816 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
817
818 * comint.el (comint-mode): Simplify.
819 (make-comint-in-buffer): Run `comint-mode' only if necessary.
820
821 * subr.el (eval-after-load): Make it work with features as well.
822
823 * log-view.el (log-view-mode): Don't mark the buffer unmodified.
824
825 * international/mule-cmds.el (describe-input-method): Setup xref.
826 (set-language-environment): Use functionp.
827 (locale-language-names, locale-charset-language-names)
828 (locale-preferred-coding-systems): Defconst and purecopy.
829
830 * language/european.el (mac-roman): Add mime-charset property.
831
832 2001-11-15 Richard M. Stallman <rms@gnu.org>
833
834 * emacs-lisp/cl.el (values, values-list, multiple-value-list)
835 (multiple-value-apply, nth-value): Use defsubst rather than defalias
836 to get better doc strings.
837
838 2001-11-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
839
840 * derived.el: Fix autoload cookie.
841
842 2001-11-15 Richard M. Stallman <rms@gnu.org>
843
844 * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
845
846 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
847
848 * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
849
850 2001-11-15 Richard M. Stallman <rms@gnu.org>
851
852 * dired.el (dired-undo): Display a message to explain
853 that this does not undo file system changes.
854
855 2001-11-15 David Kastrup <David.Kastrup@t-online.de>
856
857 * mouse-drag.el (mouse-drag-throw): Push back non-drag events
858 into `unread-command-events' instead of trying keymap
859 lookups ourselves. This makes mouse-clicks do the right
860 thing even when keymaps of overlays are involved.
861 (mouse-drag-drag): Likewise.
862
863 2001-11-15 Andreas Schwab <schwab@suse.de>
864
865 * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
866 characters and append anchor to pattern added to auto-mode-alist.
867
868 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
869
870 * server.el (server-process-filter): Run pore/post-comment-hook
871 before/after visiting the file.
872
873 * info-look.el (makefile-mode): Add info for automake.
874 (autoconf-mode): Fix the name of the index for automake.
875
876 * international/latin-9.el: Give pilcrow punctuation syntax.
877
878 2001-11-15 Andre Spiegel <spiegel@gnu.org>
879
880 * vc.el: Documentation fixes.
881
882 2001-11-14 Stefan Monnier <monnier@cs.yale.edu>
883
884 * smerge-mode.el (smerge-match-conflict): Fix typo.
885 (smerge-diff): Be careful to read match-data early enough.
886
887 2001-11-14 Colin Walters <walters@verbum.org>
888
889 * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
890 (calcFunc-subst): Use `defalias' instead of `fset' and
891 `symbol-function'.
892
893 * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
894 (calcFunc-ceil, calcFunc-round): Ditto.
895
896 * calc/calc-bin.el (calcFunc-clip): Ditto.
897
898 * calc/calc-ext.el (calcFunc-evalv): Ditto.
899
900 * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
901
902 * calc/calc-misc.el (math-fixnump, math-fixnatnump)
903 (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
904
905 * calc/calc-units.el (calcFunc-unsimplify): Ditto.
906
907 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
908 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
909 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
910 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
911 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
912 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
913 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
914 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
915 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
916 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
917 * calcsel2.el: Style cleanup; don't put closing parens on their
918 own line, add "foo.el ends here" to each file, and update
919 copyright date.
920
921 * README: Update maintainer.
922
923 2001-11-13 Alan Shutko <ats@acm.org>
924
925 * compile.el (recompile): Use compilation-arguments if set, so as
926 to be able to M-x recompile the exact command which created a
927 compilation-mode buffer.
928
929 2001-11-13 Richard M. Stallman <rms@gnu.org>
930
931 * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
932
933 2001-11-13 Gerd Moellmann <gerd@gnu.org>
934
935 * mouse.el (mouse-drag-region): Don't run the up-event
936 handler if window start changed due to the down-mouse event.
937
938 2001-11-13 Richard M. Stallman <rms@gnu.org>
939
940 * mouse.el (mouse-show-mark): Either move point to the mark
941 or use highlighting, never both.
942 (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
943
944 2001-11-13 Simon Josefsson <jas@extundo.com>
945
946 * mail/smtpmail.el (top-level): Change maintainer to Simon
947 Josefsson, cleanup the smtpmail.el header.
948
949 * mail/smtpmail.el (top-level): Don't require cl or base64.
950 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
951 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
952 Defsubst instead of defmacro.
953 (smtpmail-intersection): Return value in reverse order.
954 (smtpmail-open-stream): Use stringp instead of string-to-list.
955 (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
956 separated from smtpmail-via-smtp.
957
958 * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
959 rfc2104. Require base64 and cl.
960 (smtpmail-smtp-service): Doc fix. :type fix.
961 (smtpmail-debug-info): Doc fix.
962 (smtpmail-debug-verb, smtpmail-auth-credentials)
963 (smtpmail-starttls-credentials, smtpmail-auth-supported):
964 New variables.
965 (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
966 mail-utils (it is autoloaded).
967 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
968 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
969 (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
970 (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
971 (smtpmail-via-smtp): Support AUTH.
972 (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
973
974 2001-11-13 Richard M. Stallman <rms@gnu.org>
975
976 * ebuff-menu.el (electric-buffer-update-highlight): New function.
977 (electric-buffer-overlay): New variable.
978 (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
979 (electric-buffer-list): Likewise.
980
981 2001-11-13 Per Starback <starback@ling.uu.se>
982
983 * isearch.el (isearch-whitespace-chars): Doc fix.
984 (isearch-mode): Handle negative search-slow-window-lines correctly.
985
986 2001-11-13 Stefan Monnier <monnier@cs.yale.edu>
987
988 * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
989
990 * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
991 From Emmanuel Briot <briot@act-europe.fr>.
992
993 2001-11-13 Colin Walters <walters@debian.org>
994
995 * calc/calc.el (calc-unread-command): Use `unread-command-events'.
996
997 * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
998 "~/.emacs"; use `read-file-name'.
999
1000 * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
1001 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
1002 * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
1003 * calc/calc.el: Use `frame-width' instead of `screen-width',
1004 `frame-height' instead of `screen-height', and,
1005 `executing-kbd-macro' instead of `executing-macro'.
1006
1007 * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
1008 correct number of arguments.
1009
1010 * calc/calc-aent.el (calc-do-alg-entry):
1011 Use `blink-paren-function' instead of `blink-paren-hook'.
1012
1013 2001-11-12 Richard M. Stallman <rms@gnu.org>
1014
1015 * calendar/todo-mode.el (todo-save): Add save-excursion
1016 and save-restriction.
1017
1018 * server.el (server-edit, server-done): Doc fix.
1019
1020 * simple.el (clone-indirect-buffer): Error if major mode symbol
1021 has a no-clone-indirect property.
1022 (clone-buffer): Check for obvious errors before reading clone name.
1023
1024 * info.el (Info-mode): Add a no-clone-indirect property.
1025
1026 2001-11-12 Sam Steingold <sds@gnu.org>
1027
1028 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
1029 set-buffer-modified-p to nil after `vc-exec-after'.
1030 * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
1031 (log-view-mode): Make read-only.
1032 (log-view-current-file): Do final `expand-file-name' in the
1033 current `default-directory'.
1034 (log-view-current-tag): Take an optional `where' arg.
1035 (log-view-diff): New user command.
1036
1037 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1038
1039 * progmodes/cpp.el (cpp-choose-face): Fix typo.
1040
1041 2001-11-12 Sam Steingold <sds@gnu.org>
1042
1043 * emacs-lisp/cl-indent.el (toplevel): Indent properly
1044 `generic-flet', `generic-labels', `with-accessors',
1045 `with-condition-restarts'.
1046
1047 2001-11-12 Richard M. Stallman <rms@gnu.org>
1048
1049 * dired.el: Many trivial doc fixes.
1050 (dired-get-file-for-visit): New function.
1051 (dired-find-alternate-file, dired-mouse-find-file-other-window):
1052 (dired-view-file, dired-find-file-other-window, dired-display-file):
1053 (dired-find-file): Use dired-get-file-for-visit.
1054
1055 2001-11-12 Alex Schroeder <kensanata@yahoo.com>
1056
1057 * sql.el (sql-mode): Doc change.
1058
1059 * sql.el (sql-mode-syntax-table): The backslash is no longer an
1060 escape character.
1061
1062 2001-11-12 Colin Walters <walters@debian.org>
1063
1064 * calc/calc-keypd.el (toplevel): Bind mouse buttons.
1065 (calc-do-keypad): Don't attempt to use nonexistent global
1066 mouse-map, use calc-keypad-map.
1067 (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
1068 (calc-keypad-left-click): Don't use mouse-map; update to new event
1069 interface.
1070 (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
1071 (calc-keypad-press): Use `unread-command-events' instead of
1072 `unread-command-char'.
1073
1074 * calc/calc-ext.el (calc-init-extensions): Update autoload names
1075 to match files renamed on initial calc import.
1076
1077 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1078
1079 * textmodes/flyspell.el (flyspell-default-dictionary):
1080 Fix previous change.
1081
1082 2001-11-12 Richard M. Stallman <rms@gnu.org>
1083
1084 * textmodes/flyspell.el (flyspell-default-dictionary):
1085 Fix custom type.
1086
1087 2001-11-11 Richard M. Stallman <rms@gnu.org>
1088
1089 * calendar/solar.el (solar-sunrise-and-sunset):
1090 Exchange the two extreme values of day-length.
1091
1092 * progmodes/sh-script.el (sh-must-be-shell-mode):
1093 Allow modes derived from sh-mode.
1094
1095 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
1096 Turn off error in some re-search-forward calls.
1097
1098 * replace.el (query-replace-skip-read-only): New variable.
1099 (perform-replace): If that variable is non-nil, ignore matches
1100 that have a read-only property.
1101
1102 * derived.el (define-derived-mode): Doc fix.
1103
1104 * server.el (server-buffer-done): Test of server-existing-buffer
1105 was backwards.
1106 (server-existing-buffer): Doc fix.
1107
1108 * textmodes/flyspell.el (flyspell-default-dictionary):
1109 Allow nil as value, and make nil the default.
1110
1111 2001-11-11 Eli Zaretskii <eliz@is.elta.co.il>
1112
1113 * subdirs.el: Regenerated.
1114
1115 * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
1116 it is not fboundp.
1117 (clipboard-yank): Ditto.
1118
1119 2001-11-11 Colin Walters <walters@verbum.org>
1120
1121 The following changes are based on patches from
1122 Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
1123 <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
1124
1125 * calc/calc.el (toplevel): Require calc-macs.
1126 (calc-minibuffer-size): New.
1127 (calcDigit-nondigit): Use it instead of `buffer-size'.
1128 (calcDigit-backspace): Likewise.
1129 (calcDigit-nondigit): Use `minibuffer-contents' instead of
1130 `buffer-string'.
1131 (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
1132 `point-min'.
1133 (calcDigit-key): Use `calc-minibuffer-contains' instead of a
1134 `save-excursion'.
1135
1136 * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
1137 simple `setq' form.
1138
1139 * calc/calc-ext.el: (toplevel): Require calc.
1140 (calc-fancy-prefix-map): New.
1141 (calc-fancy-prefix): Use it.
1142 (calc-fancy-prefix-other-key): New.
1143
1144 * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
1145 (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
1146 (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
1147 (calcAlg-enter): Likewise.
1148 (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
1149
1150 2001-11-10 Richard M. Stallman <rms@gnu.org>
1151
1152 * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
1153 (quietly-read-abbrev-file): Doc fix.
1154
1155 * startup.el (command-line): Read standard abbrev
1156 file (abbrev-file-name), if it exists.
1157
1158 * files.el (save-abbrevs): Default value is t.
1159
1160 * progmodes/compile.el (compile-goto-error): Fix previous change
1161 in the case where subsequent errors have not been parsed yet
1162 because they are in a different source file.
1163
1164 2001-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
1165
1166 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
1167 Merge two regular expressions into one.
1168 (ps-mode): Make local bindings for `comment-start' and
1169 `comment-start-skip'.
1170 (ps-mode-looking-at-nested): Simplify an if-else construct;
1171 use `set-match-data' to set the result.
1172
1173 2001-11-10 Richard M. Stallman <rms@gnu.org>
1174
1175 * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
1176 Function deleted.
1177 (flyspell-correct-word): Old definition deleted.
1178 (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
1179 All references renamed too.
1180
1181 2001-11-10 Gerd Moellmann <gerd@gnu.org>
1182
1183 * Makefile.in (finder_setwins, setwins): Exclude Calc.
1184
1185 2001-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
1186
1187 * wid-edit.el (checklist): Removed `:menu-tag'.
1188 (radio-button-choice): Ditto.
1189 (editable-list): Ditto.
1190
1191 2001-11-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1192
1193 * play/gomoku.el: Move definitions of constants to the beginning
1194 of file, before their use.
1195
1196 2001-11-09 Richard M. Stallman <rms@gnu.org>
1197
1198 * textmodes/flyspell.el: Use the keymap property
1199 instead of local-map, and don't use a minor-mode map.
1200 (flyspell-mode-map): Variable deleted.
1201 Don't mess with minor-mode-map-alist.
1202 (calling add-minor-mode): Specify nil for keymap.
1203 And always use add-minor-mode, now that it exists.
1204 (flyspell-overlay-keymap-property-name): Set it to `keymap'.
1205 (flyspell-mode-on): Don't locally bind flyspell-mouse-map
1206 or flyspell-local-mouse-map.
1207 (make-flyspell-overlay): Use flyspell-mouse-map directly.
1208 (flyspell-mode): Doc fix.
1209 (flyspell-mode-on): Don't call make-local-hook.
1210
1211 2001-11-09 Sam Steingold <sds@gnu.org>
1212
1213 * emacs-lisp/debug.el (debugger-make-xrefs):
1214 Add buttons to all symbols.
1215
1216 2001-11-09 Andre Spiegel <spiegel@gnu.org>
1217
1218 * vc.el: Add John David Smith to credits.
1219
1220 Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
1221
1222 * vc-hooks.el (vc-error-occured): Backquotified.
1223 (vc-file-prop-obarray): Use prime length for better efficiency.
1224
1225 * vc.el (vc-clear-context): Fill obarray with 0, not nil.
1226
1227 2001-11-09 Eli Zaretskii <eliz@is.elta.co.il>
1228
1229 * info.el (Info-file-list-for-emacs): Add entries for Calc.
1230
1231 2001-11-09 Miles Bader <miles@gnu.org>
1232
1233 * subr.el (functionp): Don't consider macros as functions.
1234
1235 2001-11-08 Miles Bader <miles@gnu.org>
1236
1237 * subr.el (functionp): Make work correctly for macros and unbound
1238 symbols.
1239
1240 * comint.el (comint-send-input): Fix description of
1241 `comint-process-echoes' in the doc-string.
1242
1243 2001-11-08 Eli Zaretskii <eliz@is.elta.co.il>
1244
1245 * international/mule.el (make-translation-table): Doc fix.
1246 Suggested by Alex Schroeder <alex@gnu.org>.
1247
1248 2001-11-07 Richard M. Stallman <rms@gnu.org>
1249
1250 * info.el (Info-fontify-node): Highlight every third menu item.
1251
1252 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
1253
1254 * cus-edit.el (custom-face-value-create): Don't ignore the
1255 `customized-face' attribute when finding the current face spec.
1256
1257 2001-11-07 Stefan Monnier <monnier@cs.yale.edu>
1258
1259 * subr.el (with-local-quit): New macro.
1260 (make-syntax-table): Always inherit.
1261 (functionp): Be more careful when `object' is a symbol.
1262
1263 * dabbrev.el (dabbrev-completion): Use "*Completions*".
1264
1265 2001-11-07 Paul Eggert <eggert@twinsun.com>
1266
1267 * dired.el (dired-move-to-filename-regexp):
1268 Do not distinguish between ASCII letters and non-ASCII characters.
1269 Don't allow comma except in the form "month day, year".
1270 Don't allow space between month name and comma.
1271 Clean up the code that checks for trailing period, comma, and space.
1272 Remove now-obsolete comments, and add more commentary about
1273 Japanese dates.
1274 Always gobble up trailing spaces, instead of doing it only sometimes.
1275
1276 2001-11-07 Miles Bader <miles@gnu.org>
1277
1278 * paren.el (show-paren-match-face): Add dark-background variant.
1279
1280 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
1281
1282 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
1283 (lisp-mode-variables): Don't set paragraph-{start,separate}.
1284 Don't disable adaptive-fill-mode.
1285 (lisp-fill-paragraph): Use tab-width rather than 8.
1286 Prevent filling the first line of docstrings.
1287
1288 2001-11-06 Richard M. Stallman <rms@gnu.org>
1289
1290 * play/gomoku.el (gomoku): Doc fix.
1291
1292 * jka-compr.el (jka-compr-partial-uncompress):
1293 Support an alternative of not using dd.
1294 (jka-compr-dd-program): Use defcustom to define this.
1295 (jka-compr-load-suffixes): Use defcustom.
1296 (jka-compr-mode-alist-additions): Use defcustom.
1297
1298 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
1299
1300 * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
1301 Also work when LIMIT is further than the end of line.
1302
1303 2001-11-06 Eli Zaretskii <eliz@is.elta.co.il>
1304
1305 * international/quail.el (quail-update-leim-list-file): Print the
1306 offending file name if some of its quail-define-package forms is broken.
1307
1308 2001-11-05 Richard M. Stallman <rms@gnu.org>
1309
1310 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
1311 of the evaluated form.
1312
1313 2001-11-05 Paul Eggert <eggert@twinsun.com>
1314
1315 * ls-lisp.el (ls-lisp-time-to-seconds): New function.
1316 (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
1317 stamps always line up by default. Also, it uses a slightly
1318 different window to determine whether files are "recent".
1319
1320 2001-11-05 Andrew Innes <andrewi@gnu.org>
1321
1322 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
1323 Don't attempt to remake autoloads before nuking .elc files.
1324
1325 2001-11-04 Richard M. Stallman <rms@gnu.org>
1326
1327 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
1328 previous-single-property-change or next-single-char-property-change
1329 returns nil.
1330
1331 * international/mule-cmds.el (set-locale-environment):
1332 Make it interactive; make arg optional.
1333
1334 * international/mule-diag.el (help-funs): Require help-funs.
1335
1336 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il>
1337
1338 * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
1339
1340 2001-11-04 Miles Bader <miles@gnu.org>
1341
1342 * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
1343 shadow of the splash image grey on a dark background instead of black.
1344
1345 2001-11-03 Stefan Monnier <monnier@cs.yale.edu>
1346
1347 * term.el (all faces): Don't (copy-face 'default <foo>).
1348
1349 * term/xterm.el (function-key-map):
1350 Add entry for `ESC [ 3 ~' -> <delete>
1351 Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
1352 Use inheritance so that .emacs and terminfo take precedence.
1353
1354 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
1355
1356 * tooltip.el (tooltip-delay): Decrease to 0.7.
1357 (tooltip-hide-delay): Enlarge to 10.
1358
1359 2001-11-03 Richard M. Stallman <rms@gnu.org>
1360
1361 * startup.el (fancy-splash-tail): Explain how to recover
1362 from a crash, if there was a crash.
1363 (command-line-1): Reorganize display of startup screen,
1364 to simplify the logic. Use a temp buffer for it.
1365
1366 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
1367
1368 * frame.el (set-background-color, set-foreground-color):
1369 Call face-set-after-frame-default, to propagate the new colors to
1370 the frame's parameters alist.
1371
1372 * calendar/timeclock.el (timeclock-out): Signal an error if
1373 timeclock-last-event is nil.
1374
1375 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
1376
1377 * textmodes/fill.el (fill-context-prefix): Fix braino.
1378
1379 * international/quail.el (quail-help):
1380 Use `help-buffer' and move `help-setup-xref' to beginning.
1381
1382 * international/mule-cmds.el (describe-language-environment):
1383 Use `help-buffer' and move `help-setup-xref' to beginning.
1384
1385 * international/mule-diag.el (list-character-sets)
1386 (sort-listed-character-sets, describe-character-set)
1387 (describe-coding-system, describe-fontset, list-fontsets):
1388 Use `help-buffer' and move `help-setup-xref' to beginning.
1389 (describe-char-after): Use `internal-describe-syntax-value'.
1390
1391 2001-11-02 Richard M. Stallman <rms@gnu.org>
1392
1393 * mouse.el (popup-menu): If the user refuses to select
1394 from a menu, don't try to invoke the menu.
1395
1396 2001-11-02 Miles Bader <miles@gnu.org>
1397
1398 * help-mode.el (help-xref): New button type.
1399 (help-function, help-variable, help-face, help-coding-system)
1400 (help-input-method, help-character-set, help-type, help-symbol)
1401 (help-back, help-info, help-customize-variable, help-customize-face)
1402 (help-function-def, help-variable-def): Use it as a supertype.
1403 Remove `action' property.
1404
1405 * international/mule-diag.el (describe-character-set)
1406 (describe-coding-system): Pass correct args to `help-xref-button'.
1407 (sort-listed-character-sets): New button type.
1408 (list-character-sets): Use it.
1409 (list-charset-chars): New button type.
1410 (list-character-sets-1): Use it.
1411
1412 2001-11-01 Stefan Monnier <monnier@rum.cs.yale.edu>
1413
1414 * indent.el (tab-always-indent, indent-for-tab-command):
1415 Remove redundant `never' setting.
1416
1417 * fill.el (fill-region-as-paragraph): Don't forget to skip
1418 over current whitespace before looking for a preceding space.
1419
1420 2001-11-01 Richard M. Stallman <rms@gnu.org>
1421
1422 * files.el (file-newest-backup): Don't pass backup file name
1423 thru file-name-sans-versions, because it never has version numbers.
1424
1425 * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
1426 to avoid ambiguous nested loops.
1427
1428 * files.el (find-file-noselect): Offer to change buffer-read-only
1429 only when the file's read-only status has changed from before
1430 as well as disagreeing with the buffer's current status.
1431 (buffer-file-read-only): New var, local in all buffers.
1432
1433 * buff-menu.el (buffer-menu): Doc fix.
1434 (buffer-menu-other-window): Doc fix.
1435 (list-buffers, list-buffers-noselect): Doc fix.
1436
1437 2001-11-01 Gerd Moellmann <gerd@gnu.org>
1438
1439 * startup.el (command-line): If the terminal Emacs is running on
1440 has erase char set to ^H, use the Backspace key for deleting
1441 backward, and the Delete key for deleting forward.
1442
1443 2001-11-01 Miles Bader <miles@gnu.org>
1444
1445 * button.el (define-button-type): Make sure every user-defined
1446 button type has a supertype.
1447
1448 2001-10-31 Jason Rumney <jasonr@gnu.org>
1449
1450 * international/mule-cmds.el (locale-language-names): Add chs and
1451 cht as aliases for Chinese-GB and Chinese-BIG5.
1452
1453 2001-10-31 Richard M. Stallman <rms@gnu.org>
1454
1455 * bindings.el (mode-line-frame-identification): Add doc string.
1456 (mode-line-position, mode-line-modes): New variables.
1457 (mode-line-format): Use mode-line-position for the part
1458 that displays the position-in-buffer info.
1459 Use mode-line-modes for the part that displays major and minor modes.
1460
1461 2001-10-31 Sam Steingold <sds@gnu.org>
1462
1463 * emacs-lisp/debug.el (debugger-make-xrefs): New function.
1464 (debugger-setup-buffer): Call it.
1465 (debugger-mode-map): Bind RET and mouse-2.
1466
1467 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1468
1469 * startup.el: Document command line option --no-window-system
1470 instead of --no-windows.
1471
1472 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
1473
1474 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
1475
1476 * font-lock.el (java-font-lock-syntactic-face-function): New fun.
1477 (font-lock-defaults-alist): Use it.
1478 From David Ponce <david.ponce@wanadoo.fr>
1479
1480 * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
1481 output of `char-after'.
1482
1483 * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
1484
1485 * simple.el (reindent-then-newline-and-indent): Insert the newline
1486 before indenting the first line.
1487 (undo-get-state, undo-revert-to-state): New funs.
1488 (shell-command): Don't kill the buffer even if empty.
1489 (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
1490 (transpose-subr-end2): Remove.
1491 (transpose-subr): Add `special' arg and simplify.
1492 (transpose-subr-1): Rewrite.
1493 (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
1494 (rfc822-goto-eoh): Simplify.
1495
1496 2001-10-30 Richard M. Stallman <rms@gnu.org>
1497
1498 * enriched.el (enriched-face-ans): FIx previous change.
1499
1500 2001-10-30 Gerd Moellmann <gerd@gnu.org>
1501
1502 * international/iso-acc.el (iso-accents-compose): Remove a
1503 superfluous setq.
1504
1505 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
1506
1507 * buff-menu.el (list-buffers-noselect): If the buffer's name
1508 starts with a blank, but it visits a file, do show it (for files
1509 whose names start with a blank).
1510
1511 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
1512
1513 * textmodes/fill.el (sentence-end-double-space)
1514 (sentence-end-without-period): Move to paragraphs.el.
1515 (fill-indent-according-to-mode): Change default to t.
1516 (fill-context-prefix): Simplify control-flow and use a more
1517 sophisticated merge that unifies both previous checks.
1518 (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
1519 (fill-nobreak-predicate): Make it into a defcustom'd hook.
1520 (fill-nobreak-p): New fun.
1521 (fill-region-as-paragraph): Use it.
1522 Handle `fill-indent-according-to-mode' slightly differently.
1523 (fill-individual-paragraphs-prefix): Simplify the control-flow.
1524 (fill-individual-paragraphs-citation): Fix.
1525
1526 * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
1527 (paragraph-start): Change default to the `text-mode' value.
1528 (sentence-end-double-space, sentence-end-without-period):
1529 Move from fill.el.
1530 (forward-paragraph): Use `parstart' and `parsep' for temp variables
1531 rather than rebinding `paragraph-start' and `paragraph-separate'.
1532
1533 * indent.el (indent-line-function): Change default to indent-relative.
1534 (tab-always-indent): Add an `never' setting.
1535 (indent-according-to-mode): Handle `indent-relative' and
1536 `indent-relative-maybe' specially.
1537 (indent-for-tab-command): Rename `prefix-arg' to `arg'.
1538 Handle the `never' case for `tab-always-indent'.
1539 Don't call indent-according-to-mode for indent-relative' and
1540 `indent-relative-maybe'.
1541 (insert-tab): Rename `prefix-arg' to `arg'.
1542 (indent-region): Indent the first line as well.
1543 (indent-relative): Don't mark the buffer modified if the indentation
1544 is unchanged.
1545
1546 * textmodes/text-mode.el (paragraph-indent-minor-mode):
1547 Don't set paragraph-separate. Set paragraph-start more carefully.
1548 Set indent-line-function.
1549 (paragraph-indent-text-mode): Use it and define-derived-mode.
1550 (text-mode-map): Remove the \t binding.
1551 (text-mode): Simplify now that the default is more favorable.
1552
1553 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
1554
1555 * emacs-lisp/find-func.el (find-function-search-for-symbol):
1556 If the regexp doesn't match, use a looser one.
1557 (find-variable-noselect): Add `file' argument.
1558
1559 * pcvs.el (cvs-mode-commit-hook): New hook.
1560 (cvs-mode-commit): Run it.
1561
1562 * log-edit.el (log-edit): Run hook after `log-edit-files'.
1563
1564 * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
1565 (edebug-instrument-function): Use `find-function-noselect'.
1566
1567 2001-10-29 Richard M. Stallman <rms@gnu.org>
1568
1569 * term.el (term-if-emacs19): Macro deleted.
1570 Callers changed to use progn instead.
1571
1572 * frame.el (blink-cursor-mode): Doc fix.
1573
1574 * files.el (find-backup-file-name): Use make-backup-file-name.
1575
1576 * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
1577 window-live-p.
1578 (edebug-set-conditional-breakpoint): Unconditionally use
1579 the former Emacs >=19 definition.
1580 (edebug-mark): Define unconditionally.
1581 (edebug-eval-expression): Always call read-from-minibuffer
1582 and specify history list.
1583 (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
1584 edebug-set-conditional-breakpoint.
1585 (edebug-emacs-version-specific): Function deleted;
1586 do the job at top level.
1587 (edebug-emacs-19-specific): Function deleted, this is the default.
1588
1589 2001-10-29 Sam Steingold <sds@gnu.org>
1590
1591 * w32-fns.el (convert-standard-filename): Handle cygwin-specific
1592 "/cygdrive/LETTER/" pathnames.
1593
1594 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
1595
1596 * faces.el (invert-face): Check for 'unspecified, not for nil,
1597 when testing whether face colors are not specified.
1598 From David.Kastrup@t-online.de (David Kastrup).
1599 (read-face-name): Doc fix.
1600 (make-face-bold, make-face-unbold, make-face-italic)
1601 (make-face-unitalic, make-face-bold-italic, invert-face):
1602 Remove trailing blank from the prompt passed to read-face-name.
1603
1604 2001-10-29 Sam Steingold <sds@gnu.org>
1605
1606 * emacs-lisp/bytecomp.el (byte-recompile-directory):
1607 Report numbers of files skipped and failed too.
1608 (byte-compile-file): Return 'no-byte-compile for skipped files.
1609
1610 2001-10-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
1611
1612 * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
1613 and `M p'.
1614
1615 2001-10-29 Gerd Moellmann <gerd@gnu.org>
1616
1617 * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
1618 as is on unread-command-events instead of `(SECOND-CHAR)'.
1619
1620 2001-10-29 Andre Spiegel <spiegel@gnu.org>
1621
1622 * vc.el: Mention vc-*-switches in backend API documentation.
1623 (vc-annotate): Adapt doc string to recent change.
1624
1625 2001-10-29 Gerd Moellmann <gerd@gnu.org>
1626
1627 * enriched.el (enriched-face-ans): Handle face attributes
1628 of the form `(FACE1 FACE2 ...)'.
1629
1630 * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
1631
1632 2001-10-29 Alex Schroeder <kensanata@yahoo.com>
1633
1634 * progmodes/sql.el (sql-mysql): Doc change by RMS.
1635
1636 * progmodes/sql.el (sql-db2): Doc change.
1637 (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
1638 (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
1639
1640 2001-10-29 Gerd Moellmann <gerd@gnu.org>
1641
1642 * env.el (substitute-env-vars): Don't quote argument to `rx';
1643 it's a macro.
1644
1645 2001-10-28 Per Abrahamsen <abraham@dina.kvl.dk>
1646
1647 * cus-start.el (recursive-load-depth-limit): Added.
1648
1649 2001-10-28 Richard M. Stallman <rms@gnu.org>
1650
1651 * textmodes/ispell.el (version18p, version20p): Vars deleted.
1652 All uses removed--assume Emacs version is >= 20.
1653
1654 * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
1655 by really checking that it is not version 18.
1656
1657 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
1658
1659 2001-10-28 Miles Bader <miles@gnu.org>
1660
1661 * faces.el (face-attribute): Add INHERIT argument, consider face
1662 inheritance if it's non-nil.
1663 (face-attribute-merged-with): New function.
1664 (face-attribute-specified-or): New macro.
1665 (face-foreground, face-background, face-stipple): Add INHERIT
1666 argument. Use `face-attribute-specified-or'.
1667
1668 2001-10-28 Stefan Monnier <monnier@cs.yale.edu>
1669
1670 * font-lock.el: Require `syntax'.
1671 (font-lock-defaults-alist): Don't define keywords for lisp languages.
1672 Use `c-font-lock-syntactic-face-function' for c languages.
1673 (font-lock-mode): Don't unset vars when turning the mode off.
1674 (font-lock-default-fontify-buffer): Don't unset vars at the end.
1675 (font-lock-extra-managed-props): New var.
1676 (font-lock-default-unfontify-region): Use it.
1677 (font-lock-apply-syntactic-highlight): Flush the syntax cache.
1678 Don't eval the value when there's no match.
1679 (font-lock-ppss-stats): New var.
1680 (font-lock-ppss): New fun.
1681 (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
1682 (font-lock-apply-highlight): Allow `highlight' to set several props.
1683 (font-lock-set-defaults): Use dolist.
1684 (font-lock-unset-defaults): Remove.
1685 (font-lock-match-c-style-declaration-item-and-skip-to-next):
1686 Try to recognize prototypes using `foo P_ ((args))'.
1687 ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
1688 (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
1689 (c-font-lock-syntactic-face-function): New function.
1690 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
1691 (c++-keywords): Use a more sophisticated regexp to handle
1692 shallowly nested templates.
1693
1694 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
1695
1696 * textmodes/sgml-mode.el (sgml-empty-tags): New var.
1697 (sgml-tag): Use it. Cleanup with `cond'.
1698 (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
1699 Mark the overlays and only delete those that are marked.
1700 (sgml-skip-close-p): Remove.
1701 (sgml-value): Replace sgml-skip-close-p with its definition.
1702 (html-tag-alist): Use sgml-xml a bit more.
1703 (html-mode): Set sgml-empty-tags.
1704
1705 * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
1706 (texinfo-update-node, texinfo-sequential-node-update):
1707 Don't bind the obsolete `auto-fill-hook'.
1708 (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
1709 Use `set-buffer' rather than `switch-to-buffer'.
1710 (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
1711 Use `set-buffer' rather than `switch-to-buffer'.
1712
1713 * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
1714 text-mode-syntax-table.
1715 (mail-mode): Use define-derived-mode.
1716 Fix ordering of alternatives in adaptive-fill-regexp.
1717 (mail-mode-map): Don't rely on keymap's internal representation.
1718
1719 2001-10-27 Sam Steingold <sds@gnu.org>
1720
1721 * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
1722 (sgml-xml-guess): Extracted from `html-mode' and generalized.
1723 (sgml-mode-common): Call it.
1724 (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
1725 (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
1726 (html-horizontal-rule, html-image, html-ordered-list):
1727 (html-unordered-list, html-list-item, html-paragraph):
1728 (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
1729 `html-xhtml'.
1730
1731 2001-10-26 Masayuki Ataka <ataka@milk.freemail.ne.jp>
1732
1733 * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
1734 (ifnothtml): New alias.
1735
1736 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
1737
1738 * textmodes/text-mode.el (text-mode): Use define-derived-mode.
1739 (toggle-text-mode-auto-fill): Use derived-mode-p.
1740
1741 2001-10-27 Gerd Moellmann <gerd.moellmann@t-online.de>
1742
1743 * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
1744 `mdtm'. From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
1745
1746 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
1747
1748 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
1749 Add make-obsolete cookies, to follow faces.el.
1750
1751 These changes avoid warnings from the byte compiler in faces.el:
1752
1753 * faces.el (internal-get-face): Use facep instead of the obsolete
1754 internal-find-face.
1755 (internal-frob-font-weight, internal-frob-font-slant):
1756 New defaliases for obsolete functions.
1757 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
1758 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
1759 (x-make-font-bold-italic): Use internal-frob-font-weight and
1760 internal-frob-font-slant aliases instead of the obsolete
1761 x-frob-... functions.
1762
1763 2001-10-26 Sam Steingold <sds@gnu.org>
1764
1765 * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
1766 DOCTYPE; set `mode-name' based on it.
1767 (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
1768 (sgml-tag): Close empty tags in XHTML.
1769
1770 2001-10-26 Jason Rumney <jasonr@gnu.org>
1771
1772 * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
1773 when UNICODE is not defined.
1774
1775 2001-10-26 Sam Steingold <sds@gnu.org>
1776
1777 * font-lock.el (c-font-lock-keywords-2): Do not require labels to
1778 be alone on the line.
1779
1780 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
1781
1782 * button.el (button): Special face definition for MS-DOS terminals.
1783
1784 2001-10-26 Sam Steingold <sds@gnu.org>
1785
1786 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
1787 Protect the /= test by checking that the args are non-nil.
1788 (sh-font-lock-close-heredoc): Check eof for being non-nil.
1789
1790 2001-10-26 Tomas Abrahamsson <tab@lysator.liu.se>
1791
1792 * textmodes/artist.el (artist-version): 1.2.4.
1793 (artist-butlast-fn): New variable.
1794 (artist-butlast): New function.
1795 (artist-ellipse-mirror-quadrant): Use it.
1796 (artist-mouse-draw-poly): Use nil for `point-list'.
1797 (artist-mouse-draw-poly): Check for point-list being nil.
1798
1799 2001-10-26 Peter Kleiweg <kleiweg@let.rug.nl>
1800
1801 * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
1802 lambda expression.
1803 (ps-mode-menu-main): Submenu with options on/off was replaced with
1804 a toggle button.
1805 (ps-mode, ps-run-mode): Define with `define-derived-mode'
1806 (ps-mode): Autoload cookie added on same line as comment
1807 (ps-mode-tabkey, ps-mode-backward-delete-char):
1808 (ps-mode-r-balance): Replace `delete-horizontal-space' and
1809 `indent-to' with `indent-line-to'
1810 (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
1811 instead of `eval'.
1812 (ps-mode-print-region): Use `with-temp-buffer'.
1813 (ps-run-start): Use of `mapconcat'. Use `apply' instead of `eval'.
1814 (numerous places): Add back-tick and tick around names in
1815 docstrings, fix punctuation in docstrings, remove trailing spaces.
1816
1817 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
1818
1819 * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
1820 (sgml-font-lock-keywords-2): Use `eval'. Moved from sgml-mode-common.
1821 (sgml-font-lock-syntactic-keywords): New var.
1822 (sgml-mode-common): Drop the two args.
1823 Don't make buffer-local variables that aren't used.
1824 Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
1825 Don't set `before-string' props from sgml-display-text.
1826 (sgml-mode): Use define-derived-mode.
1827 (sgml-tags-invisible): Use sgml-display-text.
1828 (sgml-quote): New command.
1829 (html-tag-alist): Add args for `span'.
1830 (html-mode): Use define-derived-mode.
1831 Set sgml-display-text and sgml-tag-face-alist.
1832
1833 2001-10-25 Sam Steingold <sds@gnu.org>
1834
1835 * add-log.el (add-log-always-start-new-record): New user option.
1836 (add-change-log-entry): Use it.
1837
1838 2001-10-25 Richard M. Stallman <rms@gnu.org>
1839
1840 * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
1841 bind case-fold-search if FROM is not all lower case.
1842
1843 2001-10-25 Gerd Moellmann <gerd@gnu.org>
1844
1845 * startup.el (normal-top-level): Check for frame-initial-frame
1846 only if it's really used.
1847
1848 * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
1849
1850 * progmodes/compile.el (compilation-parse-errors-filename-function):
1851 New variable.
1852 (compilation-parse-errors): Use it.
1853
1854 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
1855
1856 * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
1857 interactively so that C-u M-C-x still does edebug.
1858 (checkdoc-sentencespace-region-engine): Don't force a double-space
1859 after `.' if it doesn't look like an end-of-sentence.
1860 (debug-ignored-errors): Add `disambiguate ...'.
1861
1862 2001-10-24 Stefan Monnier <monnier@cs.yale.edu>
1863
1864 * textmodes/texinfo.el (texinfo-environments)
1865 (texinfo-environment-regexp): Hoist.
1866 (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
1867 Only highlight the menu name in menu items.
1868 Setup `@foo ... @end foo' as text clones.
1869 (texinfo-clone-environment): New function.
1870 (texinfo-mode): Simplify auto-fill-inhibit-regexp.
1871 (texinfo-insert-block): Simplify.
1872 (texinfo-insert-quote): Insert a plain " if preceded by \ or if
1873 the command is repeated.
1874 (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
1875 (texinfo-insert-@end): Simplify.
1876
1877 * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
1878 (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
1879 (texinfo-subsubsection-level-regexp)
1880 (texinfo-update-menu-same-level-regexps)
1881 (texinfo-update-menu-higher-regexps)
1882 (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
1883
1884 * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
1885 (derived-mode-p): Autoload.
1886
1887 * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
1888 New vars and functions.
1889 (text-clone-maintain, text-clone-create): New functions.
1890
1891 2001-10-25 Miles Bader <miles@gnu.org>
1892
1893 * facemenu.el (facemenu-add-new-face): Fix variable names.
1894
1895 2001-10-24 Richard M. Stallman <rms@gnu.org>
1896
1897 * facemenu.el (facemenu-unlisted-faces): Improve doc strings
1898 of t and nil values.
1899 (facemenu-set-face): Handle START and END interactively.
1900 (facemenu-set-foreground): Don't use a face; specify color directly.
1901 (facemenu-set-background): Likewise.
1902 (facemenu-set-face-from-menu): Doc fix.
1903 (facemenu-active-faces): Use face-attribute-vector
1904 to handle bare attributes not in faces.
1905 (facemenu-get-face): Don't handle face names fg:... and bg:...
1906 specially.
1907 (facemenu-add-new-face): New argument MENU.
1908 New way to handle adding colors to the color menus.
1909
1910 * env.el (substitute-env-vars): Quote the arg to rx.
1911
1912 2001-10-24 Sam Steingold <sds@gnu.org>
1913
1914 * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
1915 Control" and "SGML" groups.
1916
1917 2001-10-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1918
1919 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
1920 Better handling of C++ template args to avoid confusion with `<'
1921 and `>' used as operators in member init expressions.
1922
1923 2001-10-24 Gerd Moellmann <gerd@gnu.org>
1924
1925 * replace.el (perform-replace): Move START and END parameters
1926 to the end of the argument list and make them optional.
1927
1928 * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
1929 perform-replace.
1930
1931 * international/fontset.el (x-must-resolve-font-name): New function.
1932 (x-complement-fontset-spec): Use it.
1933
1934 2001-10-23 Stefan Monnier <monnier@cs.yale.edu>
1935
1936 * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
1937
1938 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
1939 Turn caadr into caar of cdr.
1940
1941 2001-10-23 Gerd Moellmann <gerd@gnu.org>
1942
1943 * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
1944 of mouse-{1,2} since dragging is on the down event.
1945
1946 * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
1947
1948 * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
1949 if ARG is nil.
1950
1951 * desktop.el (desktop-last-buffer): New variable.
1952 (desktop-create-buffer): Set it.
1953 (desktop-read): Bind it and switch to that buffer.
1954
1955 2001-10-22 Gerd Moellmann <gerd@gnu.org>
1956
1957 * progmodes/compile.el (compilation-set-window-height):
1958 Select old window only if it's still live.
1959
1960 2001-10-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1961
1962 * help-mode.el (help-buffer): Remove debugging code.
1963 From Stefan Monnier <monnier@cs.yale.edu>.
1964
1965 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
1966
1967 * files.el (file-name-sans-extension, file-name-extension):
1968 Don't count the leading dots in file names as signaling an extension.
1969
1970 2001-10-22 Andre Spiegel <spiegel@gnu.org>
1971
1972 * vc.el (vc-diff-switches): Doc rewritten.
1973
1974 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
1975
1976 * tooltip.el (tooltip-set-param): Doc fix.
1977
1978 * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
1979 127 to sgml-maybe-name-self.
1980 (sgml-name-8bit-mode): Doc fix.
1981 (sgml-char-names-table): New variable.
1982 (sgml-name-char): Support non-ASCII and mule-unicode-*
1983 characters. Doc fix.
1984 (sgml-maybe-name-self): Convert unibyte characters to multibyte.
1985
1986 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
1987 doc string the effect of `left' and `top' parameters in
1988 tooltip-frame-parameters, the default values, and the units.
1989 (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
1990 (tooltip-show): Mention in the doc string the `top' and `left'
1991 parameters in tooltip-frame-parameters, and x-max-tooltip-size.
1992
1993 2001-10-22 Andre Spiegel <spiegel@gnu.org>
1994
1995 Add autoscaling support for vc-annotate.
1996 From J.D. Smith <jdsmith@alum.mit.edu>.
1997
1998 * vc.el (vc-annotate-display-default): Accept colormap scaling
1999 ratio (now deprecated).
2000 (vc-annotate-display-autoscale): Added.
2001 (vc-annotate-add-menu): New autoscaling menu options "Span to
2002 Oldest" and "Span Oldest->Newest". Easymenu support added for
2003 toggle menus driven by customize variable `vc-annotate-display-mode'.
2004 (vc-annotate-display-select): Added.
2005 (vc-annotate): Changed temp-buffer-show-function to
2006 `vc-annotate-display-select'.
2007 (vc-annotate-display): Removed arguments BUFFER and BACKEND.
2008 Added argument OFFSET. Instead of backend function, calls now
2009 generic `vc-annotate-difference'.
2010 (vc-annotate-difference): Added as generic function instead of
2011 backend-specific function. No longer takes argument POINT, but
2012 instead accepts a time OFFSET.
2013 (vc-default-annotate-current-time): Added.
2014
2015 * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
2016 version in vc.el, with
2017 (vc-cvs-annotate-current-time): Added, as override of default.
2018 (vc-cvs-annotate-time) Added. Taken mostly from the (now removed)
2019 `vc-cvs-annotate-difference'.
2020
2021 2001-10-22 Gerd Moellmann <gerd@gnu.org>
2022
2023 * saveplace.el (save-place): Require `saveplace'.
2024
2025 * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
2026 Use `sexp' for :value-type instead of `face'.
2027
2028 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
2029
2030 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
2031 regexps due to 5-digit message IDs.
2032
2033 2001-10-21 Jason Rumney <jasonr@gnu.org>
2034
2035 * term/w32-win.el (redisplay-dont-pause): Don't set.
2036
2037 2001-10-21 Miles Bader <miles@gnu.org>
2038
2039 * help-funs.el (help-manyarg-func-alist): Variable removed.
2040
2041 2001-10-21 Miles Bader <miles@gnu.org>
2042
2043 * help-funs.el (help-manyarg-func-alist): Remove entries for
2044 `insert', `insert-and-inherit', `insert-before-markers',
2045 `insert-before-markers-and-inherit', `message', `message-box',
2046 `message-or-box', `propertize', `format', `encode-time', `append',
2047 `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
2048 `insert-string', `ml-if', `ml-provide-prefix-argument', and
2049 `ml-prefix-argument-loop'.
2050
2051 2001-10-21 Andre Spiegel <spiegel@gnu.org>
2052
2053 * vc.el (vc-diff-internal, vc-coding-system-for-diff)
2054 (vc-default-diff-tree): New functions.
2055 (vc-version-diff): Use them. As a result, coding systems are now
2056 set up properly for all sorts of diffs, and tree diffs can now
2057 also be done locally.
2058 (vc-diff): With a prefix argument, don't require that it's called
2059 from a buffer under version control.
2060 (diff-switches): Remove duplicate definition.
2061
2062 * vc-cvs.el (vc-cvs-diff-tree): New function.
2063
2064 2001-10-21 Miles Bader <miles@gnu.org>
2065
2066 * help-funs.el (help-manyarg-func-alist): Remove entries for
2067 `list', `vector', `make-byte-code', `call-process',
2068 `call-process-region', `string', `+', `-', `*', `/', `max', `min',
2069 `logand', `logior', and `logxor'.
2070
2071 * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
2072 image bits to compensate. Use `make-string' instead of
2073 `make-bool-vector' (XBM apparently wants byte-aligned rows).
2074
2075 2001-10-20 Kim F. Storm <storm@cua.dk>
2076
2077 * simple.el (kill-ring-save): Don't show extent of copied region
2078 if using transient-mark-mode and region is fully visible.
2079
2080 2001-10-20 Gerd Moellmann <gerd@gnu.org>
2081
2082 * (Version 21.1 released.)
2083
2084 2001-10-19 Eli Zaretskii <eliz@is.elta.co.il>
2085
2086 * files.el (auto-mode-alist): Associate .indent.pro with
2087 Fundamental mode. Suggested by Samuel Padgett <spadgett1@nc.rr.com>.
2088
2089 2001-10-18 Sam Steingold <sds@gnu.org>
2090
2091 Put the *Compile-Log* buffer in `compilation-mode'.
2092 * emacs-lisp/bytecomp.el (byte-goto-log-buffer): New function.
2093 (byte-compile-log-1, byte-compile-log-file)
2094 (displaying-byte-compile-warnings): Use it
2095
2096 2001-10-18 Stefan Monnier <monnier@cs.yale.edu>
2097
2098 * mail/smtpmail.el (smtpmail-via-smtp): Use mail-envelope-from if set.
2099
2100 * xml.el (xml-parse-tag): Use eq on char-after's return value.
2101
2102 2001-10-18 Gerd Moellmann <gerd@gnu.org>
2103
2104 * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
2105
2106 * obsolete/hilit19.el (hilit-lookup-face-create):
2107 Call set-face-font only if display-graphic-p.
2108 (toplevel): Remove references to window-system.
2109
2110 2001-10-18 Miles Bader <miles@gnu.org>
2111
2112 * simple.el (what-line): Avoid problems with field properties.
2113
2114 2001-10-17 Eli Zaretskii <eliz@is.elta.co.il>
2115
2116 * wid-edit.el (widget-field-face, widget-single-line-field-face):
2117 Define special colors for a tty.
2118
2119 2001-10-17 Francesco Potorti` <pot@gnu.org>
2120
2121 * comint.el (comint-password-prompt-regexp): Make it less
2122 restrictive, letting comint recognise OpenSSH2 passphrase prompts.
2123
2124 2001-10-17 John Wiegley <johnw@gnu.org>
2125
2126 * eshell/em-unix.el (eshell/cat): Do a quick test if something is
2127 a regular file, before checking if it is a directory or symlink.
2128 This avoids a call to eshell-file-attributes, which can be
2129 expensive in some situations.
2130
2131 * eshell/em-ls.el (eshell-ls-dired-initial-args): Added an extra
2132 customization variable, to differentiate ls-in-dired from regular
2133 uses of ls.
2134
2135 2001-10-17 Miles Bader <miles@gnu.org>
2136
2137 * custom.el (defface): Mention `:inherit' in doc-string.
2138
2139 2001-10-16 Eli Zaretskii <eliz@is.elta.co.il>
2140
2141 * paren.el: Update the Commentary with installation instructions.
2142
2143 2001-10-15 Dave Love <fx@gnu.org>
2144
2145 * international/mule.el (set-auto-coding): Fix regexps for local
2146 variables section not to eat newlines.
2147
2148 2001-10-15 Miles Bader <miles@gnu.org>
2149
2150 * simple.el (display-message-or-buffer): Pass the correct buffer
2151 to `display-buffer'.
2152
2153 2001-10-14 Stefan Monnier <monnier@cs.yale.edu>
2154
2155 * progmodes/executable.el (executable-binary-suffixes): Make varalias.
2156 (executable-find): Use exec-suffixes.
2157 (executable-set-magic): Don't use make-local-hook.
2158
2159 * bindings.el (exec-suffixes): Initialize to a system-dependent value.
2160
2161 2001-10-14 Eli Zaretskii <eliz@is.elta.co.il>
2162
2163 * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
2164 Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
2165 Add .so to the Unix and GNU branch.
2166
2167 * international/latin-1.el:
2168 * international/latin-2.el:
2169 * international/latin-3.el:
2170 * international/latin-4.el:
2171 * international/latin-5.el:
2172 * international/latin-8.el:
2173 * international/latin-9.el: Add no-byte-compile: t, since
2174 Makefile.in instructs make-docfile to look at .el files.
2175
2176 2001-10-14 Miles Bader <miles@gnu.org>
2177
2178 * button.el (define-button-type): Allow supertype property to be
2179 specified with a keyword `:supertype' too.
2180 (button-put, make-text-button): Allow button type property to be
2181 specified using the keyword `:type' too.
2182 (button-type): New function.
2183 (button): Add `button-category-symbol' property.
2184
2185 2001-10-13 Stefan Monnier <monnier@cs.yale.edu>
2186
2187 * bindings.el (esc-map): Revert `j' and `C-j' bindings to
2188 indent-new-comment-line from comment-indent-new-line.
2189
2190 * textmodes/refill.el (refill-mode):
2191 Bind DEL to backward-delete-char-untabify.
2192 Set backward-delete-char-untabify-method to `hungry'.
2193
2194 * textmodes/bib-mode.el (bib-mode):
2195 * play/gomoku.el (gomoku-mode):
2196 * textmodes/page-ext.el (pages-directory-mode):
2197 * textmodes/scribe.el (scribe-mode): Use define-derived-mode.
2198
2199 * textmodes/two-column.el (2C-mode): Don't use make-local-hook.
2200
2201 * emacs-lisp/syntax.el (syntax-ppss): Autoload.
2202
2203 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
2204 Handle here-docs differently.
2205 (sh-font-lock-heredoc): Remove.
2206 (sh-here-doc-open-re, sh-here-doc-markers, sh-here-doc-re): New vars.
2207 (sh-font-lock-here-doc, sh-font-lock-close-heredoc)
2208 (sh-font-lock-open-heredoc): New functions.
2209 (sh-mode): Don't copy sh-font-lock-syntactic-keywords any more.
2210 (sh-font-lock-keywords-1): Use regexp-opt.
2211 (sh-in-comment-or-string): Use syntax-ppss.
2212 (sh-case, sh-for, sh-indexed-loop, sh-function, sh-if, sh-repeat)
2213 (sh-select, sh-tmp-file): Add explicit terminating \n.
2214
2215 * net/ange-ftp.el (ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
2216 Use with-current-buffer.
2217 (ange-ftp-cd): New arg `noerror' to prevent signalling an error.
2218 (ange-ftp-send-cmd): If a `cd' is used (because of a space in the
2219 filename), catch any error that occurs in `ange-ftp-cd'.
2220 If an error happened, don't bother sending `cmd' at all.
2221 Fix a parenthesis typo.
2222 (ange-ftp-write-region): Don't blindly use binary if the remote host
2223 is unix-like.
2224
2225 * play/pong.el (pong-init): Don't use make-local-hook.
2226
2227 2001-10-13 Michael Kifer <kifer@cs.sunysb.edu>
2228
2229 * viper-ex.el (ex-edit): Make checks for modified buffer/file.
2230 (viper-get-ex-address-subr): More precise addr for the $ marker
2231
2232 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
2233
2234 * version.el (emacs-version): Bump to 21.1.50.
2235
2236 2001-10-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2237
2238 * mail/mailalias.el (mail-directory-stream): Do not double
2239 variables in the lambda-list.
2240
2241 * play/gomoku.el (gomoku-init-display): Ditto.
2242
2243 * play/landmark.el (lm-init-display): Ditto.
2244
2245 * delim-col.el (delimit-columns-rectangle-max): Ditto.
2246 (delimit-columns-rectangle-line): Ditto.
2247
2248 2001-10-12 Stefan Monnier <monnier@cs.yale.edu>
2249
2250 * newcomment.el (comment-region-internal): Don't rebind
2251 invisibility_spec now that the C routines handle it correctly.
2252
2253 * help-funs.el (locate-library): Use load-suffixes and abbrev filename.
2254
2255 * frame.el (special-display-popup-frame): Obey new specs `same-window'
2256 and `same-frame'.
2257
2258 * menu-bar.el (minibuffer-local-*map): Take inheritance into account.
2259
2260 * simple.el (minibuffer-local*-map): Remove redundant bindings.
2261
2262 * bindings.el (minibuffer-local-map): Also bind next, C-n, C-s, prior,
2263 C-p and C-r. Remove redundant bindings from inheriting maps.
2264
2265 * progmodes/cperl-mode.el: Merged in changes from v4.32.
2266 After 4.23 and: After 4.24:
2267 (cperl-contract-levels): Restore position.
2268 (cperl-beautify-level): Likewise.
2269 (cperl-beautify-regexp): Likewise.
2270 (cperl-commentify): Rudimental support for length=1 runs
2271 (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
2272 After 4.25:
2273 (cperl-commentify): Was recognizing length=2 "strings" as length=1.
2274 (imenu-example--create-perl-index): Was not enforcing
2275 syntaxification-to-the-end.
2276 (cperl-invert-if-unless): Allow `for', `foreach'.
2277 (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
2278 Mark qw(), m()x as indentable.
2279 (cperl-init-faces): Highlight `sysopen' too.
2280 Highlight $var in `for my $var' too.
2281 (cperl-invert-if-unless): Was leaving whitespace at end.
2282 (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
2283 (cperl-calculate-indent): Remove old commented out code.
2284 Support (primitive) indentation of qw(), m()x.
2285 After 4.26:
2286 (cperl-problems): Mention `fill-paragraph' on comment. \"" and
2287 q [] with intervening newlines.
2288 (cperl-autoindent-on-semi): New customization variable.
2289 (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
2290 (cperl-tips): Mention how to make CPerl the default mode.
2291 (cperl-mode): Support `outline-minor-mode'. From Mark A. Hershberger.
2292 (cperl-outline-level): New function.
2293 (cperl-highlight-variables-indiscriminately): New customization var.
2294 (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
2295 From Sean Kamath <kamath@pogo.wv.tek.com>.
2296 (cperl-after-block-p): Support CHECK and INIT.
2297 (cperl-init-faces, cperl-short-docs): Likewise and "our".
2298 From Doug MacEachern <dougm@covalent.net>.
2299 After 4.27:
2300 (cperl-find-pods-heres): Recognize \"" as a string.
2301 Mark whitespace between q and [] as `syntax-type' => `prestring'.
2302 Allow whitespace between << and "FOO".
2303 (cperl-problems): Remove \"" and q [] with intervening newlines.
2304 Mention multiple <<EOF as unsupported.
2305 (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
2306 (cperl-indent-parens-as-block): New configuration variable.
2307 (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
2308 Use `cperl-indent-parens-as-block'.
2309 (cperl-find-pods-heres): Test for =cut without empty line instead of
2310 complaining about no =cut.
2311 (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
2312 (cperl-find-pods-heres): Likewise.
2313 (cperl-electric-pod): Change `forward-sexp' to `forward-word':
2314 POD could've been marked as comment already.
2315 (cperl-unwind-to-safe): Unwind before start of POD too.
2316 After 4.28:
2317 (cperl-forward-re): Throw an error at proper moment REx unfinished.
2318 After 4.29:
2319 (x-color-defined-p): Make an extra case to peacify the warning.
2320 Toplevel: `defvar' to peacify the warnings.
2321 (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
2322 No -nw-compile time warnings now.
2323 (cperl-find-tags): TAGS file had too short substring-to-search.
2324 Be less verbose in non-interactive mode
2325 (imenu-example--create-perl-index): Set index-marker after name
2326 (cperl-outline-regexp): New variable.
2327 (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
2328 (cperl-mode): Made use `cperl-outline-regexp'.
2329 After 4.30:
2330 (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
2331 (cperl-outline-level): Make start-of-file same level as `package'.
2332 After 4.31:
2333 (cperl-electric-pod): `head1' and `over' electric only if empty.
2334 (cperl-unreadable-ok): New variable.
2335 (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
2336 on an unreadable file.
2337 (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
2338 on an unreadable directory.
2339
2340 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
2341 Consider the text between two errors as belonging to the first error.
2342 (compilation-goto-locus): Use pop-to-buffer rather than
2343 switch-to-buffer-other-frame.
2344
2345 * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
2346 (awk-font-lock-syntactic-keywords): New var.
2347 (awk-mode): Use it.
2348
2349 * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
2350
2351 * faces.el (describe-face): Call help-setup-xref earlier.
2352
2353 * jka-compr.el (jka-compr-load-suffixes): New var.
2354 (jka-compr-install): Add its content to load-suffixes.
2355 (jka-compr-uninstall): Remove its content from load-suffixes.
2356
2357 2001-10-12 Sam Steingold <sds@gnu.org>
2358
2359 * bindings.el (completion-ignored-extensions): CL-related
2360 extensions are platform-independent.
2361
2362 * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
2363 asynchronous multiple file copying.
2364
2365 2001-10-12 Gerd Moellmann <gerd@gnu.org>
2366
2367 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
2368 Turn error for repeated variables into warning.
2369
2370 * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
2371 New function checking that lambda-list consists of non-constant
2372 symbols, that &rest and &optional are followed by variable names,
2373 that &rest VAR is the last element, and that variables aren't doubled.
2374 (byte-compile-lambda): Use it.
2375
2376 2001-10-12 Eli Barzilay <eli@barzilay.org>
2377
2378 * calculator.el (calculator-eng-display): Don't call concat
2379 with an integer argument.
2380
2381 2001-10-12 Miles Bader <miles@gnu.org>
2382
2383 * help-mode.el (help-customize-face): New button-type.
2384
2385 * faces.el (list-faces-display): Fix args to `help-xref-button'.
2386 (describe-face): Fix args to `help-xref-button'.
2387 Don't switch to help-buffer around call to `help-setup-xref'.
2388 Use `help-buffer' instead of hard-wired "*Help*".
2389 Require `help-mode'.
2390
2391 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2392
2393 * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
2394
2395 * help-mode.el (help-buffer): New function.
2396 Returns the buffer-name to use for help output.
2397 Change all the code to use it instead of hard-coding *Help*.
2398 (help-mode-map): Put back the mouse-2 binding.
2399 (help-xref-stack): Change the format and make buffer-local.
2400 (help-xref-stack-item): Make buffer-local.
2401 (help-setup-xref): Do the `push' here rather than in help-do-xref.
2402 (help-xref-interned): Display the face doc as well.
2403 (help-follow-mouse): Re-introduce.
2404 (help-xref-go-back): Adapt to the new use of help-xref-stack.
2405 (help-do-xref): Don't `push' any more.
2406 (help-follow): Also follow face names.
2407
2408 * help-funs.el (describe-function-1): Remove unused `parens' arg.
2409 Don't call help-setup-xref anymore and remove its `interactive-p' arg.
2410 Autoload and cleanup.
2411 (describe-function): Call help-setup-xref.
2412 (describe-variable): Call help-setup-xref earlier.
2413
2414 * help.el (describe-bindings-internal): New fun moved from keymap.c.
2415 (view-lossage): Call help-setup-xref correctly and earlier.
2416 (describe-bindings): Call help-setup-xref earlier.
2417 (describe-key): Call help-setup-xref. Fix call to describe-function-1.
2418 (describe-mode): Don't autoload. Call help-setup-xref earlier.
2419
2420 2001-10-11 Gerd Moellmann <gerd@gnu.org>
2421
2422 * master.el (master-mode): Use define-minor-mode instead of
2423 easy-mmode-define-minor-mode. Add autload cookie.
2424 (Commentary): Remove the line showing how to autoload master-mode,
2425 since it's always autoloaded.
2426
2427 * master.el: New file.
2428
2429 2001-10-11 Dave Love <fx@gnu.org>
2430
2431 * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
2432 <byte-constref-ops>: Consider byte-constant2 and clarify the code.
2433 <const-C varset-X const-C>: Fix car/cdr typo.
2434
2435 2001-10-11 Gerd Moellmann <gerd@gnu.org>
2436
2437 * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
2438 New function extracted from byte-compile-log-1.
2439 (byte-compile-log-1): Change output to be more in line with
2440 the output of other GNU tools.
2441 (byte-compile-warn): Emit `warning' instead of `**' for warnings.
2442 (byte-compile-report-error): Downcase error message.
2443 Use `error' instead of `!!' for error messages.
2444 (byte-compile-print-syms): Treat non-interactive case specially.
2445 (displaying-byte-compile-warnings): Use backquote.
2446 (byte-compile-from-buffer): Bind byte-compile-last-line.
2447 (batch-byte-compile): Remove `Done' message.
2448
2449 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2450
2451 * emacs-lisp/copyright.el (copyright): Add final \n.
2452
2453 2001-10-11 Miles Bader <miles@gnu.org>
2454
2455 * diff.el (diff): Display default values in prompts as
2456 `(default ...)', not `(...)'.
2457
2458 * info.el (Info-follow-reference): Likewise.
2459
2460 2001-10-10 Stefan Monnier <monnier@cs.yale.edu>
2461
2462 * emacs-lisp/autoload.el (doc-string-elt): Remove.
2463
2464 * newcomment.el (comment-indent): Be a little more robust in case
2465 comment-indent-function does funny things.
2466 (comment-normalize-vars): Autoload.
2467 (comment-region-internal): Fiddle with the visibility spec.
2468 (comment-valid-prefix): New function.
2469 (comment-indent-new-line): Use it. Ignore adaptive-fill-prefixes
2470 that would turn comment-text into non-comment-text.
2471
2472 * emacs-lisp/syntax.el: New file.
2473
2474 * progmodes/tcl.el: Change maintainer to FSF and remove loads of
2475 compatibility cruft.
2476 (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
2477 (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
2478 (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
2479 tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
2480 tcl-submit-bug-report.
2481 (tcl-mode-syntax-table): Leave \f alone.
2482 (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
2483 tcl-end-of-defun, tcl-submit-bug-report.
2484 (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
2485 (tcl-add-emacs-menu): Remove.
2486 (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
2487 (tcl-keyword-list): Add `chain'.
2488 (tcl-font-lock-syntactic-keywords): New variable.
2489 (tcl-pps-has-arg-6): Remove.
2490 (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
2491 (tcl-internal-mark-defun): Remove.
2492 (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
2493 (tcl-mode): Use define-derived-mode. Simplify.
2494 Set comment-indent-function.
2495 (tcl-indent-command): Use line-beginning-position and comment-indent.
2496 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
2497 (tcl-indent-line): Use tcl-calculate-indent.
2498 (tcl-indent-exp): Renamed from indent-tcl-exp. Use new names.
2499 (tcl-add-log-defun): Renamed from add-log-tcl-defun. Use match-string.
2500 (tcl-filter): Use with-current-buffer, simplify.
2501 (inferior-tcl-mode): Use define-derived-mode.
2502 (tcl-hairy-in-comment): Renamed tcl-in-comment.
2503 (tcl-simple-in-comment, tcl-in-comment): Removed.
2504 (tcl-files-alist): New function.
2505 (tcl-help-snarf-commands): Use it and return the result directly
2506 rather than through a global variable.
2507 (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
2508 (tcl-help-on-word): Provide the default value to completing-read.
2509 (tcl-hilit): Remove.
2510 (tcl-hashify-buffer, tcl-popup-menu): Simplify.
2511 (tcl-comment-indent): New function.
2512 (tcl-submit-bug-report): Remove.
2513 (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
2514 (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
2515 (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
2516
2517 2001-10-10 Miles Bader <miles@gnu.org>
2518
2519 * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
2520 (Info-fontify-node): Don't fontify the node if it's already been done.
2521
2522 2001-10-10 Gerd Moellmann <gerd@gnu.org>
2523
2524 * international/iso-transl.el (iso-transl-e-caret)
2525 (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
2526 Fix duplicates. From Dave Love <d.love@dl.ac.uk>.
2527
2528 * simple.el (end-of-buffer): Fix code scrolling specially
2529 for the buffer end.
2530
2531 * startup.el (command-line-1): Bind tab-width to 8.
2532
2533 2001-10-10 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2534
2535 * emulation/tpu-edt.el: Use defalias instead of fset for
2536 user-visible commands. From Rob Riepel
2537 <riepel@Networking.Stanford.EDU>.
2538
2539 2001-10-09 Gerd Moellmann <gerd@gnu.org>
2540
2541 * ruler-mode.el: New file.
2542
2543 2001-10-09 Miles Bader <miles@gnu.org>
2544
2545 * apropos.el (button): New require.
2546
2547 * help-funs.el: New file, contents mostly from `help.el'.
2548 (describe-variable): Use `condition-case' instead of `ignore-errors'.
2549
2550 * help-mode.el: New file, contents mostly from `help.el'.
2551
2552 * help.el: Don't require `view' when compiling.
2553 (help-with-tutorial, describe-function, describe-function-1)
2554 (variable-at-point, describe-variable, locate-library):
2555 Functions moved into `help-funs.el'.
2556 (help-manyarg-func-alist): Variable moved into `help-funs.el'.
2557 (help-mode, help-mode-setup, help-mode-finish, help-button-action)
2558 (help-setup-xref, help-xref-following, help-make-xrefs)
2559 (help-xref-button, help-insert-xref-button, help-xref-interned)
2560 (help-xref-go-back, help-go-back, help-do-xref, help-follow)
2561 (help-xref-on-pp): Functions moved into `help-mode.el'
2562 (help-mode-map, help-xref-stack, help-xref-stack-item)
2563 (help-highlight-p, help-highlight-face, help-back-label)
2564 (help-xref-symbol-regexp, help-xref-mule-regexp)
2565 (help-xref-info-regexp): Variables moved into `help-mode.el'.
2566 (help-symbol, help-back, help-info, help-customize-variable)
2567 (help-function-def, help-variable-def):
2568 Button-types moved into `help-mode.el'.
2569 (load-symbol-file-load-history, symbol-file):
2570 Functions moved into `subr.el'.
2571 (symbol-file-load-history-loaded): Variable moved into `subr.el'.
2572 (view-lossage): Call `help-setup-xref' instead of doing it manually.
2573
2574 * subr.el (symbol-file-load-history-loaded)
2575 (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
2576
2577 * loadup.el ("button"): Load removed.
2578
2579 * button.el (define-button-type): Respect any `supertype' property.
2580 (button-type-subtype-p, button-has-type-p): New functions.
2581
2582 * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
2583 dollar-signs.
2584
2585 * comint.el (comint-insert-previous-argument): New function.
2586 (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
2587 (comint-insert-previous-argument-last-start-pos)
2588 (comint-insert-previous-argument-last-index): New variables.
2589
2590 * apropos.el (apropos-next-label-button): Use the presence of a
2591 `apropos-label' property to detect label buttons.
2592
2593 2001-10-08 Miles Bader <miles@gnu.org>
2594
2595 * button.el (next-button, previous-button): Remove N and WRAP
2596 parameters. Don't pay attention to `skip' properties.
2597 (forward-button): Implement wrapping, iterating, and skipping here
2598 instead.
2599 (button-activate): USE-MOUSE-ACTION is optional.
2600 (button-nop): Function removed.
2601 (default-button): Use `ignore' as default button action.
2602
2603 * apropos.el (apropos-next-label-button): Update arguments to
2604 `next-button'.
2605 (apropos-symbol): Add `skip' property.
2606 (apropos-function, apropos-macro, apropos-command)
2607 (apropos-variable, apropos-face, apropos-group, apropos-widget)
2608 (apropos-plist): New button types.
2609 (apropos-label-properties): Variable removed.
2610 (apropos-print): Pass button-type to apropos-print-doc, rather
2611 than help function and label text.
2612 (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
2613 Get button label from TYPE.
2614
2615 2001-10-07 Stefan Monnier <monnier@cs.yale.edu>
2616
2617 * help.el (help-mode): Use define-derived-mode.
2618 (describe-mode): Add optional `buffer' arg.
2619 Use it instead of going through help-xref-mode.
2620 Avoid doubling the word `minor' when prettifying.
2621 (describe-function-1): List the corresponding key bindings.
2622 (describe-variable): Say if the var is automatically buffer-local.
2623 If the source is `loaddefs.el', look for the real source.
2624 (help-xref-mode): Remove.
2625
2626 * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
2627 the file says no-byte-compile.
2628
2629 2001-10-08 Miles Bader <miles@gnu.org>
2630
2631 * button.el (next-button, previous-button): Respect `skip' property.
2632
2633 2001-10-07 Miles Bader <miles@gnu.org>
2634
2635 * woman.el (woman-mode-map): Copy button-buffer-map instead of
2636 making a new keymap. Don't bind mouse-2. Bind M-mouse-2 to
2637 `woman-follow-word' instead of `woman-mouse-2'.
2638 (woman-follow-word): Renamed from `woman-mouse-2'.
2639 Follow current unconditionally, since this function is now only
2640 bound to M-mouse-2. Use accessor functions.
2641 (WoMan-highlight-references): Use `make-text-button'.
2642 (woman-xref): New button type.
2643
2644 * loadup.el ("faces"): Move load before loading "loaddefs.el".
2645 ("button"): New load, just before "help" (which uses it).
2646
2647 * help.el (help-mode-map): Make button-buffer-map our parent.
2648 Don't bind mouse events or tab/backtab.
2649 (help-function, help-variable, help-face, help-coding-system)
2650 (help-input-method, help-character-set, help-back, help-info)
2651 (help-customize-variable, help-function-def, help-variable-def):
2652 New button types.
2653 (help-button-action): New function.
2654 (describe-function-1): Pass help button-types to
2655 `help-xref-button' rather than help function and help-echo string.
2656 Don't put multiple help-function args in a list to pass them to
2657 help-xref-button, just pass them as multiple arguments.
2658 Use `help-insert-xref-button' to make [back]-button, rather than
2659 `help-xref-button'.
2660 (help-xref-button): Take a button-type TYPE as a parameter rather
2661 than a function. Remove HELP-ECHO parameter. Remove DATA parameter
2662 and add a &rest parameter ARGS to serve the same purpose.
2663 Use `make-text-button' to add the button.
2664 (help-insert-xref-button): Use `insert-text-button' to add the button.
2665 (help-follow-mouse, help-next-ref, help-previous-ref):
2666 Functions removed.
2667 (help-do-xref): New function.
2668 (help-follow): Use `push-button' and `help-do-xref' to do most of
2669 the work.
2670
2671 * apropos.el (apropos-symbol, apropos-label): New button types.
2672 (apropos-symbol-button-display-help)
2673 (apropos-label-button-display-help, apropos-next-label-button):
2674 New functions.
2675 (apropos-mode-map): Make button-buffer-map our parent.
2676 Don't bind mouse events.
2677 (apropos-print, apropos-print-doc): Create buttons instead of text
2678 properties.
2679 (apropos-mouse-follow): Function removed.
2680 (apropos-follow): Use buttons.
2681
2682 * button.el: New file.
2683
2684 2001-10-07 Gerd Moellmann <gerd@gnu.org>
2685
2686 * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
2687 Remove.
2688
2689 2001-10-05 Richard M. Stallman <rms@gnu.org>
2690
2691 * add-log.el (add-change-log-entry): Skip copyright notice
2692 and copying permission notice at start of file, if any.
2693 Make use of terms "entry" and "item" accord with Emacs manual.
2694 Simplify the logic for moving point while entering or creating
2695 an entry and then an item.
2696 (add-change-log-entry-other-window): Doc fix.
2697
2698 2001-10-06 Miles Bader <miles@gnu.org>
2699
2700 * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
2701 removed; they apparently don't work with faces.
2702
2703 2001-10-05 Sam Steingold <sds@gnu.org>
2704
2705 * textmodes/sgml-mode.el (html-xhtml): New user option.
2706 (html-tag-alist, html-horizontal-rule, html-image, html-line)
2707 (html-ordered-list, html-unordered-list, html-list-item)
2708 (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
2709 (sgml-skip-close-p): New function.
2710 (sgml-value): Use it.
2711
2712 2001-10-05 Sam Steingold <sds@gnu.org>
2713
2714 * calendar/diary-lib.el (diary-entry-compare): When times are
2715 identical, compare the entries lexicographically.
2716
2717 2001-10-06 Miles Bader <miles@gnu.org>
2718
2719 * rfn-eshadow.el (rfn-eshadow-update-overlay):
2720 Use `minibuffer-prompt-end'.
2721
2722 * simple.el (previous-matching-history-element): Fix misplaced
2723 parentheses.
2724
2725 2001-10-05 Miles Bader <miles@gnu.org>
2726
2727 * rfn-eshadow.el: New file.
2728
2729 2001-10-05 Miles Bader <miles@gnu.org>
2730
2731 * cus-face.el (custom-face-attributes): Make sure each attribute
2732 has a valid default value. Remove hacks that mapped `nil' to
2733 `off' and used nil to mean `unspecified'. Remove `unspecified'
2734 choices from all attributes (unspecified is handled by the parent
2735 checklist).
2736 * cus-edit.el (custom-face-edit-convert-widget)
2737 (custom-face-edit-deactivate, custom-face-edit-activate)
2738 (custom-face-edit-delete, custom-face-edit-attribute-tag):
2739 New functions.
2740 (custom-face-edit): Specify a custom :convert-widget.
2741 (custom-pre-filter-face-spec, custom-post-filter-face-spec):
2742 Don't pass in default filters that map between `nil' and `off' and
2743 `unspecified' and `nil'.
2744
2745 2001-10-05 Gerd Moellmann <gerd@gnu.org>
2746
2747 * progmodes/compile.el (compilation-buffer-name): New function.
2748 (compile-internal): Use it to determine the name of the
2749 compilation buffer.
2750
2751 2001-10-05 Miles Bader <miles@gnu.org>
2752
2753 * progmodes/compile.el (grep-use-null-device): New variable.
2754 (grep-command): Mention `grep-use-null-device'.
2755 (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
2756 Make computation of `grep-command' respect `grep-use-null-device'.
2757 (grep): Respect `grep-use-null-device'.
2758 Call `grep-compute-defaults' even if grep-command is set, if
2759 grep-use-null-device is still tentative.
2760
2761 * subr.el (call-process-shell-command): New function.
2762
2763 2001-10-05 Miles Bader <miles@gnu.org>
2764
2765 * simple.el (previous-matching-history-element)
2766 (next-history-element, next-complete-history-element): Use
2767 `minibuffer-' functions instead of calling `field-' functions directly.
2768 (minibuffer-prompt-end, minibuffer-contents):
2769 (minibuffer-contents-no-properties, delete-minibuffer-contents):
2770 Functions removed (now subrs).
2771 (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
2772
2773 * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
2774 (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
2775 instead of calling `field-' functions directly.
2776 (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
2777
2778 2001-10-05 Gerd Moellmann <gerd@gnu.org>
2779
2780 * files.el (find-file-noselect): If file's read-only status has
2781 changed on disk, ask if buffer's read-only status should be
2782 changed, unless NOWARN is set.
2783
2784 * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
2785 alias for define-setf-method.
2786
2787 * bindings.el: Remove no-byte-compile from file local variables
2788 to enable bootstrapping.
2789
2790 2001-10-04 Andrew Innes <andrewi@gnu.org>
2791
2792 * faces.el (face-font-registry-alternatives) [windows-nt]:
2793 Make gb2312 an alias for gb2312.1980.
2794
2795 2001-10-04 Stefan Monnier <monnier@cs.yale.edu>
2796
2797 * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
2798 (uniquify-reverse-components): Remove.
2799
2800 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2801 Make sure the file is readable.
2802 (byte-compile-file): Don't compile if `no-byte-compile' is set.
2803 (byte-compile-defvar): Update to reflect the change in Fdefvar.
2804 (batch-byte-recompile-directory): Pass arg=0.
2805
2806 * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
2807 (perl-calculate-indent): Use it.
2808 (perl-backward-to-noncomment): Use forward-comment.
2809
2810 * derived.el (define-derived-mode, derived-mode-make-docstring):
2811 Allow `parent' to be nil.
2812
2813 * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
2814 Use define-derived-mode.
2815 (nroff-mode-map, nroff-mode-syntax-table): Massage.
2816
2817 * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
2818
2819 * emacs-lisp/lselect.el: Use facep iso find-face.
2820
2821 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2822 Use regexp-opt.
2823 (doc-string-elt): Set symbols' prop. Copied from autoload.el.
2824 (lisp-font-lock-syntactic-face-function): New function.
2825 (lisp-mode-variables): Use it. Make arg optional.
2826 (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
2827 (lisp-mode): Don't pass an arg to lisp-mode-variables.
2828 Set comment-start-skip.
2829
2830 * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
2831
2832 * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
2833 (ignore-errors): Don't bother using a `err' symbol.
2834
2835 * emacs-lisp/autoload.el (autoload-ensure-default-file)
2836 (autoload-insert-section-header, autoload-before-p)
2837 (autoload-remove-section): New functions.
2838 (generate-file-autoloads): Use them.
2839 (update-file-autoloads): Use them. Return FILE if there's no cookie.
2840 Make sure the autoload file is properly formatted when creating it.
2841 (update-autoloads-from-directories): Use them as well.
2842 Only update autoloads for files whose timestamp has changed.
2843 Add a dummy entry to remember the files which had no autoload cookies.
2844
2845 * timer.el (timer-relative-time): Fix computation for negative `micro'.
2846
2847 * subr.el (define-key-after): Allow `key' to be longer than 1.
2848 (make-local-hook): Make obsolete.
2849 (add-hook, remove-hook): Don't use make-local-hook any more.
2850 (make-syntax-table): Inherit all chars from s-s-t.
2851
2852 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2853
2854 This is a fix for a report saying that resuming a search with C-s
2855 C-s doesn't use the case-fold-search setting of the previous
2856 search (C-s ... M-c ... then C-s C-s).
2857
2858 * isearch.el (isearch-last-case-fold-search): New variable.
2859 (isearch-mode): Remember value of isearch-case-fold-search
2860 in isearch-last-case-fold-search.
2861 (isearch-done): Quote value of isearch-case-fold-search.
2862 (isearch-repeat): When resuming a search, restore
2863 isearch-case-fold-search from isearch-last-case-fold-search.
2864
2865 Added to NEWS.
2866
2867 * startup.el (inhibit-startup-buffer-menu): New user-option.
2868 (command-line-1): If inhibit-startup-buffer-menu is set, don't
2869 display the buffer menu. From Simon Josefsson <jas@extundo.com>.
2870
2871 This allows upto 99999 messages in the summary without screwing up
2872 the summary sorting. Previously 9999 was the maximum. Added to NEWS.
2873
2874 * mail/rmailsum.el (rmail-make-summary-line)
2875 (rmail-make-summary-line-1, rmail-summary-next-same-subject)
2876 (rmail-summary-goto-msg, rmail-summary-goto-msg):
2877 Allow 5-digit message ids instead of 4.
2878
2879 This adds expansion of environment variables in the value
2880 specified with M-x setenv. Added to NEWS.
2881
2882 * env.el (substitute-env-vars): New function.
2883 (setenv): Add parameter SUBSTITUTE-ENV-VARS. If set, substitute
2884 environment variables in VALUE. Return VALUE.
2885
2886 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2887
2888 * Branch for 21.1.
2889
2890 2001-10-03 Stefan Monnier <monnier@cs.yale.edu>
2891
2892 * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
2893
2894 2001-10-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2895
2896 * emulation/tpu-edt.el: Make messages match original TPU/edt
2897 editor. From riepel@Stanford.EDU (Rob Riepel).
2898
2899 2001-10-03 Eli Zaretskii <eliz@is.elta.co.il>
2900
2901 * rect.el: Update maintainer's email address.
2902
2903 2001-10-02 Andreas Schwab <schwab@suse.de>
2904
2905 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
2906 and Extended Passive Mode, resp.
2907
2908 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
2909
2910 These changes add support for Calendar-related items in the
2911 menu bar on tty's as well:
2912
2913 * calendar/calendar.el (calendar-mode-map): Require cal-menu
2914 unconditionally.
2915 (calendar-mode): Set up activate-menubar-hook unconditionally.
2916
2917 * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
2918 calls x-popup-menu only if popup menus are supported.
2919 (calendar-mouse-insert-hebrew-diary-entry)
2920 (calendar-mouse-insert-islamic-diary-entry)
2921 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
2922 (calendar-mouse-view-other-diary-entries)
2923 (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
2924 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
2925 Call cal-menu-x-popup-menu instead of x-popup-menu.
2926
2927 2001-10-01 Gerd Moellmann <gerd@gnu.org>
2928
2929 * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
2930
2931 * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
2932
2933 * emacs-lisp/rx.el: New file.
2934
2935 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il>
2936
2937 * help.el (help-for-help): Doc fix. From Pavel@Janik.cz (Pavel Janik).
2938
2939 2001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
2940
2941 * frame.el (select-frame-by-name, other-frame): Doc fix.
2942
2943 2001-09-29 Eli Zaretskii <eliz@is.elta.co.il>
2944
2945 * play/snake.el (snake-score-file): Use temporary-file-directory
2946 instead of a literal "/tmp". Suggested by Robert
2947 <robert@chezmarshall.freeserve.co.uk>.
2948
2949 * play/tetris.el (tetris-score-file): Ditto.
2950
2951 2001-09-28 Eli Zaretskii <eliz@is.elta.co.il>
2952
2953 * apropos.el (apropos-print): Make the directions inserted at the
2954 beginning of the *Apropos* buffer more clear.
2955
2956 2001-09-27 Michael Kifer <kifer@cs.sunysb.edu>
2957
2958 * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
2959 Added comments.
2960
2961 2001-09-27 Stefan Monnier <monnier@cs.yale.edu>
2962
2963 * newcomment.el (comment-normalize-vars): Use " \t" rather than
2964 "\\s-" when defining comment-end-skip.
2965
2966 2001-09-27 Gerd Moellmann <gerd@gnu.org>
2967
2968 * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
2969 Call get-buffer-window first second arg `visible'.
2970
2971 * international/mule-diag.el (list-input-methods-1):
2972 Output something that's independent of Emacs' version.
2973
2974 * tar-mode.el (tar-mode-write-file): Don't signal an error by
2975 calling byte-to-position with a nil tar-header-offset.
2976
2977 2001-09-27 Simon Josefsson <jas@extundo.com>
2978
2979 * mail/sendmail.el (send-mail-function): Doc fix.
2980 (mail-do-fcc): Error if header-end is not a marker.
2981 (mail-do-fcc): Add a comment.
2982 (mail-reply-to): Doc fix.
2983 (mail-signature): Make ATPOINT optional.
2984 (mail-yank-original): Use cond instead of nestled if.
2985
2986 2001-09-26 Stefan Monnier <monnier@cs.yale.edu>
2987
2988 * info.el (Info-on-current-buffer): Default arg to "Top".
2989
2990 2001-09-25 Eli Barzilay <eli@barzilay.org>
2991
2992 * calculator.el (calculator-copy-displayer): New user-option.
2993 (calculator-displayer-prev, calculator-displayer-next):
2994 Renamed from calculator-displayed-{left,right}.
2995 (calculator, calculator-standard-displayer)
2996 (calculator-num-to-string, calculator-update-display)
2997 (calculator-copy, calculator-put-value): Bug and display fixes.
2998
2999 2001-09-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3000
3001 * ebnf2ps.el: Eliminate make-local-hook calls. Doc fix.
3002 (ebnf-version): New version (3.6.1).
3003
3004 * ebnf-bnf.el: Fix character range regexp. Doc fix.
3005 (ebnf-bnf-non-terminal-chars): New internal const.
3006 (ebnf-bnf-lex): Fix code.
3007
3008 * ebnf-iso.el: Fix character range regexp. Doc fix.
3009 (ebnf-iso-non-terminal-chars): New internal const.
3010 (ebnf-iso-lex): Fix code.
3011
3012 * ebnf-yac.el: Fix character range regexp. Doc fix.
3013 (ebnf-yac-skip-chars): New internal const.
3014 (ebnf-yac-skip-code): Fix code.
3015
3016 2001-09-24 Stefan Monnier <monnier@cs.yale.edu>
3017
3018 * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
3019
3020 * pcvs-parse.el (cvs-parse-commit): Expand the file name before
3021 passing it to VC.
3022
3023 * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
3024 case where the file is relative.
3025
3026 2001-09-24 Gerd Moellmann <gerd@gnu.org>
3027
3028 * xml.el (xml-parse-attlist): Quotes around attributes must be the
3029 same on each side. Make sure we properly handle simple quotes.
3030 From Daiki Ueno <ueno@unixuser.org>.
3031
3032 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
3033
3034 * mail/sendmail.el (mail-mode): Doc fix. From Simon Josefsson
3035 <jas@extundo.com>.
3036
3037 * menu-bar.el (top-level): Minor fixes for text of help-echo in
3038 some items of the Options menu.
3039
3040 2001-09-22 Stefan Monnier <monnier@cs.yale.edu>
3041
3042 * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
3043
3044 * vc-hooks.el (vc-delete-automatic-version-backups):
3045 Don't fail if the directory doesn't exist.
3046
3047 * diff-mode.el (diff-default-read-only): New var.
3048 (diff-mode): Use it.
3049
3050 2001-09-22 Eli Zaretskii <eliz@is.elta.co.il>
3051
3052 * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
3053 Use make-keymap instead of copy-keymap, since copying the global
3054 keymap messes up the menu bar.
3055
3056 * info.el (Info-goto-node, Info-menu): Doc fix. Suggested by
3057 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
3058
3059 2001-09-21 Eli Zaretskii <eliz@is.elta.co.il>
3060
3061 * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
3062
3063 * dired-aux.el (dired-insert-subdir): Pass switches to
3064 dired-build-subdir-alist.
3065
3066 2001-09-21 Stephen Gildea <gildea@stop.mail-abuse.org>
3067
3068 * time-stamp.el (time-stamp-string-preprocess): Fix bug that
3069 caused %#a and %#b to be mis-formatted.
3070
3071 2001-09-20 Eli Zaretskii <eliz@is.elta.co.il>
3072
3073 * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
3074 ccmode, emacs-mime, and eudc manuals.
3075
3076 2001-09-19 Sam Steingold <sds@gnu.org>
3077
3078 w32 find cannot be used with `grep-find'.
3079 * progmodes/compile.el (find-program): New variable.
3080 (grep-compute-defaults): Use it to set `grep-find-command'.
3081
3082 2001-09-19 Gerd Moellmann <gerd@gnu.org>
3083
3084 * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
3085
3086 2001-09-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3087
3088 * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
3089 programming. Doc fix.
3090 (ebnf-version): New version (3.6).
3091 (ebnf-eps-begin): Data fix.
3092 (ebnf-begin-file): Code fix.
3093
3094 * ebnf-bnf.el: Doc fix.
3095 (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
3096
3097 * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
3098
3099 2001-09-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3100
3101 * ps-print.el: Better face mapping for black/white PostScript printers.
3102 Check if mark is active when printing a region. Doc fix.
3103 (ps-print-version): New version number (6.5.5).
3104 (ps-print-color-p): Customization fix.
3105 (ps-black-white-faces): New option.
3106 (ps-black-white-faces-alist): New internal var.
3107 (ps-count-lines-preprint, ps-print-preprint-region): New funs.
3108 (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
3109 (ps-nb-pages-region): Interactive fix.
3110 (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
3111 (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
3112
3113 2001-09-18 Eli Zaretskii <eliz@is.elta.co.il>
3114
3115 * dired.el (dired-move-to-filename-regexp): Allow one digit in the
3116 numeric month value, and allow the Kanji character after the it to
3117 be missing (happens with ls-lisp's output on Japanese versions of
3118 MS-Windows).
3119
3120 2001-09-18 Miles Bader <miles@gnu.org>
3121
3122 * diff-mode.el (diff-mode): Don't make the buffer read-only if
3123 it's empty (and thus probably a new patch file about to be edited).
3124
3125 2001-09-17 Gerd Moellmann <gerd@gnu.org>
3126
3127 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3128 Check for '(' in column 0 of doc string.
3129
3130 * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
3131 of `nth' so that using a vector as bounding-box works.
3132 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3133
3134 2001-09-17 Andre Spiegel <spiegel@gnu.org>
3135
3136 * vc.el (vc-annotate): Use current workfile version explicitly as
3137 a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
3138
3139 2001-09-16 Eli Zaretskii <eliz@is.elta.co.il>
3140
3141 * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
3142 convert-standard-filename doesn't guarantee that the .el extension
3143 is preserved.
3144
3145 * dos-fns.el (convert-standard-filename): Replace invalid
3146 characters only after converting dash/underscore to a period.
3147 (original-make-auto-save-file-name): New.
3148 (make-auto-save-file-name): New function, overrides the definition
3149 on files.el and calls the original function via
3150 original-make-auto-save-file-name.
3151
3152 * mail/rmail.el (top-level): Require mule-utils when compiling.
3153 (rmail-decode-babyl-format): Use detect-coding-with-priority
3154 instead of detect-coding-region, to favor detection of emacs-mule
3155 encoded Babyl files written by rmailout.el etc. Suggested by
3156 Kenichi Handa <handa@etl.go.jp>.
3157
3158 2001-09-14 Eli Zaretskii <eliz@is.elta.co.il>
3159
3160 * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
3161 Use `equal', not `=', since the device number can be a cons cell.
3162
3163 2001-09-14 Gerd Moellmann <gerd@gnu.org>
3164
3165 * simple.el: Comment out change of 2001-09-13.
3166
3167 2001-09-13 Milan Zamazal <pdm@zamazal.org>
3168
3169 * progmodes/compile.el (grep-compute-defaults): Don't set
3170 grep-command/grep-find-command when it is already non-nil.
3171 (grep-command): Make it a user option.
3172 (grep-find-command): Likewise.
3173
3174 2001-09-13 Michael Kifer <kifer@cs.sunysb.edu>
3175
3176 * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
3177 inhibit quit.
3178
3179 2001-09-13 Eli Zaretskii <eliz@is.elta.co.il>
3180
3181 * files.el (make-auto-save-file-name): If long file names are not
3182 supported on MS-DOS, truncate the file name to DOS 8+3 limits before
3183 generating an auto-save file name from it.
3184
3185 2001-09-13 Gerd Moellmann <gerd@gnu.org>
3186
3187 * ps-print.el (ps-print-region, ps-print-region-with-faces)
3188 (ps-nb-pages-region): Signal an error if called interactively
3189 and the mark is not active.
3190
3191 * simple.el (minibuffer-prompt-modification)
3192 (minibuffer-prompt-insertion): New functions.
3193 (minibuffer-prompt-properties): Use `modification-hooks' and
3194 `insert-in-front-hooks'.
3195
3196 2001-09-12 Richard M. Stallman <rms@gnu.org>
3197
3198 * textmodes/outline.el (outline-regexp): Doc fix.
3199 Initialize it in the defcustom, the usual way.
3200
3201 2001-09-12 Gerd Moellmann <gerd@gnu.org>
3202
3203 * ediff-mult.el (ediff-get-meta-info): Take into account that data
3204 from `ediff-meta-info' properties need not be an overlay.
3205 From David Ponce <dponce@voila.fr>.
3206
3207 * isearch.el (isearch-intersects-p): Fix end checks.
3208
3209 2001-09-11 Eli Zaretskii <a34785@is.elta.co.il>
3210
3211 * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
3212 `t' branch of `cond', since Irix 6.1 and up is a special case of
3213 the standard dbx interface.
3214
3215 2001-09-11 Miles Bader <miles@gnu.org>
3216
3217 * comint.el (comint-send-input): When waiting for echoed input,
3218 don't save the expected end position in `echo-end', so that things
3219 work properly even if the buffer is modified elsewhere at the same
3220 time [this happens if `comint-truncate-buffer' is used].
3221
3222 2001-09-11 Gerd Moellmann <gerd@gnu.org>
3223
3224 * textmodes/outline.el (outline-mode): Use `^' and a shy group
3225 when constructing imenu-generic-expression from outline-regexp.
3226
3227 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
3228
3229 * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
3230 `equal' instead of `=', since they can be cons cells. From Nils
3231 Goesche <cartan@cartan.de>.
3232
3233 2001-09-10 Andre Spiegel <spiegel@gnu.org>
3234
3235 * vc.el (vc-annotate): Rewrote doc string.
3236
3237 2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
3238
3239 * time-stamp.el: Update Stephen Gildea's email address.
3240
3241 2001-09-10 Gerd Moellmann <gerd@gnu.org>
3242
3243 * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
3244 enable-multibyte-characters = nil. From Hallvard B Furuseth
3245 <h.b.furuseth@usit.uio.no>.
3246
3247 2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
3248
3249 * ediff-init.el (ediff-highest-priority): Bug fix.
3250
3251 * viper-cmd.el (viper-special-read-and-insert-char): New function
3252 that reads a character and uses the current input method or
3253 iso-accents when appropriate.
3254
3255 * viper.el and all others: Corrections to the comment blocks at
3256 the top.
3257
3258 2001-09-09 Eli Zaretskii <eliz@is.elta.co.il>
3259
3260 * info.el (Info-goto-node): Doc fix.
3261
3262 2001-09-07 Gerd Moellmann <gerd@gnu.org>
3263
3264 * isearch.el (isearch-intersects-p): New function.
3265 (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
3266 use isearch-intersects-p, and clean up.
3267
3268 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
3269
3270 * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
3271 and "german8", for the new German orthography dictionaries,
3272 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
3273 the entries, to keep the line length balanced for loaddefs.el.
3274
3275 2001-09-07 Dr Francis J. Wright <F.J.Wright@qmw.ac.uk>
3276
3277 * comint.el (comint-send-input): Handle comint-process-echoes
3278 differently.
3279
3280 2001-09-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3281
3282 * locate.el (locate-insert-header): Remove unnecessary whitespace.
3283
3284 2001-09-07 Eli Zaretskii <eliz@is.elta.co.il>
3285
3286 * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
3287
3288 2001-09-07 Gerd Moellmann <gerd@gnu.org>
3289
3290 * server.el (server-switch-buffer):
3291 * textmodes/refer.el (refer-find-entry-internal):
3292 * term/sup-mouse.el (sup-pos-to-window):
3293 * term/bg-mouse.el (bg-window-from-x-y):
3294 * emacs-lisp/edebug.el (edebug-window-live-p):
3295 Use get-window-with-predicate.
3296
3297 * window.el (get-window-with-predicate): Renamed from some-window.
3298 (some-window): Make it an alias.
3299
3300 2001-09-06 Gerd Moellmann <gerd@gnu.org>
3301
3302 * simple.el (undo): Remove positions from buffer-undo-list up to
3303 the next undo boundary only.
3304
3305 2001-09-06 Eli Zaretskii <eliz@is.elta.co.il>
3306
3307 * makefile.nt (install): Don't copy sc.el. Reported by Richard
3308 Kim <ryk@dspwiz.com>
3309
3310 * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
3311 the message "Creating customization items...done".
3312
3313 2001-09-05 Gerd Moellmann <gerd@gnu.org>
3314
3315 * font-lock.el (toplevel): Require `jit-lock' only if
3316 font-lock-support-mode is set to jit-lock-mode.
3317
3318 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
3319
3320 * international/quail.el (quail-use-package, quail-inactivate)
3321 (quail-activate): Mention the hooks these functions run in their
3322 doc strings.
3323
3324 2001-09-05 Edward M. Reingold <reingold@iit.edu>
3325
3326 * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
3327 of file in header of menu.
3328
3329 2001-09-04 Gerd Moellmann <gerd@gnu.org>
3330
3331 * env.el (setenv): Interactively, if VARIABLE has a current value,
3332 add that to the front of the history, as the doc string says.
3333
3334 * comint.el (comint-send-input): Change help-echo.
3335 From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
3336
3337 * bookmark.el (bookmark-write-file): Bind print-length and
3338 print-level to nil. From Tom Capey <tomc@edina.co.uk>.
3339
3340 * obsolete/uncompress.el: Moved there from lisp/.
3341
3342 * comint.el (comint-insert-clicked-input): Goto point-max before
3343 deleting previous input. From "Dr Francis J. Wright"
3344 <F.J.Wright@qmw.ac.uk>.
3345
3346 * simple.el (backward-word): Doc fix.
3347
3348 2001-09-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3349
3350 * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
3351 * uncompress.el, uniquify.el, vc.el, view.el, window.el
3352 * w32-fns.el: Add Keywords header.
3353
3354 2001-09-04 Eli Zaretskii <eliz@is.elta.co.il>
3355
3356 * menu-bar.el: Fix separators in the Edit menu. Bring "Fill" near
3357 "Text Properties". Suggested by Simon Marshall
3358 <Simon.Marshall@midas-kapiti.com>.
3359
3360 2001-09-04 Andrew Choi <akochoi@cse.cuhk.edu.hk>
3361
3362 * term/mac-win.el (mac-drag-n-drop): Decode file name by
3363 consulting the value of file-name-coding-system.
3364
3365 2001-09-03 Stefan Monnier <monnier@cs.yale.edu>
3366
3367 * help.el (describe-function-1): Save precomputed `file-name' rather
3368 than recomputing it (incorrectly) with `symbol-file'.
3369
3370 2001-09-03 Gerd Moellmann <gerd@gnu.org>
3371
3372 * international/isearch-x.el (isearch-exit-recursive-edit):
3373 Take three parameters, since it's used as an after-change-function.
3374
3375 * emacs-lisp/backquote.el (backquote-backquote-symbol)
3376 (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
3377 from doc strings.
3378
3379 2001-09-02 Milan Zamazal <pdm@zamazal.org>
3380
3381 * progmodes/glasses.el (glasses-convert-to-unreadable):
3382 Consider underscores as in `glasses-make-readable'.
3383
3384 2001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
3385
3386 * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
3387 MS-DOS, since cpp might not be available.
3388
3389 * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
3390 Mention "yank" in the help-echo text.
3391 Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3392
3393 2001-09-01 Stefan Monnier <monnier@cs.yale.edu>
3394
3395 * newcomment.el (comment-indent): Insert spaces more carefully.
3396
3397 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
3398
3399 * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
3400 exists. From Andy Petrusenco <andy@int.spb.ru>.
3401
3402 * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
3403 display-popup-menus-p returns nil. Suggested by Andy Petrusenco
3404 <andy@int.spb.ru>.
3405
3406 2001-08-31 Gerd Moellmann <gerd@gnu.org>
3407
3408 * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
3409 Instead of running mouse-yank-at-click, see what the event is
3410 bound to outside Isearch and run that.
3411
3412 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
3413
3414 * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
3415 Fix the menu entry to mention transient-mark-mode.
3416
3417 2001-08-30 Gerd Moellmann <gerd@gnu.org>
3418
3419 * simple.el (eval-expression-print-level): Fix last change.
3420
3421 * bindings.el (mode-line-coding-system-map): New variable.
3422 (mode-line-mule-info): Give the "%Z" a local-map keymap.
3423
3424 * simple.el (eval-expression-print-level): Change the type
3425 of the defcustom to allow nil.
3426
3427 * emacs-lisp/find-gc.el: Moved here from lisp/.
3428
3429 * international/quail.el (quail-completion-1):
3430 Reverse the ((CHAR . DEFN) ...) list before processing it.
3431 From Kenichi Handa <handa@etl.go.jp>.
3432
3433 * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
3434 * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
3435
3436 2001-08-30 Eli Zaretskii <eliz@is.elta.co.il>
3437
3438 * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
3439 aren't supported. This avoids the annoying gray strip drawn by
3440 the Windows version instead of the missing tool bar.
3441
3442 2001-08-29 Gerd Moellmann <gerd@gnu.org>
3443
3444 * menu-bar.el (menu-bar-options-menu): Make option text, messages
3445 and tooltips more consistent. From "Marshall, Simon"
3446 <Simon.Marshall@midas-kapiti.com>.
3447
3448 * startup.el (fancy-splash-screens): Temporarily set
3449 minor-mode-map-alist to nil while displaying splash screens.
3450
3451 2001-08-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3452
3453 * buff-menu.el: Add Keywords header.
3454 Doc fix (C-x C-b is bound to list-buffers).
3455
3456 * dired-x.el: Add keyword files to get listed in finder.
3457 Remove confusing notes about GNU Emacs 19.
3458
3459 * dired.el, dired-aux.el: Add Keywords header.
3460
3461 2001-08-28 Andre Spiegel <spiegel@gnu.org>
3462
3463 * vc.el (vc-revert-file): Call the backend even if the FILE's
3464 contents can be reverted locally; pass new arg CONTENTS-DONE
3465 down to the backend.
3466
3467 * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
3468 optional arg CONTENTS-DONE.
3469
3470 2001-08-28 Andrew Innes <andrewi@gnu.org>
3471
3472 * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
3473
3474 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
3475
3476 * makefile.nt (install): Copy more *.el files.
3477
3478 2001-08-28 Gerd Moellmann <gerd@gnu.org>
3479
3480 * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
3481 instead of `w' which is already in use.
3482
3483 * gs.el (gs-load-image): Use sleep-for.
3484 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3485
3486 2001-08-28 Miles Bader <miles@gnu.org>
3487
3488 * replace.el (query-replace-regexp-eval): Return args from
3489 `interactive' form in correct order.
3490
3491 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
3492
3493 * mouse.el (mouse-buffer-menu): If the buffer menu is split by
3494 major modes, don't create panes for modes for which
3495 mouse-buffer-menu-alist returns an empty alist.
3496
3497 2001-08-28 Thien-Thi Nguyen <ttn@gnu.org>
3498
3499 * progmodes/hideshow.el: Update first-line description.
3500 Sync comments w/ maintainer version 5.31.
3501
3502 (hs-isearch-open): Default value now `code'.
3503 Fix docstring to use "code blocks" vs "comment blocks",
3504 as opposed to "block" vs "comment".
3505 (hs-flag-region): Accept `hs-isearch-open' value
3506 of `block' as synonymous w/ `code'.
3507 (hs-hide-block-at-point): For code blocks, pass `code'
3508 to `hs-flag-region' instead of `block'.
3509
3510 2001-08-28 Miles Bader <miles@gnu.org>
3511
3512 * comint.el (comint-next-prompt): Don't loop infinitely if
3513 {next,previous}-single-char-property-change returns its input
3514 position when the search fails.
3515
3516 2001-08-27 Miles Bader <miles@gnu.org>
3517
3518 * comint.el (comint-get-old-input-default): Don't signal an error
3519 if point is not on an input field; instead, return the current
3520 line (using `comint-bol' to skip any prompt, in case we're not
3521 using fields at all).
3522
3523 * man.el (Man-mode-line-format): Variable removed.
3524 (Man-mode): Change `mode-line-buffer-identification' instead of
3525 `mode-line-format'.
3526
3527 2001-08-27 Gerd Moellmann <gerd@gnu.org>
3528
3529 * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
3530 From Simon Josefsson <jas@extundo.com>.
3531
3532 2001-08-26 Eli Zaretskii <eliz@is.elta.co.il>
3533
3534 * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
3535 messages. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3536
3537 * emacs-lisp/levents.el: Specify FSF as Maintainer. From Pavel
3538 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3539
3540 * emacs-lisp/lselect.el: Ditto.
3541
3542 * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
3543 Remove periods from the end of error message strings.
3544 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3545
3546 * progmodes/antlr-mode.el: Add Keywords header. From Pavel
3547 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3548
3549 * net/telnet.el: Ditto.
3550
3551 2001-08-26 Gerd Moellmann <gerd@gnu.org>
3552
3553 * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
3554 KEYMAP to the call to define-minor-mode.
3555
3556 2001-08-24 Eli Zaretskii <eliz@is.elta.co.il>
3557
3558 * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
3559 Replace some of the undefined characters with emulations of bidi
3560 formatting characters and Niqud as per SI 1311-1.
3561 (IT-unicode-translations): Ditto.
3562 (IT-display-table-setup, IT-setup-unicode-display):
3563 Fill characters without translations with dos-unsupported-char-glyph.
3564
3565 2001-08-24 Simon Josefsson <jas@extundo.com>
3566
3567 * hl-line.el (hl-line-mode): Don't be a global mode.
3568 (global-hl-line-mode): New function.
3569
3570 2001-08-24 Gerd Moellmann <gerd@gnu.org>
3571
3572 * gs.el (gs-load-image): Wait for GHOSTVIEW window property
3573 being reset by Ghostscript. Don't kill the gs process.
3574 From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3575
3576 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
3577
3578 * term/mac-win.el: Require scroll-bar.
3579
3580 2001-08-23 Stefan Monnier <monnier@cs.yale.edu>
3581
3582 * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
3583
3584 2001-08-23 Eli Zaretskii <eliz@is.elta.co.il>
3585
3586 * hexl.el (hexl-insert-multibyte-char) New function.
3587 (hexl-quoted-insert, hexl-self-insert-command)
3588 (hexl-insert-hex-char, hexl-insert-decimal-char)
3589 (hexl-insert-octal-char): Call it instead of hexl-insert-char.
3590 Fix the doc strings accordingly.
3591 (hexl-insert-char): Reject characters whose code is above 255.
3592 Doc fix.
3593 (hexl-mode-map): Copy the global keymap instead of creating a
3594 sparse keymap, and bind all self-inserting characters to
3595 hexl-self-insert-command.
3596
3597 2001-08-22 Stefan Monnier <monnier@cs.yale.edu>
3598
3599 * wid-edit.el (text): Re-order docstring correctly.
3600
3601 * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
3602
3603 * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
3604
3605 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il>
3606
3607 * simple.el (line-number-mode): Mention the variable
3608 line-number-display-limit-width in the doc string.
3609
3610 2001-08-22 Gerd Moellmann <gerd@gnu.org>
3611
3612 * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
3613 Temporarily select EVENT's window for switching buffers.
3614 (mode-line-bury-buffer): New function.
3615 (mode-line-buffer-identification-keymap): Use it instead of
3616 bury-buffer. Bind down-mouse events to prevent global down-mouse
3617 events from shining through.
3618
3619 2001-08-21 Stefan Monnier <monnier@cs.yale.edu>
3620
3621 * newcomment.el (comment-beginning): Make sure the comment-start
3622 we found isn't a comment-end (in cases where confusion is possible).
3623
3624 2001-08-22 Miles Bader <miles@gnu.org>
3625
3626 * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
3627 before writing it, so that hard-links don't see new version.
3628
3629 2001-08-21 Gerd Moellmann <gerd@gnu.org>
3630
3631 * gs.el (gs-set-ghostview-colors-window-prop):
3632 Call x-change-window-property with 3rd arg FRAME.
3633 (gs-load-image): Wait for a previous Ghostscript process
3634 to complete before starting a new one.
3635
3636 * image.el (image-type-regexps): Make sure that the TIFF
3637 pattern is only matched at the beginning of a string.
3638 From Markus Rost <rost@math.ohio-state.edu>.
3639
3640 * international/swedish.el: Pre-Mule file removed. From Jonas
3641 Oberg <jonas@gnu.org>.
3642
3643 2001-08-20 Rajesh Vaidheeswarran <rv@gnu.org>
3644
3645 * whitespace.el (whitespace-abort-on-error): Add custom variable
3646 to whitespace to abort a write-file if whitespace is detected in file.
3647
3648 * whitespace.el (whitespace-write-file-hook): Hook to be called
3649 when writing a file. If `whitespace-abort-on-error' is set, the
3650 write will abort on detecting whitespaces.
3651 If `whitespace-auto-cleanup' is set, the file will be cleaned
3652 automatically prior to writing.
3653
3654 * whitespace.el (whitespace-buffer-search): Let's not insert bogus
3655 whitespaces in the error output!
3656
3657 * whitespace.el (whitespace-check-indent-whitespace): Defaults to
3658 `indent-tabs-mode', since the latter notes user preferences on
3659 TABs anyway.
3660
3661 * whitespace.el (whitespace-version): 3.1. All of the above issues
3662 were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
3663
3664 2001-08-20 Gerd Moellmann <gerd@gnu.org>
3665
3666 * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
3667 some spaces from a message. From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3668
3669 * whitespace.el (whitespace-global-mode): Add autoload cookie.
3670
3671 2001-08-20 Alex Schroeder <alex@gnu.org>
3672
3673 * sql.el (sql-db2): Doc change.
3674
3675 2001-08-20 Alex Schroeder <alex@gnu.org>
3676
3677 * sql.el (sql-postgres): Add the database at the end of the
3678 parameters instead of at the beginning.
3679 (sql-postgres-options): Doc change.
3680
3681 2001-08-17 Gerd Moellmann <gerd@gnu.org>
3682
3683 * custom.el (defcustom): Doc fix.
3684
3685 2001-08-16 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3686
3687 * ps-mule.el (find-composition): Check if (char-after POS)
3688 returns a valid character.
3689
3690 2001-08-16 Eli Zaretskii <eliz@is.elta.co.il>
3691
3692 * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
3693 original-point for extra CR characters that are added/removed when
3694 the buffer is written/read whose EOL type is -dos.
3695
3696 2001-08-16 Miles Bader <miles@gnu.org>
3697
3698 * simple.el (line-move): Undo previous change.
3699
3700 * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
3701 property to input-terminating `boundary' overlays to avoid
3702 line-move wierdness.
3703
3704 2001-08-16 Gerd Moellmann <gerd@gnu.org>
3705
3706 * lazy-lock.el (lazy-lock-fontify-region): Widen the current
3707 buffer in a save-restriction. Under one test case with Ediff,
3708 window-scroll-functions are run with a window start that's
3709 temporarily outside of the restriction.
3710
3711 2001-08-16 Robert J. Chassell <bug-texinfo@gnu.org>
3712
3713 * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
3714 (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
3715 (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
3716 (texinfo-update-menu-region-beginning)
3717 (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
3718 command, @ifnottex, to regexps, so it is found.
3719
3720 2001-08-16 Andrew Innes <andrewi@gnu.org>
3721
3722 * makefile.nt (DONTCOMPILE): Omit bindings.el.
3723 (DONTCOMPILE): Omit sc.el.
3724
3725 * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
3726 (DONTCOMPILE): Omit sc.el.
3727
3728 2001-08-16 Gerd Moellmann <gerd@gnu.org>
3729
3730 * replace.el (occur): Bind inhibit-read-only to t.
3731
3732 2001-08-16 Miles Bader <miles@gnu.org>
3733
3734 * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
3735 calling `constrain-to-field', to avoid problems with comint prompts.
3736
3737 2001-08-15 Gerd Moellmann <gerd@gnu.org>
3738
3739 * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
3740 (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
3741
3742 * ediff-mult.el (ediff-get-meta-info): Fix the condition
3743 of a while-loop.
3744
3745 * Makefile.in (DONTCOMPILE): Remove sc.el.
3746
3747 * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
3748 Don't include term/.
3749
3750 * mail/sc.el: Moved to obsolete/.
3751
3752 2001-08-14 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3753
3754 * ps-print.el: Change error function arguments to follow Emacs
3755 message convention. Doc fix.
3756 (ps-print-version): New version number (6.5.4).
3757 (coding-system-for-write): Change declaration position to avoid
3758 XEmacs compilation gripes.
3759 (coding-system-for-read, buffer-file-coding-system):
3760 Declarations to avoid XEmacs compilation gripes.
3761
3762 * ps-mule.el: Doc fix.
3763 (ps-mule-encode-header-string): If STRING is not a string, replace
3764 STRING by empty string.
3765
3766 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
3767
3768 * frame.el (show-trailing-whitespace): Doc fix.
3769
3770 2001-08-13 Eli Zaretskii <eliz@is.elta.co.il>
3771
3772 * desktop.el (desktop-save): Insert the coding: tag before
3773 desktop-header.
3774
3775 2001-08-13 Gerd Moellmann <gerd@gnu.org>
3776
3777 * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
3778 its path from $els.
3779
3780 * image.el (image-jpeg-p): Fix call of substring.
3781
3782 2001-08-10 Gerd Moellmann <gerd@gnu.org>
3783
3784 * play/animate.el (animate-string): Doc fix. Use a buffer
3785 name with stars in it.
3786 (animate-sequence): New function.
3787 From Richard Stallman <rms@gnu.org>.
3788
3789 * frame.el (select-frame-set-input-focus): New function
3790 extracted from other-frame.
3791 (other-frame): Use it.
3792 (next-multiframe-window, previous-multiframe-window): Use it.
3793
3794 * isearch.el (isearch-other-meta-char): Don't switch to the
3795 buffer of a window clicked on, when the current buffer is
3796 in Isearch mode.
3797
3798 * image.el (image-jpeg-p): Test for APPn markers in the range
3799 #xe0..#xef.
3800
3801 2001-08-09 Gerd Moellmann <gerd@gnu.org>
3802
3803 * desktop.el (desktop-save): Don't use concat to form a file
3804 name, use expand-file-name.
3805
3806 * mouse.el (mouse-delete-window): Do nothing if frame has just
3807 one window.
3808
3809 * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
3810 for the minor mode name.
3811
3812 * view.el (toplevel): Use mode-line-minor-mode-keymap for the
3813 minor mode name.
3814
3815 * time.el (display-time-string-forms): Use make-mode-line-mouse-map
3816 instead of make-mode-line-mouse2-map.
3817
3818 * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
3819 the minor mode name.
3820
3821 * emacs-lisp/easy-mmode.el (define-minor-mode):
3822 Use mode-line-minor-mode-keymap for the minor mode name.
3823
3824 * calendar/calendar.el (calendar-mode-line-format):
3825 Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
3826
3827 * bindings.el (make-mode-line-mouse-map): Renamed from
3828 make-mode-line-mouse2-map. Take additional arg MOUSE.
3829 (mode-line-modified): Use mouse-3 instead of mouse-2.
3830 (mode-line-buffer-identification-keymap): Bind keys differently.
3831 (propertized-buffer-identification): Adapt help-echo to new bindings.
3832
3833 * bindings.el (mode-line-format): Specify help-echo for line
3834 number, column number and buffer-percent part of the mode-line.
3835
3836 * image.el (image-type-regexps): Allow whitespace at the start
3837 of the image data for XPM, XBM and Postscript, which are
3838 text files.
3839 (image-jpeg-p): Correct calculation of next field offset.
3840
3841 2001-08-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3842
3843 * battery.el: Fix typo.
3844
3845 2001-08-08 Gerd Moellmann <gerd@gnu.org>
3846
3847 * image.el (image-type-regexps): Allow predicates. Change the way
3848 JPEG images are recognized.
3849 (image-jpeg-p): New function.
3850 (image-type-from-data): Handle predicates in image-type-regexps.
3851
3852 * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
3853 #:, #x, #o, and similar constructs.
3854
3855 2001-08-07 Gerd Moellmann <gerd@gnu.org>
3856
3857 * vc.el (vc-transfer-file): Fix malformed autoload cookie.
3858
3859 * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
3860 instead of `progn'.
3861
3862 * tar-mode.el (tar-extract): Avoid generating a new buffer
3863 for each file visited. From Markus Rost <rost@math.ohio-state.edu>.
3864
3865 * textmodes/paragraphs.el (forward-sentence): Avoid building
3866 a regexp from sentence-end. From Kenichi Handa <handa@etl.go.jp>.
3867
3868 * progmodes/executable.el (executable-set-magic):
3869 If executable-find returns a quoted file name, unquote it before
3870 inserting it.
3871
3872 * image.el (image-type-regexps): For JPEG files, use a regexp
3873 derived from the JFIF spec.
3874
3875 * image.el (image-type-regexps): Use `\`' instead of `^' in
3876 most regular expressions.
3877
3878 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3879
3880 * play/animate.el: Re-insert a reference to re-inserted function.
3881
3882 2001-08-06 Gerd Moellmann <gerd@gnu.org>
3883
3884 * help.el (describe-function-1): Use find-function-search-for-symbol
3885 instead of find-function-noselect because the latter follows aliases.
3886
3887 * play/animate.el (animate-birthday-present): Re-insert.
3888
3889 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
3890 Handle old-style menu definitions.
3891
3892 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3893
3894 * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
3895 * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
3896
3897 * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
3898 * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
3899 * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
3900
3901 2001-08-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3902
3903 * textmodes/tildify.el: Milan Zamazal has new address.
3904
3905 2001-08-03 Gerd Moellmann <gerd@gnu.org>
3906
3907 * custom.el (custom-set-variables): Don't test `custom-requests'
3908 properties, check the third element of the options passed to
3909 custom-set-variables instead.
3910
3911 * info.el (info-insert-file-contents): Use info-file-exists-p
3912 instead of file-exists-p.
3913
3914 * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
3915 the mode-line face is restored. Fix several bugs.
3916
3917 * replace.el (perform-replace): Doc fix.
3918
3919 2001-08-02 Francesco Potorti` <pot@gnu.org>
3920
3921 * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
3922 (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
3923 (uniquify-fix-item-base, uniquify-fix-item-filename)
3924 (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
3925 Callers changed.
3926 (uniquify-set-proposed): Changed to work with a vector item.
3927 (uniquify-rationalize-file-buffer-names): Use a list of arrays for
3928 the fix list, and a list of strings for the non-file buffer
3929 names. Both changes reduce consing.
3930 (uniquify-rationalize-a-list): Local variable renaming.
3931 (uniquify-rationalize-conflicting-sublist): Use member instead of
3932 assoc.
3933 (uniquify-rename-buffer): Use unless instead of if not.
3934
3935 2001-08-02 Gerd Moellmann <gerd@gnu.org>
3936
3937 * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
3938
3939 * custom.el (custom-set-variables): Set options with :require
3940 clauses last.
3941
3942 * custom.el (defcustom): Doc fix.
3943
3944 * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
3945
3946 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
3947
3948 * man.el (man): Mention Man-switches in the doc string.
3949 (Man-switches): Mention -a in the doc string.
3950
3951 * textmodes/ispell.el (ispell-alternate-dictionary):
3952 Add /usr/share/lib/dict/words, for Irix.
3953
3954 * bindings.el: Bind shifted and control-shifted kp-* keys to the
3955 corresponding non-kp keys. Suggested by Stephen Gildea
3956 <gildea@stop.mail-abuse.org>.
3957
3958 2001-08-01 Francesco Potorti` <pot@gnu.org>
3959
3960 * uniquify.el: These changes correct a corner case that the old
3961 code managed correctly.
3962 (uniquify-fix-item-proposed): Renamed from
3963 uniquify-fix-item-min-proposed.
3964 (uniquify-set-proposed): New function.
3965 (uniquify-rationalize-file-buffer-names): Code reshuffled for
3966 clarity and speed.
3967 (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
3968 This is equivalent to what the old code did.
3969 (uniquify-rationalize-a-list): Never recompute the proposed
3970 name. Sort the conflicting sublist before rationalising it: this
3971 is equivalent to what the old code did, but one directory element
3972 at a time, and only when necessary.
3973 (uniquify-rationalize-conflicting-sublist): Recompute here the
3974 proposed name.
3975
3976 2001-08-01 Gerd Moellmann <gerd@gnu.org>
3977
3978 * play/animate.el: Add Keywords and Maintainer. Remove a
3979 reference to a removed function.
3980
3981 * play/animate.el (animate-string): Handle case that the string is
3982 longer than the window is wide.
3983
3984 2001-07-31 Gerd Moellmann <gerd@gnu.org>
3985
3986 * desktop.el (desktop-save): Bind coding-system-for-write to
3987 `emacs-mule' for write-region.
3988
3989 * delsel.el (delete-selection-pre-hook): Don't set this-command
3990 to `ignore' if the region is empty.
3991
3992 * international/mule.el (set-keyboard-coding-system):
3993 Set keyboard-coding-system.
3994
3995 * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
3996 before accessing it.
3997
3998 2001-07-30 Andreas Schwab <schwab@suse.de>
3999
4000 * menu-bar.el (toggle-highlight-paren-mode):
4001 Use `(show-paren-mode)' as body.
4002
4003 2001-07-30 Andre Spiegel <spiegel@gnu.org>
4004
4005 * vc.el (vc-checkout-hook): New hook.
4006 (vc-checkout): Run it.
4007
4008 2001-07-30 Eli Zaretskii <eliz@is.elta.co.il>
4009
4010 * progmodes/make-mode.el (makefile-macroassign-regex):
4011 Recognize the ?= operator. From Jonathan Kamens <jik@curl.com>.
4012
4013 2001-07-30 Gerd Moellmann <gerd@gnu.org>
4014
4015 * vc.el (vc-switch-backend): Fix autoload cookie.
4016
4017 * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
4018 the desktop file.
4019
4020 2001-07-30 Simon Josefsson <jas@extundo.com>
4021
4022 * mail/mail-utils.el (mail-strip-quoted-names): Replace text
4023 literally. Reported by Sean Rima <sean@**Delete**.tcob1.net>.
4024
4025 2001-07-27 Gerd Moellmann <gerd@gnu.org>
4026
4027 * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
4028 (last-sexp-toggle-display): Renamed from last-sexp-print.
4029 (last-sexp-toggle-display, eval-last-sexp-1):
4030 Use last-sexp-setup-props.
4031
4032 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
4033 New user-options.
4034 (mouse-wheel-change-button): New function.
4035 (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
4036 (mwheel-scroll): Ditto.
4037
4038 2001-07-26 Gerd Moellmann <gerd@gnu.org>
4039
4040 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
4041 `...', compare with unabbreviated printed representation instead.
4042 (last-sexp-print): Bind print-length and print-level to nil.
4043
4044 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
4045 before assigning text properties. Make properties rear-nonsticky.
4046
4047 * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
4048 (eval-last-sexp-1): Give printed text a `keymap' property and bind
4049 <mouse-2> and <RET> in that map to a function printing the
4050 unabbreviated value.
4051
4052 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
4053 is a buffer, put a text property `printed-value' on the printed
4054 representation, with the Lisp object printed as value.
4055
4056 2001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
4057
4058 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
4059 Mention the effect of eval-expression-print-length and
4060 eval-expression-print-level in the doc strings. Suggested by
4061 Kevin Gallagher <kevingal@onramp.net>.
4062
4063 2001-07-25 Gerd Moellmann <gerd@gnu.org>
4064
4065 * xt-mouse.el (xterm-mouse-event): Recognize control sequences
4066 for buttons > 3.
4067 (xterm-mouse-translate): Handle the case that we don't get a
4068 down-event.
4069
4070 * emacs-lisp/find-func.el (find-function-regexp):
4071 Add easy-mmode-define-global-mode to the regexp. Allow newlines
4072 in front of the function name.
4073
4074 * isearch.el (isearch-other-meta-char): Fix last change.
4075
4076 * isearch.el (isearch-other-meta-char): Don't modify mode-line and
4077 similar events for which fake prefix keys are generated. It's no
4078 longer necessary since read_key_sequence doesn't modify these
4079 events for internal purposes anymore.
4080
4081 * files.el (auto-mode-alist): Use nroff-mode for files ending
4082 in `.9'. From Assar Westerlund <assar@stacken.kth.se>.
4083
4084 2001-07-24 Eli Zaretskii <eliz@is.elta.co.il>
4085
4086 * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
4087 tool-bar-lines parameter, behave as if its value were zero.
4088 (mouse-avoidance-set-pointer-shape): Don't do anything if
4089 x-pointer-shape is not boundp.
4090
4091 2001-07-23 Francesco Potorti` <pot@gnu.org>
4092
4093 * uniquify.el: Overall speedup changes when using many buffers.
4094 (uniquify-fix-item-base, uniquify-fix-item-filename)
4095 (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
4096 (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
4097 place in the item, but was never used.
4098 (uniquify-fix-item-min-proposed): New defalias: the fourth place
4099 in the item is now used as cache for the proposed name.
4100 (uniquify-rationalize-file-buffer-names): Move computation made on
4101 newbuffile out of the loop, in the newbuffile-nd local var.
4102 Use dolist (cosmetic change). Compute the proposed name for the most
4103 common case and cache it in the fourth place in the item.
4104 (uniquify-rationalize-file-buffer-names): Used to return a a list
4105 of buffer whose name was changed, but that return value was never used.
4106 (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
4107 the cached proposed name, does much less consing and is quicker.
4108 (uniquify-filename-lessp): Deleted.
4109 (uniquify-rationalize-a-list): Use dolist (cosmetic change).
4110 Do not bind locally the uniquify-possibly-resolvable flag. Use the
4111 cached proposed name is possible.
4112 (uniquify-get-proposed-name): Arguments changed, callers changed.
4113 (uniquify-rationalize-conflicting-sublist): Explicitely reset the
4114 uniquify-possibly-resolvable flag, which is no more bound locally.
4115 (uniquify-rename-buffer): Do not set the old unrationalised-buffer
4116 flag, which does not exist any more.
4117
4118 2001-07-23 Eli Zaretskii <eliz@is.elta.co.il>
4119
4120 * term/internal.el (IT-unicode-translations): Fix the appearance of
4121 "6`".
4122
4123 * progmodes/compile.el (compile-internal): If EMACS is already
4124 defined in the environment, don't override its value.
4125
4126 2001-07-23 Gerd Moellmann <gerd@gnu.org>
4127
4128 * play/fortune.el: Undo change of 2001-07-13.
4129 Fix autoload cookies. Add types to defcustoms.
4130 (fortune) <defgroup>: Add :link.
4131 (fortune-from-region): Use eq, not eql.
4132 From Dave Love <fx@gnu.org>.
4133
4134 * play/animate.el (animate-birthday-present): Function removed.
4135
4136 * play/animate.el: New file.
4137
4138 2001-07-22 Eli Zaretskii <eliz@is.elta.co.il>
4139
4140 * startup.el (normal-top-level-add-subdirs-to-load-path):
4141 On Windows, put into normal-top-level-add-subdirs-inode-list the
4142 canonicalized names of the directories instead of inode numbers.
4143
4144 2001-07-21 Michael Kifer <kifer@cs.sunysb.edu>
4145
4146 * ediff-util.el: Copyright years.
4147 (ediff-choose-syntax-table): New function.
4148 (ediff-setup): Use ediff-choose-syntax-table.
4149 (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
4150 vc-state is available.
4151 (ediff-make-temp-file): Use ediff-coding-system-for-write.
4152
4153 * ediff-init.el (ediff-with-syntax-table): New macro, uses
4154 with-syntax-table.
4155 (ediff-coding-system-for-read): From ediff-diff.el
4156 (ediff-coding-system-for-write): New variable.
4157 (ediff-highest-priority): Fixed the bug having to do with disappearing
4158 overlays.
4159 (ediff-file-remote-p): Use file-remote-p, if available.
4160 (ediff-listable-file): New function.
4161 (ediff-file-attributes): Use ediff-listable-file.
4162
4163 * ediff-mult.el (ediff-meta-insert-file-info1):
4164 Use ediff-listable-file.
4165
4166 * ediff-ptch.el (ediff-prompt-for-patch-file):
4167 Use ediff-coding-system-for-read.
4168 (ediff-patch-file-internal): Use ediff-coding-system-for-write.
4169
4170 * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
4171 (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
4172
4173 * ediff.el: Date of last update, copyright years.
4174
4175 * ediff-wind (ediff-setup-control-frame): Nill->nil.
4176
4177 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
4178 of Scott Bronson.
4179 (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
4180 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
4181 Deleted functions.
4182 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
4183 ex-token-list.
4184 (viper-get-ex-address-subr): Convert registers to char data type.
4185
4186 * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
4187 (viper-memq-char): Use viper-int-to-char.
4188 (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
4189 vc-locking-state.
4190 (viper-read-key): Use viper-read-key-sequence.
4191
4192 * viper.el (viper-major-mode-modifier-list):
4193 Added inferior-emacs-lisp-mode.
4194 (this-major-mode-requires-vi-state): New function that uses simple
4195 heuristics to decide if vi state is appropriate.
4196 (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
4197 (viper-non-hook-settings): Don't advise read-key-sequence.
4198 (viper-read-key-sequence): New function that replaces the
4199 previously used advice to read-key-sequence.
4200
4201 * viper-cmd.el (viper-test-com-defun,viper-exec-change)
4202 (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
4203 (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
4204 (viper-open-line-at-point,viper-substitute,viper-overwrite)
4205 (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
4206 Got rid of the negative character hack.
4207 (viper-escape-to-state,viper-replace-state-exit-cmd):
4208 Use viper-read-key-sequence.
4209 (viper-envelop-ESC-key): No need for ad-get-orig-definition.
4210 (viper-minibuffer-standard-hook,viper-read-string-with-history):
4211 Don't override existing minibuffer-setup-hook.
4212 (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
4213 Convert registers to char data type.
4214 (viper-autoindent): Use viper-indent-line.
4215
4216 * viper-keym.el: Use viper-exec-key-in-emacs.
4217
4218 2001-07-20 Stefan Monnier <monnier@cs.yale.edu>
4219
4220 * server.el (server-visit-files): Fix variable name typo.
4221
4222 2001-07-20 Gerd Moellmann <gerd@gnu.org>
4223
4224 * simple.el (delete-trailing-whitespace): Save match data
4225 around looking-at. From Markus Rost <rost@math.ohio-state.edu>.
4226
4227 2001-07-19 Stefan Monnier <monnier@cs.yale.edu>
4228
4229 * progmodes/compile.el (compilation-parse-errors): `linenum' might
4230 return a this-error using the alternative format (a pair of markers).
4231
4232 2001-07-19 Gerd Moellmann <gerd@gnu.org>
4233
4234 * font-lock.el (c++-keywords): Add Standard C++ operator names.
4235
4236 * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
4237 From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
4238
4239 2001-07-17 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4240
4241 * international/iso-transl.el: Fix typo in the header of the file.
4242
4243 * textmodes/picture.el (picture): Doc fix.
4244
4245 * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
4246 follow coding conventions in generated files.
4247
4248 2001-07-17 Eli Zaretskii <eliz@is.elta.co.il>
4249
4250 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
4251 (tool-bar-add-item): Don't call image-related primitives if the
4252 display doesn't support images.
4253
4254 * frame.el (display-images-p): New function.
4255
4256 2001-07-17 Gerd Moellmann <gerd@gnu.org>
4257
4258 * server.el (server-visit-files): Handle the case the specified
4259 column number is <= 0.
4260
4261 2001-07-17 Jan Nieuwenhuizen <jan@netland.nl>
4262
4263 * startup.el (command-line-1): Add support for +LINE:COLUMN
4264 command line argument.
4265
4266 2000-07-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4267
4268 * server.el (server-process-filter, server-visit-files):
4269 Add support for +LINE:COLUMN style emacsclient calls.
4270
4271 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4272
4273 * emacs-lisp/easy-mmode.el: Add Keywords header.
4274
4275 * play/pong.el: Author has new address.
4276
4277 * play/landmark.el: Author is no more reachable.
4278
4279 * play/handwrite.el: Author is no more reachable.
4280
4281 2001-07-17 Stefan Monnier <monnier@cs.yale.edu>
4282
4283 * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
4284 (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
4285 Complete bindings for F<1..12> keys.
4286 (global-map): Remove `undo' binding (already in the default).
4287 Replace `t<n>' bindings with `f<n>' bindings.
4288
4289 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
4290
4291 * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
4292 (tcl-mode): Use tcl-add-log-defun.
4293 (tcl-indent-line): Use tcl-calculate-indent.
4294 (tcl-calculate-indent): Renamed from calculate-tcl-indent.
4295 (tcl-indent-exp): Renamed from indent-tcl-exp.
4296 (tcl-add-log-defun): Renamed from add-log-tcl-defun.
4297 (tcl-indent-for-comment): Call comment-indent-function properly
4298 and handle the case where it returns nil.
4299
4300 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4301
4302 * calendar/cal-islam.el (calendar-goto-islamic-date):
4303 Remove autoload cookie.
4304
4305 * calendar/calendar.el (calendar-goto-islamic-date):
4306 Add call to autoload.
4307
4308 2001-07-16 Stefan Monnier <monnier@cs.yale.edu>
4309
4310 * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
4311 Don't change compile-auto-highlight globally.
4312 Don't bother with `font-lock-defaults' property since XEmacs
4313 also understands the `font-lock-defaults' variable.
4314 Use make-local-variable rather than make-variable-buffer-local.
4315 Don't `defconst' comment-indent-function: keep the default.
4316 Call easy-menu-add unconditionally.
4317 (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
4318 (ada-create-menu): Use :included for Emacs as well.
4319
4320 * vc.el (vc-do-command): Autoload.
4321
4322 * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
4323
4324 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4325
4326 * ps-print.el: Fix Author: header.
4327
4328 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4329
4330 * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
4331 mouse-1 etc., bind them to `ignore'.
4332
4333 * eshell/esh-mode.el (eshell-send-invisible): Renamed from
4334 send-invisible, which is already defined in Comint.
4335 (eshell-watch-for-password-prompt): Use it.
4336
4337 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4338
4339 * which-func.el (which-func-mode): Doc fix.
4340
4341 * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
4342 * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
4343 * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
4344 * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
4345 * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
4346 * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
4347 * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
4348 * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
4349 * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
4350 * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
4351 * emulation/edt-mapper.el, emulation/edt-pc.el,
4352 * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
4353 * emulation/tpu-edt.el, emulation/tpu-extras.el,
4354 * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
4355 * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
4356 * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
4357 * international/isearch-x.el, international/iso-cvt.el,
4358 * international/ogonek.el, international/quail.el,
4359 * international/utf-8.el, jit-lock.el, language/devan-util.el,
4360 * language/devanagari.el, language/ethio-util.el,
4361 * language/ethiopic.el, language/european.el, language/indian.el,
4362 * language/romanian.el, language/tibet-util.el, language/tibetan.el,
4363 * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
4364 * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
4365 * mouse-sel.el, net/browse-url.el, net/net-utils.el,
4366 * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
4367 * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
4368 * progmodes/autoconf.el, progmodes/cmacexp.el,
4369 * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
4370 * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
4371 * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
4372 * progmodes/ebnf2ps.el, progmodes/executable.el,
4373 * progmodes/fortran.el, progmodes/idlw-shell.el,
4374 * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
4375 * progmodes/m4-mode.el, progmodes/mantemp.el,
4376 * progmodes/meta-mode.el, progmodes/octave-inf.el,
4377 * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
4378 * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
4379 * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
4380 * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
4381 * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
4382 * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
4383 * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
4384 * textmodes/texinfo.el, textmodes/texnfo-upd.el,
4385 * textmodes/two-column.el, time-stamp.el, timezone.el,
4386 * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
4387 * which-func.el, whitespace.el, wid-browse.el, widget.el,
4388 * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
4389 conventions.
4390
4391 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4392
4393 * simple.el (set-variable): Require 'cus-edit' instead of
4394 `wid-edit', so that the Custom widgets get defined.
4395
4396 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4397
4398 * allout.el: A fix to follow coding conventions.
4399
4400 * find-lisp.el: A fix to follow coding conventions.
4401
4402 * term/w32-win.el: A fix to follow coding conventions.
4403
4404 * textmodes/sgml-mode.el: A fix to follow coding conventions.
4405
4406 * term/xterm.el: A fix to follow coding conventions.
4407
4408 * term/news.el: A fix to follow coding conventions.
4409
4410 * emulation/vi.el: A fix to follow coding conventions, Maintainer:
4411 header line fixed.
4412
4413 * sun-curs.el: Fix Maintainer: header line.
4414
4415 * emacs-lisp/easymenu.el: Address of the author added.
4416
4417 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4418
4419 * dired.el (dired-insert-set-properties): Fix invalid mouse-face
4420 property.
4421
4422 2001-07-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4423
4424 * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
4425 * play/gamegrid.el, play/handwrite.el, play/landmark.el,
4426 * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
4427 Some fixes to follow coding conventions.
4428
4429 2001-07-16 Gerd Moellmann <gerd@gnu.org>
4430
4431 * which-func.el (which-func-mode): Doc fix.
4432
4433 2001-07-15 Stefan Monnier <monnier@cs.yale.edu>
4434
4435 * net/rcompile.el (remote-compile): Use make-local-variable.
4436
4437 * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
4438
4439 * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
4440
4441 * mail/reporter.el (reporter-submit-bug-report):
4442 Don't abuse make-variable-buffer-local. Fix call to add-hook.
4443
4444 2001-07-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4445
4446 * calendar/cal-china.el, calendar/cal-coptic.el,
4447 * calendar/cal-dst.el, calendar/cal-french.el,
4448 * calendar/cal-hebrew.el, calendar/cal-islam.el,
4449 * calendar/cal-iso.el, calendar/cal-julian.el,
4450 * calendar/cal-mayan.el, calendar/cal-persia.el,
4451 * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
4452 * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
4453 * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
4454 * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
4455 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
4456 * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
4457 * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
4458 * progmodes/ada-prj.el, progmodes/ada-stmt.el,
4459 * progmodes/ada-xref.el, progmodes/cc-align.el,
4460 * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
4461 * progmodes/cc-defs.el, progmodes/cc-engine.el,
4462 * progmodes/cc-langs.el, progmodes/cc-menus.el,
4463 * progmodes/cc-styles.el, progmodes/cc-vars.el,
4464 * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
4465 * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
4466 * textmodes/reftex-index.el, textmodes/reftex-parse.el,
4467 * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
4468 * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
4469 * textmodes/reftex.el: Some fixes to follow coding
4470 conventions in Eshell files with known maintainers.
4471
4472 * emulation/viper.el: A fix to follow coding conventions.
4473
4474 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
4475 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
4476 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
4477 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
4478 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
4479 * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
4480 * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
4481 * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
4482 * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
4483 * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
4484 conventions in Eshell files.
4485
4486 * composite.el, diff.el, emacs-lisp/levents.el,
4487 * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
4488 * emulation/pc-mode.el, emulation/viper-cmd.el,
4489 * emulation/viper-ex.el, emulation/viper-init.el,
4490 * emulation/viper-keym.el, emulation/viper-macs.el,
4491 * emulation/viper-mous.el, emulation/viper-util.el,
4492 * emulation/viper.el, forms-pass.el, international/ccl.el,
4493 * international/characters.el, international/encoded-kb.el,
4494 * international/fontset.el, international/ja-dic-cnv.el,
4495 * international/ja-dic-utl.el, international/kinsoku.el,
4496 * international/kkc.el, international/mule-cmds.el,
4497 * international/mule-diag.el, international/mule-util.el,
4498 * international/mule.el, international/titdic-cnv.el,
4499 * language/china-util.el, language/chinese.el,
4500 * language/cyril-util.el, language/cyrillic.el, language/english.el,
4501 * language/greek.el, language/hebrew.el, language/japan-util.el,
4502 * language/japanese.el, language/korea-util.el, language/korean.el,
4503 * language/lao-util.el, language/lao.el, language/misc-lang.el,
4504 * language/slovak.el, language/thai-util.el, language/thai.el,
4505 * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
4506 * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
4507 * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
4508 * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
4509 * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
4510 * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
4511 * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
4512 * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
4513 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
4514 * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
4515 to follow coding conventions in files without maintainer or in files
4516 with clear maintainer (but without Maintainer header stating so).
4517
4518 * emacs-lisp/elp.el: A fix to follow coding conventions.
4519
4520 * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
4521 * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
4522 * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
4523 * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
4524 * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
4525 * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
4526 * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
4527 * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
4528 * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
4529 * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
4530 * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
4531 * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
4532 conventions in files from Gnus.
4533
4534 * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
4535 * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
4536 * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
4537 * echistory.el, electric.el, emacs-lisp/authors.el,
4538 * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
4539 * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
4540 * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
4541 * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
4542 * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
4543 * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
4544 * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
4545 * international/codepage.el, international/iso-ascii.el,
4546 * international/iso-insert.el, international/iso-transl.el,
4547 * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
4548 * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
4549 * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
4550 * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
4551 * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
4552 * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
4553 * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
4554 * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
4555 * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
4556 * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
4557 * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
4558 * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
4559 * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
4560 * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
4561 * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
4562 * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
4563 * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
4564 * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
4565 * textmodes/tex-mode.el, textmodes/text-mode.el,
4566 * textmodes/underline.el, thingatpt.el, time.el, timer.el,
4567 * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
4568 * vt100-led.el, window.el: Some fixes to follow coding conventions in
4569 files maintained by FSF.
4570
4571 2001-07-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4572
4573 * arc-mode.el: A fix to follow coding conventions.
4574
4575 * bindings.el: Ditto.
4576
4577 * cdl.el: Ditto.
4578
4579 * comint.el: Ditto.
4580
4581 * cus-start.el: Ditto.
4582
4583 * shell.el: Ditto.
4584
4585 * skeleton.el: Ditto.
4586
4587 2001-07-13 Stefan Monnier <monnier@cs.yale.edu>
4588
4589 * info.el (Info-build-node-completions):
4590 Make Info-current-file-completions buffer local.
4591
4592 2001-07-13 Gerd Moellmann <gerd@gnu.org>
4593
4594 * which-func.el (which-func-mode, which-func-ff-hook)
4595 (which-function-mode): Remove references to which-func-mode-global.
4596
4597 * calendar/cal-islam.el (calendar-goto-islamic-date):
4598 Add autoload cookie.
4599
4600 * play/fortune.el: Add types to defcustoms.
4601
4602 2001-07-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4603
4604 * language/czech.el: A fix to follow coding conventions.
4605
4606 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
4607
4608 * speedbar.el (speedbar-supported-extension-expressions): Add .g
4609 to the extension list, for antlr-mode. From Christoph Wedler
4610 <Christoph.Wedler@sap.com>.
4611
4612 2001-07-11 Stefan Monnier <monnier@cs.yale.edu>
4613
4614 * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
4615 (vc-dired-mode-map): Fix the madness.
4616
4617 * vc-hooks.el (vc-mode): Dummy function for doc purposes.
4618 (vc-prefix-map): Moved back from vc.el.
4619
4620 2001-07-11 Gerd Moellmann <gerd@gnu.org>
4621
4622 * mail/mail-extr.el (mail-extr-all-top-level-domains):
4623 Increase the size of the obarray.
4624 (mail-extr-all-top-level-domains): Add more toplevel domains,
4625 add more long names.
4626 From: Per Starback <starback@ling.uu.se>.
4627
4628 2001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
4629
4630 * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
4631 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4632
4633 * progmodes/ada-mode.el: Ditto.
4634
4635 * progmodes/ada-xref.el: Ditto.
4636
4637 2001-07-11 Miles Bader <miles@gnu.org>
4638
4639 * finder.el (finder-insert-at-column): Also move to the next line
4640 if exactly at COLUMN.
4641
4642 2001-07-10 Gerd Moellmann <gerd@gnu.org>
4643
4644 * help.el (describe-function-1): When printing FUNCTION's
4645 documentation, don't assume FUNCTION is a symbol.
4646
4647 * startup.el (normal-top-level): Don't operate on the initial
4648 frame if we failed to create one.
4649
4650 2001-07-10 Martin Stjernholm <bug-cc-mode@gnu.org>
4651
4652 * cc-cmds.el (c-indent-exp): Keep the indentation of the block
4653 itself, i.e. only indent the contents in it.
4654
4655 2001-07-10 Markus Rost <rost@math.ohio-state.edu>
4656
4657 * mail/rmail.el (rmail-show-message): Show beginning of message in
4658 all windows containing it.
4659
4660 2001-07-10 Eli Zaretskii <eliz@is.elta.co.il>
4661
4662 * term/tty-colors.el: Fix the header line and copyright years.
4663
4664 2001-07-09 Gerd Moellmann <gerd@gnu.org>
4665
4666 * emacs-lisp/advice.el (ad-make-advised-definition): If the
4667 original definition has an interactive form, but is Elp
4668 instrumented, use the interactive form of the function called by
4669 elp-wrapper.
4670
4671 * winner.el (winner-equal): Make it a defun. Don't compare Winner
4672 configurations with compare-window-configuration; they aren't
4673 window configurations.
4674
4675 * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
4676 from the server for the format we expect. Don't use it if it
4677 doesn't look like what the Internet draft for FTP extensions specifies.
4678
4679 * toolbar/*.pbm: Cleaned up.
4680 From Luis Fernandes <elf@ee.ryerson.ca>.
4681
4682 2001-07-09 Martin Stjernholm <bug-cc-mode@gnu.org>
4683
4684 * cc-cmds.el: Extended the kludge to interoperate with the
4685 delsel and pending-del packages wrt to the new function
4686 `c-electric-delete-forward'.
4687
4688 2001-07-08 Stefan Monnier <monnier@cs.yale.edu>
4689
4690 * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
4691 to delay the call to <mode> for global minor modes.
4692 (easy-mmode-define-navigation): Only recenter if interactive.
4693
4694 2001-07-06 Gerd Moellmann <gerd@gnu.org>
4695
4696 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
4697 to lisp-indent-line.
4698
4699 * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
4700 from the server. Call encode-time only when we are sure that we
4701 got a 213 response.
4702
4703 2001-07-06 Simon Josefsson <jas@extundo.com>
4704
4705 * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
4706 (mail-envelope-from): New user option.
4707 (sendmail-send-it): Use it.
4708
4709 2001-07-06 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4710
4711 * ps-print.el: Use locale dependant date to print date in header.
4712 Doc fix.
4713 (ps-print-version): New version number (6.5.3).
4714 (ps-right-header, ps-right-footer): Initialization and doc fix.
4715 (ps-time-stamp-locale-default): New fun.
4716
4717 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
4718
4719 * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
4720 field problem with MIME-mode.
4721
4722 * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
4723
4724 2001-07-06 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
4725
4726 * mail/rmail.el (rmail-reply): Don't forget to narrow header in
4727 MIME-mode.
4728
4729 2001-07-06 Eli Zaretskii <eliz@is.elta.co.il>
4730
4731 * bindings.el (mode-line-mule-info): Don't show the tip with
4732 buffer-file-coding-system if that is nil.
4733
4734 2001-07-05 Gerd Moellmann <gerd@gnu.org>
4735
4736 * calendar/todo-mode.el (todo-top-priorities): Use delete-region
4737 instead of kill-line.
4738
4739 * play/pong.el: Fix first line. From Pavel Jan\e,Bm\e(Bk
4740 <Pavel@Janik.cz>.
4741
4742 * battery.el (battery-update): Add help-echo. From Pavel Jan\e,Bm\e(Bk
4743 <Pavel@Janik.cz>.
4744
4745 2001-07-04 Gerd Moellmann <gerd@gnu.org>
4746
4747 * font-lock.el (c-font-lock-keywords-3): When matching something
4748 like `struct X Y', finish with point after Y.
4749
4750 2001-07-04 Simon Josefsson <jas@extundo.com>
4751
4752 * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
4753 in caller buffer.
4754
4755 2001-07-03 Eli Zaretskii <eliz@is.elta.co.il>
4756
4757 * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
4758 instead of string-match to find the basename of the file.
4759 From Pascal Obry <p.obry@wanadoo.fr>.
4760
4761 * net/browse-url.el (browse-url-default-windows-browser):
4762 Support the MS-DOS port when it runs on Windows.
4763 (browse-url-browser-function) [ms-dos]: Default to
4764 browse-url-default-windows-browser.
4765
4766 * help.el (locate-library): Enable code that looks for compressed
4767 libraries if auto-compression-mode is on.
4768
4769 2001-07-02 Stefan Monnier <monnier@cs.yale.edu>
4770
4771 * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
4772
4773 2001-07-02 Gerd Moellmann <gerd@gnu.org>
4774
4775 * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
4776
4777 2001-07-02 Eli Zaretskii <eliz@is.elta.co.il>
4778
4779 * allout.el: Fix the header line, so that finder.el recognizes it.
4780 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
4781
4782 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
4783 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
4784
4785 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
4786
4787 * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
4788
4789 * ps-bdf.el (bdf-directory-list): Use the value relative to
4790 installation-directory for MS-Windows as well.
4791
4792 2001-06-29 Richard M. Stallman <rms@gnu.org>
4793
4794 * wid-edit.el (widget-color-sample-face-get):
4795 Return ((foreground-color . COLOR)) instead of constructing a face.
4796
4797 2001-06-29 Eli Zaretskii <eliz@is.elta.co.il>
4798
4799 * faces.el (region): Change the background color for the
4800 light-background color display to lightgoldenrod2, to make it
4801 visible on some laptops.
4802
4803 2001-06-28 Richard M. Stallman <rms@gnu.org>
4804
4805 * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
4806 (rmail-msg-restore-non-pruned-header): Likewise.
4807 If point was in the old pruned header, put it at the top.
4808 (rmail-msg-prune-header): If point was at the top, keep it there.
4809
4810 * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
4811 (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
4812
4813 2001-06-28 Stefan Monnier <monnier@cs.yale.edu>
4814
4815 * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
4816
4817 2001-06-28 Karl Fogel <kfogel@red-bean.com>
4818
4819 * saveplace.el: Update maintainer email address.
4820
4821 2001-06-27 Francesco Potorti` <pot@gnu.org>
4822
4823 * uniquify.el: (uniquify-rationalize-file-buffer-names):
4824 Undo previous change.
4825
4826 2001-06-27 Francesco Potorti` <pot@gnu.org>
4827
4828 * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
4829 preliminary quick reordering. Can speed things up dramatically.
4830
4831 2001-06-26 Richard M. Stallman <rms@gnu.org>
4832
4833 * dired.el (dired-get-filename): A file name starting with ~
4834 is not absolute in this context.
4835
4836 * which-func.el (which-func-maxout): Increase default to 500000.
4837 (which-function-mode): This is now the "real" name of the function.
4838 (which-func-mode): Now an alias.
4839 (which-func-mode-global): Name deleted.
4840
4841 * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
4842 button-2, when binding hs-mouse-toggle-hiding.
4843
4844 2001-06-26 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
4845
4846 * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
4847 (rmail-msg-prune-header): Likewise.
4848 (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
4849 and `rmail-msg-prune-header'.
4850
4851 2001-06-25 Stefan Monnier <monnier@cs.yale.edu>
4852
4853 * textmodes/fill.el (fill-region-as-paragraph): Don't look further
4854 back than LINEBEG.
4855
4856 2001-06-25 Eli Zaretskii <eliz@is.elta.co.il>
4857
4858 * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
4859 window where they clicked the mouse has a header line, adjust
4860 vertical movement by one.
4861
4862 2001-06-25 Milan Zamazal <pdm@zamazal.org>
4863
4864 * progmodes/glasses.el (glasses-make-readable): Consider underscores
4865 too when separating a parenthesis.
4866
4867 2001-06-24 Eli Zaretskii <eliz@is.elta.co.il>
4868
4869 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
4870 (bookmark-bmenu-hide-filenames): Add help-echo to
4871 mouse-highlighted text.
4872 (bookmark-bmenu-show-filenames): Remove help-echo property from
4873 the whitespace.
4874
4875 2001-06-23 Eli Zaretskii <eliz@is.elta.co.il>
4876
4877 * files.el (auto-mode-alist): Add configure.ac (autoconf).
4878 From Karl Eichwalder <ke@suse.de>.
4879
4880 2001-06-23 Richard M. Stallman <rms@gnu.org>
4881
4882 * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
4883
4884 * progmodes/cc-styles.el (c-set-style): Don't specify initial
4885 contents for completing-read.
4886
4887 2001-06-22 Richard M. Stallman <rms@gnu.org>
4888
4889 * menu-bar.el (menu-bar-make-toggle): Construct the
4890 function's doc string from HELP, not DOC, and make it accurate by
4891 adding "Toggle whether to " at the front and downcasing the initial.
4892 Change the HELP arg in some calls to make it fit this usage.
4893
4894 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
4895 Undo previous change.
4896
4897 2001-06-22 Eli Zaretskii <eliz@is.elta.co.il>
4898
4899 * indent.el (indent-relative-maybe, indent-relative): Doc fix.
4900
4901 * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
4902
4903 2001-06-21 Eli Zaretskii <eliz@is.elta.co.il>
4904
4905 * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
4906
4907 * dabbrev.el (dabbrev--select-buffers): Fix last change.
4908
4909 2001-06-20 Richard M. Stallman <rms@gnu.org>
4910
4911 * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
4912 broken out from dabbrev--find-expansion. Handle minibuffer
4913 specially here.
4914 (dabbrev--find-expansion): Simplify code in various ways.
4915 Don't treat minibuffers specially.
4916 Call dabbrev--make-friend-buffer-list.
4917 (dabbrev--select-buffers): Don't treat minibuffers specially. Simplify.
4918 (dabbrev--scanning-message): Do nothing when minibuffer is current.
4919
4920 2001-06-19 John Wiegley <johnw@gnu.org>
4921
4922 * eshell/eshell.el: Don't load in esh-util if it's already loaded.
4923 Also, added a comment describing how to greatly speedup Eshell
4924 loadup time, by concatenating together all of Eshell's .elc files.
4925
4926 2001-06-19 John Wiegley <johnw@gnu.org>
4927
4928 * eshell/esh-mode.el: Disabled a test that often yields false failures.
4929
4930 2001-06-19 Eli Zaretskii <eliz@is.elta.co.il>
4931
4932 * woman.el (WoMan-highlight-references): Add help-echo to
4933 mouse-highlighted text.
4934
4935 2001-06-18 Stefan Monnier <monnier@cs.yale.edu>
4936
4937 * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
4938
4939 2001-06-18 Gerd Moellmann <gerd@gnu.org>
4940
4941 * international/quail.el (quail-start-conversion):
4942 Reset quail-translating to nil.
4943
4944 * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
4945 bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
4946
4947 2001-06-18 Eli Zaretskii <eliz@is.elta.co.il>
4948
4949 * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
4950 mouse-highlighted text.
4951
4952 * dired.el (dired-mark-pop-up): Fix last change.
4953
4954 2001-06-17 Eli Zaretskii <eliz@is.elta.co.il>
4955
4956 * calendar/calendar.el (generate-calendar-month): Add help-echo to
4957 mouse-highlighted text.
4958
4959 * net/quickurl.el (quickurl-url-file): Run through
4960 convert-standard-filename.
4961 (quickurl-list-populate-buffer): Add help-echo to
4962 mouse-highlighted text.
4963 (top-level): Update Dave's URL.
4964
4965 * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
4966 mouse-highlighted text.
4967
4968 * textmodes/page-ext.el (pages-copy-header-and-position):
4969 Add help-echo to mouse-highlighted text.
4970
4971 * tar-mode.el (tar-header-block-summarize): Add help-echo to
4972 mouse-highlighted text.
4973
4974 * replace.el (occur): Add help-echo to mouse-highlighted text.
4975
4976 * progmodes/sh-script.el (sh-mark-line): Add help-echo to
4977 mouse-highlighted text.
4978
4979 * progmodes/cpp.el (cpp-make-button): Add help-echo to
4980 mouse-highlighted text.
4981
4982 * progmodes/compile.el (compile-reinitialize-errors):
4983 Add help-echo to mouse-highlighted messages.
4984 (compilation-forget-errors): Remove help-echo property as well.
4985
4986 * play/landmark.el (lm-plot-square, lm-init-display):
4987 Add help-echo to mouse-highlighted text.
4988
4989 * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
4990 Add help-echo to mouse-highlighted text.
4991
4992 * dired.el (dired-insert-set-properties): Add help-echo to
4993 mouse-highlighted text.
4994 (dired-mark-pop-up): Remove help-echo property from the file name.
4995
4996 * comint.el (comint-send-input): Add help-echo to
4997 mouse-highlighted text.
4998
4999 * buff-menu.el (list-buffers-noselect): Add help-echo to
5000 mouse-highlighted text.
5001
5002 * arc-mode.el (archive-summarize-files): Add help-echo to
5003 mouse-highlighted text.
5004
5005 * ffap.el (ffap-machine-p): Always return nil if
5006 open-network-stream is not fboundp.
5007
5008 2001-06-17 Stefan Monnier <monnier@cs.yale.edu>
5009
5010 * textmodes/sgml-mode.el: Move `provide' to the end. Update copyright.
5011 (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
5012 Bind the latin-1 charset-char to sgml-maybe-name-self rather than
5013 incorrectly binding chars between 128 and 256 to it.
5014 (sgml-maybe-name-self): Handle latin-1 chars properly.
5015 (sgml-tags-invisible): Bind buffer-file-name to nil.
5016 Use unwind-protect and restore-buffer-modified-p.
5017 (sgml-point-entered): Use buffer-substring-no-properties.
5018 (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
5019 (html-mode): Don't force `imenu-sort-function'.
5020
5021 2001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
5022
5023 * tar-mode.el: Fix the copyright notice.
5024
5025 * font-lock.el (font-lock-comment-face): For tty's with dark
5026 background, use "red1", since "lightred" is not one of the colors
5027 recognized by tty-colors.el.
5028
5029 * tar-mode.el (tar-extract): Call generate-new-buffer-name to
5030 create a buffer for extracted file, in case there's more than one
5031 file by that name in an archive, possibly in different
5032 directories. From Kevin Rodgers <kevinr@ihs.com>.
5033
5034 * format.el (format-alist): Doc fix. Suggested by Alex Schroeder
5035 <alex@gnu.org>.
5036
5037 2001-06-15 Miles Bader <miles@gnu.org>
5038
5039 * textmodes/texinfmt.el (texinfo-format-syntax-table):
5040 Revert previous change.
5041
5042 2001-06-14 Richard M. Stallman <rms@gnu.org>
5043
5044 * replace.el (keep-lines-read-args): Return just a regexp.
5045 Provide nil for the region args.
5046 (keep-lines, flush-lines, how-many):
5047 Calculate the defaults for the region here, when args are nil.
5048
5049 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
5050
5051 * rot13.el (rot13-other-window): Some more doc fix.
5052
5053 2001-06-14 Per Starback <starback@ling.uu.se>
5054
5055 * replace.el (case-replace, query-replace-from-history-variable)
5056 (query-replace-to-history-variable, keep-lines-read-args)
5057 (occur-revert-function, query-replace-help): Dox fix.
5058
5059 2001-06-14 Eli Zaretskii <eliz@is.elta.co.il>
5060
5061 * rot13.el (rot13-other-window): Doc fix.
5062
5063 2001-06-14 Miles Bader <miles@gnu.org>
5064
5065 * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
5066 of " and \ to "." (punctuation).
5067 * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
5068
5069 2001-06-13 Richard M. Stallman <rms@gnu.org>
5070
5071 * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
5072
5073 * simple.el (shell-command-on-region): Never kill the
5074 *Shell Command Output* buffer.
5075
5076 2001-06-13 Stefan Monnier <monnier@cs.yale.edu>
5077
5078 * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
5079
5080 2001-06-10 Stefan Monnier <monnier@cs.yale.edu>
5081
5082 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
5083 New var, to recognize ${ $' and PODs.
5084 (perl-font-lock-syntactic-face-function): New function.
5085 (perl-mode): Use them.
5086 (perl-continuation-line-p): New function, from perl-calculate-indent.
5087 (perl-calculate-indent): Use it, to properly handle continuation
5088 lines of continuation lines.
5089
5090 2001-06-10 Eli Zaretskii <eliz@is.elta.co.il>
5091
5092 * server.el (server-process, server-buffer-clients): Doc fix.
5093 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5094
5095 2001-06-09 John Wiegley <johnw@gnu.org>
5096
5097 * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
5098 test if the last command was Lisp or not.
5099 (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
5100 B x C".
5101
5102 2001-06-08 Eli Zaretskii <eliz@is.elta.co.il>
5103
5104 * dos-w32.el (grep-regexp-alist): Remove definition, since the
5105 general one on compile.el supports drive letters.
5106
5107 2001-06-08 Carsten Dominik <dominik@strw.leidenuniv.nl>
5108
5109 * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
5110 key description.
5111
5112 * textmodes/reftex-sel.el (reftex-select-jump): New command.
5113
5114 * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
5115 (reftex-toc-jump): New command.
5116
5117 * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
5118 to parse international characters as well.
5119
5120 * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
5121 `reftex-fancyref-fref', `reftex-fancyref-Fref'.
5122
5123 * textmodes/reftex-vars.el: Protect single backslash in docstrings.
5124
5125 * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
5126 TAB to the key separators.
5127
5128 2001-06-07 Eli Zaretskii <eliz@is.elta.co.il>
5129
5130 * international/mule.el (auto-coding-alist): Remove redundant
5131 up-cased versions of the extensions (auto-coding-alist-lookup is
5132 case-insensitive where needed). Recognize .gz, .Z, .bz, .bz2, and
5133 .gpg files as binary. Suggested by Karl Berry <karl@gnu.org>.
5134
5135 2001-06-05 Eli Zaretskii <eliz@is.elta.co.il>
5136
5137 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
5138
5139 2001-06-01 Richard M. Stallman <rms@gnu.org>
5140
5141 * help.el (describe-variable): Put value on same line
5142 with preceding text, if it is short enough to look good that way.
5143
5144 2001-06-01 Eli Zaretskii <eliz@is.elta.co.il>
5145
5146 * term/internal.el (IT-unicode-translations): New variable.
5147 (IT-setup-unicode-display): New function.
5148
5149 2001-06-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5150
5151 * ps-print.el: Handle before-string and after-string overlay properties
5152 in ps-print-*-with-faces commands. Doc fix.
5153 (ps-print-version): New version number (6.5.2).
5154 (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
5155 for XEmacs.
5156 (ps-prefix-quote): Doc fix.
5157 (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
5158 (ps-basic-plot-str, ps-plot-string): New funs.
5159
5160 2001-05-31 Stefan Monnier <monnier@cs.yale.edu>
5161
5162 * progmodes/etags.el (tags-compression-info-list): Fix docstring
5163 and :type spec.
5164
5165 2001-05-31 Gerd Moellmann <gerd@gnu.org>
5166
5167 * international/mule-cmds.el (inactivate-input-method):
5168 Set input-method-function to nil.
5169
5170 * xml.el (xml-parse-tag): The document may contain invalid characters.
5171 From ShengHuo ZHU <zsh@cs.rochester.edu>
5172
5173 2001-05-31 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
5174
5175 * mail/rmailsum.el (rmail-message-subject-p): Don't call
5176 `rmail-summary-line-decoder' if the message does not have
5177 a Subject: field.
5178
5179 * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
5180
5181 * mail/rmail.el (rmail-insert-mime-resent-message-function):
5182 New variable.
5183 (rmail-resend): Modify to work in `rmail-view-buffer'; call
5184 `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
5185 is non-nil.
5186
5187 2001-05-30 Stefan Monnier <monnier@rum.cs.yale.edu>
5188
5189 * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
5190
5191 2001-05-29 Sam Steingold <sds@gnu.org>
5192
5193 * faces.el (face-valid-attribute-values): Bind `valid' directly
5194 instead of using `setq'.
5195
5196 * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
5197 Use `tex-shell-buf'.
5198 (tex-shell-proc): Use `tex-shell-running'.
5199 (tex-shell-buf-no-error): New function.
5200 (tex-send-tex-command): Use it.
5201 (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
5202 (tex-kill-job): Check the process before calling `quit-process'.
5203
5204 2001-05-29 Gerd Moellmann <gerd@gnu.org>
5205
5206 * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
5207 UTF-8 sequences.
5208
5209 2001-05-28 Miles Bader <miles@gnu.org>
5210
5211 * comint.el (comint-carriage-motion): Renamed from
5212 `comint-cr-magic'. Operate on the buffer instead of the string
5213 (for use as a comint post-output filter, instead of as a
5214 pre-output filter). Handle backspaces too. Add to the
5215 `comint-output-filter-functions' hook instead of
5216 `comint-preoutput-filter-functions'.
5217
5218 2001-05-28 Gerd Moellmann <gerd@gnu.org>
5219
5220 * language/japan-util.el (japanese-hankaku): Prefer the charset
5221 `jisx0201' when the optional argument `ascii-only' is not specified.
5222 (japanese-hankaku-region): Ditto.
5223 From Katsumi Yamaoka <yamaoka@jpl.org>
5224
5225 2001-05-28 Stefan Monnier <monnier@cs.yale.edu>
5226
5227 * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
5228 (outline-invisible-p): New function.
5229 (hide-leaves): Save excursion.
5230 (hide-other): Stop looping when reaching bobp.
5231
5232 2001-05-28 Eli Zaretskii <eliz@is.elta.co.il>
5233
5234 * cus-edit.el (custom-file): Fix last change.
5235
5236 2001-05-27 Stefan Monnier <monnier@cs.yale.edu>
5237
5238 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
5239 same definition in byte-compile-function-environment as `autoload'
5240 would put in `symbol-function'.
5241
5242 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
5243 patch to correct the error message as well.
5244
5245 2001-05-27 Eli Zaretskii <eliz@is.elta.co.il>
5246
5247 * cus-edit.el (custom-file): Don't assume we were invoked with -q
5248 unless ~/.emacs exists.
5249
5250 * novice.el (enable-command): If user-init-file is nil or does not
5251 exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
5252
5253 2001-05-25 Stefan Monnier <monnier@cs.yale.edu>
5254
5255 * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
5256 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
5257 Allow spaces around macro arguments.
5258 (tex-mode-map): Inherit from text-mode-map, but rebind \t to
5259 indent-for-tab-command.
5260 (latex-mode-map, plain-tex-mode-map): New keymaps.
5261 Inherit from tex-mode-map.
5262 (tex-common-initialization): Don't setup the keymap any more
5263 since it's now done right by define-derived-mode.
5264 (latex-mode): Set skeleton-end-hook to nil.
5265 (latex-skeleton-end-hook): Remove.
5266 (tex-latex-block, latex-insert-item): Simplify.
5267 (latex-syntax-after): Use following-char rather than char-after.
5268 (tex-discount-args-cmds, tex-count-words): New functions.
5269
5270 * textmodes/tildify.el (tildify-ignored-environments-alist):
5271 Recognize \verb* as well.
5272
5273 * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
5274 (perl-comment-indent): Simplify to let newcomment.el do its job.
5275 (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
5276 (perl-mark-function): Cleanup the namespace.
5277 (perl-calculate-indent): Don't be fooled by nested functions.
5278
5279 * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
5280
5281 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5282 Fix the arg of `load'. From Dave Love <fx@gnu.org>.
5283
5284 2001-05-25 Andrew Choi <akochoi@i-cable.com>
5285
5286 * international/titdic-cnv.el (ctlau-gb-converter): `\' should
5287 actually be `\\'.
5288 (ctlau-b5-converter): Likewise.
5289
5290 2001-05-24 Andrew Choi <akochoi@i-cable.com>
5291
5292 * international/titdic-cnv.el (quail-misc-package-ext-info):
5293 Change CTLauB.el to CTLau-b5.el.
5294
5295 2001-05-23 Stefan Monnier <monnier@cs.yale.edu>
5296
5297 * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
5298 rather than beginning-of-line to avoid problems with fields.
5299 (gud-perldb-massage-args): Use unless and push.
5300 (gud-chdir-before-run): New var.
5301 (gud-common-init): Use it.
5302
5303 2001-05-24 Andrew Choi <akochoi@i-cable.com>
5304
5305 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5306 delete entries for chinese-ctlau and chinese-ctlaub.
5307 (quail-misc-package-ext-info): Add entries for chinese-ctlau and
5308 chinese-ctlaub.
5309 (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
5310 New functions.
5311
5312 2001-05-22 Gerd Moellmann <gerd@gnu.org>
5313
5314 * cus-edit.el (custom-comment-show): Remove debug code.
5315
5316 * language/japan-util.el (japanese-symbol-table): Fix handling of
5317 Japanese long tone sign. From Kenichi Handa <handa@etl.go.jp>.
5318
5319 2001-05-21 Stefan Monnier <monnier@cs.yale.edu>
5320
5321 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
5322 Renamed by removing the silly `-flag' suffix.
5323 (diff-mode, diff-minor-mode, diff-find-source-location): Update.
5324
5325 2001-05-20 Stefan Monnier <monnier@cs.yale.edu>
5326
5327 * replace.el (keep-lines-read-args): Use `copy-marker'.
5328 (how-many): Save excursion properly.
5329 (occur-mode): Use define-derived-mode.
5330 (perform-replace): Use with-current-buffer.
5331
5332 2001-05-20 Richard M. Stallman <rms@gnu.org>
5333
5334 * play/landmark.el (lm): Use "p" not "P" for interactive spec.
5335
5336 * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
5337
5338 * info.el (Info-read-subfile): Widen before finding the
5339 desired node in the subfile.
5340
5341 * startup.el (command-line-1): When >2 files visited,
5342 leave the last one visible, and make that the selected window.
5343
5344 2001-05-20 Gerd Moellmann <gerd@gnu.org>
5345
5346 * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
5347
5348 2001-05-20 Eli Zaretskii <eliz@is.elta.co.il>
5349
5350 * international/ccl.el (define-ccl-program): Fix a typo.
5351 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5352
5353 * international/mule.el (decode-char): Fix a typo. From Pavel
5354 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5355
5356 * textmodes/artist.el (artist-mode): Fix a typo. From Pavel
5357 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5358
5359 * frame.el (automatic-hscrolling): Fix a typo. From Pavel
5360 Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5361
5362 2001-05-18 Sam Steingold <sds@gnu.org>
5363
5364 * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
5365 and [RET] to `cvs-mode-find-file'.
5366
5367 2001-05-18 John Wiegley <johnw@gnu.org>
5368
5369 * eshell/esh-ext.el (eshell-explicit-command-char): A new
5370 configuration variable, which determines the initial character
5371 that forces use of an external version of a command. The default
5372 is *, but may be set to \, for example.
5373
5374 * eshell/esh-ext.el (eshell-explicit-command):
5375 Use `eshell-explicit-command-char' instead of ?*.
5376
5377 * eshell/esh-cmd.el (eshell/which):
5378 Use `eshell-explicit-command-char' instead of ?*.
5379
5380 * eshell/em-cmpl.el (eshell-completion-command-name)
5381 (eshell-complete-commands-list): Use `eshell-explicit-command-char'
5382 instead of ?*.
5383
5384 2001-05-18 Gerd Moellmann <gerd@gnu.org>
5385
5386 * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
5387 subst-char-in-string.
5388 (ange-ftp-after-parse-ls-hook): New variable.
5389 (ange-ftp-ls): Run that hook.
5390 From Peter Milliken <Peter.Milliken@GTECH.COM>.
5391
5392 * tmm.el (tmm-get-keymap): Fix handling of :filter.
5393 (tmm-add-prompt): Bind buffer-read-only to nil when inserting
5394 text into *Completions*.
5395
5396 * net/goto-addr.el (goto-address-at-point): Deal with URLs
5397 part of which look like email addresses.
5398
5399 2001-05-18 Andrew Innes <andrewi@gnu.org>
5400
5401 * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
5402 Use . instead of absolute path for lisp dir, to avoid bug in W2K
5403 cmd.exe's handling of FOR loops.
5404 (autoloads): Set find-file-suppress-same-file-warnings to t to
5405 avoid slew of spurious messages.
5406
5407 2001-05-18 Simon Josefsson <simon@josefsson.org>
5408
5409 * mail/smtpmail.el (maybe-append-domain): Renamed to
5410 `smtpmail-maybe-append-domain'.
5411 (smtpmail-via-smtp): Use the new name.
5412
5413 * net/browse-url.el (browse-url-browser-function): Add kde.
5414 (browse-url-kde-program, browse-url-kde-args): New variables.
5415 (browse-url-kde): New function.
5416
5417 2001-05-18 Miles Bader <miles@gnu.org>
5418
5419 * simple.el (delete-horizontal-space, just-one-space):
5420 Use `constrain-to-field' instead of `field-end'/`field-beginning',
5421 because it's more efficient for large files.
5422
5423 2001-05-17 Gerd Moellmann <gerd@gnu.org>
5424
5425 * mail/rmail.el (rmail-require-mime-maybe): New function.
5426 (rmail): Use it.
5427 (rmail-mode): Handle the case of finding Rmail files.
5428
5429 * emacs-lisp/elp.el (elp-instrument-function): Handle advised
5430 functions.
5431
5432 2001-05-17 Stefan Monnier <monnier@cs.yale.edu>
5433
5434 * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
5435 text-property after moving to the beginning of line and regardless
5436 of the value of font-lock-multiline.
5437
5438 2001-05-17 Gerd Moellmann <gerd@gnu.org>
5439
5440 * startup.el (fancy-splash-screens): Ignore events on the mode-line.
5441
5442 * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
5443 last coding system used before calling set-buffer-modified-p
5444 because that function changes last-coding-system.
5445
5446 2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
5447
5448 * files.el (switch-to-buffer-other-window)
5449 (switch-to-buffer-other-frame): Add an xref to display-buffer in
5450 the doc string.
5451
5452 2001-05-17 Gerd Moellmann <gerd@gnu.org>
5453
5454 * language/slovak.el, language/czech.el: New maintainer.
5455
5456 2001-05-16 Sam Steingold <sds@gnu.org>
5457
5458 * emacs-lisp/cl-indent.el (toplevel): Indent the :method
5459 sub-form of `defgeneric' correctly.
5460
5461 2001-05-16 Gerd Moellmann <gerd@gnu.org>
5462
5463 * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
5464 of `c'.
5465
5466 * textmodes/outline.el (outline-font-lock-level): Remove the
5467 condition-case, test what outline-level returns instead, to
5468 ease debugging.
5469
5470 * international/mule.el (auto-coding-regexp-alist): New user-option.
5471 (auto-coding-from-file-contents): New function.
5472 (set-auto-coding): Use it to determine a coding system.
5473
5474 2001-05-15 Gerd Moellmann <gerd@gnu.org>
5475
5476 * mouse.el (mouse-delete-other-windows): Doc fix.
5477
5478 * emacs-lisp/lisp-mode.el (lisp-mode):
5479 Make font-lock-keywords-case-fold-search a buffer-local variable with
5480 make-local-variable before setting it.
5481
5482 2001-05-14 Eli Zaretskii <eliz@is.elta.co.il>
5483
5484 * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
5485 prefixes.
5486
5487 2001-05-14 Gerd Moellmann <gerd@gnu.org>
5488
5489 * hexl.el (hexl-current-address): Print a message when called
5490 interactively.
5491
5492 2001-05-11 Stefan Monnier <monnier@cs.yale.edu>
5493
5494 * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
5495
5496 * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
5497
5498 * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
5499
5500 2001-05-11 Gerd Moellmann <gerd@gnu.org>
5501
5502 * startup.el (command-line): If parameters have been changed in
5503 the init files which influence font selection, clear the face
5504 cache so that faces get realized with the new parameters.
5505
5506 * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
5507
5508 2001-05-10 Stefan Monnier <monnier@cs.yale.edu>
5509
5510 * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
5511
5512 2001-05-10 Eli Zaretskii <eliz@is.elta.co.il>
5513
5514 * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
5515 unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
5516
5517 2001-05-10 Gerd Moellmann <gerd@gnu.org>
5518
5519 * net/browse-url.el (browse-url-filename-alist): Allow UNC file
5520 names for MS-Windows and MS-DOS. From Dan Holmsand <dan@eyebee.com>.
5521
5522 2001-05-09 John Wiegley <johnw@gnu.org>
5523
5524 * eshell/esh-util.el (eshell-convert-numeric-arguments):
5525 Annotated the documentation string to tell users about
5526 `eshell-no-numeric-conversions'.
5527
5528 * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
5529 conversions if a Lisp function has the property
5530 `eshell-no-numeric-conversions' set to a non-nil value.
5531
5532 * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
5533 eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
5534 property `eshell-no-numeric-conversions' on the following
5535 functions (which all deal with filesystem entities, and never Lisp
5536 numerical values): eshell/cd, eshell/pushd, eshell/popd,
5537 eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
5538 eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
5539 eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
5540 eshell/which, eshell/addpath.
5541
5542 2001-05-09 John Wiegley <johnw@gnu.org>
5543
5544 * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
5545 encountered as an argument, don't convert it right away, but tag
5546 the first character of the string with the text properties
5547 `number', which signifies to `eshell-lisp-command' that the
5548 argument should be passed through `string-to-number' if it is
5549 actually used in the call to a Lisp function.
5550
5551 * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
5552 function, convert any string arguments that have been tagged as
5553 "numbers", by calling string-to-number.
5554
5555 * eshell/esh-util.el (eshell-number-regexp): Now that number
5556 conversions only happen for Lisp function calls, the number regexp
5557 should now match all integer and floating point forms.
5558
5559 * eshell/esh-proc.el: Disable `eshell-stop-process' and
5560 `eshell-continue-process', since they are both nonfunctional at
5561 the moment.
5562 (eshell-proc-initialize): Don't bind keys for
5563 `eshell-stop-process' or `eshell-continue-process'.
5564
5565 * eshell/em-unix.el (eshell-shuffle-files):
5566 Apply `directory-file-name' before calling `file-name-directory'.
5567
5568 * eshell/em-hist.el (eshell-add-to-history): Reference to
5569 `eshell-history-ring' needed to be `eshell-history-index'.
5570
5571 * calendar/timeclock.el (timeclock-find-discrep):
5572 Initialize `elapsed' to 0.
5573 (timeclock-find-discrep): Set `timeclock-last-event-workday' if
5574 it's still nil.
5575
5576 2001-05-09 Stefan Monnier <monnier@cs.yale.edu>
5577
5578 * arc-mode.el (archive-int-to-mode): Construct the string directly.
5579 (archive-mode): Use capitalize.
5580 (archive-unique-fname): Use make-temp-file.
5581
5582 2001-05-09 Gerd Moellmann <gerd@gnu.org>
5583
5584 * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
5585
5586 2001-05-09 Eli Zaretskii <eliz@is.elta.co.il>
5587
5588 * tar-mode.el (tar-extract): Pay attention to the value of
5589 coding-system-for-read, if it is non-nil.
5590
5591 * calendar/holidays.el (holidays): Add an autoload cookie.
5592 From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5593
5594 2001-05-08 John Wiegley <johnw@gnu.org>
5595
5596 * calendar/timeclock.el (timeclock-workday-remaining):
5597 Changed logic for determining how much time is remaining.
5598 (timeclock-workday-elapsed): Don't accept a "relative" argument
5599 for the current day's elapsed time. What could that have meant?
5600 (timeclock-workday-elapsed-string): No "relative" argument anymore.
5601 (timeclock-when-to-leave): Changed logic, similarly to what was
5602 done for `timeclock-workday-remaining'.
5603 (timeclock-find-discrep): Removed "today-only" argument, which had
5604 no meaning. Fixed some more math problems. The function now
5605 returns a three member list: (TOTAL-TIME-DISCREPANCY
5606 TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
5607
5608 2001-05-08 Eli Zaretskii <eliz@is.elta.co.il>
5609
5610 * w32-fns.el (convert-standard-filename): Start replacing slashes
5611 from the beginning of the file name, not from where the last
5612 invalid character was. From "Andrew Maguire (SWW)"
5613 <Andrew.Maguire@Smallworld.co.uk>
5614
5615 2001-05-07 MORIOKA Tomohiko <tomo@m17n.org>
5616
5617 The following changes are to provide infrastructure for handling
5618 MIME messages to rmail. They don't affect the original behaviour
5619 if rmail-enable-mime is nil.
5620
5621 * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
5622 (rmail-search-mime-message-function)
5623 (rmail-search-mime-header-function): New variables.
5624 (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
5625 (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
5626 `rmail-view-buffer' is hidden.
5627 (rmail-toggle-header): Likewise. If rmail-enable-mime is non-nil,
5628 call rmai-show-mime-function.
5629 (rmail-display-labels): If rmail-enable-mime is non-nil, update
5630 mode-line-process of rmail-view-buffer.
5631 (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
5632 (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
5633 buffer.
5634 (rmail-next-message, rmail-next-undeleted-message): Be sure to
5635 set-buffer to the Rmail buffer.
5636 (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
5637 rmail-search-mime-header-function.
5638 (rmail-search-message): New function.
5639 (rmail-search): Call rmail-search-message to check if a message
5640 matches REGEXP, lastly update point after calling
5641 rmail-show-message.
5642 (rmail-undelete-previous-message, rmail-expunge-confirmed)
5643 (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
5644 (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
5645 header region, refer to rmail-msgref-vector while setting the
5646 current buffer to rmail-buffer temporarily.
5647 (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
5648 If rmail-enable-mime is non-nil, call
5649 rmail-insert-mime-forwarded-message-function instead of inserting
5650 forwarded message by itself.
5651
5652 * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
5653 Rmail buffer.
5654 (rmail-set-label, rmail-next-labeled-message): Likewise.
5655
5656 * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
5657 set-buffer to the Rmail buffer.
5658 (rmail-output-to-rmail-file): Likewise.
5659 (rmail-output): Likewise.
5660
5661 * mail/rmailsum.el (rmail-message-subject-p): Process the result
5662 of mail-fetch-field by rmail-summary-line-decoder.
5663 (rmail-new-summary): Be sure to go to the Rmail buffer.
5664 If rmail-enable-mime is non-nil, set rmail-summary-buffer of
5665 rmail-view-buffer to nil.
5666 (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
5667 rmail-view-buffer.
5668 (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
5669 rmail-buffer.
5670 (rmail-summary-scroll-msg-down): Likewise.
5671 (rmail-summary-beginning-of-message): Likewise.
5672 (rmail-summary-wipe): Likewise.
5673 (rmail-summary-toggle-header): Use save-window-excursion, not
5674 save-excursion. Update point in rmail-view-buffer, not in
5675 rmail-buffer.
5676 (rmail-summary-reply): Before calling rmail-reply, set buffer to
5677 rmail-view-buffer, not rmail-buffer.
5678
5679 2001-05-07 Gerd Moellmann <gerd@gnu.org>
5680
5681 * cus-edit.el (custom-file): Signal an error if user-init-file is
5682 nil (running -q).
5683
5684 * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
5685
5686 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
5687 Add :version.
5688
5689 * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
5690 New option.
5691 (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
5692 only if smtpmail-warn-about-unknown-extensions is set.
5693
5694 * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
5695 instead of rmail-sort-by-keywords.
5696
5697 * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
5698 rmail-sort-by-keywords.
5699
5700 * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
5701 rmail-summary-sort-by-keywords. Doc fix.
5702 (rmail-summary-mode): Doc fix.
5703
5704 * mail/rmail.el (rmail-edit): New Custom group.
5705
5706 * mail/rmailedit.el (rmail-edit-mode): Doc fix.
5707 (rmail-edit-mode-hook): New user-option.
5708
5709 2001-05-05 Richard M. Stallman <rms@gnu.org>
5710
5711 * help.el (help-xref-symbol-regexp): Recognize "source of"
5712 and friends, meaning make a link to the source file.
5713 (help-make-xrefs): Handle "source of" and friends
5714 by constructing a link that visits the source file.
5715
5716 * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
5717
5718 2001-05-04 Stefan Monnier <monnier@cs.yale.edu>
5719
5720 * progmodes/cperl-mode.el (cperl-font-lock-keywords)
5721 (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
5722 Renamed from perl-font-lock-keywords to avoid clashes.
5723 (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
5724 (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
5725 Updated correspondingly.
5726
5727 * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
5728 Typo `nonexistant' -> `nonexistent'.
5729
5730 2001-05-04 Martin Stjernholm <bug-cc-mode@gnu.org>
5731
5732 * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
5733 Split `c-electric-delete' into two functions where
5734 `c-electric-delete-forward' always deletes forward and
5735 `c-electric-delete' only contains the code necessary for XEmacs to
5736 choose between backward and forward deletion.
5737
5738 * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
5739 get the electric behavior on that key too.
5740 (c-fill-paragraph): Fixed bogus direct use of
5741 c-comment-prefix-regexp, which caused an error when it's a list.
5742
5743 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
5744
5745 * dired-aux.el (dired-diff): Doc fix.
5746
5747 * dired.el (dired-diff): Likewise.
5748
5749 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
5750
5751 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
5752
5753 2001-05-02 Stefan Monnier <monnier@cs.yale.edu>
5754
5755 * vc.el (vc-next-action-on-file): Only force buffer+file to writable
5756 if both the buffer and the file are read-only.
5757
5758 * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
5759 rather than font-lock-string-face.
5760 (sh-get-indent-info): Treat heredocs like strings.
5761
5762 2001-05-02 Gerd Moellmann <gerd@gnu.org>
5763
5764 * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
5765 a newline following `}'.
5766 (texinfo-format-email): New function.
5767 (toplevel): Use texinfo-format-email for @email.
5768 (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
5769 Add `display'.
5770 (texinfo-sort-region): Goto point-min before sorting.
5771 (texinfo-set): Remove leading white space from value.
5772 From yagi@is.titech.ac.jp.
5773
5774 * replace.el (query-replace-regexp-eval): Doc fix.
5775
5776 2001-05-01 Stefan Monnier <monnier@cs.yale.edu>
5777
5778 * diff-mode.el (diff-nonexistant-face): New face.
5779 (diff-font-lock-keywords): Use it.
5780
5781 2001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
5782
5783 * font-lock.el (font-lock-mode): Doc fix.
5784
5785 * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
5786 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
5787
5788 2001-04-30 Gerd Moellmann <gerd@gnu.org>
5789
5790 * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
5791 backslash at the start of the here-document delimiter.
5792 (sh-font-lock-syntactic-keywords): Likewise.
5793
5794 * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
5795
5796 2001-04-29 Eli Zaretskii <eliz@is.elta.co.il>
5797
5798 * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
5799 (tty-color-translate, tty-color-by-index, tty-color-values)
5800 (tty-color-desc): Doc fix.
5801
5802 2001-04-27 Eli Zaretskii <eliz@is.elta.co.il>
5803
5804 * dired-aux.el (dired-do-create-files, dired-do-copy)
5805 (dired-do-symlink, dired-do-hardlink, dired-do-rename):
5806 Mention dired-dwim-target in the doc string.
5807
5808 2001-04-28 Miles Bader <miles@gnu.org>
5809
5810 * dabbrev.el (dabbrev--ignore-buffer-p): New function.
5811 (dabbrev--find-expansion): Use it.
5812 (dabbrev--select-buffers): Don't select ignored buffers.
5813
5814 2001-04-27 Gerd Moellmann <gerd@gnu.org>
5815
5816 * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
5817
5818 2001-04-26 Richard M. Stallman <rms@gnu.org>
5819
5820 * dabbrev.el: Add doc strings for some functions.
5821 (dabbrev--eliminate-newlines): New variable.
5822 (dabbrev--substitute-expansion): Convert newlines to spaces
5823 if dabbrev--eliminate-newlines is set.
5824 If abbrev and expansion are both all-lower-case,
5825 leave dabbrev--last-case-pattern nil.
5826
5827 2001-04-26 Gerd Moellmann <gerd@gnu.org>
5828
5829 * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
5830 if necessary, like in rmail-show-message.
5831
5832 2001-04-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5833
5834 * ps-print.el: Color specified by number is forced to be float number.
5835 (ps-print-version): New version number (6.5.1.1).
5836 (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
5837 initialization.
5838 (ps-prefix-quote): New internal var.
5839 (ps-print-quote): New fun.
5840 (ps-setup, ps-output-frame-properties, ps-float-format)
5841 (ps-format-color): Code fix.
5842 (ps-plot-region): Eliminate redundant foreground color text setting.
5843
5844 2001-04-26 Eli Zaretskii <eliz@is.elta.co.il>
5845
5846 * dabbrev.el (dabbrev--select-buffers): Add a doc string.
5847
5848 2001-04-25 Gerd Moellmann <gerd@gnu.org>
5849
5850 * faces.el (tty-handle-reverse-video): Don't set inverse-video.
5851
5852 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
5853
5854 * info.el (Info-additional-directory-list): Doc fix.
5855
5856 * find-lisp.el (find-lisp-find-dired-filter)
5857 (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
5858 Add autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
5859
5860 2001-04-25 Stefan Monnier <monnier@cs.yale.edu>
5861
5862 * progmodes/make-mode.el (makefile-font-lock-keywords):
5863 Rationalize the rules for includes and conditionals and use the
5864 keyword face for them.
5865
5866 * faces.el (modify-face): Add compatibility for non-interactive use.
5867
5868 2001-04-24 John Wiegley <johnw@gnu.org>
5869
5870 * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
5871 fix from last night, since it wasn't finding eshell/cd.
5872
5873 2001-04-24 Gerd Moellmann <gerd@gnu.org>
5874
5875 * rect.el (string-rectangle): Revert to 20.x behaviour.
5876 (replace-rectangle): Make it an alias for string-rectangle.
5877 (string-insert-rectangle): New function.
5878
5879 2001-04-23 John Wiegley <johnw@gnu.org>
5880
5881 * eshell/em-unix.el (eshell/diff): Fixed problems that were
5882 occurring with Emacs 21's diff.el/compile.el interaction layer.
5883
5884 2001-04-23 Colin Walters <walters@cis.ohio-state.edu>
5885
5886 * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
5887 case where the function was defined in a file, but not part of an
5888 eshell module.
5889
5890 2001-04-23 John Wiegley <johnw@gnu.org>
5891
5892 * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
5893 code to work around a redisplay problem I've been having.
5894
5895 2001-04-23 John Wiegley <johnw@gnu.org>
5896
5897 * calendar/timeclock.el (timeclock-day-required): If the time
5898 required for a particular day is not set, use `timeclock-workday'.
5899 (timeclock-find-discrep): Added some sample code in a comment.
5900
5901 * eshell/eshell.el (eshell-command): Made a few changes so that
5902 `eshell-command' could be called programmatically.
5903
5904 * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
5905
5906 * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
5907
5908 2001-04-23 John Wiegley <johnw@gnu.org>
5909
5910 * calendar/timeclock.el: Updated copyright.
5911 (timeclock-generate-report): Don't report the daily or two-week
5912 total, if no time has been worked in that period.
5913 (timeclock-find-discrep): Moved call to `file-readable-p'; removed
5914 final computational form, which was unnecessary; corrected a
5915 parsing problem when timeclock-relative was nil.
5916
5917 2001-04-23 Kahlil Hodgson <kahlil@discus.anu.edu.au>
5918
5919 * calendar/timeclock.el (timeclock-modeline-display): Check if
5920 `list-entry' is null.
5921 (timeclock-use-display-time): The first argument to `set-variable'
5922 must be a symbol.
5923
5924 2001-04-23 Eli Zaretskii <eliz@is.elta.co.il>
5925
5926 * calendar/calendar.el (diary-entry-marker)
5927 (calendar-today-marker, calendar-holiday-marker):
5928 Use display-color-p instead of window-system.
5929 (calendar-mode-map, calendar-mode): Use display-popup-menus-p
5930 instead of window-system.
5931 (calendar-hide-window): Use display-multi-frame-p instead of
5932 window-system.
5933
5934 * calendar/cal-x.el (calendar-two-frame-setup)
5935 (calendar-only-one-frame-setup, calendar-one-frame-setup):
5936 Use display-multi-frame-p instead of window-system.
5937
5938 2001-04-23 Gerd Moellmann <gerd@gnu.org>
5939
5940 * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
5941
5942 * textmodes/ispell.el, emacs-lisp/checkdoc.el,
5943 * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
5944
5945 2001-04-23 Alex Schroeder <alex@gnu.org>
5946
5947 * goto-addr.el: Instead of defining line-beginning-position and
5948 line-end-position a defalias is used for point-at-bol and point-at-eol.
5949
5950 2001-04-23 Alex Schroeder <alex@gnu.org>
5951
5952 * goto-addr.el: Added XEmacs compatibility code.
5953 (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
5954
5955 2001-04-22 Eli Zaretskii <eliz@is.elta.co.il>
5956
5957 * textmodes/paragraphs.el (sentence-end): Doc fix.
5958
5959 2001-04-20 Alex Schroeder <alex@gnu.org>
5960
5961 * sql.el (sql-escape-newlines-and-send): New function.
5962 (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
5963
5964 2001-04-20 Alex Schroeder <alex@gnu.org>
5965
5966 * sql.el (sql-db2-program): New option.
5967 (sql-db2-options): New option.
5968 (sql-db2): New function.
5969
5970 2001-04-20 Alex Schroeder <alex@gnu.org>
5971
5972 * sql.el (sql-mode-menu): Added highlighting entries.
5973 (sql-highlight-oracle-keywords): New function.
5974 (sql-highlight-postgres-keywords): New function.
5975 (sql-highlight-ansi-keywords): New function.
5976
5977 2001-04-20 Alex Schroeder <alex@gnu.org>
5978
5979 * sql.el (sql-help): Doc change.
5980
5981 2001-04-19 Karl Fogel <kfogel@collab.net>
5982
5983 * saveplace.el (save-place-alist-to-file): Removed no-effect code
5984 that inserted file content only to delete it immediately.
5985 Probably a cut-and-paste bug. Thanks to Juanma Barranquero
5986 <lektu@uol.com.br> for the patch.
5987
5988 2001-04-19 Stefan Monnier <monnier@cs.yale.edu>
5989
5990 * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
5991
5992 2001-04-18 Gerd Moellmann <gerd@gnu.org>
5993
5994 * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
5995 for defmethod.
5996
5997 * comint.el (comint-cr-magic): New function.
5998 (toplevel): Add it to comint-preoutput-filter-functions.
5999
6000 2001-04-18 Andrew Innes <andrewi@gnu.org>
6001
6002 * makefile.w32-in (EMACSLOADPATH): Define.
6003 (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
6004 (recompile): Remove stuff to set EMACSLOADPATH.
6005
6006 2001-04-18 Gerd Moellmann <gerd@gnu.org>
6007
6008 * language/slovak.el ("Slovak"): Add tutorial entry.
6009
6010 * net/browse-url.el (browse-url-new-window-flag): Renamed from
6011 browse-url-new-window-p.
6012
6013 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
6014
6015 * info.el (Info-menu-update): When there are no menus and/or no
6016 cross references in the node, make the respective items of the
6017 Info menu-bar menu inactive.
6018
6019 2001-04-17 Gerd Moellmann <gerd@gnu.org>
6020
6021 * indent.el (indent-for-tab-command): Call indent-line-function
6022 with no argument if PREFIX-ARG is non-nil.
6023
6024 * frame.el (delete-other-frames): Handle minibuffer-only frames.
6025
6026 2001-04-17 Eli Zaretskii <eliz@is.elta.co.il>
6027
6028 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
6029 an async subprocess if start-process is unavailable. Suggested by
6030 Tim Van Holder <tim.van.holder@pandora.be>.
6031
6032 2001-04-15 Eli Zaretskii <eliz@is.elta.co.il>
6033
6034 * info.el (Info-additional-directory-list): Doc fix. Suggested by
6035 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
6036
6037 2001-04-14 Eli Zaretskii <eliz@is.elta.co.il>
6038
6039 * info.el (Info-file-list-for-emacs): Add an entry for the "info"
6040 manual.
6041
6042 2001-04-13 Stefan Monnier <monnier@cs.yale.edu>
6043
6044 * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
6045 (cvs-menu): Add a few entries.
6046
6047 * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
6048 (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
6049 lock file appears to be reachable from Emacs.
6050 (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
6051 (cvs-mode-find-file): Look for cvs-header-face rather than
6052 cvs-dirname-face (which doesn't exist).
6053 (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
6054
6055 * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
6056
6057 2001-04-13 Eli Zaretskii <eliz@is.elta.co.il>
6058
6059 * emulation/pc-select.el (pc-selection-mode): Don't turn on
6060 normal-erase-is-backspace on a tty. Instead, bind some keys such
6061 as [delete] directly, like pc-select.el did before
6062 normal-erase-is-backspace was invented.
6063
6064 2001-04-12 Eli Zaretskii <eliz@is.elta.co.il>
6065
6066 * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
6067
6068 2001-04-11 John Wiegley <johnw@gnu.org>
6069
6070 * eshell/em-ls.el (eshell-ls-insert-directory):
6071 Set font-lock-defaults to nil, to prevent fontification in dired
6072 buffers, if Eshell's ls is being used.
6073
6074 2001-04-11 John Wiegley <johnw@gnu.org>
6075
6076 * calendar/timeclock.el (timeclock-completing-read): New function.
6077 (timeclock-ask-for-project, timeclock-ask-for-reason):
6078 Call `timeclock-completing-read'.
6079
6080 * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
6081 required where `member' was being used.
6082
6083 2001-04-11 Colin Walters <walters@cis.ohio-state.edu>
6084
6085 * eshell/em-hist.el (eshell-previous-matching-input):
6086 Don't display "History item" if the the minibuffer is active.
6087
6088 2001-04-11 Gerd Moellmann <gerd@gnu.org>
6089
6090 * startup.el (command-line): Output a newline after printing
6091 an error from loading the window system's init file.
6092
6093 2001-04-11 Eli Zaretskii <eliz@is.elta.co.il>
6094
6095 * textmodes/texinfo.el (texinfo-font-lock-keywords):
6096 Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
6097 @inforef. Add an OVERRIDE of `keep' to highlight specs of
6098 keywords whose arguments routinely include @@.
6099
6100 2001-04-10 Gerd Moellmann <gerd@gnu.org>
6101
6102 * emacs-lisp/advice.el (ad-make-advised-definition):
6103 Construct advice for subrs differently.
6104
6105 * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
6106 regexp in parentheses when building the regexp for searching backwards.
6107
6108 * simple.el (completion-list-mode-finish): New function.
6109 (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
6110
6111 * language/european.el ("Polish"): Change sample text.
6112 From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
6113
6114 * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
6115 parameter.
6116
6117 * faces.el (menu): Doc fix.
6118
6119 2001-04-10 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6120
6121 * ps-print.el: Footer implementation. Doc fix.
6122 (ps-print-version): New version number (6.5.1).
6123 (ps-header-frame-alist): New customization var for header frame
6124 properties.
6125 (ps-line-number-color): New customization var for line number color.
6126 (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
6127 (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
6128 (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
6129 (ps-right-footer): New customization vars for footers.
6130 (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
6131 footers.
6132 (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
6133 (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
6134 Code fix.
6135 (ps-prologue-file): Indentation fix.
6136 (ps-print-quote): Fun eliminated.
6137 (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
6138 (ps-output-frame-properties): New fun.
6139 (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
6140 (ps-skip-newline): Replace defun by defsubst.
6141
6142 2001-04-10 Colin Walters <walters@cis.ohio-state.edu>
6143
6144 * eshell/eshell.el (eshell-command): Needed a "%s" format
6145 specifier, in case the buffer contains percent characters.
6146
6147 2001-04-10 John Wiegley <johnw@gnu.org>
6148
6149 * calendar/timeclock.el (timeclock-generate-report): Added a
6150 missing insert of the project name.
6151
6152 2001-04-09 Gerd Moellmann <gerd@gnu.org>
6153
6154 * obsolete/profile.el: Moved from emacs-lisp/.
6155
6156 * Makefile.in (nonobsolete_setwins): New macro.
6157 (finder-data): Use it instead of `setwins'.
6158 From: Dave Love <fx@gnu.org>.
6159
6160 * server.el (server-visit-files): Set server-existing-buffer correctly.
6161 (server-visit-files): Run server-visit-hook after going to
6162 line 1 so that the hook can set point as it sees fit.
6163
6164 * bindings.el (mode-line-modified): Unify help messages.
6165
6166 2001-04-07 Eli Zaretskii <eliz@is.elta.co.il>
6167
6168 * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
6169 All callers changed.
6170
6171 2001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
6172
6173 * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
6174 long file names aren't supported, truncate the file names in
6175 quail-misc-package-ext-info to 8+3 before matching them against
6176 FILENAME.
6177
6178 * dos-fns.el (dos-truncate-to-8+3): New function.
6179
6180 * progmodes/compile.el (grep-compute-defaults): Use null-device
6181 instead of literal /dev/null. Reported by Jens Schmidt
6182 <schmidt@mathematik.uni-kl.de>.
6183
6184 * simple.el (normal-erase-is-backspace-mode): Doc fix.
6185
6186 2001-04-06 Stefan Monnier <monnier@cs.yale.edu>
6187
6188 * textmodes/sgml-mode.el: Add unknown maintainer.
6189 (sgml-tag): Pass `str' explicitly through skeleton-transformation.
6190 (html-mode-map): Use set-keymap-parent.
6191
6192 2001-04-06 Dave Love <fx@gnu.org>
6193
6194 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6195 Remove redundant string-to-list.
6196
6197 2001-04-05 Stefan Monnier <monnier@cs.yale.edu>
6198
6199 * composite.el (reference-point-alist): Doc fix.
6200
6201 2001-04-05 Sam Steingold <sds@gnu.org>
6202
6203 * font-lock.el (font-lock-keywords-case-fold-search):
6204 Make buffer-local. This fixes a very annoying bug when loading a Lisp
6205 file made font-lock case-insensitive.
6206
6207 2001-04-05 Gerd Moellmann <gerd@gnu.org>
6208
6209 * faces.el (defface menu): Doc fix.
6210
6211 * wid-edit.el (widget-color-sample-face-get): Don't make
6212 faces for undefined colors.
6213
6214 * version.el (emacs-version): Include LessTif/Motif version info.
6215
6216 2001-04-04 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6217
6218 * ps-mule.el: Eliminate cl package dependence.
6219 (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
6220 if they aren't defined yet.
6221 (ps-mule-encode-header-string, ps-mule-header-string-charsets):
6222 Eliminate cl package dependence.
6223
6224 2001-04-04 Stefan Monnier <monnier@cs.yale.edu>
6225
6226 * progmodes/cc-cmds.el (c-outline-level):
6227 Bind buffer-invisibility-spec. Originally from Dave Love, but
6228 got lost when incorporating version 5.26.
6229
6230 2001-04-04 Eli Zaretskii <eliz@is.elta.co.il>
6231
6232 * emulation/pc-select.el (pc-selection-mode):
6233 Call normal-erase-is-backspace-mode instead of binding
6234 keys individually.
6235
6236 * cus-load.el (normal-erase-is-backspace): Use it instead of
6237 delete-key-deletes-forward.
6238
6239 * startup.el (command-line): Use normal-erase-is-backspace and
6240 normal-erase-is-backspace-mode.
6241
6242 * simple.el (normal-erase-is-backspace): Rename from
6243 delete-key-deletes-forward. Doc fix.
6244 (normal-erase-is-backspace-mode): Rename from
6245 delete-key-deletes-forward-mode. Doc fix.
6246 Run normal-erase-is-backspace-hook.
6247
6248 * dired.el (dired-move-to-filename-regexp): Support file sizes in
6249 ``human-readable'' format produced by GNU `ls'.
6250 (dired-move-to-filename-regexp): Recognize ISO format dates.
6251 From Paul Eggert <eggert@twinsun.com>.
6252
6253 2001-04-04 Gerd Moellmann <gerd@gnu.org>
6254
6255 * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
6256 New functions.
6257 (lm-verify): Check keywords.
6258 From Eric M. Ludlam <eric@siege-engine.com>.
6259
6260 2001-04-03 Eric M. Ludlam <eric@siege-engine.com>
6261
6262 * speedbar.el (speedbar-insert-image-button-maybe): Check for
6263 `xemacs' feature instead of for the function `set-extent-property'.
6264
6265 2001-04-03 Stefan Monnier <monnier@cs.yale.edu>
6266
6267 * mail/mh-utils.el (mh-folder-hist): New var.
6268 (mh-prompt-for-folder): Use it and pass `default' to completing-read.
6269
6270 2001-04-03 Eli Zaretskii <eliz@is.elta.co.il>
6271
6272 * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
6273 region, position point on the first or last 16-byte group.
6274 (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
6275 and hexl-end-of-buffer. Bind End and Home to hexl-end-of-line and
6276 hexl-beginning-of-line.
6277
6278 2001-04-03 Gerd Moellmann <gerd@gnu.org>
6279
6280 * icomplete.el (icomplete-mode): Treat an argument like other
6281 modes do.
6282
6283 * startup.el (fancy-splash-head): Use splash8.xpm for color
6284 depth 8.
6285
6286 * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
6287 Add an antry for ``converts''.
6288
6289 * language/slovak.el ("Slovak"): Add documentation string.
6290 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
6291
6292 * language/czech.el ("Czech"): Add documentation string.
6293 From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
6294
6295 * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
6296 to `isci24-mule.bdf'. From: Kenichi Handa <handa@etl.go.jp>.
6297
6298 2001-04-02 Stefan Monnier <monnier@cs.yale.edu>
6299
6300 * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
6301 (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
6302 (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
6303 Use `defsubst' rather than a macro to ease debugging.
6304 (mail-extr-last): Remove (use `last' instead).
6305 (mail-extract-address-components): Properly reset the syntax-table
6306 after parsing an address. Use `last' rather than mail-extr-last.
6307 Make sure the end marker stays at the very end.
6308
6309 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
6310
6311 * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
6312 last change.
6313
6314 2001-04-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6315
6316 * ps-print.el: Line and paragraph spacing feature. Region to cut
6317 out when printing. Doc fix.
6318 (ps-print-version): New version number (6.5).
6319 (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
6320 New vars. Line and paragraph spacing feature.
6321 (ps-begin-cut-regexp, ps-end-cut-regexp): New vars. Region to cut
6322 out when printing.
6323 (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
6324 (ps-get-font-size, ps-begin-job, ps-continue-line)
6325 (ps-plot-region): Code fix.
6326 (ps-print-prologue-2): Var eliminated.
6327 (ps-line-spacing-internal, ps-paragraph-spacing-internal):
6328 New internal vars.
6329 (ps-get-size): New fun.
6330 (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
6331 (ps-next-line): Replace defun by defsubst.
6332 (ps-mule-plot-string): Autoload doc fix.
6333
6334 * ps-bdf.el: XEmacs compatibility. Doc fix.
6335 (installation-directory, coding-system-for-read): Declare vars if
6336 it's not declared yet.
6337 (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
6338
6339 * ps-mule.el: XEmacs compatibility. Doc fix.
6340 (leading-code-private-22): Declare var if it's not declared yet.
6341 (charset-bytes, charset-dimension, charset-id, charset-width)
6342 (find-charset-region, split-char, char-width, chars-in-region)
6343 (forward-point, decompose-composite-char, encode-coding-string)
6344 (coding-system-p, ccl-execute-on-string, define-ccl-program):
6345 Define funs if not defined yet.
6346 (encode-composition-rule, find-composition): Define funs if not
6347 loaded yet.
6348 (ps-mule-prologue): PostScript code fix.
6349
6350 2001-04-02 Kenichi Handa <handa@etl.go.jp>
6351
6352 * ps-mule.el (ps-mule-generate-font): New arg HEADER-P. If it is
6353 non-nil, generate font for the header strings.
6354 (ps-mule-prepare-font): Likewise.
6355 (ps-mule-generate-glyphs): Likewise.
6356 (ps-mule-string-encoding): Likewise.
6357 (ps-mule-header-charsets): New variable.
6358 (ps-mule-encode-header-string): New function.
6359 (ps-mule-header-string-charsets): New function.
6360 (ps-mule-begin-job): Check charsets in the header strings. If there
6361 are non-ASCII and non-Latin1 charsets, prepare fonts for them.
6362
6363 * ps-print.el (ps-generate-header-line): Encode the header string by
6364 ps-mule-encode-header-string.
6365 (ps-mule-encode-header-string): Declare autoload.
6366
6367 2001-04-02 Gerd Moellmann <gerd@gnu.org>
6368
6369 * frame.el (cursor-in-non-selected-windows):
6370 Replaces show-cursor-in-non-selected-windows.
6371
6372 2001-03-31 Kenichi Handa <handa@etl.go.jp>
6373
6374 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6375 Delete entries for "chinese-py" and "chinese-ziranma".
6376 (quail-misc-package-ext-info): New variable.
6377 (tsang-quick-converter): New function.
6378 (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
6379 (quick-cns-converter, py-converter, ziranma-converter)
6380 (miscdic-convert, batch-miscdic-convert): New functions.
6381
6382 2001-03-30 Kenichi Handa <handa@etl.go.jp>
6383
6384 * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
6385 eight-bit-control chars.
6386
6387 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6388 Reduce making temporary vector (suggested by Dave Love).
6389
6390 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
6391
6392 * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
6393 string as well.
6394
6395 2001-03-30 Andreas Schwab <schwab@suse.de>
6396
6397 * files.el (backup-directory-alist): Fix typo.
6398
6399 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
6400
6401 * time-stamp.el (time-stamp-format): Doc fix. From Paul Eggert
6402 <eggert@twinsun.com>.
6403
6404 2001-03-30 Dave Love <fx@gnu.org>
6405
6406 * progmodes/fortran.el (fortran-comment-region): Fix typo.
6407
6408 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
6409
6410 * simple.el (transient-mark-mode): Mention C-g in the doc string.
6411
6412 2001-03-30 Miles Bader <miles@gnu.org>
6413
6414 * subr.el (interactive-form): Fix paren typo.
6415
6416 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
6417
6418 * emacs-lisp/profile.el: Say that it's obsolete in the header
6419 line, so that finder.el puts that into its data-base.
6420 Suggested by Alex Schroeder <alex@gnu.org>.
6421
6422 2001-03-29 Paul Eggert <eggert@twinsun.com>
6423
6424 * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
6425 LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
6426
6427 2001-03-29 Stefan Monnier <monnier@cs.yale.edu>
6428
6429 * generic.el (generic-mode-set-comments): Use "" rather than nil
6430 for comment-end.
6431
6432 2001-03-29 Gerd Moellmann <gerd@gnu.org>
6433
6434 * emacs-lisp/advice.el (ad-make-advised-definition):
6435 Call interactive-form to obtain the interactive spec of subrs.
6436
6437 * subr.el (interactive-form): New function.
6438
6439 2001-03-29 Andre Spiegel <spiegel@gnu.org>
6440
6441 * vc-sccs.el (vc-sccs-register): Use relative file names.
6442
6443 2001-03-28 Gerd Moellmann <gerd@gnu.org>
6444
6445 * bookmark.el (bookmark-get-bookmark): Handle case that
6446 BOOKMARK is not a string.
6447
6448 * image.el (image-type-regexps): Change type for PS files
6449 to `postscript'.
6450
6451 * subr.el (read-passwd): Clear command history after each
6452 character entered. From: Stephen Gildea
6453 <gildea@stop.mail-abuse.org>.
6454
6455 2001-03-27 Kenichi Handa <handa@etl.go.jp>
6456
6457 * international/kkc.el (kkc-save-init-file): Locally bind
6458 print-length to nil.
6459
6460 2001-03-26 Gerd Moellmann <gerd@gnu.org>
6461
6462 * textmodes/flyspell.el: Some doc fixes.
6463 (flyspell-maybe-correct-transposition)
6464 (flyspell-maybe-correct-doubling): Use a temporary buffer
6465
6466 * textmodes/ispell.el (ispell-parse-output): Doc fix.
6467
6468 * emacs-lisp/byte-opt.el (byte-optimize-while)
6469 (byte-optimize-form-code-walker): Diagnose too few arguments
6470 for `if' and `while'.
6471
6472 2001-03-26 Kenichi Handa <handa@etl.go.jp>
6473
6474 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6475 Prepend `\' to "\<quail-translation-docstring>".
6476
6477 2001-03-26 Gerd Moellmann <gerd@gnu.org>
6478
6479 * autorevert.el (global-auto-revert-non-file-buffers):
6480 Remove duplicate defcustom.
6481
6482 2001-03-26 Miles Bader <miles@gnu.org>
6483
6484 * international/latin1-disp.el (latin1-char-displayable-p):
6485 Add leading "-" for X font pattern.
6486
6487 2001-03-26 Kenichi Handa <handa@etl.go.jp>
6488
6489 * international/mule-diag.el (describe-coding-system):
6490 For raw-text and emacs-mule, don't add anymore text about what
6491 charsets they can encode.
6492
6493 2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
6494
6495 * help.el (view-lossage): Mention open-dribble-file in the doc
6496 string. Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
6497
6498 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
6499
6500 * skeleton.el (skeleton-internal-list): Fix bogus logic.
6501 (skeleton-pair-insert-maybe): Don't pair after a backslash.
6502
6503 2001-03-23 Kenichi Handa <handa@etl.go.jp>
6504
6505 * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6506 Call ccl-execute-on-string directly so that CCL program handling
6507 multibyte sequence can work correctly.
6508 (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
6509 property of the coding system.
6510
6511 2001-03-23 Stefan Monnier <monnier@cs.yale.edu>
6512
6513 * textmodes/fill.el (fill-individual-paragraphs-prefix):
6514 Fix transcription typo.
6515
6516 2001-03-22 Rajesh Vaidheeswarran <rv@gnu.org>
6517
6518 * whitespace.el: Add buffer local variables to toggle testing of
6519 whitespaces in buffers without affecting the default values.
6520 Bump version to 3.0 to account for a few other changes.
6521 (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
6522 (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
6523 (whitespace-toggle-spacetab-check): New functions.
6524
6525 2001-03-21 Stefan Monnier <monnier@cs.yale.edu>
6526
6527 * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
6528
6529 2001-03-21 Gerd Moellmann <gerd@gnu.org>
6530
6531 * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
6532 bs-cycle-configuration-name. From Juanma Barranquero
6533 <lektu@uol.com.br>.
6534
6535 * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
6536 and cc-vars.el.
6537
6538 * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
6539 headers. Always invoke sendmail with option -t.
6540
6541 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6542
6543 * Release of cc-mode 5.28.
6544
6545 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6546
6547 * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
6548 Removed the hardcoded switch to "java" style in Java mode.
6549 It's instead taken care of by the default value for c-default-style.
6550
6551 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6552
6553 * cc-align.el (c-lineup-math): Fix bug where lineup was
6554 triggered by equal signs in string literals.
6555
6556 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6557
6558 * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
6559 limit detection when at the ends of the buffer.
6560
6561 * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
6562 "for" statement clause in case 7F; a better one is done
6563 earlier in case 7D anyway.
6564
6565 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6566
6567 * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
6568 somewhat more and did a small optimization.
6569
6570 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6571
6572 * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
6573 Use the limit argument only to limit the syntactic context
6574 search, not to limit the actual movement.
6575
6576 * cc-cmds.el (c-beginning-of-statement): Move by sentence
6577 inside multiline strings, just like in comments. Also various
6578 fixes to the paragraph and comment prefix recognition, block
6579 comment ender handling etc.
6580
6581 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6582
6583 * cc-cmds.el (c-fill-paragraph): Take more care to preserve
6584 the relative position of the point.
6585
6586 * cc-cmds.el (c-electric-continued-statement): New function to
6587 use as abbrev hook to reindent for keywords such as "else"
6588 that continues an earlier statement.
6589
6590 * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
6591 like classes.
6592
6593 * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
6594 (pike-mode): Populate the default abbrev tables to reindent for
6595 keywords such as "else" that can continue earlier statements.
6596 Abbrev mode is therefore turned on by default now. (Note that
6597 this doesn't apply to idl-mode, since IDL afaik doesn't have
6598 statements at all.)
6599
6600 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6601
6602 * cc-engine.el (c-inside-bracelist-p): Fix for handling
6603 bracelists where the declaration contains template arguments.
6604
6605 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6606
6607 * cc-cmds.el (c-comment-indent):
6608 Use `c-get-syntactic-indentation' to correctly calculate the
6609 syntactic indentation. Fixes bug with lineup functions that
6610 return vectors.
6611
6612 * cc-engine.el (c-get-syntactic-indentation): Split the
6613 indentation sum calculation from `c-indent-line' to a separate
6614 function.
6615
6616 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6617
6618 * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
6619 Fixed places where it was assumed that preprocessor directives
6620 have to start in column zero.
6621
6622 * cc-engine.el (c-beginning-of-member-init-list): Handle C++
6623 template arguments after a class identifier properly.
6624
6625 * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
6626 lists for `new Foo[]' constructs in Java as expressions and
6627 not top level definition brace lists on the top level, so that
6628 they'll get indented consistently with the same type of
6629 expression in a normal block.
6630
6631 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6632
6633 * cc-cmds.el (c-fill-paragraph): The kludge that checks
6634 whether the adaptive filling package fails to keep the comment
6635 prefix is now kludged further to check for filladapt-mode
6636 which doesn't have that problem. This is really icky, but it's
6637 the only way that works with the current misfeatures/bugs in
6638 both adaptive-fill-mode and filladapt-mode.
6639
6640 * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
6641 around point is recognized more robust.
6642
6643 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6644
6645 * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
6646 (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
6647 (c-lit-type): Fixed all internal variables used dynamically so
6648 that they are always bound.
6649
6650 * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
6651 errors:
6652
6653 (c-indent-region): Fixed reporting of syntactic errors so that
6654 the region is fully reindented even when an error occurs.
6655 The last syntactic error is printed afterwards. Also cleanup up a
6656 whole lot of code that tried to optimize indentation of whole
6657 sexps but in reality accomplishes nothing.
6658
6659 (c-indent-sexp): Use c-indent-region.
6660
6661 (c-parsing-error): Changed this variable to hold the message
6662 for any syntactic error that is discovered.
6663
6664 (c-parse-state): Search backward from point instead of the bod
6665 position when the latter is invalid. This makes CC Mode
6666 recover faster when there are unbalanced close braces.
6667
6668 (c-backward-to-start-of-if): Use c-parsing-error to report
6669 dangling "else" clauses instead of throwing an error, and fall
6670 back to a reasonable position.
6671
6672 (c-indent-line): Added argument to avoid reporting syntactic errors.
6673
6674 (c-show-syntactic-information): Don't report any syntactic errors.
6675
6676 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6677
6678 * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
6679 paragraph recognition when moving by sentence in literals.
6680
6681 * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
6682 start regexp for javadoc to recognize javadoc markup in general instead
6683 of a specific set of keywords, to be more future-safe.
6684
6685 (c-Pike-pikedoc-paragraph-start)
6686 (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
6687 pikedoc markup.
6688
6689 * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
6690
6691 (pike-mode): Initialize paragraph settings pikedoc recognition.
6692
6693 * cc-vars.el (c-default-style): Made a nicer Customize widget.
6694
6695 (c-comment-prefix-regexp): Made it possible to use an
6696 association list on this to specify mode specific regexps.
6697 The default value now use a special regexp in Pike mode to
6698 recognize pikedoc markup.
6699
6700 (c-current-comment-prefix): New variable containing the actual
6701 regexp from c-comment-prefix-regexp for the current buffer.
6702
6703 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6704
6705 * cc-cmds.el (c-electric-brace): Fixed check for special brace
6706 lists: We can't look at the syntax, since a brace list can get
6707 recognized as a plain statement-cont.
6708
6709 * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
6710 special brace list opener broken over two lines got recognized
6711 as a statement on the second line. Case 9A changed.
6712
6713 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6714
6715 * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
6716 adjustment after line is reindented.
6717
6718 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6719
6720 * cc-defs.el (c-point): Added optional argument for position
6721 to use instead of the current point.
6722
6723 * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
6724 the in-expression block symbols when the construct starts at
6725 boi, to avoid the extra level of indentation in that case.
6726 Cases 4, 16A and 17E affected.
6727
6728 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6729
6730 * cc-cmds.el: Use `indent-according-to-mode' instead of direct
6731 calls to `c-indent-line', to adhere better to Emacs conventions.
6732
6733 * cc-engine.el (c-indent-line): Use the syntax already bound
6734 to `c-syntactic-context', if there is any.
6735
6736 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6737
6738 * cc-engine.el (c-get-offset): Fixed bug where the indentation
6739 wasn't added up correctly when a lineup function returned nil.
6740
6741 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6742
6743 * cc-engine.el (c-collect-line-comments): Fixed bug where
6744 empty lines were ignored when collecting line comments backwards.
6745
6746 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6747
6748 * cc-align.el (c-lineup-dont-change): Return an absolute
6749 indentation column to work correctly in the case when several
6750 syntactic elements are processed for the same line.
6751
6752 * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
6753 (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
6754 (c-set-offset): Added absolute indentation column settings by
6755 using the vector type.
6756
6757 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6758
6759 * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
6760 Implemented two new cleanups `space-before-funcall' and
6761 `compact-empty-funcall'.
6762
6763 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6764
6765 * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
6766 helping building regexps.
6767
6768 * cc-engine.el (c-on-identifier): New function for detecting
6769 identifiers. It takes keywords into account.
6770
6771 * cc-langs.el, cc-mode.el: Added regexps for complete keyword
6772 lists. `c-keywords' is set to a regexp matching all keywords
6773 in the current language.
6774
6775 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6776
6777 * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
6778 list of characters to skip backwards over at the beginning of
6779 a statement, since it can precede string literals in Pike.
6780
6781 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6782
6783 * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
6784 recognition when standing on the last line in a C++ comment
6785 with nothing but whitespace after the prefix.
6786
6787 * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
6788 given no limit argument.
6789
6790 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6791
6792 * cc-engine.el (c-inside-bracelist-p): Fixed brace list
6793 recognition for the `[]= operator symbol in Pike.
6794
6795 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6796
6797 * cc-bytecomp.el (cc-eval-when-compile): New macro that works
6798 around a bug in `eval-when-compile' in the byte compiler.
6799
6800 * cc-engine.el (c-forward-token-1): Fixed bug with return
6801 value when count is zero and there's no token start within the limit.
6802
6803 (c-guess-basic-syntax): Don't add 'comment-intro to lines with
6804 "prefix comments", i.e. comments which are followed by code on
6805 the same line.
6806
6807 * cc-mode-19.el: Fixes so that checks that must be done at
6808 compile time also are done then.
6809
6810 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6811
6812 * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
6813 time and at runtime, and only when it's needed.
6814
6815 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6816
6817 Major cleanup for less error prone and more warning free
6818 compilation, including some fixes for bugs due to different
6819 compilation orders. Thanks to Martin Buchholz for providing
6820 the basis for all this.
6821
6822 * cc-bytecomp.el: New file that provides some byte compilation
6823 features: It ensures that files always are loaded from the
6824 current source directory during compilation, and it provides a
6825 set of macros to turn off specific compiler warnings for
6826 specific symbols. (It's not CC Mode specific in any way.)
6827
6828 Fixed a nearly acyclic dependency tree (both runtime and
6829 compile-time) between all files.
6830
6831 * cc-defs.el: Separated all macros before the inline functions,
6832 to ensure correct compilation.
6833
6834 * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
6835 cc-defs.el to cc-engine.el and made it a function instead.
6836
6837 * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
6838 about char-after.
6839
6840 * cc-vars.el: Cope even when there isn't a custom package
6841 containing defcustom available.
6842
6843 * cc-make.el: Removed since it's no longer necessary.
6844
6845 README: Updated installation instructions.
6846
6847 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6848
6849 * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
6850 improve the modularity: Moved all mode init stuff from
6851 cc-langs.el to cc-mode.el, including the keymap
6852 initialization; cc-langs now only contains the various
6853 variables for configuring the language syntax.
6854
6855 * cc-engine.el, cc-styles.el (c-evaluate-offset)
6856 (c-get-offset): Moved from cc-styles to cc-engine since file
6857 dependency analysis suggests they belong there (which also
6858 makes more sense). Thanks to Martin Buchholz for doing the analysis.
6859
6860 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6861
6862 * cc-cmds.el (c-fn-region-is-active-p): New function that
6863 wraps the corresponding macro, for use in places that aren't
6864 compiled. Thanks to Martin Buchholz for pointing out this.
6865
6866 * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
6867
6868 * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
6869 add things to the bug report.
6870
6871 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6872
6873 * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
6874 returned prefix could contain a newline when the search for a
6875 good prefix line failed.
6876
6877 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6878
6879 * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
6880 (c-toggle-auto-hungry-state): Made the argument optional, as
6881 the documentation says it is.
6882
6883 2000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
6884
6885 * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
6886 multiline string syntax, #"...", as a cpp macro.
6887
6888 2001-03-21 Paul Eggert <eggert@twinsun.com>
6889
6890 * international/mule-cmds.el (set-locale-environment):
6891 Set system-messages-locale and system-time-locale, but only if the
6892 caller specifies a non-nil locale name.
6893
6894 2001-03-20 Gerd Moellmann <gerd@gnu.org>
6895
6896 * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
6897 problems for the interpreter. From: John Wiegley <johnw@gnu.org>
6898
6899 2001-03-20 Gerd Moellmann <gerd@gnu.org>
6900
6901 * follow.el (follow-avoid-tail-recenter): Doc fix.
6902
6903 * custom.el (custom-set-variables): Avoid reversing the list
6904 of args needlessly.
6905
6906 * startup.el (fancy-splash-head): Don't change the colors of the
6907 XPM image on a dark background.
6908
6909 * comint.el (comint-exec-1): Set columns of the terminal to
6910 window-width instead of frame-width.
6911
6912 * info.el (Info-scroll-down): Add missing WINDOW arg for
6913 pos-visible-in-window-p.
6914
6915 * ehelp.el (electric-help-mode-hook): Add defcustom.
6916
6917 * mail/sendmail.el (mail-mode): Activate case-folding in
6918 font-lock-defaults.
6919
6920 2001-03-19 Stefan Monnier <monnier@cs.yale.edu>
6921
6922 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
6923 (completion-ignored-extensions): Remove duplicate ".class".
6924
6925 2001-03-19 Andreas Schwab <schwab@suse.de>
6926
6927 * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
6928 From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
6929
6930 2001-03-19 Gerd Moellmann <gerd@gnu.org>
6931
6932 * language/european.el ("Latin-5", "Latin-4"): Use postfix input
6933 methods since there are not prefix input methods.
6934
6935 2001-03-19 Kenichi Handa <handa@etl.go.jp>
6936
6937 * international/mule-cmds.el (read-input-method-name):
6938 Locally bind enable-recursive-minibuffers to t.
6939
6940 2001-03-18 Stefan Monnier <monnier@cs.yale.edu>
6941
6942 * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
6943
6944 2001-03-17 Michael Kifer <kifer@cs.sunysb.edu>
6945
6946 * ediff-util.el: Copyright years.
6947 (ediff-choose-syntax-table): New function.
6948 (ediff-setup): Use ediff-choose-syntax-table.
6949
6950 * ediff-init.el (ediff-with-syntax-table): New macro, uses
6951 with-syntax-table.
6952
6953 * ediff.el: Date of last update, copyright years.
6954
6955 * ediff-wind (ediff-setup-control-frame): Nill->nil.
6956
6957 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
6958 of Scott Bronson.
6959 (ex-cmd-assoc,ex-cmd-one-letr): New functions.
6960 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
6961 Deleted functions.
6962 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
6963 ex-token-list.
6964
6965 * viper-util.el: Spaces, indentation.
6966
6967 * viper.el: Changed version, modification time.
6968
6969 2001-03-16 John Wiegley <johnw@gnu.org>
6970
6971 * calendar/timeclock.el (timeclock-workday-remaining):
6972 Check whether `discrep' is non-null before using it.
6973
6974 2001-03-16 John Wiegley <johnw@gnu.org>
6975
6976 * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
6977 first-time checkins.
6978 (timeclock-log-data): Fixed problem with reading timelog log file.
6979 Resulting data in the "day list" was incorrect.
6980 (timeclock-find-discrep): Check if `timeclock-file' is readable
6981 before opening it.
6982 (timeclock-time-less-p): New function.
6983 (timeclock-day-base): New function.
6984 (timeclock-geometric-mean): New function.
6985 (timeclock-generate-report): Generate a summary report based on
6986 the contents of the log file. This uses `timeclock-log-data', and
6987 is an example of writing a timelog manipulation function.
6988 (timeclock-visit-timelog): A quick command for opening the timelog
6989 file.
6990 (timeclock-log-data): Bound the variable event.
6991
6992 2001-03-16 Kenichi Handa <handa@etl.go.jp>
6993
6994 * international/mule-cmds.el (select-safe-coding-system):
6995 Fix typo: symbol-name -> symbol-value.
6996
6997 * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
6998 before substitute-in-file-name to handle double slashes in FILE
6999 correctly.
7000
7001 2001-03-15 Gerd Moellmann <gerd@gnu.org>
7002
7003 * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
7004 for Slovak. From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
7005
7006 2001-03-14 Gerd Moellmann <gerd@gnu.org>
7007
7008 * bindings.el (features): Add `md5' and `overlay' to the list.
7009
7010 * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
7011 bound before using it. It's not bound when configured without X,
7012 for instance.
7013
7014 2001-03-13 Thien-Thi Nguyen <ttn@gnu.org>
7015
7016 * progmodes/hideshow.el: Update copyright.
7017 (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
7018 (hs-minor-mode-hook): Include `:version' in defcustom form.
7019
7020 2001-03-13 Gerd Moellmann <gerd@gnu.org>
7021
7022 * help.el (string-key-binding): Don't call event-start on
7023 a non-list.
7024
7025 2001-03-13 Eli Zaretskii <eliz@is.elta.co.il>
7026
7027 * startup.el (fancy-splash-tail, command-line-1): Fix the
7028 copyright year.
7029
7030 2001-03-13 Kenichi Handa <handa@etl.go.jp>
7031
7032 * term.el: These changes are based on a patch sent from Yong Lu
7033 <lyongu@yahoo.com>.
7034 (term-set-escape-char): Bind M-x to execute-extended-command in
7035 term-raw-escape-map.
7036 (term-move-columns): Don't try to move to negagive column.
7037 (term-emulate-terminal): Insert a string before deleting a text to
7038 overwrite.
7039
7040 2001-03-12 Gerd Moellmann <gerd@gnu.org>
7041
7042 * play/life.el (life): Rearrange code so that all calls to
7043 life-display-generation are in a catch-form.
7044
7045 * progmodes/etags.el (tags-loop-continue): Don't change point in a
7046 file that isn't interesting. In an interesting file, push the old
7047 value of point on the mark ring.
7048
7049 * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
7050 New function.
7051 (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
7052 Use it.
7053
7054 * emacs-lisp/autoload.el (generate-file-autoloads):
7055 Remove warning about line lengths.
7056
7057 2001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
7058
7059 * progmodes/etags.el (tags-compression-info-list): New variable.
7060 (find-tag-in-order): Use it to deal with compressed source files.
7061 (tag-file-name-match-p): New function.
7062 (etags-recognize-tags-table): Use it for better match of file names.
7063
7064 2001-03-12 Kenichi Handa <handa@etl.go.jp>
7065
7066 * international/mule-cmds.el (register-input-method): Doc fix.
7067
7068 * international/quail.el (quail-translate-key): Fix condition to
7069 check if there's another breaking point in the current key.
7070
7071 2001-03-11 Eli Zaretskii <eliz@is.elta.co.il>
7072
7073 * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
7074 Babyl header to the newly-created output file, bind
7075 coding-system-for-write to either rmail-file-coding-system or
7076 emacs-mule-unix.
7077
7078 2001-03-11 Stefan Monnier <monnier@cs.yale.edu>
7079
7080 * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
7081 Fix the name and regexp used for subsubsections.
7082
7083 2001-03-10 Dave Love <fx@gnu.org>
7084
7085 * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
7086 and save-buffer if buffer-file-name non-nil. From rms.
7087
7088 2001-03-10 Andre Spiegel <spiegel@gnu.org>
7089
7090 * vc.el (vc-do-command): If the destination buffer is already
7091 current, don't set it up and don't erase it. Updated doc string
7092 to reflect that.
7093 (vc-version-diff): When doing a single file diff, don't switch to the
7094 *vc-diff* buffer before the command. This is to preserve local
7095 variable bindings that might affect the diff command.
7096 (vc-print-log): Don't switch to the *vc* buffer before the
7097 command, so that local variable bindings are preserved.
7098
7099 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
7100 not the current buffer.
7101 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
7102
7103 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
7104 make output go to buffer *vc*, not the current buffer.
7105
7106 2001-03-09 Stefan Monnier <monnier@cs.yale.edu>
7107
7108 * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
7109 so ^, $, *, ? and + are interpreted correctly.
7110
7111 2001-03-09 Gerd Moellmann <gerd@gnu.org>
7112
7113 * help.el (string-key-binding): Renamed from
7114 mode-line-key-binding. Handle any event on a string.
7115 Check for `keymap' properties as well as `local-map' properties.
7116
7117 * comint.el (comint-insert-clicked-input): Use the last key
7118 from this-command-keys to lookup the global key definition.
7119
7120 2001-03-09 Kenichi Handa <handa@etl.go.jp>
7121
7122 * international/characters.el: Add category `j' for
7123 katakana-jisx0201. Fix syntaxes of katakana-jisx0201.
7124
7125 * international/mule-conf.el (no-conversion): Fix docstring.
7126 (raw-text): Fix docstring.
7127
7128 2001-03-08 Gerd Moellmann <gerd@gnu.org>
7129
7130 * simple.el (choose-completion-string): When not leaving the
7131 minibuffer, raise the minibuffer frame when minibuffer-auto-raise
7132 is set.
7133
7134 * window.el (shrink-window-if-larger-than-buffer): Handle frame
7135 parameter `(minibuffer . t)'.
7136
7137 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
7138
7139 * progmodes/sh-script.el (sh-st-symbol): New symbol.
7140 (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
7141 (sh-mode): Remove `make-local-variable' for unused var
7142 `font-lock-unfontify-region-function'.
7143
7144 2001-03-07 Richard M. Stallman <rms@gnu.org>
7145
7146 * info.el (Info-scroll-down): Fix previous change.
7147
7148 * mail/rmail.el (rmail-toggle-header): Use a window which
7149 is showing the Rmail buffer, rather than the selected window.
7150
7151 2001-03-07 Dave Love <fx@gnu.org>
7152
7153 * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
7154 now, to avoid problems with binding imenu directly to a mouse event.
7155
7156 2001-03-07 Gerd Moellmann <gerd@gnu.org>
7157
7158 * info.el (Info-scroll-down): Call pos-visible-in-window-p with
7159 second arg t.
7160
7161 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
7162
7163 * log-edit.el (log-edit-common-indent): New var.
7164 (log-edit-set-common-indentation): Renamed from
7165 log-edit-delete-common-indentation. Use the new var.
7166 (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
7167
7168 * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
7169 (cvs-mode-add-change-log-entry-other-window):
7170 Don't presume change-log-default-name is defined.
7171
7172 * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
7173
7174 * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
7175 the "tree" operation as well.
7176
7177 * pcvs-parse.el (cvs-parse-table): Add another ignored message.
7178
7179 * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
7180 to match paragraph-start.
7181
7182 * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
7183 comment-start-skip and set comment-end-skip as well.
7184 (sgml-comment-indent): Fix for new value of comment-start-skip.
7185 (html-autoview-mode): Don't bother using make-local-hook.
7186
7187 2001-03-07 Gerd Moellmann <gerd@gnu.org>
7188
7189 * cus-edit.el (custom-save-delete): Move in front of local
7190 variables, otherwise long Custom entries would make them ineffective.
7191
7192 * uniquify.el: Set maintainer to FSF.
7193
7194 2001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
7195
7196 * dired-aux.el (dired-do-shell-command): Doc fix.
7197
7198 2001-03-06 Stefan Monnier <monnier@cs.yale.edu>
7199
7200 * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
7201
7202 * which-func.el (which-func-modes): Add cperl-mode.
7203 (which-func-mode-global): Use define-minor-mode.
7204
7205 * info-look.el: Docstring fixes and dead code eliminated.
7206 (cperl-mode): Add support.
7207 (emacs-lisp-mode): List all entries from elisp manual, whether
7208 or not they are currently (f)bound or not. Update regexp.
7209
7210 * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
7211
7212 * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
7213 so that C-h m shows the correct information.
7214 Use make-local-variable rather than make-variable-buffer-local.
7215 (cperl-info-buffer, cperl-setup-tmp-buf):
7216 Use make-local-variable rather than make-variable-buffer-local.
7217 (cperl-msb-fix, cperl-get-help-defer):
7218 Check major-mode for `cperl-mode' as well.
7219
7220 * progmodes/cperl-mode.el: Updated to author version 4.23.
7221 (cperl-electric-pod): SYNOPSIS was misspelled.
7222 (cperl-find-pods-heres): @if ? a : b was considered a REx.
7223 (cperl-after-expr-p): Make true after __END__.
7224
7225 2001-03-06 Gerd Moellmann <gerd@gnu.org>
7226
7227 * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
7228 bookmark-completion-ignore-case is t.
7229
7230 * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
7231 switch, like xterm, and concat resource strings, with a newline
7232 between them.
7233
7234 2001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
7235
7236 * international/codepage.el (cp770-decode-table)
7237 (cp773-decode-table, cp774-decode-table): New variables.
7238
7239 * man.el (Man-hyphenated-reference-regexp): New variable.
7240 (Man-build-references-alist): Use it to search for referenced
7241 manpages. If hyphenated is non-nil, record a concatenated word in
7242 Man-refpages-alist only if it matches Man-reference-regexp.
7243 Update word's length when it is concatenated. Reverse the list,
7244 to get the first manpage at the head.
7245 (Man-possibly-hyphenated-word): New function.
7246 (Man-follow-manual-reference): Use it instead of current-word to
7247 find a manpage at point, in a way that accounts for hyphenated
7248 references.
7249
7250 2001-03-06 Alex Schroeder <alex@gnu.org>
7251
7252 * sql.el (sql-interbase): New function.
7253 (sql-interbase-program): New option.
7254 (sql-interbase-options): New option.
7255 And some typos fixed: "customise" to "customize".
7256
7257 2001-03-06 Dave Love <fx@gnu.org>
7258
7259 * textmodes/flyspell.el (flyspell-region):
7260 Set up flyspell-local-mouse-map.
7261
7262 2001-03-05 Richard M. Stallman <rms@gnu.org>
7263
7264 * mail/rmail.el (rmail-retry-failure):
7265 Don't call rmail-beginning-of-message.
7266 Don't discard From: field. Do discard Received: field.
7267 Use unwind-protect to re-prune.
7268 (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
7269
7270 2001-03-06 Kenichi Handa <handa@etl.go.jp>
7271
7272 * international/quail.el (quail-title): Add autoload cookie.
7273
7274 2001-03-05 Dave Love <fx@gnu.org>
7275
7276 * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
7277 new defs.
7278
7279 2001-03-05 Kenichi Handa <handa@etl.go.jp>
7280
7281 * language/ethio-util.el (ethio-toggle-space):
7282 Update current-input-method-title if necessary.
7283 (ethio-toggle-punctuation): Likewise.
7284
7285 * international/quail.el (quail-title): Fix for the case that a
7286 title of an input method is specified by a list of the same form
7287 as used in mode-line-format.
7288
7289 * international/mule-cmds.el (activate-input-method):
7290 If current-input-method-title is set by activating INPUT-METHOD,
7291 respect that value.
7292
7293 2001-03-05 Gerd Moellmann <gerd@gnu.org>
7294
7295 * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
7296
7297 2001-03-05 Alex Schroeder <alex@gnu.org>
7298
7299 * sql.el (sql-sybase): Fix typo (was: query user about server two
7300 times instead of server and database).
7301
7302 * sql.el (sql-sybase): Doc change.
7303 (sql-mysql): Doc change.
7304 (sql-postgres): Doc change.
7305
7306 2001-03-05 Kenichi Handa <handa@etl.go.jp>
7307
7308 * international/mule-conf.el (emacs-mule, raw-text):
7309 Docstring modified.
7310
7311 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
7312
7313 * term/internal.el: Update copyright notice.
7314
7315 * term/pc-win.el: Update copyright notice.
7316
7317 2001-03-02 Dave Love <fx@gnu.org>
7318
7319 * files.el (insert-file-contents-literally):
7320 Bind inhibit-file-name-handlers and inhibit-file-name-operation,
7321 not jka-compr-compression-info-list.
7322
7323 2001-03-02 Stefan Monnier <monnier@cs.yale.edu>
7324
7325 * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
7326 spaces in default comment-start-skip settings rather than \s-.
7327
7328 2001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
7329
7330 * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
7331 default-frame-alist as well.
7332
7333 2001-03-01 Dave Love <fx@gnu.org>
7334
7335 * textmodes/reftex.el (defvar): Wrap some defvars in
7336 eval-when-compile. From Markus Rost <rost@math.ohio-state.edu>.
7337
7338 * subr.el (event-basic-type): Doc fix.
7339
7340 * international/quail.el: Doc fixes.
7341
7342 * international/utf-8.el: Doc fixes.
7343
7344 * international/mule-cmds.el: Doc fixes.
7345 (leim-list-header): Fix header text.
7346
7347 * international/mule.el (coding-system-category): Doc fix.
7348
7349 * international/ccl.el (ccl-compile): Doc fix.
7350
7351 2001-03-01 Stefan Monnier <monnier@cs.yale.edu>
7352
7353 * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
7354 rather than (before|after)-change-functions.
7355
7356 2001-03-01 Gerd Moellmann <gerd@gnu.org>
7357
7358 * ediff-util.el (ediff-scroll-horizontally): Arrange for
7359 scroll-left and scroll-right being called interactively so that
7360 they set the window's min_hscroll.
7361
7362 2001-03-01 Eli Zaretskii <eliz@is.elta.co.il>
7363
7364 * info.el (info-insert-file-contents-1): Accept an additional
7365 argument `lfn': if it is non-nil, concatenate `filename' and
7366 `suffix'; otherwise use the complicated MS-DOS code.
7367 All callers changed.
7368 (info-insert-file-contents, Info-find-node): If the MS-DOS port
7369 can access long file names, try the long file-name version of
7370 `info-insert-file-contents-1', then the short file-name version.
7371
7372 2001-02-28 TAKAHASHI Naoto <ntakahas@m17n.org>
7373
7374 * language/ethio-util.el (setup-ethiopic-environment-internal):
7375 Change bindings of functions keys to conform to "Emacs Lisp Coding
7376 Convention".
7377
7378 * language/ethiopic.el ("Ethiopic"): Add documentation.
7379
7380 2001-02-28 Kenichi Handa <handa@etl.go.jp>
7381
7382 * international/utf-8.el (mule-utf-8): Set coding-category
7383 property to coding-category-utf-8.
7384
7385 2001-02-27 Richard M. Stallman <rms@gnu.org>
7386
7387 * lpr.el (lpr-page-header-switches, print-region-1):
7388 Undo 2000-07-06 change.
7389 (lpr-add-switches): Default to t on gnu/linux.
7390
7391 2001-02-27 Gerd Moellmann <gerd@gnu.org>
7392
7393 * bs.el (bs-attributes-list): Doc fix.
7394
7395 2001-02-26 Gerd Moellmann <gerd@gnu.org>
7396
7397 * help.el (describe-project): Display the file THE-GNU-PROJECT.
7398
7399 * help.el (view-order-manuals): Use goto-address.
7400
7401 * startup.el (command-line-1): Add info about ordering manuals
7402 to the not so fancy splash screens.
7403
7404 2001-02-26 Andre Spiegel <spiegel@gnu.org>
7405
7406 * vc.el (vc-default-workfile-unchanged-p)
7407 (vc-default-latest-on-branch-p): Add missing BACKEND argument.
7408
7409 2001-02-26 Gerd Moellmann <gerd@gnu.org>
7410
7411 * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
7412 fontify in the right buffer.
7413
7414 * allout.el (outline-flag-region): Move macro in front of first
7415 use to avoid a run-time error.
7416
7417 2001-02-24 Andrew Innes <andrewi@gnu.org>
7418
7419 * makefile.w32-in: Fix copyright notice.
7420
7421 2001-02-24 Kenichi Handa <handa@etl.go.jp>
7422
7423 * international/utf-8.el (mule-utf-8): Set correct value for
7424 valid-codes property.
7425
7426 * international/fontset.el (x-complement-fontset-spec): In the
7427 case that we use ASCII font for the other charsets, use only
7428 family and registry part of it.
7429
7430 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
7431
7432 * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
7433 (shrink-window-if-larger-than-buffer): Doc fix.
7434
7435 2001-02-23 Stefan Monnier <monnier@cs.yale.edu>
7436
7437 * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
7438 predicate passed to completing-read.
7439
7440 2001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
7441
7442 * startup.el (command-line): Fix last change.
7443
7444 2001-02-23 Jason Rumney <jasonr@gnu.org>
7445
7446 * startup.el (tool-bar-originally-present): New variable.
7447 (command-line): Set it if the tool-bar is switched on at startup.
7448
7449 * frame.el (frame-notice-user-settings): Only adjust frame height
7450 for no tool-bar case if tool-bar was originally switched on.
7451 From E. Jay Berkenbilt.
7452
7453 2001-02-22 Stefan Monnier <monnier@cs.yale.edu>
7454
7455 * server.el (server-switch-buffer): Only switch window if the
7456 current one is dedicated.
7457
7458 * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
7459 rather than using (match-beginning 0) when searching for break point.
7460
7461 2001-02-22 Eli Zaretskii <eliz@is.elta.co.il>
7462
7463 * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
7464 @ follows an accent command such as @'. Support optional braces
7465 in commands that insert accents, like makeinfo does.
7466
7467 2001-02-22 Gerd Moellmann <gerd@gnu.org>
7468
7469 * startup.el (fancy-splash-text): Add a line for ordering
7470 manuals. Reverse order of splash screens shown.
7471 (use-fancy-splash-screens-p): Adapt to the text line added.
7472
7473 * menu-bar.el (menu-bar-help-menu): Add an item for ordering
7474 manuals from the FSF.
7475
7476 * help.el (view-order-manuals): New function.
7477 (toplevel): Bind C-h C-m to this function.
7478
7479 2001-02-21 Stefan Monnier <monnier@cs.yale.edu>
7480
7481 * newcomment.el (comment-forward): Skip the comment-start before
7482 searching for the comment-end.
7483
7484 2001-02-21 Dave Love <fx@gnu.org>
7485
7486 * custom.el (custom-initialize-changed, defcustom): Doc fix.
7487
7488 * international/mule-cmds.el, international/mule.el: Doc fixes.
7489
7490 2001-02-21 Gerd Moellmann <gerd@gnu.org>
7491
7492 * startup.el (fancy-splash-screens): Use display-hourglass
7493 instead of display-busy-cursor.
7494
7495 * frame.el (display-hourglass): Renamed from busy-cursor.
7496 (hourglass-delay): Renamed from busy-cursor-delay-seconds.
7497 (show-cursor-in-non-selected-windows): Doc fix.
7498
7499 2001-02-20 Dave Love <fx@gnu.org>
7500
7501 * international/utf-8.el: Doc and commentary fixes.
7502
7503 2001-02-20 Eli Zaretskii <eliz@is.elta.co.il>
7504
7505 * ehelp.el (with-electric-help): Doc fix.
7506
7507 2001-02-20 Gerd Moellmann <gerd@gnu.org>
7508
7509 * msb.el (msb-mode): Call the update-buffers function explicitly
7510 with a FORCE argument.
7511
7512 * menu-bar.el (menu-bar-update-buffers): Add optional parameter
7513 FORCE. If set, update the menu even if frame-or-buffer-changed-p
7514 returns nil.
7515
7516 2001-02-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7517
7518 * ps-print.el: Timestamp package replacement. Some enhancements.
7519 Some XEmacs compatibility. Doc fix.
7520 (ps-print-version): New version number (6.4).
7521 (ps-printer-name): Initialization fix.
7522 (ps-zebra-stripe-follow): Funcionality enhancement.
7523 (ps-prologue-file): Code enhancement.
7524 (ps-right-header): Timestamp package replacement.
7525 (ps-setup, ps-face-bold-p, ps-face-italic-p)
7526 (ps-get-page-dimensions)
7527 (ps-generate-header, ps-begin-file, ps-begin-job)
7528 (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
7529 (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
7530 (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
7531 (coding-system-for-write): Var declaration (XEmacs compatibility).
7532
7533 2001-02-20 Miles Bader <miles@gnu.org>
7534
7535 * image-file.el (image-file-name-extensions): Add "tif".
7536
7537 2001-02-19 Gerd Moellmann <gerd@gnu.org>
7538
7539 * wid-edit.el (widget-button-click): Save the selected window
7540 around the code handling clicks on buttons.
7541
7542 2001-02-18 Dave Love <fx@gnu.org>
7543
7544 * imenu.el (imenu--generic-function): Use mapc to iterate over
7545 syntax characters.
7546
7547 2001-02-17 Richard M. Stallman <rms@gnu.org>
7548
7549 * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
7550
7551 * uniquify.el (uniquify-buffer-name-style): Doc fix.
7552
7553 2001-02-16 Gerd Moellmann <gerd@gnu.org>
7554
7555 * mouse.el (mouse-save-then-kill): If the distance from the new
7556 point to the mark is equal to the distance of point from the new
7557 point, move point instead of the mark.
7558
7559 2001-02-16 Dave Love <fx@gnu.org>
7560
7561 * textmodes/flyspell.el (flyspell-get-word): Return string without
7562 properties.
7563
7564 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
7565
7566 * generic.el (generic-find-file-regexp): Doc fix.
7567 (generic-ignore-files-regexp): New defcustom.
7568 (generic-mode-find-file-hook): If the file's name matches the
7569 regexp in `generic-ignore-files-regexp', don't enter
7570 default-generic-mode. Doc fix.
7571
7572 2001-02-16 Gerd Moellmann <gerd@gnu.org>
7573
7574 * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
7575 Add autoload cookies.
7576
7577 * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
7578 of cal-tex-24.
7579
7580 2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
7581
7582 * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
7583
7584 * progmodes/compile.el (grep-regexp-alist): Remove the blank from
7585 the character class after the (optional) drive, to support file
7586 names with embedded blanks.
7587
7588 2001-02-15 Sam Steingold <sds@gnu.org>
7589
7590 * textmodes/tex-mode.el (tex-shell-running):
7591 Check the process buffer too.
7592
7593 2001-02-15 Dave Love <fx@gnu.org>
7594
7595 * battery.el (battery-status-function): Fix doc, :type.
7596
7597 * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
7598
7599 2001-02-15 Gerd Moellmann <gerd@gnu.org>
7600
7601 * subr.el (read-passwd): Clear Lisp memory holding password.
7602
7603 2001-02-15 Miles Bader <miles@gnu.org>
7604
7605 * info.el (Info-copy-current-node-name): New function.
7606 (Info-mode-menu): Add it to the menu.
7607
7608 2001-02-14 Richard M. Stallman <rms@theobromine.ai.mit.edu>
7609
7610 * international/mule-cmds.el (toggle-input-method): Doc fix.
7611
7612 2001-02-13 Stefan Monnier <monnier@cs.yale.edu>
7613
7614 * replace.el (occur): Stop at end of buffer.
7615
7616 2001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
7617
7618 * international/mule-cmds.el (set-input-method): Another doc fix.
7619
7620 2001-02-13 David M. Koppelman <koppel@ee.lsu.edu>
7621
7622 * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
7623
7624 2001-02-13 Miles Bader <miles@gnu.org>
7625
7626 * faces.el (set-face-background, set-face-foreground)
7627 (set-face-stipple): Treat a value of nil as being `unspecified'.
7628
7629 2001-02-12 Dave Love <d.love@dl.ac.uk>
7630
7631 * international/latin1-disp.el: Doc fixes.
7632 (latin1-display) <defgroup>: Add :link.
7633 (latin1-display) <function>: Set variable latin1-display.
7634
7635 2001-02-12 Eli Zaretskii <eliz@is.elta.co.il>
7636
7637 * international/mule-cmds.el (set-input-method): Doc fix.
7638
7639 2001-02-12 Eric M. Ludlam <zappo@choochoo.ultranet.com>
7640
7641 * speedbar.el (speedbar-frame-parameters): No toolbar lines.
7642 (speedbar-line-file): Return nil if not a file.
7643 (speedbar-buffers-line-path): Return file for tags, and dir for files.
7644
7645 2001-02-12 Michael Kifer <kifer@cs.sunysb.edu>
7646
7647 * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
7648 for remote files.
7649 (ediff-coding-system-for-read): Replaced the no-conversion default
7650 with raw-text.
7651
7652 * ediff-init.el: Removed :version from defcustom vars.
7653
7654 * ediff-util.el (ediff-compute-custom-diffs-maybe):
7655 Better handling of the diff mode.
7656
7657 * ediff.texi: Added ediff-coding-system-for-read.
7658
7659 * viper.texi: Fix typos.
7660
7661 2001-02-11 Dave Love <fx@gnu.org>
7662
7663 * shadowfile.el: Doc fixes.
7664 (shadow) <defgroup>: Add :link.
7665 (shadowfile-unload-hook): New function.
7666 (shadow-initialize): Use defalias, not fset.
7667 (shadow-define-cluster, shadow-define-literal-group)
7668 (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
7669
7670 * international/mule.el: Doc and message fixes.
7671
7672 * international/ccl.el (define-ccl-program): Doc fix.
7673
7674 2001-02-11 Kenichi Handa <handa@etl.go.jp>
7675
7676 * faces.el (mode-line): Set :line-width property to -1.
7677
7678 2001-02-10 Richard M. Stallman <rms@gnu.org>
7679
7680 * complete.el (partial-completion-mode): Doc fix.
7681
7682 * simple.el (delete-key-deletes-forward-mode):
7683 Change `let' to `let*' to fix gross bug in last change.
7684
7685 * repeat.el (repeat): Don't let execute-kbd-macro alter
7686 real-last-command.
7687
7688 2001-02-10 Eli Zaretskii <eliz@is.elta.co.il>
7689
7690 * simple.el (eval-expression): Doc fix.
7691
7692 2001-02-09 Dave Love <fx@gnu.org>
7693
7694 * imenu.el (imenu-generic-expression): Doc fix.
7695
7696 * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
7697 From Juanma Barranquero.
7698
7699 * emacs-lisp/authors.el (authors): Expand `root' before running find.
7700
7701 2001-02-09 Kenichi Handa <handa@etl.go.jp>
7702
7703 * faces.el (set-face-attribute): Describe the case of a negative
7704 value specified for :line-width.
7705
7706 2001-02-08 Stefan Monnier <monnier@cs.yale.edu>
7707
7708 * which-func.el (which-func-mode): Invert which-func-mode-global.
7709 From Juanma Barranquero <lektu@uol.com.br>.
7710
7711 2001-02-08 Dave Love <fx@gnu.org>
7712
7713 * wid-edit.el (widget-plist-convert-widget): Replace binding of
7714 widget-plist-value-type.
7715 (widget-alist-convert-widget): Replace binding of
7716 widget-alist-value-type.
7717
7718 * textmodes/paragraphs.el (sentence-end): Doc fix.
7719
7720 * eshell/em-rebind.el (eshell-cannot-leave-input-list):
7721 Remove `backward-line'.
7722
7723 * play/pong.el (pong-blank-color, pong-bat-color)
7724 (pong-ball-color, pong-border-color, pong-left-key)
7725 (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
7726 (pong-pause-key, pong-resume-key, pong-timer-delay):
7727 * mail/mh-comp.el (mh-compose-letter-function):
7728 * eshell/esh-mode.el (eshell-skip-prompt-function):
7729 * emulation/viper-ex.el (ex-unix-type-shell-options):
7730 * recentf.el (recentf-menu-filter):
7731 * ps-print.el (ps-print-region-function):
7732 * lpr.el (print-region-function):
7733 * forms.el (forms-mode-hooks):
7734 * dirtrack.el (dirtrack-directory-change-hook):
7735 * cus-start.el (temp-buffer-show-function, display-buffer-function):
7736 * textmodes/spell.el (spell-filter):
7737 * textmodes/fill.el (adaptive-fill-function):
7738 * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
7739 * progmodes/etags.el (find-tag-default-function):
7740 * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
7741 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
7742
7743 2001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
7744
7745 * emulation/viper-init.el (viper-fast-keyseq-timeout)
7746 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
7747 Meyering <jim@meyering.net>.
7748
7749 * loadup.el: Revert last change.
7750
7751 2001-02-07 Kenichi Handa <handa@etl.go.jp>
7752
7753 * international/mule.el (transform-make-coding-system-args):
7754 Make it work also for coding systems not using CCL.
7755
7756 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
7757
7758 * simple.el (previous-matching-history-element)
7759 (next-matching-history-element): Doc fix.
7760
7761 * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
7762 specific part.
7763
7764 2001-02-06 Dave Love <fx@gnu.org>
7765
7766 * add-log.el (add-log-current-defun-function)
7767 (add-log-buffer-file-name-function, add-log-file-name-function):
7768 Fix :type.
7769 (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
7770
7771 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
7772
7773 * info.el (info-initialize): Remove the test for system-type when
7774 invocation-directory is non-nil.
7775
7776 * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
7777 of `font-lock-defaults' to `backward-paragraph' rather than nil.
7778
7779 2001-02-06 Andrew Innes <andrewi@gnu.org>
7780
7781 * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
7782 absolute.
7783
7784 2001-02-06 David M. Koppelman <koppel@ee.lsu.edu>
7785
7786 * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
7787 buffers. When hi-lock turned on rather than only checking current
7788 buffer for regexps, all buffers are checked. Moved activation of
7789 font-lock to hi-lock-refontify. When font-lock turned off rather
7790 than removing added highlighting just in current buffer, remove it
7791 in all buffers. Changed edit menu text from "Automatic
7792 Highlighting" to "Regexp Highlighting" Documentation for
7793 highlighting phrases, minor documentation changes.
7794 (hi-lock-set-file-patterns): Execute only if there are new or
7795 existing file patterns.
7796 (hi-lock-refontify): Assume font-lock-fontify-buffer will first
7797 unfontify and, if a support mode is active, will not refontify the
7798 whole buffer. If necessary, turn on font lock. (Removed
7799 font-lock-unfontify and font-lock support-mode-specific calls,
7800 such as lazy-lock-fontify-window.)
7801 (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
7802 patterns are found. Not useful now since find-file-hook is removed
7803 if hi-lock is off, but may be needed for per-buffer hi-lock activation.
7804 (hi-lock-face-phrase-buffer): New function. Also added related
7805 menu item and keybinding.
7806 (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
7807 (hi-lock-process-phrase): New function.
7808 (hi-lock-line-face-buffer): Doc fixes.
7809 (hi-lock-face-buffer): Doc fixes.
7810 (hi-lock-unface-buffer): Doc fixes.
7811
7812 2001-02-06 Gerd Moellmann <gerd@gnu.org>
7813
7814 * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
7815 dabbrev-ignored-regexps.
7816
7817 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
7818
7819 * simple.el (kill-line): Doc fix.
7820
7821 2001-02-05 Dave Love <fx@gnu.org>
7822
7823 * loadup.el: Revert last two changes -- bootstrapping works with
7824 regenerated loaddefs.
7825
7826 2001-02-05 Eli Zaretskii <eliz@is.elta.co.il>
7827
7828 * isearch.el (isearch-forward): Doc fix.
7829
7830 * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
7831 of font-lock-defaults to backward-paragraph.
7832
7833 2001-02-05 Gerd Moellmann <gerd@gnu.org>
7834
7835 * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
7836 X-Complaints-To, NNTP-Posting-Date, and User-Agent.
7837
7838 2001-02-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7839
7840 * ebnf2ps.el: Eliminate time-stamp functions.
7841 (ebnf-version): New version (3.5).
7842 (ebnf-eps-finish-and-write): Replace time-stamp functions by
7843 format-time-string.
7844
7845 2001-02-05 Gerd Moellmann <gerd@gnu.org>
7846
7847 * simple.el (next-line): Goto end-of-line before inserting a newline.
7848
7849 2001-02-05 Miles Bader <miles@gnu.org>
7850
7851 * image-file.el (insert-image-file): When visiting an image, also
7852 set `truncate-lines' to t so that any fringe arrow looks correct.
7853
7854 2001-02-05 Kenichi Handa <handa@etl.go.jp>
7855
7856 * isearch.el (isearch-forward): Add description about input method
7857 in the docsting.
7858
7859 2001-02-04 Stefan Monnier <monnier@cs.yale.edu>
7860
7861 * skeleton.el (skeleton-internal-1): Always push the mark for @.
7862
7863 2001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
7864
7865 * info.el (info-initialize): If installation-directory is nil, for
7866 DOS/Windows systems try looking in a sibling of invocation-directory.
7867
7868 2001-02-02 Gerd Moellmann <gerd@gnu.org>
7869
7870 * wid-edit.el (widget-button-click): Fix last change.
7871
7872 * frame.el (frame-notice-user-settings): When resizing the initial
7873 frame because the tool bar is off, also change the frame's top
7874 position if a negative top position was specified.
7875
7876 2001-02-02 Miles Bader <miles@gnu.org>
7877
7878 * image-file.el (insert-image-file): When visiting an image,
7879 suppress the cursor in the image buffer.
7880
7881 2001-02-01 Dave Love <fx@gnu.org>
7882
7883 * progmodes/f90.el (f90-mode): Remove startup message.
7884
7885 * vc-cvs.el: Remove autoloads. Require vc when compiling.
7886
7887 2001-02-01 Gerd Moellmann <gerd@gnu.org>
7888
7889 * startup.el (command-line): Fix code determining whether or not
7890 to use delete-key-deletes-forward-mode.
7891
7892 2001-02-01 Andre Spiegel <spiegel@gnu.org>
7893
7894 * vc.el (vc-diff-switches): New user option.
7895 (vc-version-diff): Use it.
7896 (vc-diff-switches-list): New macro.
7897
7898 * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
7899 New customization options.
7900 (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
7901
7902 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
7903
7904 2001-02-01 Gerd Moellmann <gerd@gnu.org>
7905
7906 * msb.el (toplevel): Quote hook symbols.
7907
7908 2001-02-01 Kenichi Handa <handa@etl.go.jp>
7909
7910 * international/mule.el (make-coding-system): Add description
7911 about recognized properties in the docstring.
7912
7913 * international/mule-conf.el: Remove unused charsets
7914 mac-roman-lower and mac-roman-upper.
7915
7916 2001-01-31 Gerd Moellmann <gerd@gnu.org>
7917
7918 * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
7919 is in front of the left-margin, if any.
7920
7921 * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
7922 like `delete'.
7923
7924 * bindings.el: Define `kp-delete' like `delete' in function-key-map.
7925
7926 * term/w32-win.el (mouse-set-font): Doc fix.
7927
7928 2001-01-31 Stefan Monnier <monnier@cs.yale.edu>
7929
7930 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
7931 (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
7932 on already.
7933
7934 2001-01-31 Markus Rost <rost@math.ohio-state.edu>
7935
7936 * files.el (save-buffer): Don't give message if (buffer-file-name)
7937 returns nil.
7938
7939 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
7940
7941 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
7942
7943 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
7944 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
7945
7946 * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
7947 display problems.
7948
7949 2001-01-31 Kenichi Handa <handa@etl.go.jp>
7950
7951 * international/mule.el (charset-info): Fix docstring.
7952
7953 * international/mule-diag.el (describe-character-set): Check final
7954 char valid before printing it.
7955
7956 2001-01-30 Gerd Moellmann <gerd@gnu.org>
7957
7958 * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
7959
7960 * frame.el (frame-notice-user-settings): Do the tool-bar
7961 stuff only for graphical displays. Fix a braino.
7962
7963 * frame.el (frame-initialize): Create initial frame visible.
7964 (frame-notice-user-settings): When tool-bar has been switched off,
7965 correct the frame size and sync tool-bar-mode.
7966
7967 * startup.el (command-line): Remove manipulation of frame
7968 height for tool bars.
7969
7970 2001-01-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7971
7972 * lpr.el: Compatibility with XEmacs and doc fixes.
7973 (lpr-windows-system, lpr-lp-system): New vars.
7974 (lpr-printer-switch): New defcustom.
7975 (printer-name, lpr-command): Customization fix.
7976 (print-region-1): Code fix.
7977 (print-region-new-buffer, printify-region): Indentation fix.
7978 (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
7979 New functions.
7980
7981 2001-01-29 Gerd Moellmann <gerd@gnu.org>
7982
7983 * msb.el (toplevel): Fix the eval-after-load.
7984
7985 2001-01-29 Dave Love <fx@gnu.org>
7986
7987 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
7988
7989 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
7990
7991 * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
7992 (tcl-using-emacs-19-23): Consider Emacs 21+.
7993 (tcl-help-directory-list, tcl-command-switches): Fix :type.
7994 (tcl-add-emacs-menu): Supply menu name.
7995 (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
7996
7997 2001-01-29 Gerd Moellmann <gerd@gnu.org>
7998
7999 * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
8000
8001 2001-01-29 Stefan Monnier <monnier@cs.yale.edu>
8002
8003 * pcvs.el (cvs-mark-fis-dead): New function.
8004 (cvs-mode-add): Use it.
8005 (cvs-mode-add-change-log-entry-other-window):
8006 Rebind change-log-default-name to itself rather than to nil.
8007
8008 2001-01-29 Sam Steingold <sds@gnu.org>
8009
8010 * vc-cvs.el: Replaced (require 'vc) with a bunch of
8011 `autoload' statements.
8012
8013 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
8014
8015 * files.el (confirm-kill-emacs): Doc fix.
8016
8017 * frame.el (frame-initialize): Doc fix.
8018
8019 * time-stamp.el (time-stamp-string): Doc fix.
8020
8021 * woman.el (WoMan-log-1): Make the log buffer writable.
8022 From Markus Rost <rost@math.ohio-state.edu>.
8023
8024 2001-01-29 Gerd Moellmann <gerd@gnu.org>
8025
8026 * imenu.el (imenu-syntax-alist): Add autoload cookie for
8027 the `make-variable-buffer-local'.
8028
8029 2001-01-29 Dave Love <fx@gnu.org>
8030
8031 * ansi-color.el (ansi-color-for-comint-mode): Add :version.
8032 (ansi-color-for-comint-mode-on, ansi-color-process-output):
8033 Add autoload cookie.
8034 (ansi-color-apply-sequence): Fix typo.
8035
8036 2001-01-29 Gerd Moellmann <gerd@gnu.org>
8037
8038 * menu-bar.el (menu-bar-files-menu): Add menu items for
8039 Postscript printing in black and white.
8040
8041 * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
8042 X-Mailman-Version, Precedence, List-Help, List-Post,
8043 List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
8044 Content-Type, Content-Length.
8045
8046 2001-01-29 Dave Love <fx@gnu.org>
8047
8048 * elide-head.el (elide-head): Make overlay evaporate.
8049
8050 * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
8051
8052 2001-01-28 Eli Zaretskii <eliz@is.elta.co.il>
8053
8054 * isearch.el (isearch-highlight): Don't punt if the display
8055 doesn't support colors, since isearch faces are defined for
8056 monochrome displays as well.
8057
8058 2001-01-27 Sam Steingold <sds@gnu.org>
8059
8060 * shell.el (shell-write-history-on-exit): Make sure that we are in
8061 the shell buffer (M-x tex-file RET inserted the error message into
8062 the TeX buffer).
8063
8064 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
8065
8066 * simple.el (transient-mark-mode): Doc fix.
8067
8068 2001-01-27 Gerd Moellmann <gerd@gnu.org>
8069
8070 * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
8071
8072 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
8073
8074 * shell.el (shell-unquote-argument): If the shell is one of the
8075 mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
8076 quote character.
8077 (shell-dumb-shell-regexp): Document that the shells which match
8078 this regexp are supposed to not treat a backslash as a quote character.
8079
8080 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
8081 from 2001-01-12. It is not needed, since backspace is mapped into DEL.
8082
8083 2001-01-27 Richard M. Stallman <rms@gnu.org>
8084
8085 * dabbrev.el (dabbrev--substitute-expansion):
8086 Treat a one-capital-letter abbrev as "not all upper case",
8087 so as to force preservation of the expansion's pattern
8088 if the expansion starts with a capital letter.
8089
8090 2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
8091
8092 * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
8093 Doc fix.
8094
8095 * simple.el (transient-mark-mode): Document the fact that many
8096 commands act on the region when mark is active.
8097
8098 2001-01-27 Kenichi Handa <handa@etl.go.jp>
8099
8100 * international/quail.el (quail-setup-completion-buf): Make the
8101 multibyteness of current buffer inherited to Quail completion buffer.
8102 (quail-show-guidance-buf): Make the multibyteness of current
8103 buffer inherited to Quail guidance buffer.
8104 (quail-help): Make the multibyteness of current buffer inherited
8105 to Quail help buffer.
8106
8107 2001-01-26 Dave Love <fx@gnu.org>
8108
8109 * time-stamp.el: Doc fixes.
8110
8111 * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
8112 (delphi-keyword-face, delphi-other-face): Fix :type.
8113
8114 * textmodes/flyspell.el: Doc fixes. Add :version to new options.
8115
8116 * mail/feedmail.el (feedmail): Add :link.
8117 (feedmail-send-it): Doc fix.
8118
8119 * mail/sendmail.el: Doc fixes.
8120 (sendmail-send-it): Fix the non-ASCII regexp and use
8121 rfc2047-encode-string.
8122
8123 * dired.el, dired-aux.el: Revert last change.
8124
8125 2001-01-26 Gerd Moellmann <gerd@gnu.org>
8126
8127 * makefile.w32-in (DONTCOMPILE): Add various term files.
8128
8129 2001-01-26 Dave Love <fx@gnu.org>
8130
8131 * Makefile.in (DONTCOMPILE): Add various term files.
8132
8133 2001-01-26 Gerd Moellmann <gerd@gnu.org>
8134
8135 * man.el (Man-default-man-entry, Man-mode): Doc fix.
8136
8137 * startup.el (display-startup-echo-area-message): Make sure
8138 the echo area is resized to fit the size of the startup message.
8139
8140 * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
8141 part of which is a constant.
8142
8143 2001-01-26 Eli Zaretskii <eliz@is.elta.co.il>
8144
8145 * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
8146
8147 2001-01-26 Richard M. Stallman <rms@gnu.org>
8148
8149 * simple.el (next-line): Don't let `newline' expand abbrevs.
8150 Simplify slightly.
8151 (open-line): Don't let `newline' expand abbrevs.
8152
8153 2001-01-25 John Wiegley <johnw@gnu.org>
8154
8155 * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
8156 to `repeat' in the :type field.
8157
8158 * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
8159 allow a choice of regexp or nil.
8160 (pcomplete-dir-ignore): Same.
8161
8162 * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
8163 a command) to always fail.
8164
8165 2001-01-25 Gerd Moellmann <gerd@gnu.org>
8166
8167 * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
8168 discard the result.
8169 (iswitchb-to-end): Likewise.
8170
8171 2001-01-25 Sam Steingold <sds@gnu.org>
8172
8173 * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
8174 Require vc.
8175
8176 2001-01-25 Stefan Monnier <monnier@cs.yale.edu>
8177
8178 * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
8179
8180 * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
8181
8182 2001-01-25 Dave Love <fx@gnu.org>
8183
8184 * lisp/international/mule-diag.el (describe-char-after): Doc fix.
8185 (describe-coding-system): Tweak the English text.
8186
8187 * loadup.el: Preload international/ccl for utf-8.
8188
8189 2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
8190
8191 * mail/rmail.el (rmail-redecode-body): Doc fix.
8192
8193 2001-01-25 Kenichi Handa <handa@etl.go.jp>
8194
8195 * international/mule-cmds.el (reset-language-environment):
8196 Reset coding-category-utf-8 to mule-utf-8.
8197
8198 * international/mule-conf.el (coding-category-utf-8):
8199 Initialize to mule-utf-8.
8200
8201 * loadup.el: Preload international/utf-8.
8202
8203 * international/utf-8.el: New file.
8204
8205 2001-01-24 Stefan Monnier <monnier@cs.yale.edu>
8206
8207 * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
8208
8209 2001-01-24 Sam Steingold <sds@gnu.org>
8210
8211 * dired.el (dired-replace-in-string): Removed.
8212 (dired-sort-toggle): Use `replace-regexps-in-string'
8213 instead of `dired-replace-in-string'.
8214
8215 * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
8216 (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
8217
8218 * gs.el (gs-replace-in-string): Removed.
8219 (gs-options): Use `replace-regexps-in-string'
8220 instead of `gs-replace-in-string'.
8221
8222 2001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
8223
8224 * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
8225 bug report is mailed to an email list and posted to a news group.
8226
8227 2001-01-24 Gerd Moellmann <gerd@gnu.org>
8228
8229 * comint.el (comint-replace-by-expanded-history-before-point):
8230 Fix change of 2000-08-03 to move point to the start of the line again.
8231
8232 * startup.el (tool-bar-images-pixel-height): New variable.
8233 (command-line): After loading the user's init file, when
8234 tool-bar-mode is on, increase the frame's size by some lines for
8235 the tool-bar.
8236
8237 * frame.el (frame-initialize): Create the initial frame invisible.
8238
8239 2001-01-24 ShengHuo ZHU <zsh@cs.rochester.edu>
8240
8241 * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
8242 (chinese-big5): MIME:Big5.
8243
8244 2001-01-24 Gerd Moellmann <gerd@gnu.org>
8245
8246 * international/mule-cmds.el (universal-coding-system-argument):
8247 Handle commands with prefix args.
8248
8249 2001-01-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8250
8251 * calendar/diary-lib.el (diary-float): Fix case of MONTH
8252 being a list of numbers.
8253 (diary-mail-entries): Rewritten.
8254
8255 2001-01-23 Dave Love <fx@gnu.org>
8256
8257 * international/mule.el (make-coding-system): Fix typo.
8258
8259 * textmodes/outline.el (outline-mode) <font-lock-defaults>:
8260 Add backward-paragraph as font-lock-beginning-of-syntax-function.
8261
8262 2001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
8263
8264 * font-lock.el (font-lock-mode): Doc fix.
8265
8266 2001-01-23 Kenichi Handa <handa@etl.go.jp>
8267
8268 * international/mule.el (make-translation-table): Fix docstring.
8269
8270 2001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
8271
8272 * mail/rmail.el (rmail-redecode-body): New function.
8273
8274 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
8275
8276 2001-01-22 Gerd Moellmann <gerd@gnu.org>
8277
8278 * isearch.el (isearch-lazy-highlight-case-fold-search)
8279 (isearch-lazy-highlight-regexp): New variables.
8280 (isearch-lazy-highlight-cleanup): Update lazy highlight if
8281 case-fold search or regexp search has been toggled.
8282
8283 * wid-edit.el (widget-button-click): Avoid a save-excursion
8284 around running a global binding.
8285
8286 * isearch.el (isearch-lazy-highlight-initial-delay): Set default
8287 to 0.25.
8288
8289 2001-01-20 Miles Bader <miles@gnu.org>
8290
8291 * cus-edit.el (custom-face-save): Do post-processing on the face's
8292 new value like `custom-face-set' does.
8293
8294 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
8295
8296 * mail/emacsbug.el (report-emacs-bug): Report the value of
8297 LC_CTYPE, not LC_TYPE.
8298
8299 * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
8300 isearch-toggle-regexp and isearch-edit-string to doc string.
8301
8302 2001-01-19 Gerd Moellmann <gerd@gnu.org>
8303
8304 * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
8305 as font-lock-beginning-of-syntax-function in font-lock-defaults.
8306
8307 * jit-lock.el (jit-lock-fontify-now): Don't bind
8308 font-lock-beginning-of-syntax-function to nil.
8309
8310 2001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
8311
8312 * mail/emacsbug.el (report-emacs-bug): Report values of
8313 locale-coding-system, default-enable-multibyte-characters, and the
8314 environment variables LC_ALL, LC_TYPE, and LANG.
8315
8316 2001-01-19 Gerd Moellmann <gerd@gnu.org>
8317
8318 * font-lock.el (font-lock-default-fontify-region): Fix last change.
8319
8320 * font-lock.el (font-lock-multiline): Default to nil.
8321 (font-lock-default-fontify-region): If font-lock-multiline is
8322 nil, don't check the property `font-lock-multiline'.
8323
8324 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
8325 is nil, don't check the `font-lock-multiline' text property.
8326
8327 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
8328
8329 * viper.el: Call initial-major-mode on startup.
8330
8331 * ediff.el (ediff-patch-file): Use better defaults.
8332
8333 * ediff-vers.el: Fix for 8+3 DOS file systems.
8334
8335 2001-01-19 Colin Walters <walters@cis.ohio-state.edu>
8336
8337 * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
8338 diff mode, if available.
8339
8340 2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
8341
8342 * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
8343
8344 * ediff-init.el (subst-char-in-string): Define and use it, unless
8345 it's already defined.
8346
8347 2001-01-18 Gerd Moellmann <gerd@gnu.org>
8348
8349 * tooltip.el (tooltip-hide-delay): New user-option.
8350 (tooltip-show): Use tooltip-hide-delay instead of the default.
8351
8352 2001-01-18 Kenichi Handa <handa@etl.go.jp>
8353
8354 * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
8355 kill-local-variable doesn't work for enable-multibyte-characters.
8356
8357 2001-01-17 Dave Love <fx@gnu.org>
8358
8359 * ediff-init.el (ediff-before-setup-hook)
8360 (ediff-merge-filename-prefix): Add :version.
8361
8362 * international/latin1-disp.el: Require disp-table.
8363 (latin1-display): Fix :set.
8364
8365 * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
8366
8367 2001-01-17 Gerd Moellmann <gerd@gnu.org>
8368
8369 * isearch.el (isearch-lazy-highlight-initial-delay)
8370 (isearch-lazy-highlight-interval): Default to 0.
8371
8372 2001-01-17 Bob Glickstein <bobg@zanshin.com>
8373
8374 * isearch.el (isearch-highlight): Set isearch-overlay priority to
8375 1 here rather than each time through
8376 isearch-lazy-highlight-new-loop.
8377 (isearch-lazy-highlight-max): Variable deleted.
8378 (isearch-lazy-highlight-max-at-a-time): New user variable, like
8379 isearch-lazy-highlight-max but controls a single invocation of
8380 isearch-lazy-highlight-update.
8381 (isearch-lazy-highlight-wrapped): Variable recreated.
8382 (isearch-lazy-highlight-window-start): New variable.
8383 (isearch-lazy-highlight-cleanup): Restored to behavior of
8384 before 2-Jan.
8385 (isearch-lazy-highlight-remove-overlays): Function deleted;
8386 behavior folded into isearch-lazy-highlight-cleanup. "Keep"
8387 behavior removed.
8388 (isearch-lazy-highlight-new-loop): Restore old behavior of calling
8389 isearch-lazy-highlight-update in a loop rather than just once.
8390 Test isearch-invalid-regexp here and decide not to start a new
8391 loop, rather than testing it each time through
8392 isearch-lazy-highlight-update.
8393 (isearch-lazy-highlight-search): Function restored.
8394 (isearch-lazy-highlight-update): Get called in a timer loop again,
8395 but this time highlight more than one match each time through.
8396 Only highlight matches in the visible part of the window.
8397 Start at point, move in the direction of the search, and wrap around at
8398 the edge of the window. Use sit-for to force redisplay and ensure
8399 window-start is credible. "Face suppressing" behavior removed;
8400 overlay priorities should make it unnecessary, right?
8401 (isearch-highlight): Face suppressing behavior removed.
8402 (isearch-dehighlight): Face suppressing behavior removed.
8403 (isearch-set-lazy-highlight-faces-at): Removed.
8404
8405 2001-01-17 Kenichi Handa <handa@etl.go.jp>
8406
8407 * language/european.el ("Latin-1"): Make the format of description
8408 about additional language environments same as that of Latin-2.
8409
8410 2001-01-16 Dave Love <fx@gnu.org>
8411
8412 * isearch.el (isearch-lazy-highlight): Add :version.
8413
8414 * simple.el (backward-delete-char-untabify-method)
8415 (next-line-add-newlines): Add :version.
8416
8417 2001-01-16 Gerd Moellmann <gerd@gnu.org>
8418
8419 * bindings.el: Bind <backspace> and <delete> via function-key-map.
8420 Don't bind <delete> otherwise.
8421
8422 * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
8423 and <delete> via function-key-map.
8424
8425 * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
8426 Subject line only if point is after the `Subject:'.
8427
8428 2001-01-16 Kenichi Handa <handa@etl.go.jp>
8429
8430 * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
8431 japanese-jisx0213-2 in `charset' property of this lang. env.
8432
8433 * language/european.el ("Latin-1"): Add description for Dutch and
8434 Spanish lang. env.
8435
8436 * international/mule.el (decode-char): Fix conditions.
8437 (encode-char): Handle eight-bit-control too.
8438 (transform-make-coding-system-args): New function.
8439 (make-coding-system): Accept XEmacs style arguments for CCL base
8440 coding system.
8441
8442 2001-01-15 Gerd Moellmann <gerd@gnu.org>
8443
8444 * progmodes/etags.el (find-tag-noselect): Save the value of
8445 tags-file-name before switching buffers, for the case it has a
8446 buffer-local value.
8447
8448 2001-01-15 Alex Schroeder <alex@gnu.org>
8449
8450 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
8451 From Dave Love <fx@gnu.org>.
8452 (ansi-color-for-comint-mode): Fix :version.
8453
8454 2001-01-15 Alex Schroeder <alex@gnu.org>
8455
8456 * ansi-color.el (ansi-color-unfontify-region): Doc change.
8457
8458 2001-01-14 Eli Zaretskii <eliz@is.elta.co.il>
8459
8460 * dired.el (dired-insert-directory): If file-system-info fails,
8461 remove the " free " part, but don't signal an error.
8462
8463 2001-01-12 Sam Steingold <sds@gnu.org>
8464
8465 * bookmark.el (bookmark-maybe-historicize-string):
8466 Use new backquote syntax.
8467
8468 2001-01-12 Richard M. Stallman <rms@gnu.org>
8469
8470 * subr.el (last): Handle a list that doesn't end in nil.
8471
8472 2001-01-12 Sam Steingold <sds@gnu.org>
8473
8474 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
8475 to `backward-delete-char-untabify'.
8476
8477 2001-01-12 Dave Love <fx@gnu.org>
8478
8479 * cus-edit.el (customize-menu-create): Fix the :filter following
8480 easymenu change.
8481
8482 * wid-edit.el (function): Add :match-alternatives.
8483 (widget-color-action): Doc fix.
8484
8485 2001-01-12 Gerd Moellmann <gerd@gnu.org>
8486
8487 * calendar/calendar.el (calendar-basic-setup): Doc fix.
8488
8489 2001-01-12 Kenichi Handa <handa@etl.go.jp>
8490
8491 * international/mule-cmds.el (prefer-coding-system): Fix docstring.
8492
8493 * international/ccl.el (define-ccl-program): Fix docstring.
8494
8495 2001-01-11 Dave Love <fx@gnu.org>
8496
8497 * international/mule-cmds.el (standard-display-european-internal):
8498 Set display table for 2208 as for 160.
8499
8500 * progmodes/ada-mode.el (ada-popup-key): Fix last change.
8501
8502 * progmodes/fortran.el (fortran-mode-map): Modify Customization
8503 entry for custom-menu-create change.
8504 (fortran-strip-sqeuence-nos): Make arg optional. Fix regexp and
8505 don't cons it in the search loop.
8506
8507 * imenu.el (imenu--truncate-items): Revert last change.
8508
8509 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
8510
8511 * info.el (Info-setup-header-line): If the node header includes
8512 either Next: or Prev: links, don't show the File: and Node: parts
8513 in the header line.
8514
8515 2001-01-11 Gerd Moellmann <gerd@gnu.org>
8516
8517 * comint.el (comint-goto-process-mark): Don't print a message
8518 when running in batch mode.
8519
8520 * isearch.el (isearch-search): In the condition-case handler for
8521 `error', set isearch-invalid-regexp to the whole error message.
8522
8523 * subr.el (eval-after-load): Call load-symbol-file-load-history to
8524 ensure that eval-after-load works for files dumped with Emacs.
8525
8526 * help.el (load-symbol-file-load-history): New function extracted
8527 from function symbol-file.
8528 (symbol-file): Use it.
8529
8530 * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
8531
8532 2001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
8533
8534 * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
8535 behave as if there were no prefix argument.
8536 (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
8537 argument were nil.
8538
8539 2001-01-11 Richard M. Stallman <rms@gnu.org>
8540
8541 * isearch.el (isearch-lazy-highlight-update):
8542 Don't look for more potential matches once maximum is exceeded.
8543 Use overlays-in to check correctly for overlap with current match.
8544 Ignore empty matches.
8545
8546 2001-01-11 Miles Bader <miles@gnu.org>
8547
8548 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
8549 (ispell-overlay-window, ispell-help, ispell-show-choices)
8550 (ispell-command-loop): Use it instead of `window-height'.
8551
8552 2001-01-10 Gerd Moellmann <gerd@gnu.org>
8553
8554 * files.el (confirm-kill-emacs): New user-option.
8555 (save-buffers-kill-emacs): Ask for final confirmation before
8556 killing Emacs.
8557
8558 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
8559 to nil.
8560
8561 2001-01-10 Dave Love <fx@gnu.org>
8562
8563 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
8564
8565 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
8566
8567 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
8568
8569 * calculator.el (calculator-number-digits): Fix :type.
8570
8571 * vc-cvs.el (vc-cvs-header): Fix :type.
8572 * vc-rcs.el (vc-rcs-header): Fix :type.
8573 * vc-sccs.el (vc-sccs-header): Fix :type.
8574
8575 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
8576
8577 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
8578
8579 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
8580
8581 2001-01-10 Gerd Moellmann <gerd@gnu.org>
8582
8583 * simple.el (set-variable): Force a thorough redisplay for the
8584 case that the variable has an effect on the display, like
8585 `tab-width' has.
8586
8587 2001-01-10 Andre Spiegel <spiegel@gnu.org>
8588
8589 * vc.el: Add documentation for backend interface.
8590
8591 2001-01-10 Kenichi Handa <handa@etl.go.jp>
8592
8593 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
8594
8595 * international/mule-conf.el (latin-extra-code-table): Set to t
8596 for \223 and \224.
8597
8598 2001-01-09 Kenichi Handa <handa@etl.go.jp>
8599
8600 * international/mule-cmds.el (locale-language-names): Map "es" to
8601 "Spanish" and "nl" to "Dutch".
8602
8603 2001-01-09 Gerd Moellmann <gerd@gnu.org>
8604
8605 * bindings.el (global-map): Bind <home> to beginning-of-line,
8606 <end> to end-of-line, C-<home> to beginning-of-buffer, and
8607 C-<end> to end-of-buffer.
8608
8609 * language/european.el: Add Dutch and Spanish language info
8610 to be able to use the appropriate tutorials.
8611
8612 2001-01-09 Alex Schroeder <alex@gnu.org>
8613
8614 * ansi-color.el (ansi-color-process-output): Use markers instead
8615 of positions for start and end of region.
8616 (ansi-color-apply-on-region): Rewrote code to make it more robust.
8617 Previously, occasional mistakes happend when fontifying many
8618 chunks of output (eg. ls --color=yes /dev). This happened
8619 whenever an overlay was created up to the end of the region, which
8620 coincided with the process-mark. New text would then be added
8621 within that overlay instead of after it.
8622 (ansi-color-make-extent): Overlays are created with the property
8623 `modification-hooks' set to '(ansi-color-freeze-overlay).
8624 (ansi-color-freeze-overlay): New function. When inserting text at
8625 the end of the overlay, the overlay will resize.
8626
8627 2000-01-09 Alex Schroeder <alex@gnu.org>
8628
8629 * ansi-color.el (ansi-color-process-output): Doc change.
8630 (ansi-color-unfontify-region): Doc change. No longer installed
8631 automatically in font-lock-unfontify-region-function.
8632 (ansi-color-apply): Doc change.
8633 (ansi-color-apply-on-region): Use extents or overlays instead of
8634 text-properties.
8635 (ansi-color-make-extent): New function.
8636 (ansi-color-set-extent-face): New function.
8637
8638 2000-01-09 Alex Schroeder <alex@gnu.org>
8639
8640 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
8641 both use ansi-color-process-output, now.
8642 (ansi-color-process-output): Doesn't return string anymore. It is
8643 installed in comint-output-filter-functions for both Emacs and
8644 XEmacs, now.
8645 (ansi-color-unfontify-region): Simplified code removing variables
8646 pos and start-ansi.
8647 (ansi-color-apply): Put text-property ansi-color before putting
8648 text-property face because ansi-color-unfontify-region is called
8649 immediately after the call to put-text-property.
8650 (ansi-color-context-region): Doc change.
8651 (ansi-color-filter-region): Simplified code.
8652 (ansi-color-apply-on-region): Changed start to start-marker, using
8653 a marker explicitly. Put text-property ansi-color before putting
8654 text-property face because ansi-color-unfontify-region is called
8655 immediately after the call to put-text-property.
8656
8657 2000-01-09 Alex Schroeder <alex@gnu.org>
8658
8659 * ansi-color.el (ansi-color-faces-vector): Doc change.
8660 (ansi-color-for-comint-mode): Changed :type property to choice.
8661 (ansi-color-last-context): Removed.
8662 (ansi-color-process-output): Don't use ansi-color-last-context, as
8663 the main functions will store their context now.
8664 (ansi-color-context): Doc change.
8665 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
8666 Uses ansi-color-context such that repeated calls will strip
8667 partial escape sequences, too.
8668 (ansi-color-apply): Simplified code. Colorize end of string if
8669 face is not null. Store context in new (FACE STRING) format, such
8670 that repeated calls will strip partial escape sequences, too.
8671 Append faces to face property using ansi-color-apply-sequence such
8672 that cumulative mode actually works.
8673 (ansi-color-context-region): New variable.
8674 (ansi-color-filter-region): Rewrote it based on
8675 ansi-color-apply-on-region. Uses ansi-color-context-region such
8676 that repeated calls will strip partial escape sequences, too.
8677 (ansi-color-apply-on-region): Simplified code. Colorize end of
8678 region if face is not null. Store context in new (FACE POS)
8679 format, such that repeated calls will strip partial escape
8680 sequences, too. Append faces to face property using
8681 ansi-color-apply-sequence such that cumulative mode actually works.
8682 (ansi-color-apply-sequence): New function.
8683 (ansi-color-get-face): When the default face is added to the list
8684 of faces, all previous settings are discarded and the list of
8685 faces is set to '(default).
8686
8687 2000-01-09 Alex Schroeder <alex@gnu.org>
8688
8689 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
8690 face, such that ansi-color-apply and ansi-color-apply-on-region
8691 will do the right thing.
8692 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
8693 returns nil, set the list of faces back to nil instead of
8694 appending the result of ansi-color-get-face to the front of the list.
8695
8696 2000-01-09 Alex Schroeder <alex@gnu.org>
8697
8698 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
8699 (ansi-color-process): Doc change.
8700 (ansi-color-last-context): New buffer-local variable.
8701 (ansi-color-process-output): New function. It is automatically
8702 added to comint-output-filter-functions if this is XEmacs.
8703 (ansi-color-unfontify-region): New optional parameter for XEmacs
8704 compatibility. Check wether font-lock-syntactic-keywords is
8705 boundp before removing the syntax table text property, as XEmacs
8706 doesn't have it.
8707 (ansi-color-filter-region): Doc change.
8708 (ansi-color-apply-on-region): Doc change.
8709 (ansi-color-make-face): New function. Compatibility layer for
8710 XEmacs. Return temporary faces instead of cons cells for XEmacs.
8711 (ansi-color-make-color-map): Use ansi-color-make-face.
8712 (ansi-color-get-face): Avoid face text property '(nil) as results
8713 in an errow for XEmacs.
8714
8715 2000-01-09 Alex Schroeder <alex@gnu.org>
8716
8717 * ansi-color.el (ansi-color-unfontify-region): New function.
8718 Uses text-property ansi-color in order to preserve fontification by
8719 ansi-color. When the package is loaded, a lambda expression is
8720 put onto font-lock-mode-hook. This lambda expression will check
8721 font-lock-unfontify-region-function and replace
8722 font-lock-default-unfontify-region with ansi-color-unfontify-region.
8723 (ansi-color-apply): Add text-property ansi-color in addition to
8724 text-property face.
8725 (ansi-color-apply-on-region): Add text-property ansi-color in
8726 addition to text-property face.
8727 (save-buffer-state): Copy of the macro that is also used by
8728 lazy-lock and font-lock.
8729
8730 (ansi-color-for-comint-mode): New option.
8731 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
8732 (ansi-color-for-comint-mode-off): Ditto.
8733 (ansi-color-for-comint-mode-filter): Ditto.
8734 (ansi-color-process): New function. Uses ansi-color-for-comint-mode to
8735 decide what to do. This function is added to
8736 comint-preoutput-filter-functions when the package is loaded.
8737
8738 (ansi-color-for-shell-mode-set): Removed.
8739 (ansi-color-for-shell-mode): Removed.
8740
8741 2000-01-09 Alex Schroeder <alex@gnu.org>
8742
8743 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
8744 the lambda expression from the ansi-color-for-shell-mode :set
8745 property. Additionally, modify shell-mode-hook to enable or
8746 disable font-lock-mode for future shell buffers.
8747 (ansi-color-for-shell-mode): The :set property calls
8748 ansi-color-for-shell-mode-set instead of a lambda expression.
8749
8750 2000-01-09 Alex Schroeder <alex@gnu.org>
8751
8752 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
8753 (ansi-color-context): New variable.
8754 (ansi-color-apply): Save context between calls.
8755
8756 2001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
8757
8758 * isearch.el (isearch, isearch-lazy-highlight-face):
8759 New definitions for face colors and attributes.
8760
8761 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
8762 of display-mouse-p.
8763
8764 2001-01-09 Kenichi Handa <handa@etl.go.jp>
8765
8766 * international/mule.el (make-coding-system): If the coding system
8767 accepts extra latin codes, register such codes as safe for the
8768 coding system.
8769
8770 2001-01-08 Richard M. Stallman <rms@gnu.org>
8771
8772 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
8773 don't mention the file name or the date here, because they are
8774 logged at the start of the file.
8775
8776 2001-01-08 Richard M. Stallman <rms@gnu.org>
8777
8778 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
8779 Change screen-width to frame-width.
8780
8781 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
8782
8783 * info.el (Info-search): Print the default as part of the prompt.
8784
8785 2001-01-08 Andre Spiegel <spiegel@gnu.org>
8786
8787 * vc.el (vc-default-latest-on-branch-p): New function, replaces
8788 constant implementations in backends.
8789
8790 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
8791 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
8792
8793 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
8794 WRITABLE to EDITABLE.
8795
8796 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
8797 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
8798 to EDITABLE.
8799
8800 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
8801
8802 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
8803 (copyright, copyright-update): Compute the current year at run time.
8804
8805 2001-01-08 Gerd Moellmann <gerd@gnu.org>
8806
8807 * isearch.el (isearch-old-signal-hook): Removed.
8808 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
8809 instead of setting signal-hook-function.
8810 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
8811
8812 2001-01-08 Kevin Gallagher <kevingal@onramp.net>
8813
8814 * emulation/edt.el: Update to version 4.0. Provide support for
8815 EDT scroll margins at top and bottom of the window. Provide an
8816 emulation of the EDT SUBS command (bound to GOLD-Enter, by
8817 default). Enhance edt-quit, bound to GOLD-q by default, to warn
8818 user when file-related buffer modifications exist.
8819 Provide support for running EDT Emulation in XEmacs.
8820 Provide customize access to some user updatable variables.
8821 Add Commentary section to file header.
8822 Fixed a few minor bugs and cleaned up some code.
8823
8824 * emulation/edt-mapper.el: Update to version 4.0. Provide support
8825 for detecting a keypress that generates an ASCII key sequence.
8826 (Previously, only a keypress that generates a vector was
8827 recognized.) Embed Window Manager name into name of the generated
8828 EDT Emulation initialization file since the initialization file is
8829 Window Manager specific. Add Commentary section to file header.
8830
8831 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
8832
8833 * mail/sendmail.el (mail-mode): Doc fix.
8834
8835 * info.el (Info-goto-emacs-command-node): Doc fix.
8836 (Info-goto-emacs-key-command-node): Doc fix.
8837
8838 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
8839
8840 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
8841 systems without long file-name support.
8842
8843 2001-01-06 Andrew Innes <andrewi@gnu.org>
8844
8845 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
8846
8847 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
8848
8849 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
8850 (isearch-lazy-highlight-update): Doc fix.
8851
8852 * ffap.el (ffap-bindings): Doc fix.
8853
8854 * dired-x.el (dired-virtual-guess-dir): Doc fix.
8855
8856 2001-01-05 Dave Love <fx@gnu.org>
8857
8858 * emacs-lisp/cl-seq.el (remove, remq): Remove.
8859
8860 2001-01-05 Gerd Moellmann <gerd@gnu.org>
8861
8862 * mouse-drag.el (mouse-drag-safe-scroll):
8863 Bind scroll-preserve-screen-position to nil.
8864
8865 * isearch.el (isearch-old-signal-hook): New variable.
8866 (isearch-mode): Set signal-hook-function to isearch-done.
8867 (isearch-done): Restore old signal-hook-function.
8868
8869 * info.el (Info-fontify-node): Mark one more char as intangible.
8870
8871 2000-01-05 Kenichi Handa <handa@etl.go.jp>
8872
8873 * composite.el (compose-last-chars): New argument COMPONENTS.
8874 If it is non-nil, compose preceding characters by compose-region with
8875 COMPONENTS.
8876
8877 * international/quail.el (quail-input-string-to-events): New function.
8878 (quail-input-method): Convert input string to events here.
8879 (quail-start-translation): Return input string, not event list.
8880 (quail-start-conversion): Likewise.
8881
8882 2001-01-04 Gerd Moellmann <gerd@gnu.org>
8883
8884 * tooltip.el (tooltip-cancel-delayed-tip)
8885 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
8886 and tooltip-add-timeout.
8887 (tooltip-show): Set border color from faces's foreground.
8888 (tooltip-show-help-function): If called with the same help string
8889 as last time, do nothing.
8890 (tooltip-help-tips): Don't set tooltip-help-message to nil.
8891
8892 * startup.el (fancy-splash-screens): Don't bind show-help-function
8893 to nil.
8894
8895 * tooltip.el (tooltip-frame-parameters): Remove colors.
8896 (tooltip): New face
8897 (tooltip-set-param): New function.
8898 (tooltip-show): Set up color frame parameters from face `tooltip'.
8899 Display the tooltip text in face `tooltip'.
8900
8901 2001-01-04 Dave Love <fx@gnu.org>
8902
8903 * whitespace.el (whitespace-global-mode): Fix typo.
8904
8905 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
8906
8907 2001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
8908
8909 * help.el (help-for-help): Fix a typo in a doc string.
8910 From kwzh@gnu.org (Karl Heuer).
8911
8912 2001-01-03 Dave Love <fx@gnu.org>
8913
8914 * dired-x.el: Doc fixes. Maintainer change.
8915 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
8916 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
8917 (dired-guess-shell-alist-user): Customize.
8918 (dired-x-help-address): Set to bug-gnu-emacs.
8919 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
8920 (dired-default-directory): Renamed from default-directory.
8921
8922 * hl-line.el (hl-line): Doc fix.
8923
8924 2001-01-03 Karl Fogel <kfogel@red-bean.com>
8925
8926 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
8927
8928 2001-01-02 Richard M. Stallman <rms@gnu.org>
8929
8930 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
8931 to remove all the current alternative-match highlighting.
8932 If nil, remove only what's outside the current window.
8933 (isearch-lazy-highlight-remove-overlays): Take optional
8934 region within which NOT to remove them.
8935 (isearch-lazy-highlight-new-loop): Greatly simplified.
8936 (isearch-lazy-highlight-update): Find all the other occurrences
8937 visible in the window, in just one call.
8938 (isearch-lazy-highlight-start): Now holds start of region to scan.
8939 (isearch-lazy-highlight-end): Now holds end of region to scan.
8940 (isearch-lazy-highlight-wrapped): Variable deleted.
8941 (isearch-lazy-highlight-search): Function deleted.
8942
8943 2000-01-02 Andrew Innes <andrewi@gnu.org>
8944
8945 * w32-fns.el (convert-standard-filename): Do length check on name
8946 before aref.
8947
8948 2001-01-02 Dave Love <fx@gnu.org>
8949
8950 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
8951 value.
8952 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
8953
8954 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
8955
8956 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
8957 read syntax.
8958
8959 * calendar/todo-mode.el (todo): Add :link, :version.
8960 (todo-save-top-priorities): Remove autoload cookie.
8961 (todo-add-category, todo-add-item-non-interactively)
8962 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
8963
8964 2001-01-02 Gerd Moellmann <gerd@gnu.org>
8965
8966 * comint.el (comint-input-history-ignore): New variable.
8967 (comint-read-input-ring): Ignore entries matching
8968 comint-input-history-ignore.
8969
8970 2001-01-02 Eric M. Ludlam <zappo@gnu.org>
8971
8972 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
8973 (lm-copyright-mark): New function.
8974 (lm-crack-copyright): New function.
8975 (lm-verify): Check that the file has a copyright.
8976 Check that the file is copyright Free Software Foundation.
8977
8978 2000-12-30 Kenichi Handa <handa@etl.go.jp>
8979
8980 * international/mule-diag.el (print-fontset): Indent font name by
8981 24 columns, not 25.
8982
8983 2000-12-29 Gerd Moellmann <gerd@gnu.org>
8984
8985 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
8986 in Subject line.
8987
8988 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
8989 Use mail-mode-hook instead of mail-setup-hook.
8990 Otherwise continuing an interrupted message with C-u C-x m for
8991 instance, winds up in Mail mode without abbrevs.
8992
8993 2000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8994
8995 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
8996 non-nil. Adding almost all customization variables on ps-setup.
8997 Doc fix.
8998 (ps-print-version): New version number (6.3.3).
8999 (ps-end-with-control-d): Initialization fix.
9000 (ps-lines-printed): New var.
9001 (ps-skip-newline): New fun.
9002 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
9003 (ps-next-line, ps-continue-line, ps-plot-region)
9004 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
9005
9006 2000-12-29 Kenichi Handa <handa@etl.go.jp>
9007
9008 * international/fontset.el (x-complement-fontset-spec):
9009 Resolve ASCII font name so that the same family name is used for fonts
9010 registered in x-font-name-charset-alist.
9011 (create-fontset-from-fontset-spec): Adjusted for the above change.
9012 The name of fontset alias should be a unresolved ASCII font name.
9013
9014 2000-12-28 Gerd Moellmann <gerd@gnu.org>
9015
9016 * simple.el (delete-key-deletes-forward-mode): Bind backspace
9017 and delete in isearch-mode-map.
9018
9019 2000-12-28 Richard M. Stallman <rms@gnu.org>
9020
9021 * dired-x.el (dired-guess-shell-alist-default):
9022 Use xpdf instead of acroread.
9023
9024 2000-12-28 Kenichi Handa <handa@etl.go.jp>
9025
9026 * textmodes/artist.el (artist-butlast): Deleted.
9027 (artist-ellipse-mirror-quadrant): Use butlast instead of
9028 artist-butlast.
9029
9030 * subr.el (butlast, nbutlast): Moved from cl.el to here.
9031
9032 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
9033
9034 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
9035
9036 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
9037
9038 * ls-lisp.el: Better support for the Mac and MS-Windows.
9039 (ls-lisp): New defgroup.
9040 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
9041 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
9042 (ls-lisp-support-shell-wildcards): New defcustoms.
9043 (ls-lisp-parse-symlink): New function.
9044 (insert-directory): Code to convert switches to a list and set up
9045 the wildcard argument copied from ls-lisp-insert-directory.
9046 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
9047 for -C and -R switches.
9048 (ls-lisp-column-format): New function.
9049 (ls-lisp-delete-matching, ls-lisp-handle-switches)
9050 (ls-lisp-format-time): Add doc strings.
9051 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
9052 Support ls-lisp-dirs-first.
9053 (ls-lisp-classify, ls-lisp-extension): New functions.
9054 (ls-lisp-format): Optionally support emulation of symlinks.
9055 Support -i, -s, and -G switches.
9056
9057 2000-12-27 Gerd Moellmann <gerd@gnu.org>
9058
9059 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
9060
9061 * version.el (emacs-version): Print X scroll bar information.
9062
9063 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
9064 instead of x-toolkit-scroll-bars-p.
9065
9066 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
9067 of x-toolkit-scroll-bars-p.
9068
9069 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
9070
9071 * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
9072 (ffap-bindings): Doc fix, to reflect the above change.
9073
9074 2000-12-27 Kenichi Handa <handa@etl.go.jp>
9075
9076 * term.el (term-char-mode): Define all non-ascii self-inserting
9077 characters to 'term-send-raw in term-raw-map.
9078
9079 2000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
9080
9081 * viper-init (viper-restore-cursor-type): Added condition-case guard.
9082
9083 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
9084 Changed initialization; use add-hook.
9085 (ediff-file-remote-p): Use file-local-copy.
9086
9087 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
9088
9089 * ediff.el (ediff-patch-buffer): Bug fix.
9090 (ediff-revision): Allow selection of the file at the prompt.
9091
9092 2000-12-23 Stefan Monnier <monnier@cs.yale.edu>
9093
9094 * subr.el (combine-run-hooks): Remove.
9095
9096 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
9097 and remove the rogue second spec.
9098
9099 2000-12-23 Gerd Moellmann <gerd@gnu.org>
9100
9101 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
9102
9103 2000-12-22 Stefan Monnier <monnier@cs.yale.edu>
9104
9105 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
9106 Use minibuffer menu prompt for the `=' prefix.
9107 (smerge-command-prefix): Change default to C-^.
9108 (smerge-mode): Don't assume font-lock doesn't move point.
9109
9110 * skeleton.el (skeleton-internal-1): Make sure the first line of
9111 the region is also re-indented.
9112 (skeleton-end-newline): New var.
9113 (skeleton-end-hook): Use it.
9114
9115 2000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9116
9117 * comint.el (comint-password-prompt-regexp): Support CVS.
9118
9119 2000-12-22 Gerd Moellmann <gerd@gnu.org>
9120
9121 * simple.el (delete-key-deletes-forward-mode): Simplify.
9122 Also backspace key combinations, depending on
9123 delete-key-deletes-forward.
9124
9125 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
9126
9127 * simple.el (delete-key-deletes-forward): Doc fix.
9128
9129 2000-08-22 Emmanuel Briot <briot@gnat.com>
9130
9131 * xml.el (top level comment): Updated to reflect the fact that
9132 white spaces are relevant in the XML file.
9133 (xml-parse-file): Do not kill an existing Emacs buffer if the file
9134 to parse was already edited. This allows for on-the-fly analysis
9135 of XML files.
9136 (xml-parse-tag): Check that the casing is the same in the start
9137 tag and end tag, since XML is case-sensitive. Allows for spaces
9138 in the end tag, after the name of the tag.
9139 (xml-parse-attlist): Allow for the character '-' in the name of
9140 attributes, as in the standard http-equiv attribute Do not save
9141 the properties in the XML tree, since they are not relevant.
9142
9143 2000-12-21 Stefan Monnier <monnier@cs.yale.edu>
9144
9145 * generic.el (generic-read-type): Undo last change, inline into
9146 `generic-mode' and then remove.
9147 (generic-mode): Inline generic-read-type.
9148 (define-generic-mode): Push the symbol name rather than the symbol
9149 onto generic-mode-list.
9150
9151 2000-12-21 Gerd Moellmann <gerd@gnu.org>
9152
9153 * generic.el (generic-read-type): Build an alist for
9154 completing-read as in 20.7.
9155
9156 * play/landmark.el (lm): Use interactive spec `P'.
9157 (toplevel): Don't set debug-on-error.
9158
9159 * server.el (server-switch-buffer): Choose a window on a visible frame.
9160
9161 2000-12-21 Dave Pearson <davep@davep.org>
9162
9163 * quickurl.el: Commentry change, I've moved my web site.
9164
9165 2000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9166
9167 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
9168 ranges like \177-\237, but accepts the character sequence from \177 to
9169 \237. Doc fix.
9170 (ebnf-version): New version (3.4).
9171 (ebnf-setup): Code fix.
9172 (ebnf-range-regexp): New fun.
9173 (ebnf-8-bit-chars): Const fix.
9174
9175 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
9176 entry. Doc fix.
9177 (ebnf-bnf-lex): Code fix.
9178 (ebnf-bnf-comment-chars): Const fix.
9179
9180 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
9181 entry. Doc fix.
9182 (ebnf-iso-comment-chars): Const fix.
9183
9184 * ebnf-otz.el: Doc fix.
9185
9186 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
9187 entry. Doc fix.
9188 (ebnf-yac-skip-code): Code fix.
9189 (ebnf-yac-comment-chars): Const fix.
9190
9191 2000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
9192
9193 * files.el (insert-directory-safely): New function.
9194 (recover-file): Use it instead of insert-directory.
9195 From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9196
9197 2000-12-21 Kenichi Handa <handa@etl.go.jp>
9198
9199 * international/mule-cmds.el (select-safe-coding-system):
9200 Check coding-category-list more rigidly. Improve help message.
9201
9202 * dired.el (dired-move-to-filename-regexp): Fix previous change.
9203
9204 2000-12-21 Miles Bader <miles@gnu.org>
9205
9206 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
9207
9208 2000-12-21 Kenichi Handa <handa@etl.go.jp>
9209
9210 * international/mule-diag.el (describe-char-after): Make *Help*
9211 buffer inherit multibyteness of the current buffer.
9212
9213 * international/mule.el (make-char): Docstring adjusted for the
9214 change of make-char-internal.
9215
9216 2000-12-20 Stefan Monnier <monnier@cs.yale.edu>
9217
9218 * international/iso-cvt.el: Docstrings fix.
9219
9220 2000-12-20 Dave Love <fx@gnu.org>
9221
9222 * subr.el (eval-after-load): Doc fix.
9223
9224 2000-12-20 Kenichi Handa <handa@etl.go.jp>
9225
9226 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
9227 for numbers.
9228
9229 2000-12-20 Miles Bader <miles@gnu.org>
9230
9231 * international/quail.el (quail-help): Resize the help window
9232 again after it has all its contents. Remove unneeded progn.
9233
9234 2000-12-19 Gerd Moellmann <gerd@gnu.org>
9235
9236 * pcmpl-linux.el: Fix copy/paste error.
9237
9238 2000-12-19 Andrew Innes <andrewi@gnu.org>
9239
9240 * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
9241
9242 2000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
9243
9244 * progmodes/idlw-rinfo.el: Fixed copyright notice.
9245
9246 * progmodes/idlw-toolbar.el: Fixed copyright notice.
9247
9248 * progmodes/idlw-shell.el: Fixed copyright notice.
9249
9250 * progmodes/idlwave.el: Fixed copyright notice.
9251
9252 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
9253 TAB as key separators.
9254
9255 2000-12-19 Alex Schroeder <alex@gnu.org>
9256
9257 * sql.el (sql-sybase-options): New option.
9258 (sql-sybase): Use it. Add sql-database to the list of parameters
9259 provided for login. The options -w 2048 -n are not used any more.
9260 (sql-postgres-options): Changed default from "--pset" to "-P".
9261 (sql-mysql-options): Doc change.
9262 (sql-stop): Doc change.
9263
9264 2000-12-19 Kenichi Handa <handa@etl.go.jp>
9265
9266 * international/quail.el (quail-input-method): Always hide
9267 the guidance buffer on exiting.
9268
9269 2000-12-18 Gerd Moellmann <gerd@gnu.org>
9270
9271 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
9272 isn't fboundp.
9273
9274 * server.el (server-buffer-done): Bury the buffer before
9275 killing it.
9276
9277 * faces.el (face-spec-set): Interpret a nil in specs for
9278 foreground and background colors as `unspecified', for
9279 compatibility with 20.x.
9280
9281 2000-12-18 Dave Love <fx@gnu.org>
9282
9283 * simple.el (mail-user-agent): Doc fix.
9284 (input-mode-8-bit): Removed.
9285
9286 * international/mule.el (set-keyboard-coding-system): Doc fix.
9287 (keyboard-coding-system): New option.
9288
9289 * mail/sendmail.el (send-mail-function): Customize.
9290
9291 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
9292
9293 * international/codepage.el (cp866-decode-table): New table.
9294
9295 2000-12-18 Gerd Moellmann <gerd@gnu.org>
9296
9297 * version.el (emacs-version): Remove `%a' from the time format
9298 because the weekday doesn't fit well into each locale.
9299
9300 2000-12-18 Miles Bader <miles@gnu.org>
9301
9302 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
9303
9304 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
9305 Check that emacs-major-version is `=' to 20, not `>='.
9306 (artist-replace-chars): Use `make-string' instead of a loop.
9307
9308 2000-12-17 Stefan Monnier <monnier@cs.yale.edu>
9309
9310 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
9311 (cvs-execute-single-file): Don't change directory.
9312 Patch from Per Cederqvist.
9313
9314 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
9315
9316 * textmodes/ispell.el (check-ispell-version):
9317 If `ispell-program-name' is "aspell", pass it the -v switch instead
9318 of -vv.
9319
9320 2000-12-16 Kenichi Handa <handa@etl.go.jp>
9321
9322 * international/mule-diag.el (mule-diag): Insert information about
9323 configure options, multibyte awareness, language env.
9324
9325 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
9326 regexp to search for candidates.
9327
9328 2000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
9329
9330 * info.el (Info-forward-node): If the node has an
9331 Info-header-line, widen the buffer before searching for "next:"
9332 and "up:" pointers, and set the search limit to stay in the
9333 current node.
9334
9335 2000-12-16 Miles Bader <miles@gnu.org>
9336
9337 * simple.el (delete-trailing-whitespace): Remove extraneous let.
9338
9339 2000-12-15 Miles Bader <miles@gnu.org>
9340
9341 * comint.el (comint-send-string, comint-send-region): Also accept
9342 a buffer, buffer-name, or nil for PROCESS, for compatibility with
9343 process-send-string/region.
9344
9345 2000-12-15 Gerd Moellmann <gerd@gnu.org>
9346
9347 * isearch.el (isearch-lazy-highlight-max): New user-option.
9348 (isearch-lazy-highlight-update): Don't highlight more than
9349 isearch-lazy-highlight-max matches.
9350
9351 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
9352
9353 2000-12-15 Richard M. Stallman <rms@gnu.org>
9354
9355 * sort.el (sort-columns): Fix error message.
9356
9357 * dabbrev.el (dabbrev--last-case-pattern): Value is now
9358 `upcase' or `downcase' or nil.
9359 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
9360 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
9361 (dabbrev--substitute-expansion): New arg record-case-pattern.
9362 If it is non-nil, set dabbrev--last-case-pattern.
9363 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
9364
9365 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
9366
9367 2000-12-15 Miles Bader <miles@gnu.org>
9368
9369 * paths.el (Info-default-directory-list): Don't delete
9370 configure-info-directory from the list of standard info
9371 directories when appending it to the end -- their order is important.
9372
9373 * faces.el (read-face-attribute): If there's no entry for the
9374 user's input in VALID, just use it as-is (this will often result
9375 in an error, but it may be OK for e.g. colors using hexadecimal
9376 notation, and at least will yield a better error message).
9377
9378 * window.el (mode-line-window-height-fudge): Function removed.
9379 (height-affecting-face-attributes, mode-line-window-height-fudge):
9380 Variables removed.
9381 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
9382 window is really the right size. Use vertical-motion
9383 rather than forward-line.
9384 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
9385 (ispell-command-loop, ispell-show-choices): Use the variable
9386 ispell-choices-win-default-height, rather than the function.
9387 (ispell-choices-win-default-height): Function removed.
9388 (ispell-mode-line-window-height-fudge): Function removed.
9389
9390 2000-12-14 Stefan Monnier <monnier@cs.yale.edu>
9391
9392 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
9393
9394 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
9395
9396 * paths.el (Info-default-directory-list):
9397 If configure-info-directory is not one of the standard directories,
9398 put it first in the list; otherwise put it last. Doc string
9399 changed accordingly.
9400
9401 * info.el (Info-directory-list): Change doc string to reflect the
9402 change in Info-default-directory-list.
9403
9404 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
9405 windows-nt as windowed environments, even under -nw.
9406
9407 * startup.el (command-line): Don't call x-backspace-delete-keys-p
9408 if not fboundp. Switch delete-forward mode for the <delete> key
9409 on all PC platforms, even under -nw.
9410
9411 * term/internal.el ([M-delete]): Remap to M-d.
9412
9413 2000-12-14 Gerd Moellmann <gerd@gnu.org>
9414
9415 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
9416
9417 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
9418
9419 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
9420
9421 2000-12-14 Gerd Moellmann <gerd@gnu.org>
9422
9423 * startup.el (command-line): Call delete-key-deletes-forward-mode,
9424 if appropriate.
9425
9426 * simple.el (delete-key-deletes-forward): New user-option.
9427 (delete-key-deletes-forward-mode): New function.
9428
9429 * bindings.el: Bind `delete' to backward-delete-char.
9430
9431 * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
9432 Test if symbol is bound before getting its value.
9433
9434 * tooltip.el (tooltip-show): If an error is signaled in
9435 x-show-tip, display that error, and display the help in the
9436 echo area.
9437
9438 2000-12-14 Kenichi Handa <handa@etl.go.jp>
9439
9440 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
9441 Show "... entries" messages for every 10000 entries, not 10.
9442
9443 2000-12-13 Karl Fogel <kfogel@red-bean.com>
9444
9445 * bookmark.el: Provide a generic exit hook, as suggested by
9446 Ovidiu Predescu <ovidiu@cup.hp.com>:
9447 (bookmark-exit-hook): New var.
9448 (bookmark-exit-hook-internal): New func, replaces
9449 old raw lambda form in `kill-emacs-hook', and runs new
9450 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
9451 as logically that feature must have been provided if this function
9452 is running.
9453 Removed ;;;###autoload before the `add-hook' call.
9454
9455 2000-12-13 Stefan Monnier <monnier@cs.yale.edu>
9456
9457 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
9458 (easy-menu-current-active-maps): New function.
9459 (easy-menu-get-map): Use it.
9460 Make a proper menu entry when creating a new keymap.
9461
9462 2000-12-13 Kenichi Handa <handa@etl.go.jp>
9463
9464 * international/characters.el: Fix cases and syntaxes for
9465 mule-unicode-0100-24ff.
9466
9467 * dired.el (dired-move-to-filename-regexp): Fixed for the case
9468 that a Japanese character is not appended after day and year.
9469
9470 * info.el (Info-suffix-list): Change format for a command that
9471 requires arguments.
9472 (info-insert-file-contents): Adjusted for the above change.
9473
9474 2000-12-12 Andreas Schwab <schwab@suse.de>
9475
9476 * tar-mode.el (tar-extract): Base the name of the subfile buffer
9477 on the name of the tar buffer. Verify that the existing buffer is
9478 visiting the same subfile.
9479
9480 2000-12-12 Dave Love <fx@gnu.org>
9481
9482 * subdirs.el: Add obsolete.
9483
9484 2000-12-12 Gerd Moellmann <gerd@gnu.org>
9485
9486 * mail/rmailsum.el (rmail-summary-expunge)
9487 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
9488 instead of rmail-confirm-expunge.
9489
9490 * replace.el (perform-replace): Don't use an empty match adjacent
9491 to a non-empty match when computing the next match before the
9492 replacement is performed.
9493
9494 2000-12-12 Milan Zamazal <pdm@freesoft.cz>
9495
9496 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
9497 definition (patch by Stefan Monnier).
9498 (glasses-mode): Use jit-lock instead of `after-change-functions'
9499 (patch by Stefan Monnier).
9500
9501 2000-12-12 Miles Bader <miles@gnu.org>
9502
9503 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
9504 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
9505
9506 2000-12-12 Andrew Choi <akochoi@i-cable.com>
9507
9508 * term/mac-win.el: Remove load for ls-lisp.
9509
9510 * loadup.el: Load ls-lisp for system-type `macos'.
9511
9512 2000-12-12 Miles Bader <miles@gnu.org>
9513
9514 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
9515 Respect field end too.
9516 (just-one-space): Respect fields as `delete-horizontal-space'.
9517 (newline-and-indent, reindent-then-newline-and-indent):
9518 Use `delete-horizontal-space'.
9519
9520 2000-12-11 Stefan Monnier <monnier@cs.yale.edu>
9521
9522 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
9523 (so as to obey the field property in the minibuffer).
9524
9525 * obsolete/c-mode.el: Moved from lisp/progmodes.
9526 * obsolete/auto-show.el: Moved from lisp.
9527 * obsolete/ooutline.el: Moved from lisp/textmodes.
9528
9529 2000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
9530
9531 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
9532 changes to list them here.
9533
9534 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
9535 Too many changes to list them here.
9536
9537 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
9538 Too many changes to list them here.
9539
9540 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
9541
9542 2000-12-11 Gerd Moellmann <gerd@gnu.org>
9543
9544 * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
9545
9546 * cus-edit.el (custom-save-variables, custom-save-faces):
9547 Comment fix.
9548
9549 * hscroll.el: Moved to `obsolete' subdir.
9550
9551 2000-12-11 Miles Bader <miles@gnu.org>
9552
9553 * window.el (window-text-height): Function removed (now in C).
9554
9555 2000-12-10 Stefan Monnier <monnier@cs.yale.edu>
9556
9557 * log-edit.el (log-edit-parent-buffer): New var.
9558 (log-edit): Set it. Add BUFFER argument.
9559 (log-edit-done): Use char-before.
9560 Don't bother checking validity of vc-comment-ring.
9561 Only bury the buffer if log-edit popped it up.
9562
9563 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
9564 (cvs-mode-diff-help): Remove.
9565 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
9566 (cvs-mode-marked): Set up the default for CMD manually.
9567
9568 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
9569 Remove binding for ? now made unnecessary.
9570
9571 2000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
9572
9573 * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
9574 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
9575
9576 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
9577 when master file is not open.
9578
9579 2000-12-09 Stefan Monnier <monnier@cs.yale.edu>
9580
9581 * progmodes/ada-stmt.el: Update `maintainer'.
9582
9583 2000-12-09 Stephen Gildea <gildea@stop.mail-abuse.org>
9584
9585 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
9586 choices to match documentation string.
9587
9588 2000-12-09 Miles Bader <miles@gnu.org>
9589
9590 * minibuf-eldef.el: New file.
9591
9592 * window.el (fit-window-to-buffer): Don't pass last argument to
9593 pos-visible-in-window-p, now that its meaning is inverted.
9594
9595 2000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
9596
9597 * image.el (create-image): Doc fix; spotted by Per Cederqvist
9598 <ceder@lysator.liu.se>.
9599
9600 2000-12-08 Stefan Monnier <monnier@cs.yale.edu>
9601
9602 * autoinsert.el (auto-insert-alist): Add missing final \n.
9603
9604 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
9605 (cvs-menu-map): Remove.
9606 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
9607 (cvs-mode-quit): Turn it back into a plain function.
9608
9609 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
9610 (texinfo-filter): Remove (move to texinfo.el).
9611
9612 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
9613 file where it's more visible.
9614 (texinfo-filter, texinfo-chapter-level-regexp): New variables
9615 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
9616 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
9617 (texinfo-inside-macro-p): Only catch `scan-error's.
9618 (texinfo-inside-env-p): Make better use of the match info.
9619 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
9620 (texinfo-insert-@end): Slight re-organization.
9621 Also remove useless `looking-at' call.
9622
9623 2000-12-08 Andrew Innes <andrewi@gnu.org>
9624
9625 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
9626 accessible in -nw mode.
9627
9628 * term/w32-win.el: Remove stuff about selection timeout, which is
9629 irrelevant on Windows. Move clipboard support to w32-fns.el, so
9630 it is accessible in -nw mode.
9631
9632 2000-12-08 Dave Love <fx@gnu.org>
9633
9634 * emacs-lisp/lisp-mode.el (lisp-mode):
9635 Set font-lock-keywords-case-fold-search.
9636
9637 2000-12-08 Gerd Moellmann <gerd@gnu.org>
9638
9639 * textmodes/ispell.el (ispell): Doc fix.
9640
9641 2000-12-08 Kenichi Handa <handa@etl.go.jp>
9642
9643 * international/quail.el (quail-insert-decode-map): Check the
9644 frame width of a window displaying the current buffer, not that of
9645 the selected frame.
9646 (quail-help): Make sure that the help buffer has window before
9647 inserting text in it.
9648
9649 2000-12-07 Sam Steingold <sds@gnu.org>
9650
9651 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
9652 Backquote is used in isearch.el, so autoloading saves nothing.
9653
9654 2000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
9655
9656 * startup.el (normal-top-level-add-subdirs-to-load-path):
9657 Ignore the CVS and RCS subdirectories case-insensitively.
9658
9659 * dired.el (dired-insert-directory): If file-system-info is
9660 fboundp, call it instead of invoking dired-free-space-program.
9661
9662 2000-12-07 Gerd Moellmann <gerd@gnu.org>
9663
9664 * server.el (server-visit-files): Push files on file-name-history.
9665
9666 * progmodes/cc-langs.el: Update copyright.
9667
9668 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
9669
9670 * bindings.el (mode-line-mode-menu): Add glasses-mode.
9671
9672 * bindings.el (mode-line-mode-menu): Reverse the order
9673 of define-keys so that the menu appears in alphabetical order.
9674
9675 2000-12-07 Milan Zamazal <pdm@freesoft.cz>
9676
9677 * progmodes/glasses.el (glasses-mode): Update mode line at the end
9678 of the function.
9679
9680 2000-12-07 Dave Love <fx@gnu.org>
9681
9682 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
9683
9684 * facemenu.el (facemenu-unlisted-faces): Fix value.
9685
9686 2000-12-07 Stefan Monnier <monnier@cs.yale.edu>
9687
9688 * font-lock.el (font-lock-default-fontify-region):
9689 Include the terminating \n (off-by-one error).
9690 (font-lock-set-defaults): Use dolist.
9691
9692 * derived.el (define-derived-mode): Don't use combine-run-hooks.
9693
9694 2000-12-07 Kenichi Handa <handa@etl.go.jp>
9695
9696 * international/mule-cmds.el (describe-language-environment):
9697 Fix for the case that an input method title is not string but a list.
9698
9699 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
9700 of wrong SIZE record.
9701
9702 2000-12-06 Dave Love <fx@gnu.org>
9703
9704 * newcomment.el (comment-region, comment-dwim): Doc fix.
9705
9706 * textmodes/texinfo.el: Require tex-mode when compiling.
9707 (texinfo-update-node): Doc fix.
9708 (texinfo-imenu-generic-expression): Add @anchor.
9709 (texinfo-font-lock-keywords): Add @uref.
9710 (texinfo-inside-macro-p): Don't use ignore-errors.
9711 (texinfo-insert-quote): Match more contexts.
9712
9713 * international/mule.el (decode-char, encode-char): Doc fix.
9714 (auto-coding-alist): Customize.
9715
9716 * files.el (load-file): Fix change of 2000-03-12.
9717
9718 * wid-edit.el (widget-text-keymap): Doc fix.
9719
9720 2000-12-06 Andrew Innes <andrewi@gnu.org>
9721
9722 * makefile.w32-in (lisp): Set to an absolute directory, namely
9723 $(CURDIR).
9724
9725 2000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
9726
9727 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
9728 read generated-autoload-file, and set buffer-file-coding-system to
9729 raw-text-unix after reading the file.
9730
9731 * international/mule-conf.el (file-coding-system-alist):
9732 Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
9733
9734 2000-12-06 Gerd Moellmann <gerd@gnu.org>
9735
9736 * replace.el (occur): Make line-number-width 1 smaller for the
9737 colon following the line number.
9738
9739 * startup.el (fancy-splash-text, command-line-1):
9740 Use `File' for the menu name instead of `Files'.
9741
9742 * tmm.el: Update copyright.
9743
9744 * cus-start.el: Add entry for even-window-heights.
9745
9746 2000-12-06 Miles Bader <miles@gnu.org>
9747
9748 * faces.el (frame-set-background-mode): Avoid stomping on
9749 locally modified faces.
9750
9751 2000-12-06 Kenichi Handa <handa@etl.go.jp>
9752
9753 * international/fontset.el: Correct the font registries for
9754 japanese-jisx0213-1 and japanese-jisx0213-2.
9755
9756 2000-12-05 Gerd Moellmann <gerd@gnu.org>
9757
9758 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
9759
9760 * iswitchb.el: Update customization commentary.
9761
9762 2000-12-05 Rob Riepel <riepel@Stanford.EDU>
9763
9764 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
9765 (tpu-search-highlight): Fixed comparison of overlay end positions.
9766 (tpu-trim-line-ends): Implemented trimming logic locally.
9767
9768 * emulation/tpu-extras.el (tpu-write-file-hook)
9769 (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
9770
9771 2000-12-05 Kenichi Handa <handa@etl.go.jp>
9772
9773 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
9774 to cn-gb.
9775 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
9776
9777 2000-12-04 Dave Love <fx@gnu.org>
9778
9779 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
9780
9781 2000-12-04 Gerd Moellmann <gerd@gnu.org>
9782
9783 * mail/rmailsum.el (rmail-summary-expunge)
9784 (rmail-summary-expunge-and-save): Ask for confirmation with
9785 rmail-expunge-confirmed.
9786
9787 * mail/rmail.el (rmail-expunge-confirmed): New function.
9788 (rmail-expunge): Use it.
9789
9790 2000-12-04 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
9791
9792 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
9793 (etags-recognize-tags-table, find-tag-in-order):
9794 New functionality: interpret file names as tags.
9795
9796 2000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
9797
9798 * info.el (Info-scroll-prefer-subnodes): New defcustom.
9799 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
9800 the first subnode until the bottom of the current node is visible.
9801
9802 2000-12-04 Gerd Moellmann <gerd@gnu.org>
9803
9804 * format.el (format-decode): Don't change buffer's undo list.
9805
9806 2000-12-04 Kenichi Handa <handa@etl.go.jp>
9807
9808 * faces.el (face-font-registry-alternatives): Add entries for CJK
9809 fonts. Doc-string adjusted for the actual usage of this data.
9810
9811 * international/fontset.el: Change the font registries for CJK
9812 fonts in the default fontset. Don't append '*' to registries.
9813
9814 2000-12-03 Stefan Monnier <monnier@cs.yale.edu>
9815
9816 * emacs-lisp/easy-mmode.el (define-derived-mode)
9817 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
9818
9819 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
9820 (derived-mode-p): New function.
9821 (derived-mode-make-docstring): Add `docstring' argument.
9822 Use it if available and complete it if necessary.
9823
9824 2000-12-03 Andreas Schwab <schwab@suse.de>
9825
9826 * type-break.el (type-break): Don't make parent of itself.
9827
9828 2000-12-03 Miles Bader <miles@gnu.org>
9829
9830 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
9831
9832 2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
9833
9834 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
9835 (tex-main-file, tex-file): Simplify.
9836 (tex-generate-zap-file-name): Use subst-char-in-string.
9837 (tex-strip-dots): Remove.
9838
9839 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
9840
9841 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
9842 to check if the match succeeded.
9843
9844 2000-12-02 Gerd Moellmann <gerd@gnu.org>
9845
9846 * startup.el (use-fancy-splash-screens-p): New function.
9847 (command-line-1): Use it to determine whether or not to use
9848 a fancy splash screen.
9849
9850 2000-12-02 Andreas Schwab <schwab@suse.de>
9851
9852 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
9853
9854 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
9855
9856 * international/mule.el (make-char): Fix last change.
9857
9858 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
9859 New defcustoms.
9860 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
9861 autoloading tex-mode; instead, do the same manually.
9862 Use texinfo-open-quote and texinfo-close-quote. Insert literal quote
9863 with numeric argument. Docstring fix.
9864 (toplevel): Require cl when compiling.
9865
9866 * international/mule.el (make-char): Doc fix.
9867
9868 2000-12-02 Jason Rumney <jasonr@gnu.org>
9869
9870 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
9871 the Emacs Lisp manual)
9872
9873 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
9874
9875 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
9876
9877 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
9878 the Emacs Lisp manual).
9879
9880 2000-12-02 Gerd Moellmann <gerd@gnu.org>
9881
9882 * simple.el (next-line-add-newlines): Change default to nil.
9883
9884 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
9885
9886 * files.el (revert-buffer, recover-file):
9887 Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
9888
9889 2000-12-01 Gerd Moellmann <gerd@gnu.org>
9890
9891 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
9892
9893 2000-12-01 Miles Bader <miles@gnu.org>
9894
9895 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
9896
9897 2000-12-01 Kenichi Handa <handa@etl.go.jp>
9898
9899 * international/mule-diag.el (describe-char-after): Fix typo.
9900 (describe-character-set, non-iso-charset-alist): Fix typo.
9901
9902 2000-12-01 Miles Bader <miles@gnu.org>
9903
9904 * image-file.el (image-file-name-regexp): Automatically add
9905 upper-case variants of each filename extension in
9906 `image-file-name-extensions', since they seem to be common.
9907
9908 * simple.el (minibuffer-contents)
9909 (minibuffer-contents-no-properties, delete-minibuffer-contents):
9910 New functions.
9911 * filecache.el (file-cache-directory-name)
9912 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
9913
9914 2000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
9915
9916 * filecache.el (file-cache-minibuffer-complete): Don't try to
9917 delete the minibuffer prompt.
9918
9919 2000-11-30 Dave Love <fx@gnu.org>
9920
9921 * cus-start.el: Fix read-buffer-function type.
9922
9923 2000-11-30 Gerd Moellmann <gerd@gnu.org>
9924
9925 * md5.el: Removed. There's a built-in function, now.
9926
9927 2000-11-30 Markus Rost <rost@math.ohio-state.edu>
9928
9929 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
9930 as dummy 0-th char of rmail-deleted-vector.
9931
9932 2000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
9933
9934 * ps-print.el (ps-end-job): Bind case-fold-search only after
9935 switching to ps-spool-buffer.
9936
9937 2000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9938
9939 * ps-print.el: Line number font customization. PostScript: Lines and
9940 PageCount are initialized on each page. Doc Fix.
9941 (ps-print-version): New version number (6.3.2).
9942 (ps-lpr-switches, ps-font-info-database, ps-font-size)
9943 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
9944 (ps-right-header): Customization fix.
9945 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
9946 Fix code.
9947 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
9948 New vars.
9949
9950 2000-11-30 Gerd Moellmann <gerd@gnu.org>
9951
9952 * bs.el: Fix typos and spelling errors.
9953 (bs-appearance) <defgroup>: Renamed from bs-appearence.
9954 (bs-configuration): Doc fix.
9955
9956 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
9957
9958 2000-11-30 Rob Riepel <riepel@Stanford.EDU>
9959
9960 * emulation/tpu-edt.el (tpu-version): New version.
9961 (tpu-search-overlay, tpu-replace-overlay): New initial range.
9962 (tpu-original-mode-line): Variable deleted.
9963 (tpu-mark-flag): New initial value.
9964 (tpu-set-mode-line): Don't redefine mode-line-format.
9965 Add tpu-mark-flag to minor-mode-alist.
9966 (tpu-update-mode-line): New mark flag logic.
9967 (tpu-get): Use find-file-wildcards.
9968 (tpu-search-highlight): Move overlay less, reset overlay properly.
9969 (tpu-unselect): Deactivate mark.
9970 (tpu-lm-replace): Reset overlay properly.
9971 (tpu-forward-line): Use forward-visible-line.
9972 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
9973
9974 * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
9975
9976 2000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
9977
9978 * cus-edit.el (custom-face-value-create): Always emphasize tag.
9979
9980 2000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9981
9982 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
9983 and skip whitespace and newlines.
9984
9985 2000-11-30 Stefan Monnier <monnier@cs.yale.edu>
9986
9987 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
9988
9989 2000-11-29 Gerd Moellmann <gerd@gnu.org>
9990
9991 * help.el (describe-function-1): Regexp-quote function name
9992 when used as part of a regexp.
9993
9994 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
9995 Use face-attribute instead of face-foreground and face-background.
9996 (tool-bar-add-item): Likewise, and handle unspecified colors.
9997
9998 * enriched.el (enriched-face-ans): Use face-attribute instead
9999 of face-foreground and face-background.
10000
10001 * faces.el (face-foreground, face-background, face-stipple):
10002 Return nil if attribute is unspecified, for backward compatibility.
10003
10004 * files.el (auto-mode-alist): Add an entry for antlr-mode.
10005
10006 * play/5x5.el: Remove version info.
10007
10008 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
10009
10010 * frame.el (blink-cursor-mode): Doc fix.
10011
10012 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10013
10014 * antlr-mode.el: New commands to run ANTLR from within Emacs and
10015 to create Makefile rules.
10016 (antlr-tool-command): New user option.
10017 (antlr-ask-about-save): New user option.
10018 (antlr-makefile-specification): New user option.
10019 (antlr-file-formats-alist): New variable.
10020 (antlr-special-file-formats): New variable.
10021 (antlr-unknown-file-formats): New user option.
10022 (antlr-help-unknown-file-text): New variable.
10023 (antlr-help-rules-intro): New variable.
10024 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
10025 (antlr-mode-menu): Add entries.
10026 (antlr-file-dependencies): New function.
10027 (antlr-directory-dependencies): New function.
10028 (antlr-superclasses-glibs): New function.
10029 (antlr-run-tool): New command.
10030 (antlr-makefile-insert-variable): New function.
10031 (antlr-insert-makefile-rules): New function.
10032 (antlr-show-makefile-rules): New command.
10033
10034 * antlr-mode.el: More Emacs/XEmacs stuff.
10035 (antlr-no-action-keywords): New constant with value nil.
10036 (antlr-font-lock-keywords-alist): Use it. Old value would break
10037 syntax highlighting in Emacs-21.0.
10038 (antlr-default-directory): Emacs/XEmacs dependend function.
10039 (antlr-read-shell-command): Ditto.
10040 (antlr-with-displaying-help-buffer): Ditto.
10041
10042 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10043
10044 * antlr-mode.el: imenu, parsing and highlighting changes.
10045 (antlr-imenu-create-index-function): Don't create extra submenus
10046 for definitions in different grammar classes. It is not necessary
10047 for the menu and would make command `imenu' awkward to use.
10048 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
10049 header actions and more than one.
10050 (antlr-font-lock-tokendef-face): Changed color.
10051 (antlr-font-lock-tokenref-face): Changed color.
10052 (antlr-font-lock-additional-keywords): Also highlight lowercase.
10053 (antlr-mode-syntax-table): New variable.
10054 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
10055 (antlr-with-syntax-table): Don't copy syntax table.
10056
10057 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10058
10059 * antlr-mode.el: Minor changes: language setting.
10060 (antlr-language-alist): The value for file option "language" can
10061 be both an identifier and a string.
10062 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
10063 (antlr-language-limit-n-regexp): Change accordingly.
10064
10065 2000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
10066
10067 * antlr-mode.el: Minor changes: tabs, hiding.
10068 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
10069 (antlr-action-visibility): Also allow value nil to also hide the
10070 braces. Renamed from `antlr-tiny-action-length'.
10071 Suggested by Jay@aol.com.
10072 (antlr-hide-actions): Change accordingly. Hide line if completely
10073 hidden action is on a line of its own.
10074
10075 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
10076
10077 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
10078
10079 * sort.el (sort-columns): Don't concat strings with numbers.
10080
10081 2000-11-29 Dave Love <fx@gnu.org>
10082
10083 * cus-edit.el (face): Fix :format.
10084
10085 * mail/feedmail.el: Require smtpmail when compiling.
10086 (mail-do-fcc): Autoload.
10087 (feedmail) <defgroup>: Fix :link.
10088 (feedmail-nuke-body-in-fcc): Fix :type.
10089 (feedmail-send-it): Add autoload cookie.
10090
10091 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
10092
10093 * newcomment.el (comment-indent): Save excursion around call to
10094 comment-indent-function.
10095
10096 2000-11-29 Miles Bader <miles@gnu.org>
10097
10098 * subr.el (member-ignore-case): Return the tail of the list who's
10099 car matches, like `member', not the matching element itself.
10100
10101 2000-11-29 Kenichi Handa <handa@etl.go.jp>
10102
10103 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
10104 should not contain `\n'.
10105
10106 2000-11-28 Gerd Moellmann <gerd@gnu.org>
10107
10108 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
10109
10110 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
10111
10112 * dired-aux.el (dired-do-create-files): Construct default file
10113 name for dired-mark-read-file-name so that when the user enters
10114 just RET, the target file will end up in the target directory.
10115
10116 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
10117 local-abbrev-table before changing buffers because it might
10118 have a buffer-local binding.
10119
10120 2000-11-28 Miles Bader <miles@gnu.org>
10121
10122 * simple.el (delete-horizontal-space): Handle fields more generally.
10123
10124 2000-11-28 Gerd Moellmann <gerd@gnu.org>
10125
10126 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
10127
10128 2000-11-28 Dave Love <fx@gnu.org>
10129
10130 * progmodes/ps-mode.el (ps-mode): Set comment-start and
10131 comment-start-skip locally.
10132
10133 * progmodes/fortran.el (fortran-mode): Don't set
10134 fortran-comment-line-start-skip. Set comment-start to
10135 fortran-comment-line-start.
10136 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
10137 (fortran-comment-line-start-skip): Simplify slightly.
10138
10139 2000-11-28 Gerd Moellmann <gerd@gnu.org>
10140
10141 * play/5x5.el: Remove RCS keyword.
10142
10143 * bs.el: Mistaken commit, undone 2000-11-30.
10144
10145 2000-11-28 Milan Zamazal <pdm@freesoft.cz>
10146
10147 * textmodes/tildify.el (tildify-string-alist):
10148 Add `plain-tex-mode' here.
10149
10150 2000-11-28 Colin Walters <walters@cis.ohio-state.edu>
10151
10152 * chistory.el (Command-history-setup): Remove extraneous `keymap'
10153 reference.
10154
10155 2000-11-28 Miles Bader <miles@gnu.org>
10156
10157 * cus-face.el (custom-face-attributes): Add post-filter function
10158 for :box. Make pre-filter function for :box handle all cases.
10159
10160 * wid-edit.el (widget-choose): Make sure pop-up window is large
10161 enough to display all the choices, as there's no way to scroll it.
10162
10163 2000-11-28 Kenichi Handa <handa@etl.go.jp>
10164
10165 * international/mule-conf.el: Make the coding system no-conversion
10166 safe for all characters.
10167
10168 2000-11-27 Dave Love <fx@gnu.org>
10169
10170 * net/ldap.el (ldap) <defgroup>: Add :version.
10171
10172 * tooltip.el (tooltip-use-echo-area): Doc fix.
10173
10174 * cus-start.el <minibuffer-prompt-properties>: Add version.
10175 <read-buffer-function>: Add.
10176
10177 * apropos.el (apropos-print): Add help-echo to active text.
10178
10179 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
10180
10181 2000-11-27 Gerd Moellmann <gerd@gnu.org>
10182
10183 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
10184 type, group and version.
10185
10186 2000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
10187
10188 * select.el (x-get-selection): Docstring fix.
10189
10190 2000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
10191
10192 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
10193
10194 2000-11-27 Andrew Innes <andrewi@gnu.org>
10195
10196 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
10197
10198 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
10199
10200 2000-11-27 Miles Bader <miles@gnu.org>
10201
10202 * dired.el (dired-get-filename): Return filename verbatim if
10203 LOCALP is `verbatim'.
10204 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
10205 `verbatim' so that we don't inadvertently delete a non-existant
10206 directory name.
10207
10208 2000-11-27 Kenichi Handa <handa@etl.go.jp>
10209
10210 * international/characters.el: Specify cases and syntaxes for
10211 mule-unicode-0100-24ff.
10212
10213 2000-11-27 Gerd Moellmann <gerd@gnu.org>
10214
10215 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
10216 that foreground and/or background colors of the face `tool-bar'
10217 are unspecified.
10218
10219 2000-11-27 Miles Bader <miles@gnu.org>
10220
10221 * wid-edit.el (widget-field-buffer, widget-field-start)
10222 (widget-field-end): Handle widget field `pseudo-overlays'.
10223 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
10224 if it's there instead of in `widget-field-list'.
10225
10226 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
10227 (help-make-xrefs): Delete extraneous newlines at the end of the
10228 docstring.
10229
10230 2000-11-25 Jason Rumney <jasonr@gnu.org>
10231
10232 * startup.el (command-line): Call set-locale-environment after
10233 Window System init file is read, as it can result in a call to
10234 redraw-frame.
10235
10236 2000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
10237
10238 * simple.el (shell-command): Mention the effect of the prefix
10239 argument in the doc string.
10240
10241 2000-11-25 Miles Bader <miles@gnu.org>
10242
10243 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
10244
10245 * wid-edit.el (widget-field-value-delete): Don't try to delete
10246 overlay when it's the `pseudo-overlay' that exists at some points.
10247
10248 2000-11-24 Jason Rumney <jasonr@gnu.org>
10249
10250 * international/mule-cmds.el (locale-language-names): Add "jp" as
10251 a non-standard alternative for Japanese.
10252
10253 2000-11-24 Andre Spiegel <spiegel@gnu.org>
10254
10255 * vc-hooks.el: Require 'cl during compilation.
10256
10257 2000-11-24 Gerd Moellmann <gerd@gnu.org>
10258
10259 * faces.el (face-set-after-frame-default): Let face attributes
10260 specified for new frames override frame parameters.
10261
10262 * startup.el (command-line): Fix computation of the source file
10263 for user-init-file when user-init-file is a compiled file.
10264
10265 2000-11-24 Miles Bader <miles@gnu.org>
10266
10267 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
10268 (custom-post-filter-face-spec): New functions.
10269 (custom-face-set, custom-face-value-create): Filter the face spec
10270 before and after customization.
10271 (custom-face-set): If VALUE specifies a null face, pass a
10272 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
10273 * cus-face.el (custom-face-attributes): Remove SET and GET
10274 functions. Add some IN-FILTER and OUT-FILTER functions in the few
10275 cases they're needed.
10276
10277 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
10278 that it's distinguishable from the :off-glyph on dark-background
10279 displays. Set its background color too.
10280
10281 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
10282 so that people can easily turn it off.
10283
10284 2000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
10285
10286 * ediff-diff.el: Moved variables around to have it compile under NT.
10287
10288 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
10289
10290 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
10291
10292 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
10293 redundant skip-small-frames test.
10294
10295 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
10296 (viper-downgrade-to-insert): Protect against errors in hooks.
10297
10298 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
10299 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
10300 (viper-restore-cursor-type,viper-set-insert-cursor-type):
10301 New functions.
10302
10303 * viper-util.el (viper-memq-char): Bug fixes.
10304
10305 * viper.el (viper-mode): Fix cursor handling.
10306
10307 2000-11-24 Kenichi Handa <handa@etl.go.jp>
10308
10309 * international/mule-diag.el (list-iso-charset-chars):
10310 For two-byte charset, fix the `while' condition.
10311 (list-non-iso-charset-chars): Fix the `while' condition.
10312
10313 2000-11-23 Stefan Monnier <monnier@cs.yale.edu>
10314
10315 * subr.el (add-hook, remove-hook): Don't call make-local-hook
10316 if the variable is make-variable-buffer-local.
10317
10318 * progmodes/ada-stmt.el (ada-template-map):
10319 Initialize and bind it to C-c t in ada-mode-map.
10320 (ada-stmt-mode-hook): New function extracted from old code.
10321 Only change the buffer-local side of skeleton-*.
10322 (ada-mode-hook): Use it.
10323
10324 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
10325
10326 * iswitchb.el (iswitchb-minibuf-depth): New variable.
10327 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
10328 we expect to be returned by minibuffer-depth once we prompt the
10329 user in the minibuffer.
10330 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
10331 as recorded in iswitchb-minibuf-depth, return non-nil.
10332
10333 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
10334
10335 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
10336 (hscroll-window-maybe): Docstring fix.
10337
10338 2000-11-23 Dave Love <fx@gnu.org>
10339
10340 * rect.el (string-rectangle): Don't test delete-selection-mode.
10341
10342 2000-11-23 Gerd Moellmann <gerd@gnu.org>
10343
10344 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
10345 is in the tool bar.
10346
10347 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
10348 with `no-dir'; we want the directory part to be able to remove it.
10349
10350 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
10351
10352 * textmodes/outline.el (outline-flag-region):
10353 Don't bind inhibit-read-only since we don't modify the buffer.
10354 (outline-isearch-open-invisible): Don't jump to overlay-start
10355 since we're trying to unhide text around point.
10356 (outline-discard-overlays): Use dolist.
10357
10358 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
10359
10360 2000-11-22 Gerd Moellmann <gerd@gnu.org>
10361
10362 * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
10363
10364 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
10365
10366 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
10367 Fix ARG regexp to skip quoted braces.
10368 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
10369 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
10370 are (correctly) handled separately).
10371 Remove `caption' and `footnote' from `citations': they contain text.
10372 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
10373 (latex-skeleton-end-hook): New function.
10374 (latex-mode): Use it.
10375 (tex-start-tex-marker): Remove.
10376 (tex-send-tex-command): Don't set tex-start-tex-marker.
10377 (tex-error-parse-syntax-table): New var.
10378 (tex-compilation-parse-errors): Use it.
10379 Ignore tex-start-tex-marker. Don't bother with marker-position.
10380 (tex-validate-buffer): Don't bother with marker-position.
10381
10382 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
10383 (flyspell-generic-progmode-verify): Use it.
10384
10385 2000-11-22 Sam Steingold <sds@gnu.org>
10386
10387 * simple.el (delete-trailing-whitespace): New interactive function.
10388
10389 * progmodes/ada-mode.el (ada-mode): Use it instead of
10390 `ada-remove-trailing-spaces'.
10391 (ada-remove-trailing-spaces): Removed.
10392
10393 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
10394
10395 * textmodes/picture.el (picture-clean): Removed.
10396 (picture-mode-exit): Call it instead of `picture-clean'.
10397
10398 2000-11-22 Gerd Moellmann <gerd@gnu.org>
10399
10400 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
10401
10402 * hi-lock.el (hi-lock-refontify): Don't call non-existent
10403 jit-lock-fontify-buffer; it should anyway be unneccessary to
10404 do anything special when jit-lock is active.
10405 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
10406
10407 2000-11-22 Dave Love <fx@gnu.org>
10408
10409 * calendar/todo-mode.el (todo-top-priorities): Use
10410 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
10411
10412 * language/chinese.el, language/cyrillic.el:
10413 * language/devanagari.el, language/ethiopic.el, language/greek.el:
10414 * language/hebrew.el, language/indian.el, language/japanese.el:
10415 * language/korean.el, language/lao.el, language/misc-lang.el:
10416 * language/thai.el, language/tibetan.el, language/vietnamese.el:
10417 Use provide.
10418
10419 * cus-edit.el (custom-buffer-create-internal): Save some consing.
10420 (custom-variable-set): Improve validation error mesage.
10421
10422 * rect.el (string-rectangle): Revert last change.
10423 (string-rectangle-line): New arg DELETE.
10424 (string-rectangle): Check delete-selection-mode.
10425
10426 * emacs-lisp/edebug.el (edebug-version)
10427 (edebug-maintainer-address): Deleted.
10428 (edebug-submit-bug-report): Just alias to report-emacs-bug.
10429 (edebug-read-function): Account for other `'#' read forms.
10430 (edebug-mode-menus): Make some items toggles.
10431 (edebug-outside-unread-command-event, unread-command-event):
10432 Remove these to avoid warnings.
10433
10434 2000-11-22 David Ponce <david@dponce.com>
10435
10436 * recentf.el (recentf-menu-items-for-commands)
10437 (recentf-make-menu-items, recentf-make-menu-item)
10438 (recentf-filter-changer): Added :help and :active menu-item properties.
10439
10440 (recentf-build-dir-rules, recentf-dump-variable)
10441 (recentf-edit-list, recentf-open-files-item)
10442 (recentf-open-files): Replaced unnecessary `mapcar' with new
10443 built-in `mapc'.
10444
10445 2000-11-23 Miles Bader <miles@gnu.org>
10446
10447 * faces.el (menu): Make inverse-video on ttys too.
10448
10449 2000-11-22 Stefan Monnier <monnier@cs.yale.edu>
10450
10451 * simple.el (comment-line-break-function): Use the new name
10452 indent-new-comment-line -> comment-indent-new-line.
10453 (clone-indirect-buffer): Don't ignore NORECORD.
10454 (next-completion): Properly handle the case where items are adjacent.
10455
10456 * mouse.el (popup-menu): Stupid typo.
10457
10458 2000-11-22 Gerd Moellmann <gerd@gnu.org>
10459
10460 * emacs-lisp/authors.el: Remove autoload cookies, add author,
10461 maintainer, keywords tags.
10462
10463 * rect.el (replace-rectangle): Don't call string-rectangle-line
10464 with too many arguments.
10465
10466 2000-11-22 Andre Spiegel <spiegel@gnu.org>
10467
10468 * ediff-util.el (ediff-file-checked-out-p)
10469 (ediff-file-checked-in-p): Call vc-state instead of
10470 vc-locking-user, which no longer exists.
10471
10472 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
10473
10474 2000-11-22 Dave Love <fx@gnu.org>
10475
10476 * md5.el (md5): Provide.
10477 (md5): Fix error call.
10478
10479 2000-11-22 Miles Bader <miles@gnu.org>
10480
10481 * textmodes/refill.el (refill-adjust-ignorable-overlay)
10482 (refill-fill-paragraph-at): Remove debugging code.
10483
10484 * calendar/calendar.el (generate-calendar-window): When we don't
10485 call `fit-window-to-buffer', make sure the top line is fully visible.
10486
10487 * image-file.el (insert-image-file): Don't make `read-only'
10488 property rear-nonsticky.
10489
10490 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
10491 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
10492 stashing away its original value.
10493 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
10494 in the recursive edit.
10495 Bind `isearch-original-minibuffer-message-timeout' to protect it.
10496 (isearch-done): Restore `minibuffer-message-timeout'.
10497
10498 * cus-start.el: Remove entry for `mode-line-inverse-video'.
10499
10500 2000-11-21 Stefan Monnier <monnier@cs.yale.edu>
10501
10502 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
10503
10504 * find-lisp.el (find-lisp-find-files-internal):
10505 Use dolist, when and file-name-as-directory.
10506
10507 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
10508 (define-derived-mode, define-minor-mode): Add specs.
10509
10510 * window.el: General comment and spacing fixes.
10511 (save-selected-window): Use backquotes.
10512 (window-safely-shrinkable-p): New function.
10513 (shrink-window-if-larger-than-buffer): Use it.
10514
10515 * subr.el (make-local-hook): Docstring fix.
10516
10517 * shell.el (shell-mode): Use define-derived-mode.
10518
10519 * newcomment.el (comment-indent): Insert comment before calling
10520 comment-indent-function. Don't insert in column 0.
10521 (comment-dwim): Indent before inserting comment.
10522
10523 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
10524 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
10525 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
10526 Use mapc rather than map.
10527
10528 * files.el (find-buffer-visiting): Compare all attributes before
10529 declaring two files identical (rather than just their inode-no).
10530 (auto-mode-alist): Use \' rather than $.
10531
10532 * which-func.el: Update maintainer line.
10533
10534 * pcvs.el (uniquify-buffer-file-name): Remove advice.
10535 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
10536 (uniquify-buffer-file-name): Use it.
10537
10538 2000-11-22 Miles Bader <miles@gnu.org>
10539
10540 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
10541 * simple.el (minibuffer-avoid-prompt): New function.
10542
10543 2000-11-21 Gerd Moellmann <gerd@gnu.org>
10544
10545 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
10546
10547 2000-11-21 Miles Bader <miles@gnu.org>
10548
10549 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
10550 inclusion of `track-mouse'.
10551
10552 * textmodes/refill.el (refill-ignorable-overlay): New variable.
10553 (refill-adjust-ignorable-overlay): New function.
10554 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
10555 only the paragraph's tail if possible.
10556 Update `refill-ignorable-overlay'.
10557 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
10558
10559 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
10560 point inside the fill-prefix.
10561
10562 * textmodes/refill.el (refill-post-command-function): Don't reset
10563 refill-doit in the case where a self-insertion command doesn't
10564 case a refill. Use `refill-fill-paragraph-at', getting position
10565 from `refill-doit'.
10566 (refill-after-change-function): Set `refill-doit' to END.
10567 (refill-fill-paragraph-at): New function, mostly from old
10568 refill-fill-paragraph.
10569 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
10570 (refill-pre-command-function): New function.
10571 (refill-mode): Add it to `pre-command-hook'.
10572
10573 2000-11-20 Gerd Moellmann <gerd@gnu.org>
10574
10575 * textmodes/artist.el (artist-mode): Fix autoload cookie.
10576
10577 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
10578 javadoc tags.
10579
10580 2000-11-20 Andre Spiegel <spiegel@gnu.org>
10581
10582 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
10583 vc.el).
10584
10585 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
10586 require vc.
10587
10588 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
10589 checkouts.
10590
10591 2000-11-20 Dave Love <fx@gnu.org>
10592
10593 * Makefile.in (DONTCOMPILE): Omit bindings.el.
10594
10595 2000-11-20 Eli Barzilay <eli@www.barzilay.org>
10596
10597 * calculator.el (calculator-paste): Use `if' instead of `and'
10598 and `or'.
10599 (calculator-help): Don't use electric-describe-mode for XEmacs.
10600
10601 2000-11-19 Gerd Moellmann <gerd@gnu.org>
10602
10603 * info.el (info-menu-5): Doc fix.
10604
10605 * textmodes/artist.el: New file.
10606
10607 2000-11-19 Andre Spiegel <spiegel@gnu.org>
10608
10609 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
10610 and differentiate according to checkout model.
10611 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
10612 since this function is only concerned with master state.
10613
10614 * vc-hooks.el (vc-workfile-unchanged-p)
10615 (vc-default-workfile-unchanged-p): Moved here from vc.el.
10616
10617 * vc.el (vc-workfile-unchanged-p)
10618 (vc-default-workfile-unchanged-p): See above.
10619
10620 2000-11-19 Miles Bader <miles@gnu.org>
10621
10622 * image-file.el (insert-image-file): Make `intangible' and
10623 `read-only' properties rear-nonsticky too.
10624
10625 2000-11-18 Gerd Moellmann <gerd@gnu.org>
10626
10627 * ps-print.el: Update copyright notice.
10628
10629 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
10630 (tooltip-show): Use the offsets.
10631
10632 * bindings.el (mode-line-modified): Fix a typo.
10633 (mode-line-toggle-modified, mode-line-widen)
10634 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
10635
10636 2000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10637
10638 * ps-print.el (toplevel): Test for find-coding-system being
10639 fboundp before calling ps-x-find-coding-system.
10640
10641 2000-11-16 Stefan Monnier <monnier@cs.yale.edu>
10642
10643 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
10644 (vc-version-backup-file): Docstring fix.
10645
10646 2000-11-16 Gerd Moellmann <gerd@gnu.org>
10647
10648 * files.el (basic-save-buffer): Don't add a newline if
10649 find-file-literally is non-nil.
10650 (find-file-literally): Extend doc string.
10651
10652 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
10653 sort(1) with the `-f' argument.
10654
10655 2000-11-16 Andre Spiegel <spiegel@gnu.org>
10656
10657 * vc.el: Updated backend documentation.
10658 (vc-default-check-headers): New function.
10659
10660 * vc-{cvs,rcs,sccs}.el: Functions reordered.
10661
10662 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
10663 up-to-date.
10664 (vc-do-command): In the asynchronous case, output messages only if
10665 the minibuffer is not active.
10666
10667 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
10668 `vc-cvs-use-edit' is on.
10669 (vc-cvs-checkout): When this is used for reverting the workfile,
10670 make a backup of the original contents and revert to that in case
10671 of error.
10672 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
10673 remote repositories.
10674
10675 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
10676 for both version and ratio in the minibuffer.
10677
10678 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
10679 Use vc-do-command to perform the annotation, not call-process.
10680
10681 2000-11-16 Kenichi Handa <handa@etl.go.jp>
10682
10683 * international/quail.el (quail-start-translation): Don't call
10684 `message' before reading key sequence.
10685
10686 2000-11-16 Miles Bader <miles@lsi.nec.co.jp>
10687
10688 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
10689
10690 2000-11-16 Kenichi Handa <handa@etl.go.jp>
10691
10692 * window.el (fit-window-to-buffer): Be sure to acquire at least
10693 one text line even if the buffer is empty.
10694
10695 2000-11-16 Gerd Moellmann <gerd@gnu.org>
10696
10697 * net/ange-ftp.el (ange-ftp-file-writable-p)
10698 (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
10699 Bind ange-ftp-process-verbose to nil.
10700
10701 2000-11-15 Dave Love <fx@gnu.org>
10702
10703 * wid-edit.el (widget-specify-field, widget-specify-button):
10704 If :help-echo is a function, set help-echo of overlay to
10705 widget-mouse-help.
10706 (widget-mouse-help): New function.
10707 (widget-echo-help): Rewritten for :help-echo functions only taking
10708 a widget arg.
10709
10710 * net/eudc-bob.el (eudc-bob-can-display-inline-images):
10711 Use display-graphic-p.
10712 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
10713 and that JPEG is available.
10714 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
10715
10716 * international/mule-cmds.el (locale-charset-language-names):
10717 Match @euro.
10718
10719 2000-11-15 Gerd Moellmann <gerd@gnu.org>
10720
10721 * faces.el (face-set-after-frame-default):
10722 If `inhibit-default-face-x-resources' is bound, don't intialize the
10723 default face from X resources.
10724
10725 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
10726
10727 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
10728 Don't set EMACSLOADPATH.
10729
10730 2000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
10731
10732 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
10733 texinfo-insert-@url.
10734 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
10735 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
10736
10737 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
10738
10739 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
10740 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
10741 (checkdoc-minor-keymap): Backward compatibility.
10742 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
10743 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
10744 (checkdoc-this-string-valid-engine): Be a bit more strict
10745 to avoid matching substrings of `...' quoted vars/funs.
10746 (checkdoc-defun-info): Only look for `interactive' if alone.
10747 (debug-ignored-errors): Add "arg doesn't appear in docstring".
10748
10749 * progmodes/compile.el (grep): `tag-default' can be nil.
10750
10751 * newcomment.el (comment-indent): Paren typo.
10752
10753 2000-11-14 Dave Love <fx@gnu.org>
10754
10755 * calculator.el: New maintainer version.
10756
10757 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
10758
10759 * cmuscheme.el: Doc fixes.
10760 (cmuscheme) <defgroup>: Use `scheme' as parent.
10761 (cmuscheme-program-name): Remove. Change uses to scheme-program-name.
10762
10763 * xscheme.el (scheme-program-name): Don't define here.
10764
10765 * progmodes/scheme.el (scheme-program-name): New variable
10766 (originally in cmuscheme).
10767
10768 2000-11-14 Miles Bader <miles@gnu.org>
10769
10770 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
10771 Handle header-lines. Don't loop forever if we can't enlarge the
10772 window anymore. Simplify a bit.
10773
10774 2000-11-14 Kenichi Handa <handa@etl.go.jp>
10775
10776 * window.el (fit-window-to-buffer): Don't check
10777 window-text-height. Assure that the last line is fully visible.
10778
10779 * international/quail.el (quail-show-guidance-buf):
10780 Call fit-window-to-buffer to assure the enough height of the guidance
10781 buffer.
10782 (quail-update-guidance): Avoid making the guidance buffer shorter.
10783
10784 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
10785
10786 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
10787 rather than `prepend' and add an interesting comment.
10788 (tex-math-face, tex-font-lock-syntactic-face-function):
10789 New face and function to use it.
10790 (tex-define-common-keys, tex-mode-map): Use menu-item rather
10791 than `menu-enable' symbol property.
10792 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
10793 (tex-mode): Add some latex-mode commands for auto-selection.
10794 Use tex-font-lock-syntactic-face-function.
10795 (tex-insert-quote): Simplify.
10796 (tex-shell): New mode.
10797 (tex-start-shell): Use it.
10798 (tex-shell-proc, tex-shell-buf): New functions.
10799 (tex-send-command): Use it.
10800 (tex-main-file): Fix the meaning of the new arg REALFILE.
10801 (tex-send-tex-command): New function split from `tex-start-tex'.
10802 Set compilation-last-buffer and compilation-parsing-end.
10803
10804 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
10805 when it follows non-comment text on the line.
10806
10807 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10808 Set font-lock-defaults.
10809 (lisp-mode-shared-map): Init inside the defvar.
10810 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
10811 Use define-derived-mode.
10812
10813 2000-11-14 Miles Bader <miles@lsi.nec.co.jp>
10814
10815 * faces.el (header-line): Use `:box nil' for color/gs displays too.
10816
10817 2000-11-14 Gerd Moellmann <gerd@gnu.org>
10818
10819 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
10820 Don't recursively optimize body because that can lead to infinite
10821 recursion; see comment there.
10822
10823 2000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
10824
10825 * faces.el (face-spec-set-match-display): Revert the change from
10826 2000-10-24. Add a FIXME for after v21.1.
10827
10828 2000-11-13 Miles Bader <miles@gnu.org>
10829
10830 * textmodes/fill.el (skip-line-prefix): New function.
10831 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
10832 (fill-paragraph): Don't leave point inside the fill-prefix.
10833 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
10834 point inside the fill-prefix.
10835
10836 2000-11-13 Miles Bader <miles@lsi.nec.co.jp>
10837
10838 * calendar/calendar.el (generate-calendar-window):
10839 Use `fit-window-to-buffer'.
10840
10841 2000-11-12 Stefan Monnier <monnier@cs.yale.edu>
10842
10843 * gud.el (gud-minor-mode): New var.
10844 (gud-symbol, gud-val): New functions.
10845 (gud-find-file): Copy gud-minor-mode to the new buffer.
10846 (gud-menu-map): Include entries for commands that are not always
10847 available, using :enable to (de)activate them.
10848 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
10849 (gud-mode-map): New map.
10850 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
10851 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
10852 Don't set up gud's menu (it's done by the minor-mode).
10853 (gud-minibuffer-local-map): New.
10854 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
10855 (gud-query-cmdline): New function.
10856 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
10857 (gud-mode): Use define-derived-mode.
10858 Don't set up gud's menu (it's done by the minor-mode).
10859 (gud-chop-words): Remove.
10860 (gud-common-init): Use split-string instead.
10861 (gud-new-keymap, gud-make-debug-menu): Eradicate.
10862
10863 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
10864 Add keyword arg :name.
10865
10866 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
10867 (diff-count-matches, diff-split-hunk): New functions.
10868 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
10869
10870 * pcvs-info.el (cvs-fi-conflict-face): New var.
10871
10872 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
10873 Make it into a simple syntax-table, shared among all submodes.
10874 (sh-heredoc-face): Re-introduce.
10875 (sh-font-lock-syntactic-face-function): New function.
10876 (sh-mode): Use it. Also use define-derived-mode.
10877 Remove old bogus setting of indent-region-function.
10878 (sh-set-shell): Don't set the syntax-table any more.
10879 (sh-mode-syntax-table) <defun>: Remove.
10880
10881 2000-11-12 Miles Bader <miles@gnu.org>
10882
10883 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
10884 message if interactive.
10885
10886 2000-11-12 Dave Love <fx@gnu.org>
10887
10888 * mail/feedmail.el: Fix header,
10889 (feedmail) <defgroup>: Add :link.
10890
10891 * view.el: Use local-map property, not keymap on mode-line string.
10892
10893 * scroll-all.el (scroll-all-mode): Customize variable.
10894 Add autoload cookie to function.
10895
10896 * lazy-lock.el: Remove compatibility code.
10897
10898 * finder.el (finder-known-keywords): Add `files', remove `vms'.
10899 (finder-help-echo): New variable.
10900 (finder-mouse-face-on-line): Add help-echo stuff.
10901 (finder-list-keywords, finder-list-matches): Use mapc.
10902
10903 * faces.el (face-font-registry-alternatives): Add :version.
10904
10905 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
10906 tags-table-list.
10907
10908 * net/browse-url.el (browse-url-browser-function): Update :version.
10909
10910 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
10911 (mail-mode): Use [:alnum:] in some regexps.
10912
10913 2000-11-10 Dave Love <fx@gnu.org>
10914
10915 * ediff.el (ediff-regions-internal, ediff-documentation):
10916 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
10917 fundamental mode.
10918
10919 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
10920 buffer into fundamental mode.
10921 (ediff-set-difference): Use copy-sequence if available.
10922
10923 * ediff-ptch.el (ediff-dispatch-file-patching-job):
10924 Check ediff-patch-map non-nil.
10925 (ediff-fixup-patch-map, ediff-fixup-patch-map)
10926 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
10927 buffer into fundamental mode.
10928
10929 * ediff-merg.el (state-or-merge): Defvar when compiling.
10930
10931 2000-11-10 Jason Rumney <jasonr@gnu.org>
10932
10933 * w32-fns.el (w32-add-charset-info): New function.
10934 (w32-charset-info-alist): Use it.
10935
10936 2000-11-10 Gerd Moellmann <gerd@gnu.org>
10937
10938 * faces.el (face-font-registry-alternatives): New user-option.
10939
10940 2000-11-10 Stefan Monnier <monnier@cs.yale.edu>
10941
10942 * textmodes/texinfo.el (texinfo-block-default): New var.
10943 (texinfo-insert-block): Use it. Insert a newline if needed.
10944
10945 * textmodes/fill.el (fill-indent-according-to-mode): New var.
10946 (fill-region-as-paragraph): Use it.
10947
10948 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
10949 (latex-mode): Tweak tex-*-(head|trail)er regexps.
10950 Tweak paragraph regexps to allow a leading [ \t]*.
10951 (tex-latex-block): Insert a newline if necessary.
10952 (latex-insert-item): Only insert a newline if necessary.
10953 (tex-guess-main-file): New function.
10954 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
10955 Set tex-main-file if TeX-master is provided.
10956 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
10957
10958 2000-11-10 Gerd Moellmann <gerd@gnu.org>
10959
10960 * startup.el (command-line): Set the default tooltip-mode
10961 to t for graphical displays which implement x-show-tip.
10962
10963 * tooltip.el (tooltip-mode): Add a comment about startup.el
10964 setting the default value of this user-option.
10965
10966 2000-11-09 Stefan Monnier <monnier@cs.yale.edu>
10967
10968 * font-lock.el (font-lock-*-face) <defvar>: Move.
10969 (font-lock-defaults-alist): Mark obsolete.
10970 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
10971 (font-lock-mode): Use define-minor-mode.
10972 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
10973 (font-lock-turn-off-thing-lock): Be more explicit.
10974 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
10975 (font-lock-syntactic-face-function): New var.
10976 (font-lock-fontify-syntactically-region): Use it.
10977 (font-lock-doc-face): New.
10978
10979 * pcvs.el (cvs-enabledp): Ignore errors.
10980 (cvs-commit-filelist): Never query.
10981 (cvs-mode-insert): Always add a terminating / in the initial prompt.
10982 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
10983 (cvs-do-removal): Use cvs-partition rather than delete-if.
10984 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
10985 cvs-bury-buffer.
10986
10987 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10988 Allow `next' to jump to after the end of the last match.
10989
10990 2000-11-09 Gerd Moellmann <gerd@gnu.org>
10991
10992 * simple.el (byte-compiling-files-p): New function.
10993
10994 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
10995 if it is there.
10996
10997 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
10998 nil again.
10999
11000 * textmodes/ispell.el (ispell-library-path): Don't call
11001 check-ispell-version when byte-compiling because that starts
11002 an ispell process, and ispell might not be installed.
11003 (toplevel): Don't set up a menu when byte-compiling.
11004
11005 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
11006 it, so that a boundp test can be used to determine if we're
11007 currently byte-compiling.
11008
11009 2000-11-09 Dave Love <fx@gnu.org>
11010
11011 * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
11012
11013 2000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11014
11015 * ps-print.el: Patch for variable initialization when spooling.
11016 Doc fix.
11017 (ps-output-list): Fun eliminated.
11018 (ps-begin-file, ps-begin-job): Code fix.
11019
11020 2000-11-08 Dave Love <fx@gnu.org>
11021
11022 * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
11023
11024 2000-11-08 Gerd Moellmann <gerd@gnu.org>
11025
11026 * simple.el (shell-command, display-message-or-buffer)
11027 (shell-command-on-region): Mention resize-mini-windows in the doc
11028 string.
11029 (display-message-or-buffer): Take the value of resize-mini-windows
11030 into account.
11031
11032 2000-11-07 Gerd Moellmann <gerd@gnu.org>
11033
11034 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
11035
11036 * dired.el (dired-between-files): Add `^. find' as an alternative
11037 to the regular expression, for find-dired.
11038
11039 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
11040
11041 * textmodes/texnfo-upd.el: Require texinfo.
11042 (defmacro, defgroup): Remove.
11043 (texinfo-section-to-generic-alist): Remove.
11044 Use texinfo-section-list instead (i.e. level is changed string->int).
11045 (texinfo-filter): New function.
11046 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
11047 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
11048 Use it. And use regexp-opt.
11049 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
11050 (texinfo-update-menu-region-beginning)
11051 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
11052 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
11053 (texinfo-update-menu-same-level-regexps): Update.
11054 (texinfo-update-node, texinfo-every-node-update)
11055 (texinfo-sequential-node-update): Remove autoload cookie.
11056
11057 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
11058 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
11059 (texinfo-chapter-level-regexp): Remove.
11060 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
11061
11062 2000-11-06 Dave Love <fx@gnu.org>
11063
11064 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
11065
11066 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11067 Match defun*.
11068
11069 2000-11-06 Kenichi Handa <handa@etl.go.jp>
11070
11071 * composite.el (composition-function-table): Variable declaration
11072 moved to src/composite.c.
11073 (compose-chars-after): New optional arg object.
11074
11075 2000-11-06 Gerd Moellmann <gerd@gnu.org>
11076
11077 * bindings.el (mode-line-toggle-read-only)
11078 (mode-line-toggle-modified, mode-line-widen)
11079 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
11080 (make-mode-line-mouse2-map): Rewritten.
11081 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
11082 functions so that C-h k can show something with a doc string.
11083
11084 * startup.el (fancy-splash-delay): Set to 10 seconds.
11085 (fancy-splash-max-time): New user-option.
11086 (fancy-splash-stop-time): New variable.
11087 (fancy-splash-screens): Set it. Catch `stop-splashing'.
11088 (fancy-splash-screens-1): Throw `stop-splashing' when current
11089 time is greater than fancy-splash-stop-time.
11090
11091 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
11092
11093 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
11094
11095 * pcvs.el (cvs-mode-marked): New arg `noquery'.
11096 Prompt user for a file rather than raising an error.
11097 (cvs-enabledp): Fix call to cvs-mode-marked.
11098 (cvs-insert-file): New function (extracted from cvs-mode-insert).
11099 (cvs-mode-insert): Use it. Change the init prompt' value.
11100 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
11101
11102 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
11103 Don't pass default arg to ewoc-locate.
11104 (ewoc-collect): Return result in the right order.
11105
11106 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
11107
11108 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
11109 (cvs-status-get-tags): Fix regexp.
11110 (cvs-status-trees, cvs-status-cvstrees):
11111 Combine after change hooks and don't sit-for.
11112 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
11113 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
11114 Use make-char rather than hard-coded cryptic data.
11115 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
11116
11117 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
11118
11119 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
11120 (cvs-insert-strings): New function.
11121
11122 2000-11-06 Miles Bader <miles@lsi.nec.co.jp>
11123
11124 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
11125 `mwheel-scroll-amount'.
11126 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
11127 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
11128 string-matching against the version string.
11129
11130 2000-11-06 Kenichi Handa <handa@etl.go.jp>
11131
11132 * language/thai.el ("Thai"): Set a lisp form that produces
11133 composed string in `sample-text' language info.
11134
11135 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
11136 composed string in `sample-text' language info.
11137
11138 * international/mule-cmds.el (describe-language-environment):
11139 Eval `sample-text' data and insert the result.
11140
11141 * international/mule-conf.el (compound-text): Define this coding
11142 system here. Make x-ctext and ctext aliases of it.
11143
11144 * language/european.el (compound-text, ctext): Moved to
11145 international/mule-conf.el.
11146
11147 2000-11-05 Andrew Innes <andrewi@gnu.org>
11148
11149 * w32-fns.el (w32-version): New function.
11150
11151 2000-11-05 Stefan Monnier <monnier@cs.yale.edu>
11152
11153 * progmodes/awk-mode.el: Update copyright.
11154 (awk-mode-abbrev-table): Remove.
11155 (awk-font-lock-keywords): Use regexp-opt.
11156 (awk-mode): Use define-derived-mode.
11157
11158 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
11159 when extracting a suffix.
11160
11161 2000-11-04 Andre Spiegel <spiegel@gnu.org>
11162
11163 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
11164 auto-save-mode.
11165
11166 2000-11-04 Jason Rumney <jasonr@gnu.org>
11167
11168 * language/european.el (decode-mac-roman): Test against r1 not r0.
11169
11170 2000-11-03 Stefan Monnier <monnier@cs.yale.edu>
11171
11172 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
11173 (icon-mode): Define indent-line-function.
11174 (icon-comment-indent): Simplify.
11175 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
11176
11177 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
11178
11179 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
11180 Bind change-log-default-mode to defeat the caching done on it.
11181 Don't bother saving excursion any more.
11182
11183 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
11184
11185 * frame.el (after-setting-font-hook): Rename hooks -> hook.
11186 (set-frame-font): Use the new name (and the old for compatibility).
11187
11188 * toolbar/tool-bar.el (tool-bar-mode):
11189 * time.el (display-time-mode):
11190 * recentf.el (recentf-mode):
11191 * paren.el (show-paren-mode):
11192 * mwheel.el (mouse-wheel-mode):
11193 * msb.el (msb-mode):
11194 * jka-compr.el (auto-compression-mode):
11195 * image-file.el (auto-image-file-mode):
11196 * hl-line.el (hl-line-mode):
11197 * delsel.el (delete-selection-mode):
11198 * autoinsert.el (auto-insert-mode):
11199 * complete.el (partial-completion-mode): Drop unneeded positional args.
11200
11201 * info.el (Info-mode):
11202 * comint.el (comint-mode): Don't bother with make-local-hook.
11203
11204 * log-edit.el (log-edit-menu): New menu.
11205
11206 2000-11-03 Miles Bader <miles@gnu.org>
11207
11208 * wid-edit.el (widget-end-of-line): Reinstate, with a new
11209 definition, so that trailing spaces are handled properly.
11210 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
11211
11212 2000-11-03 Gerd Moellmann <gerd@gnu.org>
11213
11214 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
11215 tab character.
11216 (fancy-splash-screens): Set tab-width to 20.
11217
11218 2000-11-03 Dave Love <fx@gnu.org>
11219
11220 * comint.el (comint-completion-addsuffix): Fix custom type.
11221
11222 2000-11-02 Stefan Monnier <monnier@cs.yale.edu>
11223
11224 * font-lock.el (font-lock-buffers): Remove.
11225 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
11226 (font-lock-change-major-mode): Remove.
11227 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
11228 (font-lock-default-fontify-region): Extend the multiline
11229 fontification to whole lines.
11230 (font-lock-fontify-anchored-keywords)
11231 (font-lock-fontify-keywords-region): If matching just one
11232 line (with \n) only mark the \n as multiline.
11233
11234 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
11235 Correctly handle the case where several :group args are supplied.
11236 Allow :extra-args.
11237 (easy-mmode-define-global-mode): Allow :extra-args.
11238 Correctly handle the case where several :group args are supplied.
11239
11240 2000-11-02 Miles Bader <miles@gnu.org>
11241
11242 * calendar/calendar.el (diary-face, calendar-today-face)
11243 (holiday-face): Remove dependency on `window-system'.
11244
11245 2000-11-02 Ken Raeburn <raeburn@gnu.org>
11246
11247 * Makefile.in (emacs): Set EMACSLOADPATH always.
11248 (update-authors, .el.elc, compile-files): Don't do it explicitly here.
11249 (compile-files): Bomb out if compilation of a file fails.
11250
11251 2000-11-02 Dave Love <fx@gnu.org>
11252
11253 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
11254
11255 2000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
11256
11257 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
11258 punctuation in the warning inserted into the *mail* buffer.
11259
11260 2000-11-02 Gerd Moellmann <gerd@gnu.org>
11261
11262 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
11263 (authors-public-domain-p): New function.
11264 (authors-print): Use it.
11265
11266 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
11267
11268 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
11269
11270 2000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11271
11272 * ps-print.el: Extension for even/odd printing. Doc fix.
11273 (ps-print-version): New version number (6.3.1).
11274 (ps-even-or-odd-pages): Customization fix.
11275 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
11276 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
11277 (ps-page-count): Var replaced by `ps-page-column'.
11278 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
11279 (ps-print-sheet-p): New fun.
11280
11281 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
11282
11283 * tooltip.el (tooltip-gud-tips-setup): New function.
11284 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
11285 (tooltip-mode): Call tooltip-gud-tips-setup.
11286 (tooltip-gud-tips): Use `gud-basic-call' instead of
11287 process-send-string, so the prompt gets frobbed appropriately.
11288 Handle nil return value from `tooltip-gud-print-command'.
11289
11290 2000-11-01 Eric M. Ludlam <zappo@ultranet.com>
11291
11292 * comint.el (comint-add-to-input-history): New function.
11293 (comint-send-input): Use `comint-add-to-input-history'.
11294
11295 2000-11-02 Miles Bader <miles@lsi.nec.co.jp>
11296
11297 * info.el (info-menu-header): New face.
11298 (Info-fontify-menu-headers): New function.
11299 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
11300
11301 * info.el (Info-insert-dir): Don't include blank lines at
11302 beginning of additional dir files (one is added automatically).
11303
11304 2000-11-01 Stefan Monnier <monnier@cs.yale.edu>
11305
11306 * emacs-lisp/easy-mmode.el (define-minor-mode):
11307 Revert the latest changes.
11308 Allow the three positional arguments to be skipped and replaced
11309 by keyword arguments.
11310 Add a :toggle argument to determine whether a nil arg means toggle
11311 or means turn-on. The default is unchanged.
11312 Add a call to force-mode-line-update.
11313
11314 2000-11-01 Dave Love <fx@gnu.org>
11315
11316 * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
11317
11318 2000-11-01 Miles Bader <miles@lsi.nec.co.jp>
11319
11320 * calendar/calendar.el (diary-face, holiday-face):
11321 Add dark-background variants.
11322
11323 2000-10-31 Sam Steingold <sds@gnu.org>
11324
11325 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
11326 `tex-main-file' does not have directory in it.
11327
11328 2000-10-31 Stefan Monnier <monnier@cs.yale.edu>
11329
11330 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
11331
11332 2000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
11333
11334 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
11335 functional change.
11336
11337 2000-10-31 Gerd Moellmann <gerd@gnu.org>
11338
11339 * files.el (find-file-noselect): When we expand a wildcard, return
11340 a list of buffers, as we should do according to the doc string.
11341
11342 2000-10-31 Ken Raeburn <raeburn@gnu.org>
11343
11344 * loadup.el (top level): Adjust load path if program name is
11345 "../src/bootstrap-emacs", in case it's not dumped and thus the
11346 load path adjustment hasn't already been done.
11347
11348 2000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11349
11350 * ps-print.el: Fix bug on selected pages for printing.
11351 Use `color-values' for Emacs 21. Ensure fontification when jit-lock
11352 is on. Try to avoid warning messages when compiling. Doc Fix.
11353 (ps-print-version): New version number (6.3).
11354 (ps-color-device): Use `color-values' to determine if device
11355 supports color.
11356 (ps-color-values): Try to use `x-color-values' when using XEmacs.
11357 (ps-print-page-p): Changed from defsubst to defun.
11358 (ps-page-number): Changed from defmacro to defun.
11359 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
11360 printing.
11361 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
11362 (ps-end-file, ps-dummy-page): Funs eliminated.
11363 (ps-print-color-scale): Changed default value.
11364 (ps-page-n-up, ps-print-page-p): New internal vars.
11365 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
11366 (ps-plot-region, ps-generate, ps-end-job): Code fix.
11367
11368 * delim-col.el: Little programming improvement.
11369 (delimit-columns-str): New macro.
11370 (delimit-columns-region, delimit-columns-rectangle): Code fix.
11371
11372 2000-10-31 Kenichi Handa <handa@etl.go.jp>
11373
11374 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
11375 Moved to european.el.
11376 (ccl-encode-mac-roman-font, fontset-mac): Modified for
11377 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
11378 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
11379 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
11380
11381 2000-10-30 Dave Love <fx@gnu.org>
11382
11383 * progmodes/cc-menus.el (imenu-generic-expression)
11384 (imenu-progress-message): Only defvar when compiling.
11385
11386 * emacs-lisp/elp.el (elp-unload-hook): New function.
11387
11388 * loadhist.el (unload-feature): Call elp-restore-function,
11389 checking for symbols; don't use elp-restore-all.
11390 (loadhist-hook-functions): Doc fix.
11391
11392 2000-10-30 Stefan Monnier <monnier@cs.yale.edu>
11393
11394 * log-edit.el (log-edit-confirm): Fix the default.
11395
11396 2000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11397
11398 * delim-col.el: Little fix: replace delimit-columns-align-columns by
11399 delimit-columns-format.
11400 (delimit-columns-region, delimit-columns-rectangle): Code fix.
11401
11402 2000-10-30 Miles Bader <miles@lsi.nec.co.jp>
11403
11404 * comint.el (comint-replace-by-expanded-history): Don't use
11405 comint-get-old-input (we're not looking at *old* input).
11406 (comint-get-old-input-default): If using fields, signal an error
11407 when the point is not in an input field.
11408
11409 2000-10-30 Kenichi Handa <handa@etl.go.jp>
11410
11411 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
11412 and mule-unicode-e000-ffff.
11413
11414 * international/mule.el (decode-char, encode-char): New functions.
11415 (make-coding-system): Accept a symbol of translation table as a
11416 value of property `safe-chars'.
11417
11418 * international/mule-cmds.el (encode-coding-char): Check property
11419 safe-chars instead of safe-charsets.
11420
11421 * international/fontset.el (fontset-default): Modified for
11422 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
11423 (x-font-name-charset-alist): Likewise.
11424 (ccl-encode-unicode-font): New CCL program. Record it in
11425 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
11426
11427 * language/european.el (mac-roman-decoder, mac-roman-encoder):
11428 New translation tables.
11429 (decode-mac-roman, encode-mac-roman): Definition of these CCL
11430 programs are modified and moved from mac-win.el.
11431 (mac-roman): Definition of this coding system is modified and
11432 moved from mac-win.el.
11433
11434 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
11435
11436 * ediff-wind.el (ediff-setup-control-frame): Enclose
11437 face-attribute in condition-case to avoid errors in older emacsen.
11438
11439 2000-10-29 Miles Bader <miles@gnu.org>
11440
11441 * custom.el (custom-add-to-group): Allow multiple entries for a
11442 given value OPTION, as long as their widget types are different.
11443 * cus-edit.el (custom-face-value-create): If face name doesn't end
11444 with "face", add such here (similar to custom group widgets).
11445
11446 * comint.el (comint-highlight-prompt): Add :type.
11447
11448 2000-10-28 John Wiegley <johnw@gnu.org>
11449
11450 * calendar/timeclock.el (timeclock-log): Doc fix.
11451 (timeclock-last-event): Doc fix.
11452 (timeclock-log): Kill the timelog buffer after appending a new event.
11453 (timeclock-find-discrep): Use a temp buffer to read in the
11454 timelog, instead of visiting the file.
11455 (timeclock-log-data): A new function, along with a host of helper
11456 functions, for the purpose of making timelog data accessible to
11457 programmers.
11458
11459 * eshell/esh-mode.el (window-height test): Make certain that
11460 `eshell-stringify-t' is non-nil.
11461 (eshell-password-prompt-regexp): Changed to a much simpler
11462 password regexp.
11463 (eshell-send-input): If `eshell-invoke-directly' returns t,
11464 directly invoke the parsed command using `eval'. This improves
11465 turn-around time on simple commands by a factor of three or
11466 greater, such as cd, ls, pwd, etc. -- which get used very often.
11467 It also conserves thousands of cons cells per call (since
11468 `eshell-do-eval' consumes memory like a Cookie Monster set loose
11469 in the Pacific Cookie Company).
11470
11471 * eshell/esh-test.el (eshell-test): Whitespace fix.
11472
11473 * eshell/em-ls.el (eshell-ls-insert-directory):
11474 Make `eshell-ls-initial-args' nil when inserting directory contents.
11475
11476 * eshell/em-script.el (eshell-script-initialize): Add names to
11477 `eshell-complex-commands, since `source' and `.' are complex.
11478
11479 * eshell/esh-cmd.el (eshell-rewrite-for-command)
11480 (eshell-rewrite-while-command): Use `eshell-protect' instead of
11481 `eshell-copy-handles'.
11482 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
11483 bodies.
11484 (eshell-separate-commands): Whitespace fix.
11485 (eshell-complex-commands): Added a new list of names, for
11486 determining whether a given command is as simple as it looks.
11487 (eshell-invoke-directly): New function. Returns t if a command
11488 should be invoked directly (using `eval'), rather than indirectly
11489 using `eshell-do-eval'.
11490 (eshell-do-eval): Whitespace fix.
11491
11492 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
11493 which provides an emulation of the DOS shell behavior of assuming
11494 that cp/mv/ln should copy/move/link to the current directory.
11495 (eshell-remove-entries): Added a doc string.
11496 (eshell-shuffle-files): Removed the check for `target' being null.
11497 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
11498 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
11499 it to do a smarter check of whether a destination was provided.
11500 (eshell/mv, eshell/cp): Enable `:preserve-args'.
11501 (eshell/ln): Enable `:preserve-args', and use
11502 `eshell-mvcpln-template' to implement the body of the function.
11503 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
11504 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
11505 list after flattening it. This makes it possible to cat files
11506 with numerical names.
11507 (eshell-unix-initialize): Added several names to
11508 `eshell-complex-commands.
11509 (eshell-unix-command-complex-p): Return t if a given command name
11510 may result in external processes being invoked.
11511
11512 * eshell/em-glob.el (eshell-glob-show-progress): Make this
11513 variable nil by default, since it slows down glob processing by a
11514 factor of two or more, and increases memory consumption.
11515
11516 * eshell/em-smart.el: Added a note about how memory consumptive
11517 smart display mode can be (at least this is true in Emacs 21).
11518 (eshell-smart-initialize): Whitespace fix.
11519 (eshell-refresh-windows): Use `if' instead of `when'.
11520 (eshell-smart-scroll-window): Calling `save-current-buffer' was
11521 not necessary.
11522 (eshell-currently-handling-window): Added a missing global variable.
11523
11524 * eshell/em-ls.el (eshell-do-ls): Code simplification.
11525 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
11526 Whitespace fix.
11527 (eshell-ls-exclude-hidden): Added this variable in addition to
11528 `eshell-ls-exclude-regexp'. This one prevents files beginning
11529 with . from even being read, which can improve memory consumption
11530 quite a bit.
11531 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
11532 read file entries beginning with a dot. In home directories with
11533 lots of hidden files, fully two-thirds of the time spent in ls is
11534 used to read directory entries that are immediately thrown away.
11535 (eshell-ls-initial-args): Added back this configuration variable,
11536 for specifying default initial arguments to every call to ls.
11537 Much faster than using an alias to do the same thing.
11538 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
11539 (eshell-ls-dir): Whitespace change.
11540
11541 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
11542
11543 * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
11544 (eshell-stringify-t): Added a customization variable, to indicate
11545 whether `t' should be rendered as a string at all. If not, one
11546 can still determine if the result of an expression is true using
11547 "file-exists-p FILE && echo true".
11548 (eshell-stringify): If `eshell-stringify-t' is nil, don't
11549 stringify t!
11550
11551 * eshell/esh-module.el: Whitespace fix.
11552
11553 * eshell/em-alias.el (eshell-alias-initialize):
11554 Added `eshell-command-aliased-p' to `eshell-complex-commands'.
11555 (eshell-command-aliased-p): New function that returns t if a
11556 command name names an aliased.
11557
11558 2000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
11559
11560 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
11561 redrawing the screen when changing cursor color.
11562 (viper-insert-state-pre-command-sentinel)
11563 (viper-replace-state-pre-command-sentinel)
11564 (viper-replace-state-post-command-sentinel):
11565 Use viper-preserve-cursor-color.
11566 Many functions changed to use viper= instead of = when comparing
11567 characters.
11568 * viper-util.el (viper-memq-char,viper=): New functions for
11569 working with characters.
11570 (viper-change-cursor-color): Fixed buglet.
11571 Many functions changed to use viper= instead of = when comparing
11572 characters.
11573 * viper.el (viper-insert-state-mode-list): Added eshell.
11574
11575 * ediff-init.el (ediff-before-setup-hook): New hook.
11576 Several typos fixed in various docstrings.
11577 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
11578 * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
11579 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
11580 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
11581 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
11582 (ediff-get-selected-buffers): New function.
11583 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
11584 (ediff-vc-merge-internal,ediff-rcs-merge-internal):
11585 Use save-window-excursion.
11586 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
11587 termination check in while loop.
11588 * ediff.el (ediff-get-default-file-name): Better defaults when in
11589 dired buffer.
11590 (ediff-files,ediff-merge-files,ediff-files3)
11591 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
11592
11593 2000-10-28 Dave Love <fx@gnu.org>
11594
11595 * info.el (Info-fontify-node): Add help-echo for menu items.
11596
11597 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
11598
11599 * startup.el (normal-top-level): If the value of $TERM indicates
11600 we are running from xterm or one of its work-alikes, default to a
11601 light background mode.
11602
11603 Support for -fg, -bg, and -rv command-line arguments for TTYs:
11604 * faces.el (tty-handle-reverse-video): New function.
11605 (tty-create-frame-with-faces): Call it.
11606
11607 * frame.el (frame-notice-user-settings): Don't apply
11608 default-frame-alist and initial-frame-alist to MS-DOS frames.
11609 Call tty-handle-reverse-video, frame-set-background-mode, and
11610 face-set-after-frame-default for non-MS-DOS frames.
11611
11612 * startup.el (tty-long-option-alist): New variable.
11613 (tty-handle-args): New function.
11614 (command-line): Call tty-handle-args.
11615
11616 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
11617 startup.el now does that for all character-terminal frames.
11618
11619 2000-10-28 Miles Bader <miles@gnu.org>
11620
11621 * emacs-lisp/easy-mmode.el (define-minor-mode):
11622 Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
11623 is global. If :global is followed by a non-nil but non-t value,
11624 make the mode buffer-local, but also generate a `global-MODE'
11625 version using `easy-mmode-define-global-mode'.
11626 Add :conditional-turn-on keyword argument.
11627
11628 2000-10-28 Dave Love <fx@gnu.org>
11629
11630 * international/latin1-disp.el (latin1-char-displayable-p):
11631 Don't use window-system.
11632
11633 2000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
11634
11635 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
11636 Don't call find-buffer-file-type-coding-system. Instead, just
11637 set eol-type to -unix if inhibit-eol-conversion is in effect, or
11638 if the file is on an untranslated filesystem.
11639 (add-untranslated-filesystem): Use "D" instead of "f" inside
11640 interactive.
11641
11642 2000-10-27 Dave Love <fx@gnu.org>
11643
11644 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
11645 (refill-mode): Use it.
11646
11647 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
11648
11649 * international/quail.el (quail-activate): Don't make-local-hook.
11650
11651 2000-10-27 Andre Spiegel <spiegel@gnu.org>
11652
11653 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
11654 manual backups and file.~<rev>.~ for automatic ones.
11655 (vc-make-version-backup): Don't do it on MS-DOS without long file
11656 names.
11657
11658 * vc.el (vc-version-other-window): If an automatic backup of the
11659 desired version exists, rename it instead of copying it.
11660
11661 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
11662 after command. If there's an unexpected error, signal it instead
11663 of being silent.
11664 (vc-cvs-merge-news): Be prepared for no news at all.
11665
11666 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
11667
11668 * shell.el (shell): Add BUFFER argument.
11669 * comint.el (make-comint-in-buffer): New function.
11670 (make-comint): Use it.
11671
11672 * faces.el (face-spec-choose): Change syntax so that the list of
11673 attribute-value pairs is now the cdr of each clause, not the cadr.
11674 Detect old-style entries, and handle them. Use pop.
11675
11676 2000-10-26 Stefan Monnier <monnier@cs.yale.edu>
11677
11678 * cus-edit.el (custom-mode-map): Use a sparse map.
11679 (custom-mode): Don't bother with make-local-hook.
11680
11681 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
11682
11683 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
11684
11685 2000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11686
11687 * ps-print.el: Avoid compilation gripes.
11688 (ps-print-version): New version number (6.2.1).
11689
11690 2000-10-26 Dave Love <fx@gnu.org>
11691
11692 * menu-bar.el: Modify some menu item help strings.
11693 (menu-bar-help-menu): Add link to MORE.STUFF.
11694
11695 * cus-edit.el (custom-mode): Add `special' mode-class property.
11696
11697 * wid-browse.el (widget-browse-mode): Likewise.
11698
11699 * wid-edit.el (widget-specify-field): Revert to using local-map
11700 property, not keymap.
11701
11702 2000-10-26 Miles Bader <miles@lsi.nec.co.jp>
11703
11704 * wid-edit.el (widget-field-end): When checking for a `boundary'
11705 field, do so in the correct buffer.
11706
11707 * simple.el (undo): Correctly distinguish between numeric and
11708 non-numeric prefix args in non-transient-mark-mode, as per the doc
11709 string. When in transient-mark-mode, treat all prefix-args as
11710 numeric.
11711
11712 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
11713 Position point on match. Handle N == 0 correctly.
11714
11715 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
11716 (comint-mode-map): Reverse order of `comint-write-output' and
11717 `comint-append-output-to-file'.
11718 (comint-append-output-to-file): Reinstate this function, for the
11719 benefit of the menu.
11720
11721 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
11722
11723 * vc.el (vc-version-other-window): Bind `file'.
11724
11725 2000-10-25 Gerd Moellmann <gerd@gnu.org>
11726
11727 * Makefile.in (update-authors): New target for maintenance purposes.
11728
11729 * emacs-lisp/authors.el (batch-update-authors): New function.
11730 (authors-fixed-entries): New defconst.
11731 (authors-add-fixed-entries): New function.
11732 (authors): Call it.: Don't process lispref/.
11733
11734 2000-10-25 Jason Rumney <jasonr@gnu.org>
11735
11736 * cus-edit.el (custom-button-face, custom-button-pressed-face):
11737 Merge x w32 and mac definitions.
11738
11739 2000-10-25 Gerd Moellmann <gerd@gnu.org>
11740
11741 * menu-bar.el (menu-bar-options-menu): Add a help string for
11742 `uniquify'.
11743
11744 2000-10-25 Stephen Gildea <gildea@stop.mail-abuse.org>
11745
11746 * time-stamp.el (time-stamp-string-preprocess):
11747 Fix a wrong type argument error.
11748
11749 2000-10-25 Miles Bader <miles@gnu.org>
11750
11751 * recentf.el (recentf-mode): Variable removed.
11752 (recentf-mode): Use `define-minor-mode'.
11753
11754 * mwheel.el (mouse-wheel-mode): New global minor mode.
11755 (mwheel-install): Use `mouse-wheel-mode'.
11756
11757 2000-10-25 Dave Love <fx@gnu.org>
11758
11759 * progmodes/cperl-mode.el (cperl-mode):
11760 Set normal-auto-fill-function correctly.
11761
11762 * wid-edit.el (widget-field-keymap, widget-text-keymap):
11763 Don't inherit from global-map and don't nullify menu-bar and tool-bar
11764 bindings.
11765
11766 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
11767
11768 * wid-edit.el (widget-field-at): New function.
11769 (widget-at, widget-field-activate): Use it.
11770 (widget-tabable-at): Use `widget-at'.
11771 (widget-specify-field): If the terminating character of the widget
11772 field (which is read-only) is a newline, put it into a special
11773 `boundary' field so that C-n/C-p act more naturally.
11774 (widget-field-end): Also don't subtract one if a special
11775 `boundary' field has been added after the widget field.
11776
11777 * comint.el (comint-output-filter, comint-send-input):
11778 Don't bother adding stickiness fields to overlays to fool the field
11779 code, since it should notice the overlay insertion-types now.
11780
11781 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
11782 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
11783 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
11784
11785 2000-10-24 Gerd Moellmann <gerd@gnu.org>
11786
11787 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
11788 (authors): Set file coding system to iso-2022-7bit.
11789 Add file-local variables to output buffer.
11790
11791 * files.el (after-find-file): Don't print any warnings if
11792 WARN is nil.
11793
11794 2000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11795
11796 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
11797
11798 * delim-col.el: Now there is a column formatting mechanism.
11799 Modified to customization mechanisms convention. Doc fix.
11800 (columns): New group for delim-col.
11801 (delimit-columns-before, delimit-columns-after)
11802 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
11803 (delimit-columns-end): New vars.
11804 (delimit-columns-customize, delimit-columns-format): New funs.
11805 (delimit-columns-region, delimit-columns-rectangle)
11806 (delimit-columns-rectangle-line): Modified to support column
11807 formatting.
11808
11809 2000-10-24 Dave Love <fx@gnu.org>
11810
11811 * log-edit.el (log-edit): Add :version and a :group for vc.
11812
11813 2000-10-24 Gerd Moellmann <gerd@gnu.org>
11814
11815 * files.el (after-find-file): Don't print a message ``New file''
11816 if WARN is nil.
11817
11818 * wid-edit.el (widget-field-keymap, widget-text-keymap):
11819 Define the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
11820 get duplicate tool-bar entries because we'll see the global ones
11821 on more than one path through keymaps.
11822
11823 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
11824
11825 * progmodes/cmacexp.el: Change Francesco's email address.
11826
11827 2000-10-24 Kenichi Handa <handa@etl.go.jp>
11828
11829 * window.el (fit-window-to-buffer): Adjust point of the window
11830 buffer, not that of the current buffer.
11831
11832 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
11833
11834 * progmodes/cmacexp.el: Update the euthor's email address.
11835
11836 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
11837
11838 * faces.el (face-spec-set-match-display): Add `graphic' display
11839 type (the inverse of `tty'). Use `display-graphic-p' instead of
11840 the window-system variable.
11841
11842 2000-10-24 Kenichi Handa <handa@etl.go.jp>
11843
11844 * international/isearch-x.el (isearch-with-input-method):
11845 Call input-method-function with the first event in
11846 unread-command-events.
11847
11848 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
11849
11850 * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
11851
11852 2000-10-24 Andrew Choi <akochoi@i-cable.com>
11853
11854 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
11855 New charsets.
11856
11857 * term/mac-win.el: Remove definitions of mac-roman-lower and
11858 mac-roman-upper, require dired, and define instead of set
11859 mac-ready-for-drag-n-drop to avoid compilation error.
11860
11861 2000-10-23 Andrew Innes <andrewi@gnu.org>
11862
11863 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
11864 Remove superfluous calls to subst-char-in-string; instead apply
11865 expand-file-name after convert-standard-filename to ensure
11866 expected directory separators are used.
11867
11868 2000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
11869
11870 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
11871
11872 2000-10-23 Dave Love <fx@gnu.org>
11873
11874 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
11875 (tool-bar-add-item): Set foreground and background for XBM icons.
11876
11877 * international/latin1-disp.el (latin1-char-displayable-p):
11878 New function (from Handa).
11879 (latin1-display-check-font): Use it.
11880
11881 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
11882 using :key-sequence, making it much more usable.
11883 Use nconc, not append.
11884 (imenu--create-keymap-1): Avoid append.
11885
11886 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
11887
11888 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
11889
11890 [the following changes fix a bug where `define-minor-mode' didn't
11891 correctly generate :require clauses for defcustoms in compiled files]
11892 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
11893 (byte-compile-log-file, byte-compile-log-1): Don't set
11894 `byte-compile-current-file' to nil. Instead set
11895 `byte-compile-last-logged-file' to it. Test whether
11896 byte-compile-current-file equals byte-compile-last-logged-file
11897 instead of whether its nil.
11898 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
11899
11900 2000-10-23 Stefan Monnier <monnier@cs.yale.edu>
11901
11902 * textmodes/refill.el: Fix var names in doc.
11903 (refill-mode): Don't bother with make-local-hook anymore.
11904
11905 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
11906
11907 * faces.el (face-user-default-spec, face-default-spec): New functions.
11908 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
11909 (frame-set-background-mode, face-set-after-frame-default):
11910 Use `face-user-default-spec'. Simplify code slightly.
11911
11912 * woman.el (woman-italic-face, woman-bold-face)
11913 (woman-unknown-face): Add dark-background variants.
11914 (woman-default-faces): Renamed from `woman-colour-faces'.
11915 Set using the stored defaults, rather than using hard-wired colors.
11916 (woman-monochrome-faces): Renamed from `woman-black-faces'.
11917 Just make the foreground `unspecified' rather than "black".
11918 (woman-menu): Rename menu entries accordingly.
11919
11920 * faces.el (header-line): Make more reasonable on mono/grayscale
11921 displays.
11922
11923 2000-10-23 Andrew Choi <akochoi@i-cable.com>
11924
11925 * cus-edit.el (custom-button-face): Use 3D look for mac.
11926 (custom-button-pressed-face): Likewise.
11927
11928 * faces.el (set-face-attributes-from-resources): Handle mac frames
11929 in the same way as x and w32 frames.
11930 (face-valid-attribute-values): Likewise.
11931 (read-face-attribute): Likewise.
11932 (defined-colors): Likewise.
11933 (color-defined-p): Likewise.
11934 (color-values): Likewise.
11935 (display-grayscale-p): Likewise.
11936 (face-set-after-frame-default): Likewise.
11937 (mode-line): Same default face as for x and w32.
11938 (tool-bar): Likewise.
11939
11940 * frame.el: Remove call to frame-notice-user-settings at end of
11941 the file.
11942
11943 * info.el (Info-fontify-node): Make underlines invisible for mac
11944 as for x, pc, and w32 frame types.
11945
11946 * term/mac-win.el: New file.
11947
11948 2000-10-22 Dave Love <fx@gnu.org>
11949
11950 * textmodes/refill.el: New file.
11951
11952 2000-10-22 Andre Spiegel <spiegel@gnu.org>
11953
11954 * vc-hooks.el (vc-version-backup-file-name): New optional args
11955 MANUAL and REGEXP.
11956 (vc-delete-automatic-version-backups, vc-make-version-backup):
11957 New functions.
11958 (vc-before-save): Use the latter.
11959 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
11960 confusion.
11961
11962 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
11963 expected by vc[-hooks].el.
11964
11965 * vc.el (vc-checkout): Added `-p' suffix in call to
11966 vc-make-version-backups-p; use vc-make-version-backup to actually
11967 make the backup.
11968 (vc-version-other-window, vc-version-backup-file): Handle both
11969 automatic and manual backups.
11970 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
11971 of all of them.
11972
11973 2000-10-22 Miles Bader <miles@gnu.org>
11974
11975 * comint.el (comint-highlight-input, comint-highlight-prompt):
11976 Renamed, `-face' at end removed.
11977 (comint-send-input, comint-output-filter): Use renamed faces.
11978
11979 * window.el (fit-window-to-buffer): Change defaulting of
11980 MAX-HEIGHT slightly.
11981
11982 * faces.el (color-values, color-defined-p): Use `member', not
11983 `memq', because it works correctly for strings.
11984 (frame-set-background-mode): Actually, "unspecified-fg" and
11985 "unspecified-bg" *are* strings. Use `member', not `memq', and
11986 `equal', not `eq', when a string value is possible.
11987
11988 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
11989
11990 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
11991
11992 2000-10-21 Stefan Monnier <monnier@cs.yale.edu>
11993
11994 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
11995 sh-electric-rparen, sh-electric-less and sh-electric-hash.
11996 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
11997 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
11998 (sh-font-lock-syntactic-keywords): Use them.
11999 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
12000 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
12001 (sh-mode): Don't override font-lock-unfontify-region-function.
12002 Use a copy of sh-font-lock-syntactic-keywords.
12003 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
12004 Don't call sh-scan-buffer since font-lock does it on the fly.
12005 (sh-get-indent-info): Use `face' rather than `syntax-table'
12006 text-property to detect here-documents.
12007 Replace sh-special-syntax with sh-st-punc.
12008 (sh-prev-line): Use `face' rather than `syntax-table'
12009 text-property to skip over here-documents.
12010 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
12011 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
12012 (sh-electric-less, sh-set-here-doc-region)
12013 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
12014 (sh-scan-buffer, sh-rescan-buffer): Remove.
12015
12016 2000-10-21 Andrew Innes <andrewi@gnu.org>
12017
12018 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
12019 remote (ange-ftp) file names.
12020
12021 2000-10-21 Miles Bader <miles@gnu.org>
12022
12023 * window.el (fit-window-to-buffer): New function.
12024 (shrink-window-if-larger-than-buffer): Use it.
12025 (window-text-height): Don't expect minibuffers to have mode-lines.
12026
12027 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
12028 * international/quail.el (quail-update-guidance):
12029 Use `fit-window-to-buffer' instead of `set-window-text-height'.
12030
12031 * international/quail.el (quail-show-guidance-buf): Make sure
12032 guidance window really has enough room.
12033 (quail-update-guidance): If quail-guidance-win is already shown,
12034 make sure its height is OK.
12035
12036 * window.el (window-text-height, set-window-text-height):
12037 New functions.
12038 (shrink-window-if-larger-than-buffer): Use `window-text-height'
12039 instead of `window-height' & `mode-line-window-height-fudge'.
12040 (mode-line-window-height-fudge): Add FACE parameter.
12041 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
12042 instead of `enlarge-window' & `mode-line-window-height-fudge'.
12043
12044 2000-10-20 Miles Bader <miles@gnu.org>
12045
12046 * window.el (height-affecting-face-attributes): Use `defconst'.
12047
12048 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
12049 New function, conditionally aliased to `mode-line-window-height-fudge'.
12050 (ispell-help): Use it.
12051 (ispell-choices-win-default-height): Don't include mode-line fudge.
12052 (ispell-choices-win-default-height): New function.
12053 (ispell-show-choices, ispell-command-loop): Use function
12054 `ispell-choices-win-default-height' instead of variable.
12055
12056 2000-10-20 Miles Bader <miles@lsi.nec.co.jp>
12057
12058 * window.el (mode-line-window-height-fudge): New variable.
12059 (height-affecting-face-attributes): New variable.
12060 (mode-line-window-height-fudge): New function.
12061 (shrink-window-if-larger-than-buffer): Use it.
12062 * help.el (resize-temp-buffer-window): Likewise.
12063
12064 * info.el (Info-fontify-node): Add support for @subsubsection
12065 titles, which use `Info-title-4-face'.
12066 (Info-title-4-face): New face.
12067 (Info-title-3-face): Inherit from Info-title-4-face instead of
12068 variable-pitch.
12069
12070 2000-10-19 Jason Rumney <jasonr@gnu.org>
12071
12072 * dired.el (dired-insert-directory): Do not let errors signalled by
12073 attempt to run dired-free-space-program prevent dired from working.
12074
12075 2000-10-19 Stefan Monnier <monnier@cs.yale.edu>
12076
12077 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
12078
12079 2000-10-19 Gerd Moellmann <gerd@gnu.org>
12080
12081 * dirtrack.el (dirtrack): Fix call to run-hooks.
12082
12083 * cmuscheme.el (cmuscheme-program-name): Renamed from
12084 scheme-program-name because xscheme.el contains a defcustom with
12085 the same name. As a consequence, customizing group `cmuscheme'
12086 loaded `xscheme' which redefined run-scheme.
12087 (run-scheme): Use cmuscheme-program-name.
12088
12089 * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
12090
12091 * play/doctor.el (doctor-death): Update the Samaritans'
12092 anonymous address, and add a website for Befrienders International.
12093
12094 2000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12095
12096 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
12097 Avoid compilation gripes. Doc fix.
12098 (ps-print-version): New version number (6.2).
12099 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
12100 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
12101 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
12102 (ps-x-extent-priority, ps-x-extent-start-position)
12103 (ps-x-face-font-instance, ps-x-find-coding-system)
12104 (ps-x-font-instance-properties, ps-x-make-color-instance)
12105 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
12106 avoid compilation gripes without defining functions.
12107 (ps-e-find-composition): Alias for function find-composition, to have a
12108 suitable function depending on Emacs version.
12109 (ps-color-device, ps-color-values, ps-face-foreground-name)
12110 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
12111 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
12112 (ps-print-ensure-fontified): Function definitions surrounded by
12113 `eval-and-compile' to avoid compilation gripes.
12114 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
12115 by symbol-value to avoid compilation gripes.
12116 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
12117 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
12118
12119 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
12120
12121 * startup.el (normal-top-level): Call `frame-set-background-mode'
12122 after `frame-notice-user-settings' because the latter doesn't call
12123 the former on a tty.
12124
12125 * faces.el (frame-set-background-mode): `unspecified' &c are
12126 symbols, not strings.
12127
12128 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
12129
12130 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
12131 why some "light*" colors are deliberately absent from the alist.
12132
12133 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
12134 Change colors for tty's, as suggested by Miles Bader.
12135
12136 2000-10-19 Kenichi Handa <handa@etl.go.jp>
12137
12138 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
12139 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
12140 for ISO10646-1 fonts.
12141 (x-font-name-charset-alist): Add an entry for "iso10646-1".
12142
12143 2000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
12144
12145 * faces.el (frame-set-background-mode): If a tty frame defines a
12146 background color, use that to compute the background mode, instead
12147 of always defaulting to "dark".
12148
12149 2000-10-19 Miles Bader <miles@lsi.nec.co.jp>
12150
12151 * comint.el (comint-write-output): New function.
12152 (comint-mode-map): Add it to the menu.
12153 Bind `C-c C-s' to comint-write-output.
12154
12155 2000-10-18 Gerd Moellmann <gerd@gnu.org>
12156
12157 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
12158 Use fancy-splash-delay.
12159
12160 2000-10-18 Alex Schroeder <alex@gnu.org>
12161
12162 * progmodes/sql.el (sql-sybase-options): New option.
12163 (sql-sybase): Use it. Add sql-database to the list of parameters
12164 provided for login. The options -w 2048 -n are not used any more.
12165
12166 * comint.el (comint-read-input-ring): Bugfix such that the first
12167 and the last entry of the input ring file are not lost.
12168
12169 2000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12170
12171 * ps-print.el: Internal variable changes to defcustom,
12172 make-local-hook changes to defvar. Doc fix.
12173 (ps-print-version): New version number (6.1).
12174 (ps-setup, ps-do-despool): Code fix.
12175 (ps-printer-name): Customization fix.
12176 (ps-printer-name-option): Now is a defcustom instead of an
12177 internal variable.
12178 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
12179 (ps-print-begin-column-hook): Now are defvar instead of
12180 make-local-hook.
12181
12182 2000-10-18 Miles Bader <miles@gnu.org>
12183
12184 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
12185 (comint-kill-output): Changed into an alias for `comint-delete-output',
12186 and made obsolete.
12187 (comint-mode-map): Rename references to comint-kill-output.
12188
12189 2000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
12190
12191 * diff-mode.el (diff-header-face, diff-file-header-face)
12192 (diff-changed-face): Add bold and italic attributes to tty faces.
12193 (diff-function-face): New face.
12194 (diff-font-lock-keywords): Use it.
12195
12196 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
12197
12198 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
12199 Remove commented-out call to force-mode-line-update.
12200 (comint-kill-output): Use `forward-line 0' instead of
12201 beginning-of-line to make sure we get past the prompt.
12202
12203 2000-10-17 Stefan Monnier <monnier@cs.yale.edu>
12204
12205 * diff-mode.el (diff-header-face, diff-file-header-face):
12206 Add specific setting for dark background.
12207 (diff-context-face): Renamed from diff-comment-face.
12208 Set explicitly rather than inheriting from font-lock-comment-face.
12209
12210 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12211
12212 * startup.el (command-line): Move the code which sets the default
12213 TTY colors to before before-init-hook.
12214
12215 2000-10-17 Gerd Moellmann <gerd@gnu.org>
12216
12217 * jit-lock.el (jit-lock-stealth-time): Doc fix.
12218
12219 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12220
12221 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
12222 extensions, for MS-DOS.
12223
12224 * diff-mode.el (diff-header-face, diff-file-header-face)
12225 (diff-changed-face): Define tty-specific colors.
12226
12227 2000-10-17 Gerd Moellmann <gerd@gnu.org>
12228
12229 * startup.el (fancy-splash-text): Realign the text.
12230
12231 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12232
12233 * font-lock.el (font-lock-comment-face): Define a separate default
12234 for dark-background tty's.
12235
12236 2000-10-17 Miles Bader <miles@gnu.org>
12237
12238 * help.el (resize-temp-buffer-window): Add hack to avoid last line
12239 being obscured by whizzy mode-lines on graphics displays.
12240
12241 2000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
12242
12243 * info.el (Info-title-1-face, Info-title-2-face)
12244 (Info-title-3-face): Define colors for tty's.
12245 (info-header-node): Remove unneeded tty-specific definition.
12246
12247 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
12248
12249 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
12250 reverse from the frame parameters, and don't invert foreground and
12251 background colors.
12252
12253 2000-10-16 Miles Bader <miles@gnu.org>
12254
12255 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
12256 string "*Info*". Call propertized-buffer-identification to spruce
12257 up the result.
12258
12259 2000-10-16 Gerd Moellmann <gerd@gnu.org>
12260
12261 * help.el: Provide `help' for the sake of define-minor-mode
12262 which generates defcustoms with requires.
12263
12264 * jit-lock.el (jit-lock-after-change): If we're in text that
12265 matches a multi-line font-lock pattern, make sure the whole text
12266 will be redisplayed.
12267
12268 * emacs-lisp/authors.el (authors-add): Don't add an entry if
12269 author's name is unknown.
12270
12271 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
12272 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
12273 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
12274 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
12275 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
12276 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
12277 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
12278 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
12279 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
12280 Add author information.
12281
12282 2000-10-16 Miles Bader <miles@lsi.nec.co.jp>
12283
12284 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
12285 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
12286 full-color version (using the Gimp) to eliminate dithering artifacts.
12287
12288 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
12289
12290 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
12291
12292 * simple.el (syntax-flag-table, string-to-syntax): Remove.
12293
12294 2000-10-15 Dave Love <fx@gnu.org>
12295
12296 * progmodes/sh-script.el: Require skeleton and comint when compiling.
12297
12298 * pcomplete.el (pcomplete) <defgroup>: Add :version.
12299
12300 * whitespace.el: Doc fixes.
12301 (top-level): Don't add hooks here.
12302 (whitespace-running-emacs): Deleted.
12303 (timer): Don't require.
12304 (whitespace): Add back :version conditional on xemacs test.
12305 (whitespace-spacetab-regexp, whitespace-indent-regexp)
12306 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
12307 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
12308 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
12309 Avoid specific xemacs test.
12310 (whitespace-global-mode): New option.
12311 (whitespace-global-mode): New command.
12312 (whitespace-unload-hook): New function.
12313
12314 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
12315 (Info-fontify-node, Info-goto-node, Info-mode-menu)
12316 (Info-fontify-node): `Goto' goes to `Go to'.
12317 (Info-fontify-node): Add help-echo to xref links.
12318
12319 2000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
12320
12321 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
12322
12323 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
12324
12325 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
12326 Use plist-get and allow :inherit.
12327
12328 * emacs-lisp/cl-macs.el (cl-do-arglist):
12329 Use plist-get and plist-member instead of memq.
12330
12331 * emacs-lisp/ewoc.el (ewoc-location): New function.
12332 (ewoc-enter-after, ewoc-enter-before): Document return value.
12333 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
12334 Don't need make-local-hook any more.
12335 (cvs-addto-collection): Return the new tin.
12336 (cvs-mode-insert): Jump to the new line.
12337
12338 * jit-lock.el (jit-lock-fontify-buffer): Remove.
12339
12340 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
12341
12342 * font-lock.el (font-lock-syntactically-fontified): New var.
12343 (font-lock-fontify-syntactic-keywords-region): Use it.
12344 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
12345
12346 * diff-mode.el (diff-find-file-name): Fix regexp.
12347
12348 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
12349 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
12350
12351 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
12352 (sh-mode-syntax-table): Add punctuation syntax for < and >.
12353 (sh-mode): Don't make all vars local here.
12354 (sh-kw): Reformat.
12355 (sh-set-shell): Use dolist. Don't set indent-region-function.
12356 (sh-mode-syntax-table): Use pop.
12357 (sh-remember-variable): Use push.
12358 (sh-help-string-for-variable): Use memq.
12359 (sh-safe-backward-sexp): Remove.
12360 (sh-safe-forward-sexp): Add ARG.
12361 (sh-get-indent-info, sh-prev-stmt): Use it.
12362 (sh-prev-line): Simplify by using forward-comment.
12363 (sh-this-is-a-continuation): Simplify.
12364 (sh-learn-buffer-indent): Use dolist.
12365 (sh-do-nothing): Remove.
12366 (sh-set-char-syntax, sh-set-here-doc-region):
12367 Use inhibit-modification-hooks.
12368 (sh-name-style): Use mapcar and push.
12369 (sh-load-style): Use dolist.
12370 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
12371 (sh-case, sh-while-getopts): Use propertize directly rather
12372 than sh-electric-rparen.
12373
12374 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
12375
12376 * textmodes/tex-mode.el: Require CL when compiling.
12377 (tex-mode-syntax-table): Init immediately.
12378 (tex-mode-map): Bind M-RET to latex-insert-item.
12379 (latex-mode): Set indent-line-function to latex-indent.
12380 (tex-common-initialization): Don't setup the syntax-table any more.
12381 (latex-insert-item): New skeleton.
12382 (tex-next-unmatched-end): Fix copy/paste braino.
12383 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
12384 (latex-indent, latex-find-indent): New functions.
12385 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
12386 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
12387 (tex-compilation-parse-errors): Use with-syntax-table.
12388
12389 2000-10-15 Miles Bader <miles@gnu.org>
12390
12391 * font-lock.el (font-lock-comment-face): Change dark-background,
12392 color, non-tty, default to `chocolate1'.
12393
12394 2000-10-13 John Wiegley <johnw@gnu.org>
12395
12396 * eshell/esh-util.el (require): Added a missing `require' form,
12397 needed when compiling (for an ange-ftp macro definition).
12398
12399 2000-10-13 Dave Love <fx@gnu.org>
12400
12401 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
12402
12403 2000-10-13 Gerd Moellmann <gerd@gnu.org>
12404
12405 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
12406
12407 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
12408 transparent -colors 8).
12409
12410 2000-10-13 Stephen Gildea <gildea@stop.mail-abuse.org>
12411
12412 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
12413 that breaks with old list format timestamps.
12414 (time-stamp-warn-inactive, time-stamp-old-format-warn)
12415 (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
12416
12417 2000-10-13 John Wiegley <johnw@gnu.org>
12418
12419 * align.el, pcomplete.el, calendar/timeclock.el,
12420 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
12421
12422 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
12423 faulty math, where holiday hours were being computing as seconds.
12424
12425 2000-10-13 John Wiegley <johnw@gnu.org>
12426
12427 * desktop.el (desktop-buffer-modes-to-save): Added a global for
12428 specifying what "other" kinds of buffers should be saved.
12429 This used to be hard-coded.
12430 (desktop-buffer-misc-functions): A global for specifying how
12431 auxiliary data should be determined for special buffer types.
12432 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
12433 instead of hard-coding the special buffer types.
12434 (desktop-save): Run `desktop-buffer-misc-functions' to gather
12435 auxiliary data, instead of hard-coding for Info buffers and dired.
12436 (desktop-buffer-info-misc-data): Aux function for determining Info
12437 buffer auxiliary info.
12438 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
12439 (desktop-buffer-info): Changed this function to use the info
12440 gathered above.
12441 (desktop-create-buffer): Be a little more careful about what
12442 `minor-mode' means before calling it. This is important for some
12443 buffer types.
12444
12445 2000-10-13 John Wiegley <johnw@gnu.org>
12446
12447 * eshell/esh-util.el: Added a global form which declares an
12448 autoload for `parse-time-string', if that function is not already
12449 defined, and if parse-time.el is available on the user's system.
12450
12451 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
12452 to be aware of ange-ftp user info.
12453 (eshell-do-ls): Bind `ange-cache'. Also, use `eshell-file-attributes'.
12454 (eshell-ls-annotate): Use `eshell-file-attributes'.
12455 (eshell-ls-file): Made the user-id printing code a bit smarter.
12456
12457 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
12458 allow identification of alias user ids in remote directories.
12459 It's manual, but there's no other way to know when the current user
12460 on the local machine, is also the owning user on the remote machine.
12461 (fboundp): Bind `ange-cache'.
12462 (eshell-directory-files-and-attributes): Re-organized the logic a
12463 bit to use `eshell-file-attributes' instead of `file-attributes'.
12464 The former is more sensitive to directories that are read via FTP,
12465 and knows how to use ange-ftp to determine full attribute
12466 information, instead of just the name and last modtime.
12467 (eshell-current-ange-uids): Return the current user id when in a
12468 remote directory.
12469 (eshell-parse-ange-ls): Parse a full directory listing that has
12470 been returned by ange-ftp.
12471 (eshell-file-attributes): This beefed up version of
12472 `file-attributes' is only special if the user is currently in a
12473 remote directory, in which case it does a lot of work to find out
12474 what the real attributes of a file are, as they appear on the
12475 remote machine. This makes usage of remote directories (i.e.,
12476 ange-ftp pathnames) much more useful. You can now use Eshell as a
12477 full-fledged FTP client, with much more manipulation ability than
12478 most other clients.
12479
12480 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
12481 variable, which means that Eshell's du should always be preferred
12482 in remote directories.
12483 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
12484 just `file-attributes'.
12485 (eshell-mvcp-template): Bind `ange-cache', to improve performance
12486 when reading remote directories. This is an Eshell-specific
12487 variable (not part of ange-ftp).
12488 (eshell/ln): Bind `ange-cache'.
12489 (eshell/du): Added some extra logic for determining when to use
12490 Eshell's du (which is slow), and when to use the external version
12491 (which may or may not exist).
12492
12493 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
12494 Call `eshell-interactive-process', rather than using
12495 `get-buffer-process', since backgrounded processes don't count in
12496 the context of this function's logic.
12497
12498 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
12499 `forward-char', so that null strings are parsed correctly.
12500
12501 2000-09-13 John Wiegley <johnw@gnu.org>
12502
12503 * eshell/em-pred.el (eshell-pred-file-type)
12504 (eshell-pred-file-links, eshell-pred-file-size):
12505 Use `eshell-file-attributes'. This is more correct over ange-ftp.
12506
12507 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
12508 that remote file globbing is more efficient.
12509
12510 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
12511 gathering the files and attributes within a directory.
12512
12513 * eshell/em-unix.el (eshell/cat): If any of the files passed on
12514 the command line is a special file (not a regular file, directory
12515 or symlink), always attempt to call the external version of cat.
12516
12517 2000-09-13 John Wiegley <johnw@gnu.org>
12518
12519 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
12520 Eshell-friendly version of find-tag.
12521
12522 2000-10-13 Miles Bader <miles@lsi.nec.co.jp>
12523
12524 * image-file.el (image-file-name-extensions)
12525 (image-file-name-regexps): Add autoload cookies.
12526
12527 2000-10-13 Kenichi Handa <handa@etl.go.jp>
12528
12529 * international/mule-cmds.el (select-safe-coding-system): If FROM
12530 is string, show it in *Warning* buffer.
12531
12532 2000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
12533
12534 * startup.el (normal-top-level): Use display-popup-menus-p instead
12535 of window-system.
12536 (command-line): Use display-graphic-p instead of window-system.
12537 (command-line-1): Use display-popup-menus-p and display-mouse-p
12538 instead of window-system.
12539
12540 2000-10-12 Sam Steingold <sds@gnu.org>
12541
12542 * tooltip.el (tooltip-use-echo-area): New user variable.
12543 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
12544
12545 2000-10-12 Dave Love <fx@gnu.org>
12546
12547 * recentf.el: Maintainer's checkdoc fixes.
12548
12549 * startup.el (normal-top-level-add-subdirs-to-load-path):
12550 Use character class, not ASCII when matching file names.
12551 (fancy-splash-head): Add trailing slash to URL.
12552 (command-line): Don't require XPM support for toolbar.
12553
12554 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
12555 (cperl-invalid-face): Revert last change.
12556 (cperl-init-faces): Quote cperl-invalid-face.
12557
12558 2000-10-12 Kenichi Handa <handa@etl.go.jp>
12559
12560 * startup.el (fancy-splash-text): Remove superfluous quote.
12561
12562 2000-10-12 Gerd Moellmann <gerd@gnu.org>
12563
12564 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
12565 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
12566 (command-line-1): Don't use fancy-splash-pending-command.
12567 (fancy-splash-screens-1): Goto point-min after inserting text.
12568
12569 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
12570
12571 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
12572 instead of shared-lisp-mode-map.
12573
12574 2000-10-12 Miles Bader <miles@lsi.nec.co.jp>
12575
12576 * faces.el (header-line): Change tty-variant to use underlining.
12577
12578 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
12579 (isearch-highlight): Restore lazy-isearch face properties at old
12580 position, and suppress them at new position.
12581 (isearch-dehighlight): Restore lazy-isearch face properties.
12582 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
12583 over the real isearch overlay, but in that case, don't give it a
12584 face property. Use `push'.
12585
12586 2000-10-12 Kenichi Handa <handa@etl.go.jp>
12587
12588 * man.el (Man-getpage-in-background): Fix previous change.
12589 Decode the process output only when we are in multibyte mode.
12590
12591 2000-10-11 Dave Love <fx@gnu.org>
12592
12593 * info.el (Info-mode-menu): Fix some help.
12594 (info-tool-bar-map): Add entry for Info-last.
12595
12596 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
12597 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
12598 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
12599 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
12600 * toolbar/search-replace.xpm, toolbar/exit.xpm:
12601 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
12602 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
12603 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
12604 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
12605 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
12606 Reduce colour requirements to 25 overall. (Probably wants
12607 revisiting from the originals to reduce further.)
12608
12609 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
12610
12611 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
12612 buffer-file-coding-system, instead of raw-text.
12613 (dehexlify-buffer): Bind coding-system-for-read to
12614 buffer-file-coding-system, instead of raw-text.
12615
12616 2000-10-11 Sam Steingold <sds@gnu.org>
12617
12618 * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
12619 `underline' - fixes the bug introduced on 2000-09-21.
12620
12621 2000-10-11 Dave Love <fx@gnu.org>
12622
12623 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
12624 Avoid compiler warnings.
12625 (scheme-mode): Doc fix.
12626 (scheme-font-lock-keywords-1): Match `define-syntax'.
12627
12628 2000-10-11 Miles Bader <miles@lsi.nec.co.jp>
12629
12630 * faces.el (frame-set-background-mode): Pay attention to saved
12631 face specs as well as default ones. Only do anything if the
12632 bg-mode or display-type has actually changed. Use `dolist'.
12633 (region): Make dark-background `region' face less in-your-face.
12634
12635 2000-10-10 Sam Steingold <sds@gnu.org>
12636
12637 * chistory.el, ielm.el, ledit.el:
12638 * progmodes/inf-lisp.el, progmodes/scheme.el:
12639 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
12640
12641 2000-10-10 Stefan Monnier <monnier@cs.yale.edu>
12642
12643 * textmodes/texinfo.el: Update copyright and fix typo.
12644
12645 * desktop.el (desktop-modes-not-to-save): New var.
12646 (desktop-save-buffer-p): Use it.
12647 Also, obey desktop-buffers-not-to-save even for non-file buffers.
12648 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
12649
12650 2000-10-10 Dave Love <fx@gnu.org>
12651
12652 * toolbar/tool-bar.el (tool-bar-add-item)
12653 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
12654
12655 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
12656 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
12657 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
12658 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
12659 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
12660 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
12661 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
12662 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
12663 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
12664 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
12665 the .xpms; probably need retouching.
12666
12667 2000-10-10 Miles Bader <miles@lsi.nec.co.jp>
12668
12669 * subr.el (add-to-list): Add optional argument APPEND.
12670 * battery.el (display-battery): Use `add-to-list'.
12671
12672 2000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
12673
12674 * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
12675 properties.
12676 (zone, zone-when-idle, zone-leave-me-alone)
12677 (zone-pgm-whack-chars): Use new symbol properties.
12678
12679 * battery.el (display-battery): Doc spelling fix.
12680
12681 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
12682 property.
12683
12684 2000-10-09 Dave Love <fx@gnu.org>
12685
12686 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
12687 has been initialized before calling tool-bar-setup.
12688 (tool-bar-add-item-from-menu): Add autoload cookie.
12689
12690 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
12691
12692 * menu-bar.el (send-mail-item-name): New function.
12693 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
12694 of mail-user-agent in the menu. Don't display the "Send Mail"
12695 item if mail-user-agent is nil or its value is ignore.
12696 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
12697 if read-mail-command is nil or its value is ignore.
12698
12699 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
12700
12701 2000-10-09 Miles Bader <miles@gnu.org>
12702
12703 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
12704 Correct image size.
12705 * toolbar/left_arrow.xpm: Correct image size.
12706
12707 * jka-compr.el: Don't call `jka-compr-install' when loading (it
12708 will be done by the definition of `auto-compression-mode' if
12709 necessary. Move code to uninstall existing file-name handler
12710 before definition of `auto-compression-mode'.
12711
12712 * image-file.el (auto-image-file-mode): Move to the end of the
12713 file, because `define-minor-mode' actually calls the mode-function
12714 if the associated variable is non-nil, which requires that all
12715 needed functions be already defined.
12716
12717 * mouse.el (popup-menu): Balance parens.
12718
12719 2000-10-08 Stefan Monnier <monnier@cs.yale.edu>
12720
12721 * mouse.el (popup-menu): Move the command call outside the loop
12722 so that popup-menu returns whatever the command returns.
12723
12724 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
12725 (initialize-new-tags-table): Use run-hook-with-args-until-success.
12726 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
12727 (tags-table-format-functions): Renamed from tags-table-format-hooks.
12728
12729 * vc.el (vc-version-diff): diff-switches can be a list.
12730 Use relative filenames for prettier output.
12731
12732 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
12733 (vc-post-command-functions): Remove old-VC compatibility code.
12734
12735 * newcomment.el (comment-indent-default): Autoload.
12736
12737 * font-lock.el (font-lock-defaults): Make buffer-local.
12738 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
12739 (font-lock-choose-keywords):
12740 Ignore LEVEL unless KEYWORDS is a list of syms.
12741 (c-keywords, c++-keywords, objc-keywords, java-keywords):
12742 Don't wrap regexp-opt things in \(...\) unnecessarily.
12743
12744 * jit-lock.el: Don't require font-lock any more.
12745 (jit-lock-functions): Make buffer-local.
12746 (jit-lock-saved-fontify-buffer-function): Remove.
12747 (jit-lock-mode): Remove autoload cookie.
12748 Remove font-lock specific code.
12749 (jit-lock-unregister): Don't bother handling complex hooks any more.
12750 (jit-lock-refontify): New function.
12751 (jit-lock-fontify-buffer): Use it.
12752 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
12753 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
12754 Add optional args START and END.
12755 Never call font-lock-fontify-region directly.
12756 (jit-lock-function, jit-lock-stealth-fontify): Use it.
12757
12758 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
12759
12760 2000-10-08 Dave Love <fx@gnu.org>
12761
12762 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
12763
12764 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
12765
12766 * play/studly.el (studlify-region, studlify-word): Add autoload
12767 cookie.
12768
12769 * play/morse.el (morse-region, unmorse-region): Add autoload
12770 cookie.
12771
12772 * play/spook.el (spook-phrases-file): Use expand-file-name, not
12773 concat.
12774
12775 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
12776 insist on symbols starting with word syntax.
12777 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
12778 (eval-defun-1): Doc fix.
12779 (indent-sexp): Use nconc to build up indent-stack.
12780
12781 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
12782 Gnus with little use.
12783 (mail-setup-hook): Add mail-abbrevs-setup to options.
12784
12785 * recentf.el: Doc fixes.
12786
12787 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
12788 Clean up remainder.
12789
12790 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
12791 without timezone and (8) with timezone to enforce some whitespace.
12792 Simplify code somewhat.
12793
12794 * options.el (list-options): Doc that you should use customize.
12795
12796 * iswitchb.el (iswitchb-mode): Add :require.
12797
12798 * info.el (Info-goto-node, Info-menu): Doc fix.
12799 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
12800 (info-tool-bar-map): New variable.
12801 (Info-mode): Use it.
12802 (Info-edit-map): Define all in defvar.
12803 (speedbar-attached-frame): Avoid compiler warning.
12804
12805 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
12806 (global-map): Bind [tool-bar] to a filtered map.
12807 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
12808 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
12809 Allow PBM icons.
12810 (tool-bar-setup): Adjust calls of tool-bar-add-item.
12811
12812 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
12813 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
12814 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
12815 icons, except up_arrow, which is left-arrow rotated.
12816
12817 * imenu.el (imenu-add-to-menubar): Fix last change.
12818
12819 2000-10-08 Peter Breton <pbreton@ne.mediaone.net>
12820
12821 * generic-x.el (rul-generic-mode): Remove eval-when-compile
12822 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
12823
12824 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
12825
12826 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
12827 typos in doc strings.
12828
12829 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
12830 the doc strings how to customize Font Lock faces.
12831
12832 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
12833 computing growth when dragging the header line.
12834
12835 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
12836
12837 * simple.el (kill-line): Doc fix.
12838
12839 2000-10-08 Miles Bader <miles@gnu.org>
12840
12841 * faces.el (secondary-selection): Make foreground visible on tty.
12842
12843 * jka-compr.el (auto-compression-mode): Move to the end of the
12844 file, because `define-minor-mode' actually calls the mode-function
12845 if the associated variable is non-nil, which requires that all
12846 needed functions be already defined.
12847 (with-auto-compression-mode): Add autoload cookie.
12848
12849 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
12850
12851 * files.el (find-backup-file-name) [ms-dos]: If support for long
12852 file names is not available, behave as if version-control were set
12853 to never.
12854
12855 2000-10-07 Dave Love <fx@gnu.org>
12856
12857 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
12858 (browse-url-gnome-moz): New function.
12859 (browse-url-browser-function): Use it.
12860 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
12861
12862 2000-10-07 Stefan Monnier <monnier@cs.yale.edu>
12863
12864 * indent.el (tab-always-indent): New var.
12865 (indent-for-tab-command): Use it.
12866
12867 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
12868 raise an error. This way it can still default to a sane value.
12869
12870 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
12871
12872 * startup.el (fancy-splash-screens): Use local rather than global map.
12873 Don't use `update-menu-bindings' any more.
12874 Get rid of assumptions about keymap representation.
12875
12876 2000-10-06 Dave Love <fx@gnu.org>
12877
12878 * textmodes/fill.el (sentence-end-double-space)
12879 (sentence-end-without-period): Doc fix.
12880 (adaptive-fill-regexp): Purecopy.
12881 (unjustify-current-line): Use line-end-position.
12882 (fill-individual-paragraphs-prefix): Use line-beginning-position.
12883
12884 * net/eudc-vars.el (eudc): Add :version, :link.
12885
12886 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
12887
12888 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
12889 Fix for define-minor-mode.
12890 (function-at-point): Alias to function-called-at-point.
12891
12892 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
12893
12894 * simple.el (backward-word): Doc fix.
12895
12896 * image-file.el (image-file-name-regexp): image-file-regexps ->
12897 image-file-name-regexps.
12898 (image-file-name-extensions): Add pbm.
12899
12900 2000-10-06 Stefan Monnier <monnier@cs.yale.edu>
12901
12902 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
12903 and add filename to the names so that diff-mode can jump to source.
12904
12905 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
12906 (tex-font-lock-keywords, tex-font-lock-keywords-2)
12907 (tex-font-lock-keywords-1): Remove.
12908 (font-lock-turn-on-thing-lock): Use jit-lock-register.
12909 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
12910 (font-lock-default-fontify-region):
12911 Expand beg..end correctly when just following a multiline region.
12912 (font-lock-fontify-anchored-keywords):
12913 Include the anchor text as part of the multiline.
12914
12915 2000-10-06 Gerd Moellmann <gerd@gnu.org>
12916
12917 * loadup.el (toplevel): Load `loaddefs' before `help' because the
12918 latter needs the autoloaded define-minor-mode macro during the
12919 bootstrap.
12920
12921 * startup.el (command-line): For now, activate tool-bar-mode only
12922 if XPM images are supported.
12923
12924 * mouse.el (mouse-drag-header-line): Don't allow resizing a
12925 window by dragging a header-line at the top of the frame; that's
12926 confusing because the header-line doesn't move.
12927 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
12928 of treating the event as a list. Some cleanup.
12929
12930 2000-10-06 Miles Bader <miles@gnu.org>
12931
12932 * simple.el (display-message-or-buffer): New function.
12933 (shell-command-on-region): Use `display-message-or-buffer'.
12934
12935 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
12936 docstring parts.
12937
12938 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
12939 (smbclient-prompt-regexp): Add usage note to doc string.
12940 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
12941 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
12942 Use add-hook for adding the comint filter function, and only do so
12943 if it's not already in the global hook list.
12944 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
12945 to `make-local-variable'.
12946 (nslookup-font-lock-keywords): Remove prompt entry.
12947 (nslookup): Don't set the process-filter.
12948 (finger): Exit the loop correctly when the regexps list runs out.
12949 (ftp, smbclient, smbclient-list-shares):
12950 Set the real major mode immediately, not after execing.
12951 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
12952
12953 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
12954
12955 2000-10-05 Stefan Monnier <monnier@cs.yale.edu>
12956
12957 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
12958
12959 * which-func.el (which-func-format): Remove spurious space.
12960 (which-func-mode): Don't make it permanent-local.
12961 (which-func-ff-hook): Allow which-func-maxout to be nil.
12962 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
12963 (which-func-mode): Simplify.
12964 Use post-command-idle-hook rather than post-command-hook.
12965 Go through all buffers and update their state.
12966 (which-function): Also try add-log-current-defun-function.
12967
12968 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
12969 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
12970 Update call to with-vc-properties accordingly.
12971 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
12972 (vc-revert-buffer): More careful about window selection and deletion.
12973 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
12974
12975 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
12976 (cvs-retrieve-revision): Reuse a pre-existing buffer.
12977 (cvs-dired-action): Change the default to quickdir.
12978
12979 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
12980 if comment-indent-function returns nil.
12981 (comment-indent-default): New function.
12982 (comment-indent-function): Use it and document the new semantics.
12983
12984 * image-file.el: Docstring fixes.
12985
12986 * help.el (help-xref-on-pp): Use match-string.
12987 (describe-variable): New arg BUFFER.
12988 Store the current buffer in the help-xref-stack.
12989 (temp-buffer-resize-mode): Use define-minor-mode.
12990
12991 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
12992 consistently with its docstring.
12993 Set jit-lock-first-unfontify-pos in an idempotent way.
12994 (jit-lock-register): Autoload and add arg CONTEXTUAL.
12995
12996 2000-10-05 Alex Schroeder <alex@gnu.org>
12997
12998 * sql.el (sql-mysql-options): New variable.
12999 (sql-mysql): Use it.
13000
13001 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
13002
13003 * image.el (image): New group.
13004
13005 * smerge-mode.el (smerge-mine-face, smerge-other-face)
13006 (smerge-base-face, smerge-markers-face): Add dark-background variants.
13007
13008 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
13009
13010 * net/net-utils.el (nslookup-font-lock-keywords)
13011 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
13012 Ignore the value of wqindow-system; always define keywords
13013
13014 2000-10-05 Kenichi Handa <handa@etl.go.jp>
13015
13016 * startup.el (fancy-splash-screens): Remove the code for
13017 debugging; `(trace-to-stderr "EXITTT\n")'.
13018
13019 2000-10-05 Miles Bader <miles@gnu.org>
13020
13021 * diff-mode.el (diff-goto-source): Update call to
13022 `diff-hunk-status-msg' to reflect new REV variable.
13023
13024 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
13025
13026 * progmodes/icon.el (icon-mode):
13027 Don't gratuitously override the default for comment-column.
13028
13029 * vc-hooks.el (vc-mode-line): Fix interactive spec.
13030
13031 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
13032 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
13033 (jit-lock-functions): New var.
13034 (jit-lock-function-1): Use it if non-nil.
13035 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
13036 Set the `fontified' property before doing the fontification to avoid
13037 repeatedly going through the same error.
13038 Don't turn errors into messages.
13039 (jit-lock-register, jit-lock-unregister): New functions.
13040
13041 * dired.el (dired-mark-pop-up): Turn comment into docstring.
13042 Use with-current-buffer.
13043
13044 * dired-aux.el (dired-do-create-files, dired-kill-tree):
13045 Turn comment into docstring.
13046
13047 * apropos.el (apropos-mode): Use define-derived-mode.
13048
13049 2000-10-04 Gerd Moellmann <gerd@gnu.org>
13050
13051 * startup.el (fancy-splash-pending-command): New variable.
13052 (fancy-splash-pre-command): New function.
13053 (fancy-splash-screens): Rewritten.
13054 (command-line-1): If fancy-splash-pending-command is set, call it
13055 interactively.
13056
13057 2000-10-04 Dave Love <fx@gnu.org>
13058
13059 * toolbar/tool-bar.el (tool-bar-setup): New function.
13060 (tool-bar-mode): Use it.
13061
13062 * subr.el (substitute-key-definition): Doc fix.
13063 (play-sound-file): New command.
13064
13065 2000-10-04 Andre Spiegel <spiegel@gnu.org>
13066
13067 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
13068 vc-version-backup-file-name): New functions.
13069
13070 * files.el (basic-save-buffer): Call vc-before-save before saving.
13071
13072 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
13073 vc-cvs-stay-local-p.
13074
13075 * vc.el (vc-revert-buffer): Handle empty diff properly.
13076 (vc-version-backup-file): New function.
13077 (vc-checkout): Create a version backup if necessary.
13078 (vc-checkin): If a version backup file exists, delete it.
13079 (vc-version-diff): Diff locally using version backups, if available.
13080 (vc-revert-file): If there's a version backup, revert locally.
13081 (vc-transfer-file): Use version backup for base version, if
13082 available. If not, ask for confirmation whether to get it from the
13083 server. Update mode line before check-in.
13084
13085 2000-10-04 Dave Love <fx@gnu.org>
13086
13087 * toolbar/tool-bar.el (tool-bar-setup): New function.
13088 (tool-bar-mode): Use it.
13089
13090 2000-10-04 Peter Breton <pbreton@ne.mediaone.net>
13091
13092 * net/net-utils.el (nslookup-font-lock-keywords)
13093 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
13094 Only set if window-system is non-nil
13095 (net-utils-run-program): Returns buffer.
13096 (network-connection-reconnect): Added this function.
13097
13098 * generic.el:
13099 Incorporates extensive cleanup and docfixes by
13100 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
13101 Uses cl compile-time macros.
13102 (generic-mode-name, generic-comment-list)
13103 (generic-keywords-list, generic-font-lock-expressions)
13104 (generic-mode-function-list, generic-mode-syntax-table):
13105 Removed variables.
13106 (generic-mode-alist): Renamed to generic-mode-list.
13107 (generic-find-file-regexp): Default changed to "^#".
13108 (generic-read-type): Uses completing read on generic-mode-list.
13109 (generic-mode-sanity-check): removed this function.
13110 (generic-add-to-auto-mode): Removed this function
13111 (generic-mode-internal): Bind mode-specific definitions
13112 into function instead of putting them in alist.
13113 (generic-mode-set-comments): Reworked extensively.
13114 (generic-mode-find-file-hook): Simplified regexp searching
13115 (generic-make-keywords-list): Omit extra pair of parens
13116
13117 * find-lisp.el (find-lisp-find-files-internal):
13118 Make sure directory name ends with "/".
13119
13120 * generic-x.el (apache-conf-generic-mode):
13121 Regexp now allows leading whitespace.
13122 (rc-generic-mode): Added eval-when-compile
13123 around generic-make-keywords-list.
13124 Deleted duplicate regexp
13125 (rul-generic-mode): Added eval-when-compile
13126 around generic-make-keywords-list.
13127 (etc-fstab-generic-mode): New generic mode.
13128 (rul-generic-mode): Removed one eval-when-compile
13129 which caused a max-specpdl-size exceeded error.
13130
13131 2000-10-04 Miles Bader <miles@gnu.org>
13132
13133 * simple.el (minibuffer-temporary-goal-position): New variable.
13134 (next-history-element): Try to keep the position of point in the
13135 input string constant.
13136
13137 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
13138 (dired-do-create-files): If there's only one file, pass it in as
13139 the DEFAULT arg to dired-mark-read-file-name.
13140
13141 2000-10-03 Stefan Monnier <monnier@cs.yale.edu>
13142
13143 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
13144 (diff-goto-source): Be smarter when choosing REVERSE or not.
13145
13146 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
13147 (texinfo-mode-menu): Add an explicit shortcut for update all.
13148
13149 2000-10-03 Andre Spiegel <spiegel@gnu.org>
13150
13151 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
13152 factorize backend-specific code cleanly (this was essentially
13153 conceived by Stefan Monnier).
13154 (vc-unregister): Function removed.
13155 (vc-revert-file): New function.
13156 (vc-revert-buffer): Delegate some of the work to it.
13157
13158 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
13159 default branch unconditionally.
13160 (vc-rcs-set-default-branch): New function.
13161 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
13162 (vc-rcs-checkin): If an appropriate default branch has been set,
13163 force creation of that branch.
13164 (vc-rcs-receive-file): Rewritten to contain only backend-specific
13165 code (as suggested by Stefan Monnier).
13166
13167 2000-10-02 Gerd Moellmann <gerd@gnu.org>
13168
13169 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
13170 highlighting overlay with a different face over the overlay
13171 isearch uses to highlight the current match because that can lead
13172 to bad face combinations.
13173
13174 * loadup.el (toplevel): Load faces before isearch.
13175
13176 * isearch.el (isearch-faces): New custom group.
13177 (isearch): New defface; was already tested for in the code.
13178 (isearch-lazy-highlight-face): Changed to defface from defcustom.
13179 (isearch-highlight): Always use face `isearch'.
13180
13181 2000-10-02 Dave Love <fx@gnu.org>
13182
13183 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
13184 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
13185 comparison of opcode with operand.
13186
13187 2000-10-03 Miles Bader <miles@gnu.org>
13188
13189 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
13190 buffer, since the echo area will now grow to accommodate them.
13191
13192 2000-10-02 Andre Spiegel <spiegel@gnu.org>
13193
13194 * vc-hooks.el (vc-registered): If FILE used to be registered under
13195 a certain backend, try that one first.
13196
13197 * vc.el (vc-responsible-backend): Undo the previous change in the
13198 argument list. Handle multiple backends correctly.
13199 (vc-find-new-backend): Function removed.
13200 (vc-register): Use vc-responsible-backend, as before.
13201 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
13202
13203 2000-10-02 Gerd Moellmann <gerd@gnu.org>
13204
13205 * startup.el (fancy-splash-head): Change message below the
13206 logo.
13207
13208 2000-10-02 Miles Bader <miles@lsi.nec.co.jp>
13209
13210 * diff-mode.el (diff-goto-source): Emit a status message.
13211 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
13212 (diff-test-hunk): Fix doc string.
13213 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
13214 (diff-advance-after-apply-hunk): New variable.
13215 (diff-apply-hunk): Don't return a value.
13216
13217 2000-10-01 Stefan Monnier <monnier@cs.yale.edu>
13218
13219 * vc.el (vc-editable-p): Minor optimization.
13220 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
13221 (vc-find-new-backend): New function split from vc-responsible-backend.
13222 (vc-register): Use it.
13223 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
13224 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
13225 (vc-default-unregister, vc-revert-buffer): Docstring fix.
13226 (vc-clear-headers): Don't use find-file.
13227 (vc-revert-buffer): Use `and' again (must have been a braino).
13228 (vc-switch-backend): Only prompt if requested.
13229 Short circuit if nothing is to be done.
13230 Don't use vc-resynch-buffer which could lose unsaved editing.
13231 (vc-default-receive-file): Update call to vc-unregister.
13232 (with-vc-file, vc-next-action-on-file):
13233 Use vc-backend rather than vc-registered.
13234 (vc-next-action-on-file): Use intern-soft.
13235 Deal with read-only *vc-diff* buffer.
13236 (vc-transfer-file): Docstring fix.
13237
13238 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
13239 (vc-rcs-receive-file): Avoid with-vc-properties.
13240 Update call to vc-unregister.
13241 Use constant `RCS' rather than (dynamically bound) var `backend'.
13242
13243 2000-10-01 Andre Spiegel <spiegel@gnu.org>
13244
13245 * vc.el (vc-next-action-on-file): Update mode line only if file
13246 is visited.
13247 (vc-start-entry): New argument initial-contents. Don't visit the file
13248 if it isn't already visited. Brought documentation up-to-date.
13249 (vc-next-action, vc-register): Updated calls to vc-start-entry.
13250 (vc-checkin): New optional arg initial-contents, which is passed to
13251 vc-start-entry.
13252 (vc-finish-logentry): Make sure to bury log buffer only if there
13253 really is one. Call `vc-resynch-buffer' on log-file, not
13254 buffer-file-name.
13255 (vc-default-comment-history, vc-default-wash-log): New functions.
13256 (vc-index-of): Removed.
13257 (vc-transfer-file): Make do without the above.
13258 (vc-default-receive-file): Call comment-history unconditionally. Pass
13259 the resulting string to vc-checkin, instead of inserting it into the
13260 comment ring.
13261
13262 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
13263 unconditionally. Use the comments as initial contents of the log
13264 entry buffer. Document the trick to force branch creation with no
13265 changes.
13266
13267 2000-10-01 Miles Bader <miles@gnu.org>
13268
13269 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
13270 `recenter' with an arg to prevent redrawing the display.
13271
13272 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
13273
13274 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
13275
13276 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
13277
13278 * progmodes/c-mode.el (c-mode):
13279 Don't gratuitously override the default for comment-column.
13280
13281 * textmodes/tex-mode.el (latex-metasection-list): New var.
13282 (latex-imenu-create-index): Use it.
13283 Move the regexp construction outside loops (and use push).
13284 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
13285 (tex-font-lock-keywords): Moved from font-lock.el.
13286 (tex-comment-indent): Remove.
13287 (tex-common-initialization): Don't set comment-indent-function.
13288 (latex-block-default): New var.
13289 (tex-latex-block): Use it to provide a default choice.
13290 Add any unknown choice to latex-block-names.
13291 Insert [...] after {...}.
13292 (tex-last-unended-begin): Simplify regexp.
13293 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
13294 (latex-forward-sexp-1, latex-forward-sexp): New functions.
13295 (latex-mode): Set forward-sexp-function.
13296
13297 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
13298 Add regexp for @ignore ... @end ignore.
13299 (texinfo-heading-face): New face.
13300 (texinfo-font-lock-keywords): Use it.
13301 (texinfo-mode-menu): New menu.
13302 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
13303 New functions.
13304 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
13305 (texinfo-section-types-regexp, texinfo-section-level-regexp)
13306 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
13307 Remove declaration.
13308 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
13309
13310 * delsel.el (delete-selection-mode): Use define-minor-mode.
13311
13312 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
13313
13314 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
13315
13316 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
13317
13318 2000-09-30 Gerd Moellmann <gerd@gnu.org>
13319
13320 * replace.el (keep-lines-read-args): New function.
13321 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
13322 read arguments interactively. Add parameters RSTART and REND.
13323 Operate on the active region in Transient Mark mode.
13324
13325 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
13326
13327 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
13328 (authors-obsolete-files-regexps): New variable.
13329 (authors-add): Don't record changes in obsolete files.
13330
13331 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
13332
13333 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
13334
13335 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
13336 (comment-indent): Make sure there's a space between code and comment.
13337 Shift comments left to avoid going past fill-column.
13338
13339 2000-09-29 Gerd Moellmann <gerd@gnu.org>
13340
13341 * startup.el (startup-echo-area-message): New function.
13342 (display-startup-echo-area-message): Use it.
13343 (fancy-splash-screens): Rewritten to use keymaps and a timer.
13344 (fancy-splash-default-action): New function.
13345 (fancy-splash-screens-1): New function.
13346 (fancy-splash-head): Put a help-echo and a keymap under the image.
13347
13348 2000-09-29 Stefan Monnier <monnier@cs.yale.edu>
13349
13350 * diff-mode.el (diff-add-log-file-name): Remove.
13351 (diff-mode): Use add-log-buffer-file-name-function.
13352
13353 * add-log.el (find-change-log): New arg BUFFER-FILE.
13354 (add-log-file-name): Obey add-log-file-name-function.
13355 (add-log-buffer-file-name-function): New var.
13356 (add-change-log-entry): Use it.
13357
13358 2000-09-29 Miles Bader <miles@gnu.org>
13359
13360 * image-file.el (image-file-name-extensions): New variable.
13361 (image-file-name-regexps): Renamed from `image-file-regexps'.
13362 New default value is nil. Call `auto-image-file-mode'.
13363 (image-file-name-regexp): New function.
13364 (auto-image-file-mode): New minor mode.
13365 (insert-image-file): Don't make conditional on the image-file
13366 handler being enabled.
13367 (image-file-handler): Make the call here conditional instead.
13368 (set-image-file-handler-enabled, enable-image-file-handler)
13369 (disable-image-file-handler): Functions removed.
13370
13371 * emacs-lisp/authors.el (authors-print): Rephrase many-files
13372 string.
13373
13374 2000-09-29 Gerd Moellmann <gerd@gnu.org>
13375
13376 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
13377 it's a function from CL.
13378 (latex-imenu-create-index): Replace eval-when-compile with progn
13379 because latex-section-alist is not bound while compiling.
13380
13381 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
13382
13383 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
13384 (outline-mode): Use define-derived-mode.
13385
13386 * progmodes/perl-mode.el (perl-mode):
13387 * progmodes/awk-mode.el (awk-mode):
13388 * progmodes/asm-mode.el (asm-mode):
13389 Don't gratuitously override the default for comment-column.
13390
13391 * emacs-lisp/lisp.el (lisp-complete-symbol):
13392 Distinguish the let-binding case from the funcall case.
13393 (forward-sexp-function): New variable.
13394 (forward-sexp): Use it.
13395
13396 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
13397 (easy-mmode-defmap): Remove the now useless autoload.
13398
13399 * time.el (display-time-mode): Use define-minor-mode.
13400
13401 * subr.el (add-minor-mode): Don't eval NAME.
13402 Don't depend on the presence of TOGGLE-FUN for any special behavior.
13403 Use if rather than cond.
13404
13405 * simple.el (read-expression-map): Define more properly.
13406 (comment-indent-hook): Remove.
13407 (string-to-syntax): Bug fix.
13408
13409 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
13410 (cvs-ediff-diff): Fix typo.
13411 (cvs-revert-if-needed): Don't bother preserving read-only.
13412
13413 * paren.el (show-paren-mode): Use define-minor-mode.
13414
13415 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
13416 (toggle-auto-compression): Remove.
13417 (jka-compr-build-file-regexp): Remove useless grouping.
13418
13419 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
13420 Avoid user-reserved bindings.
13421 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
13422 (diff-header-face): Revert to grey85.
13423
13424 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
13425
13426 * complete.el (partial-completion-mode) <defcustom>: Remove.
13427 (partial-completion-mode): Use define-minor-mode.
13428 (PC-do-completion): Understand `completion-auto-help = delay'
13429 to mean to popup the completion buffer only the second time.
13430 (PC-include-file-all-completions, PC-include-file-all-completions)
13431 (PC-include-file-all-completions): Don't quote lambda.
13432
13433 * comint.el (comint-mode-hook): Docstring fix.
13434 (comint-mode): Use define-derived-mode.
13435 (comint-mode-map): Remove obsolete comment.
13436 (make-comint): Minor stylistic change.
13437 (comint-insert-clicked-input): Be more careful to find the overlay.
13438 Use this-command-keys rather than hardcoding mouse-2.
13439
13440 * font-lock.el: Replace confusing (,@ with ,
13441 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
13442 Don't use regexp-opt-depth. Spice up the regexp for args.
13443 Don't distinguish between cmds that can take an opt arg or not.
13444 Use `append' and `prepend' rather than `keep'.
13445
13446 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
13447 (latex-outline-regexp): New var.
13448 (latex-outline-level): New fun.
13449 (latex-section-alist): New var.
13450 (latex-imenu-create-index): Use it. Use `push' as well.
13451 (tex-shell-map): Initialize it properly.
13452 (tex-mode): Minor stylistic change.
13453 (plain-tex-mode): Use define-derived-mode.
13454 (latex-mode): Use define-derived-mode.
13455 Construct the paragraph regexps in a more readable way.
13456 Set the buffer-local outline-{level,regexp} vars.
13457 (slitex-mode): Derive from latex-mode.
13458 (tex-common-initialization): Don't kill-all-vars anymore.
13459 Add setting for comment-add and font-lock-defaults.
13460 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
13461 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
13462 (tex-start-tex): New arg DIR (and send a chdir command for it).
13463 Also display the shell buffer and save it in tex-last-buffer-texed.
13464 (tex-region): Use expand-file-name rather than concat.
13465 Remove code made useless by changes in tex-start-tex.
13466 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
13467
13468 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
13469
13470 2000-09-28 Dave Love <fx@gnu.org>
13471
13472 * eshell/eshell.el (eshell) <defgroup>: Add :version.
13473
13474 2000-09-28 Gerd Moellmann <gerd@gnu.org>
13475
13476 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
13477 `append'.
13478
13479 2000-09-28 Stefan Monnier <monnier@cs.yale.edu>
13480
13481 * info.el (Info-extract-pointer): Undo last change.
13482 Instead, fix the position of the `bound' arg to re-search-backward.
13483
13484 2000-09-27 Stefan Monnier <monnier@cs.yale.edu>
13485
13486 * info.el (Info-extract-pointer):
13487 Widen more carefully, to avoid finding pointers in other nodes.
13488 (Info-index): Use push.
13489
13490 2000-09-27 Gerd Moellmann <gerd@gnu.org>
13491
13492 * frame.el (set-frame-font): Remove call to obsolete function
13493 frame-update-faces.
13494 (set-foreground-color, set-background-color): Likewise for
13495 frame-update-face-colors.
13496
13497 2000-09-27 Miles Bader <miles@gnu.org>
13498
13499 * image-file.el: New file.
13500
13501 2000-09-27 Gerd Moellmann <gerd@gnu.org>
13502
13503 * frame.el (frame-notice-user-settings): Don't call
13504 frame-update-faces, which is a no-op now.
13505
13506 * ediff-wind.el (ediff-control-frame-parameters): Add zero
13507 tool-bar-lines.
13508
13509 2000-09-27 Dave Love <fx@gnu.org>
13510
13511 * mouse.el: Fix last change.
13512
13513 2000-09-27 Miles Bader <miles@lsi.nec.co.jp>
13514
13515 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
13516
13517 2000-09-22 Kenichi Handa <handa@etl.go.jp>
13518
13519 * international/quail.el (quail-help): The output message is
13520 improved.
13521
13522 2000-09-26 Dave Love <fx@gnu.org>
13523
13524 * mouse.el (popup-menu): If POSITION is nil, set it using
13525 mouse-position.
13526
13527 2000-09-25 Sam Steingold <sds@gnu.org>
13528
13529 * net/browse-url.el (browse-url-file-url): Check for null maps.
13530
13531 2000-09-26 Gerd Moellmann <gerd@gnu.org>
13532
13533 * frame.el (frame-notice-user-settings): Don't add a
13534 tool-bar-lines frame parameter to default-frame-alist in batch mode.
13535
13536 * frame.el (frame-notice-user-settings):
13537 Make tool-bar-mode and default-frame-alist consistent.
13538
13539 * toolbar/tool-bar.el (tool-bar-help): New function.
13540
13541 2000-09-25 Gerd Moellmann <gerd@gnu.org>
13542
13543 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
13544 current-load-list in top-level forms. Else this leaks a cons cell
13545 every time a defun is called.
13546
13547 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
13548
13549 2000-09-25 Dave Love <fx@gnu.org>
13550
13551 * startup.el (fancy-splash-head): Check XPM is available.
13552
13553 * autoinsert.el (auto-insert): Doc fix.
13554 (auto-insert-alist): Following GNU notices, don't say `copyright
13555 _by_'. Use line-beginning-position.
13556 (auto-insert): Check buffer-file-name is non-nil before use.
13557
13558 2000-09-25 Gerd Moellmann <gerd@gnu.org>
13559
13560 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
13561 starting with `@def' or `@multitable', in addition to ones
13562 specified by the user in auto-fill-inhibit-regexp.
13563
13564 2000-09-25 Markus Rost <rost@math.ohio-state.edu>
13565
13566 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
13567 rmail-dont-reply-to-names matches the empty string.
13568
13569 2000-09-25 Gerd Moellmann <gerd@gnu.org>
13570
13571 * startup.el (command-line-1, fancy-splash-text): Change the
13572 text to sound more friendly.
13573
13574 2000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
13575
13576 * progmodes/hideshow.el: Update author email address.
13577 Generally, sync w/ maintainer version 5.22.
13578 (hs-hide-all-non-comment-function): New var.
13579 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
13580 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
13581 (hs-show-region): Delete this command.
13582 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
13583
13584 2000-09-22 Dave Love <fx@gnu.org>
13585
13586 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
13587 (hl-line-highlight): Specify buffer when moving overlay.
13588
13589 * progmodes/fortran.el (fortran-mode): Locally set
13590 normal-auto-fill-function.
13591 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
13592 (fortran-mode-map): Adjust auto-fill menu entry.
13593
13594 2000-09-22 Gerd Moellmann <gerd@gnu.org>
13595
13596 * vc-rcs.el (toplevel): Require `vc' when compiling.
13597
13598 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
13599
13600 2000-09-22 Andre Spiegel <spiegel@gnu.org>
13601
13602 * vc.el (vc-switch-backend): Signal an error if the file is not
13603 registered under the new backend.
13604
13605 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
13606 without explicit revision number.
13607
13608 2000-09-21 Stefan Monnier <monnier@cs.yale.edu>
13609
13610 * diff-mode.el (diff-file-header-face): Reset to its previous value.
13611 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
13612 (diff-xor): New function.
13613 (diff-find-source-location): Use it. Fix a stupid name clash.
13614 (diff-hunk-status-msg): New function.
13615 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
13616 (diff-test-hunk): Use diff-find-source-location.
13617 (diff-goto-source): Favor the `reverse'.
13618 (diff-hunk-text): Properly handle one-sided context diffs.
13619 (diff-apply-hunk): When done, advance to the next hunk.
13620
13621 2000-09-21 Gerd Moellmann <gerd@gnu.org>
13622
13623 * startup.el (command-line): If frame was created with a non-zero
13624 tool-bar-lines parameter, switch tool-bar-mode on.
13625
13626 * add-log.el (change-log-date-face, change-log-name-face)
13627 (change-log-email-face, change-log-file-face)
13628 (change-log-list-face, change-log-conditionals-face)
13629 (change-log-function-face, change-log-acknowledgement-face):
13630 New faces, inheriting from font-lock faces.
13631 (change-log-font-lock-keywords): Use them.
13632
13633 2000-09-21 Dave Love <fx@gnu.org>
13634
13635 * progmodes/cperl-mode.el (top-level): Clean up
13636 `eval-when-compile's and assorted defvars.
13637 (cperl-invalid-face): Don't double-quote value. Change custom
13638 type.
13639 (cperl-mode): Set normal-auto-fill-function and don't zap
13640 auto-fill-function.
13641 (cperl-imenu--function-name-regexp-perl): Renamed from
13642 imenu-example--function-name-regexp-perl.
13643 (cperl-imenu--create-perl-index): Renamed from
13644 imenu-example--create-perl-index.
13645 (cperl-xsub-scan): Don't require cl.
13646
13647 * msb.el (msb-mode-map): Use substitute-key-definition.
13648 (msb-mode): Use msb-mode-map.
13649
13650 2000-09-21 Andre Spiegel <spiegel@gnu.org>
13651
13652 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
13653 New functions.
13654 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
13655 (vc-switch-backend): New function.
13656 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
13657 (vc-register): Fix prompt.
13658 (vc-unregister, vc-default-unregister): New functions.
13659 (vc-version-diff): Handle empty buffer in sentinel.
13660
13661 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
13662 (vc-rcs-state-heuristic): Use it to guess the state of files with
13663 non-strict locking.
13664 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
13665 been set with -b, but not created yet.
13666 (vc-rcs-fetch-master-state): With non-strict locking, compare file
13667 contents in order to find the state.
13668 (vc-rcs-checkin): Allow creation of branches with no changes.
13669 (vc-rcs-unregister, vc-rcs-receive-file)
13670 (vc-rcs-set-non-strict-locking): New functions.
13671
13672 * vc-hooks.el (vc-name): Force correct computation of the value
13673 in case it is missing.
13674
13675 2000-09-21 Gerd Moellmann <gerd@gnu.org>
13676
13677 * startup.el (fancy-splash-tail): Use a different foreground
13678 color on a dark frame background.
13679
13680 2000-09-21 Miles Bader <miles@lsi.nec.co.jp>
13681
13682 * info.el: Use the correct capitalization when making Info-mode
13683 and Info-edit-mode `special' modes.
13684
13685 2000-09-20 Stefan Monnier <monnier@cs.yale.edu>
13686
13687 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
13688 (diff-mode): Add support for add-log.el.
13689 (diff-hunk-text): Use char offsets rather than line offsets.
13690 (diff-find-source-location): Replace LINE with line-offset (nil
13691 if not found) and always set POS to a meaningful position.
13692 Adapt to the new char-offsets.
13693 (diff-apply-hunk): Drop support for the unused `select' POPUP.
13694 Adapt to the new diff-find-source-location.
13695 (diff-goto-source): Adapt to the new diff-find-source-location.
13696
13697 * add-log.el (add-log-file-name): New function (split out of
13698 add-change-log-entry).
13699 (add-change-log-entry): Use it.
13700 Call add-log-file-name-function with the changelog file name if
13701 the current buffer is not associated with any file.
13702 Avoid find-file if the selected window is dedicated.
13703
13704 * diff-mode.el (diff-find-source-location):
13705 Move code from diff-apply-hunk. Return buffer rather than file.
13706 (diff-apply-hunk): Use the new result from diff-find-source-location.
13707 (diff-goto-source): Use the new diff-find-source-location.
13708
13709 2000-09-20 Dave Love <fx@gnu.org>
13710
13711 * iswitchb.el: Some doc fixes.
13712 (iswitchb-mode-map): Define completely initially. Inherit
13713 minibuffer-local-map.
13714 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
13715 fundamental-mode.
13716 (iswitchb-global-map): New variable.
13717 (iswitchb-summaries-to-end): Amalgamate regexps.
13718 (iswitchb-mode): New.
13719 (iswitchb-mode-hook): New variable.
13720 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
13721 `extensions'.
13722
13723 2000-09-20 Gerd Moellmann <gerd@gnu.org>
13724
13725 * ehelp.el (electric-help): New defgroup.
13726 (electric-help-shrink-window): New user-option.
13727 (with-electric-help): Use it.
13728
13729 * window.el (shrink-window-if-larger-than-buffer): If face
13730 `mode-line' has a :box, and we're on a graphical frame, add 1
13731 to the needed window height.
13732
13733 * frame.el (frame-notice-user-settings): Add a last parameter nil
13734 to a call to `append', because the last list passed to `append' is
13735 not copied, and so subsequent calls to assq-delete-all will modify
13736 default-frame-alist.
13737
13738 * startup.el (fancy-splash-image): Change :type.
13739 (fancy-splash-head): Use an XBM image if appropriate.
13740 (command-line-1): Show splash screens in more cases.
13741
13742 * startup.el (fancy-splash-text): Don't quote faces.
13743
13744 * dired.el (dired-font-lock-keywords): Undo last change.
13745 (dired-readin): Bind indent-tabs-mode to nil.
13746
13747 * startup.el (fancy-splash-head): If frame's background mode
13748 is `dark', change the black background of the image to gray.
13749 (fancy-splash-screens): Display startup echo area message.
13750 (display-startup-echo-area-message): New function.
13751
13752 2000-09-20 Miles Bader <miles@lsi.nec.co.jp>
13753
13754 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
13755
13756 * info.el (info-header-node): Tweak for color ttys.
13757
13758 * faces.el (face-valid-attribute-values): Make sure directories we
13759 search for stipples both exist and are readable before trying to
13760 search them.
13761
13762 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
13763 in the dry-run case.
13764
13765 * jka-compr.el (with-auto-compression-mode): New macro.
13766
13767 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
13768 (custom-group-tag-face, custom-variable-tag-face): Use relative
13769 :height and inherit from `variable-pitch' face instead of
13770 hardwiring :family.
13771 * hi-lock.el (hi-black-hb): Likewise.
13772
13773 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
13774 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
13775 toolbar-add-item, if image doesn't have a mask add a `:mask
13776 heuristic'.
13777
13778 2000-09-19 Stefan Monnier <monnier@cs.yale.edu>
13779
13780 * diff-mode.el: Docstring fixes.
13781 (diff-header-face, diff-comment-face): New faces.
13782 (diff-font-lock-keywords): Highlight a bit differently.
13783 (diff-find-source-location): Don't return SPAN any more.
13784 (diff-hunk-text): Don't bother erasing the temp buffer.
13785 (diff-find-text): Drop argument LINE.
13786 (diff-apply-hunk): Update calls to diff-find-text.
13787 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
13788
13789 * calendar/calendar.el: Docstring fixes.
13790 (calendar-make-alist): Don't quote lambda.
13791 (calendar-star-date): Use make-local-variable.
13792
13793 2000-09-19 Dave Love <fx@gnu.org>
13794
13795 * toolbar/tool-bar.el: Renamed from toolbar.el.
13796 Change `toolbar' to `tool-bar' generally in symbols.
13797 Make some items invisible in `special' major modes.
13798 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
13799 Add arg PROPS.
13800
13801 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
13802 Add :version here.
13803 (fancy-splash-delay, fancy-splash-image): Remove :version here.
13804
13805 2000-09-19 Gerd Moellmann <gerd@gnu.org>
13806
13807 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
13808
13809 * files.el (find-file-suppress-same-file-warnings): New user-option.
13810 (find-file-noselect): Use it.
13811
13812 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
13813 (fancy-splash-screen): Defgroup.
13814
13815 * add-log.el (change-log-font-lock-keywords): Match names
13816 more exactly for the case that font-lock-constant-face is
13817 underlined.
13818
13819 2000-09-19 Richard M. Stallman <rms@gnu.org>
13820
13821 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
13822
13823 2000-09-19 Andre Spiegel <spiegel@gnu.org>
13824
13825 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
13826
13827 2000-09-19 Gerd Moellmann <gerd@gnu.org>
13828
13829 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
13830 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
13831 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
13832 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
13833 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
13834 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
13835 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
13836 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
13837 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
13838 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
13839 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
13840 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
13841
13842 * startup.el (fancy-splash-text): New variable.
13843 (fancy-splash-delay, fancy-splash-image): New user-options.
13844 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
13845 (fancy-splash-screens): New functions.
13846 (command-line-1): If display has a `display' frame parameter, has
13847 colors, and we have XPM support, show more fancy splash screens.
13848
13849 2000-09-19 Dave Love <fx@gnu.org>
13850
13851 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
13852 with null `help'. Use modern backquote syntax.
13853
13854 2000-09-19 Gerd Moellmann <gerd@gnu.org>
13855
13856 * font-lock.el (font-lock-mode): Change message telling the user
13857 that ``the buffer is too big''.
13858
13859 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
13860 for instance for the case that tab-width is 2.
13861
13862 2000-09-18 Gerd Moellmann <gerd@gnu.org>
13863
13864 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
13865 toolbar-add-item, if image doesn't have a mask add a `:mask
13866 heuristic'.
13867
13868 2000-09-18 Miles Bader <miles@lsi.nec.co.jp>
13869
13870 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
13871 and return a cons if it's non-nil.
13872 (diff-apply-hunk): Try to jump to the line in the source text
13873 corresponding to the position of point in the in the hunk.
13874
13875 * info.el (Info-title-3-face, Info-title-2-face)
13876 (Info-title-1-face): Use face inheritance and relative sizes
13877 instead of hard-wiring things.
13878
13879 * faces.el (secondary-selection): Make dark-background variant sane.
13880
13881 2000-09-16 Andrew Innes <andrewi@gnu.org>
13882
13883 * makefile.w32-in (compile-files-CMD): No need to make .elc files
13884 read-only, since they aren't under VC now.
13885
13886 2000-09-17 Dave Love <fx@gnu.org>
13887
13888 * tmm.el: Replace mapcar with mapc in several places.
13889
13890 * loadhist.el (unload-feature): Maybe call elp-restore-list and
13891 ad-unadvise.
13892
13893 * international/latin1-disp.el: New file.
13894
13895 * calendar/cal-move.el (scroll-calendar-left)
13896 (scroll-calendar-right): Make arg optional (for active mode line).
13897
13898 * calendar/calendar.el (calendar-mode-line-format): Make fields
13899 mouse-sensitive.
13900 (calendar-read-date, calendar-read-date, calendar-window-list):
13901 Unquote lambda.
13902 (calendar-month-name): Use aref, not sref.
13903
13904 * view.el (minor-mode-alist): Propertize the string.
13905
13906 * international/characters.el (standard-case-table): Add entries
13907 for Greek.
13908
13909 2000-09-18 Miles Bader <miles@gnu.org>
13910
13911 * info.el (info-node, info-xref): Add dark-background variants.
13912
13913 * faces.el (header-line): Change defaults to be less confusing
13914 when mixed with mode-lines.
13915
13916 * info.el (Info-fontify-node): Make a few cleanups.
13917 Add extra `help-echo' and `local-map' props to node xrefs.
13918 Use header-specific faces for node-names & xrefs.
13919 (Info-use-header-line): New variable.
13920 (info-header-xref, info-header-node): New faces.
13921 (Info-setup-header-line): New function.
13922 (Info-select-node): Call Info-setup-header-line when enabled.
13923 (Info-extract-pointer): Work even if the header line is hidden.
13924 (Info-header-line): New variable.
13925
13926 2000-09-16 Stefan Monnier <monnier@cs.yale.edu>
13927
13928 * vms-patch.el (print-region-function): Don't quote lambda.
13929
13930 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
13931
13932 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
13933 (lm-get-header-re): Allow spaces between the header and the colon.
13934 (lm-header): Allow $ in non-RCS headers.
13935 (lm-header-multiline): Put the strings back into order.
13936 Stop at an empty line. Don't require two space chars if the
13937 line is clearly not another header line.
13938
13939 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
13940 (popup-menu-popup): Remove.
13941
13942 2000-09-15 Gerd Moellmann <gerd@gnu.org>
13943
13944 * toolbar/toolbar.el (toolbar-add-item): Use the same image
13945 specification if or if not tool-bar item contains an `:enabled'
13946 property.
13947
13948 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
13949 current buffer has no file name.
13950
13951 2000-09-15 Dave Love <fx@gnu.org>
13952
13953 * strokes.el: Sync with maintainer's current version with changes
13954 for Emacs, but avoid runtime cl and levents.
13955 (toplevel): Change autoloads and compilation requires.
13956 (strokes-version, strokes-bug-address, strokes-lift): Values
13957 changed.
13958 (strokes-xpm-header, strokes-insinuated): New variable.
13959 (strokes): Add :link.
13960 (strokes-mode): Customized.
13961 (strokes-while-inhibiting-garbage-collector): New macro.
13962 (strokes-remassoc): Avoid remove-if.
13963 (strokes-fix-button2-command): Don't use ad-do-it.
13964 (strokes-insinuate): New function.
13965 (strokes-button-press-event-p, strokes-button-release-event-p):
13966 New functions, used instead of non-`strokes-' versions..
13967 (strokes-mouse-event-p): Rewritten.
13968 (strokes-event-closest-point): Avoid event-point.
13969 (strokes-get-grid-position): Avoid cdadr, caadr
13970 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
13971 functions.
13972 (strokes-help): Use with-output-to-temp-buffer.
13973 (strokes-window-configuration-changed-p): New function.
13974 (strokes-update-window-configuration): Use buffer-live-p,
13975 strokes-window-configuration-changed-p.
13976 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
13977 (strokes-char-face): New face.
13978 (strokes-char-table, strokes-base64-chars): New variable.
13979 (strokes-xpm-for-stroke, strokes-list-strokes)
13980 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
13981 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
13982 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
13983 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
13984 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
13985 functions.
13986
13987 2000-09-15 Gerd Moellmann <gerd@gnu.org>
13988
13989 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
13990
13991 * image.el (create-image): Doc fix.
13992
13993 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
13994 instead of `:heuristic-mask t'.
13995
13996 2000-09-14 Andrew Innes <andrewi@gnu.org>
13997
13998 * makefile.w32-in: Revert to Unix line endings.
13999
14000 2000-09-14 Andrew Innes <andrewi@gnu.org>
14001
14002 * makefile.w32-in: Add bootstrap support. Also copy lisp source
14003 when installing.
14004
14005 * makefile.nt (DONTCOMPILE): Fix typo.
14006
14007 * shell.el (shell-write-history-on-exit): New function.
14008 (shell-dumb-shell-regexp): New custom variable.
14009 (shell-mode): Make shell-write-history-on-exit the process
14010 sentinel if shell name matches shell-dumb-shell-regexp.
14011
14012 * w32-fns.el: Comment out before-init-hook function which resets
14013 source-directory based; this breaks bootstrap.
14014
14015 2000-09-14 Dave Love <fx@gnu.org>
14016
14017 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
14018 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
14019 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
14020 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
14021 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
14022 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
14023 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
14024 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
14025 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
14026
14027 * toolbar/toolbar.el: New.
14028
14029 * subdirs.el: Add toolbar.
14030
14031 2000-09-14 Gerd Moellmann <gerd@gnu.org>
14032
14033 * indent.el (indent-for-tab-command): Doc fix.
14034
14035 2000-09-14 Alex Schroeder <alex@gnu.org>
14036
14037 * ansi-color.el (ansi-colors): Doc change.
14038 (ansi-color-get-face): Simplified regexp.
14039 (ansi-color-faces-vector): Added more faces, doc change.
14040 (ansi-color-names-vector): Doc change.
14041 (ansi-color-regexp): Simplified regexp.
14042 (ansi-color-parameter-regexp): New regexp.
14043 (ansi-color-filter-apply): Doc change.
14044 (ansi-color-filter-region): Doc change.
14045 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
14046 deal with zero length parameters.
14047 (ansi-color-apply-on-region): Doc change.
14048 (ansi-color-map): Doc change.
14049 (ansi-color-map-update): Removed debugging message.
14050 (ansi-color-get-face-1): Added condition-case to trap
14051 args-out-of-range errors.
14052 (ansi-color-get-face): Doc change.
14053 (ansi-color-make-face): Removed.
14054 (ansi-color-for-shell-mode): New option.
14055
14056 2000-09-13 Kenichi Handa <handa@etl.go.jp>
14057
14058 * international/quail.el (quail-start-translation): Translate KEY
14059 if necessary even if it doesn't have any mapping in the current
14060 input method.
14061 (quail-start-conversion): Likewise.
14062 (quail-help): The output message is improved.
14063
14064 2000-09-13 Miles Bader <miles@gnu.org>
14065
14066 * comint.el (comint-output-filter): Revert to using
14067 `insert-before-markers'. Add bletcherous hack to undo damage
14068 caused by `insert-before-markers'. Put `front-sticky' property on
14069 overlays created here so that the field code understands how the
14070 overlay works. Use a let when making comint-last-prompt-overlay,
14071 so that the code is easier to read.
14072
14073 2000-09-13 Dave Love <fx@gnu.org>
14074
14075 * wid-edit.el (widget-default-format-handler): DTRT when
14076 doc-property is a function.
14077
14078 2000-09-12 Francesco Potorti` <pot@gnu.org>
14079
14080 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
14081 filed name if it's not there.
14082
14083 2000-09-12 Dave Love <fx@gnu.org>
14084
14085 * simple.el (read-mail-command): Doc fix.
14086 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
14087
14088 * vc.el (vc-dired-listing-switches): Fix :version.
14089
14090 * vc-hooks.el: Doc fixes.
14091
14092 * subr.el (add-minor-mode): Use toggle-fun arg.
14093
14094 * speedbar.el: Add :version to several defcustoms.
14095
14096 * imenu.el (imenu--truncate-items, imenu--cleanup)
14097 (imenu--generic-function): Avoid mapcar.
14098 (imenu--replace-spaces): Function removed.
14099 (imenu--completion-buffer): Use subst-char-in-string.
14100 (imenu-add-to-menubar): Use keymap inheritance.
14101
14102 2000-09-12 Miles Bader <miles@gnu.org>
14103
14104 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
14105 (diff-mode-map): Bind `diff-test-hunk'.
14106 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
14107
14108 2000-09-11 Gerd Moellmann <gerd@gnu.org>
14109
14110 * bytecomp.el (byte-compile-defvar): Undo last change
14111 because it breaks '(make-variable-buffer-local (defvar ...)'
14112 which is used at least in dired.
14113
14114 2000-09-12 Kenichi Handa <handa@etl.go.jp>
14115
14116 * international/quail.el (quail-define-package): Docstring
14117 modified.
14118
14119 2000-09-12 Kenichi Handa <handa@etl.go.jp>
14120
14121 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
14122 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
14123 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
14124 docstring of "chinese-py".
14125
14126 * international/quail.el (quail-translation-docstring): New
14127 variable.
14128 (quail-show-keyboard-layout): Docstring modified.
14129 (quail-select-current): Likewise.
14130 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
14131 infinite recursive call.
14132 (quail-help): Check quail-translation-docstring. Format of the
14133 output changed.
14134 (quail-help-insert-keymap-description): Adjusted for the above
14135 change.
14136
14137 2000-09-11 Gerd Moellmann <gerd@gnu.org>
14138
14139 * bytecomp.el (byte-compile-defvar): Only cons onto
14140 current-load-list in top-level forms. Else this leaks a cons cell
14141 every time a defun is called.
14142
14143 2000-09-11 Miles Bader <miles@lsi.nec.co.jp>
14144
14145 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
14146 Now understands non-unified diffs. Some functionality moved into
14147 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
14148 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
14149 modify anything. Only reposition point in the patched file if the
14150 patch succeeds. Only pop up another window if POPUP is true.
14151 Emit a message describing what happened if successful, and at what
14152 line-offset. Automatically detect reversed hunks and do something
14153 appropriate.
14154 (diff-hunk-text, diff-find-text): New functions.
14155 (diff-filter-lines): Function removed.
14156 (diff-test-hunk): New function.
14157 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
14158
14159 2000-09-10 Dave Love <fx@gnu.org>
14160
14161 * textmodes/tildify.el: Minor doc/commentary fixes.
14162 (tildify) <defgroup>: Add :version.
14163
14164 * faces.el (face-x-resources): Make custom type more specific.
14165 (frame-background-mode): Use mapc.
14166 (region) <defcustom>: Add :version.
14167
14168 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
14169
14170 * vc-sccs.el (vc-sccs-register):
14171 * vc-rcs.el (vc-rcs-register):
14172 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
14173 * vc.el (vc-register): Clear file's properties.
14174
14175 2000-09-08 Gerd Moellmann <gerd@gnu.org>
14176
14177 * faces.el (face-spec-set): Only face-spec-reset-face when
14178 ATTRS is non-nil.
14179
14180 2000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
14181
14182 * help.el (help-insert-xref-button): Fix a typo in doc string.
14183
14184 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
14185
14186 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
14187 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
14188 methods.
14189
14190 * menu-bar.el (read-mail-item-name): New function.
14191 (menu-bar-tools-menu): Use it to compute and display the package
14192 used to read email.
14193 (menu-bar-tools-menu): Fix typo in GUD's help string.
14194
14195 2000-09-07 Dave Love <fx@gnu.org>
14196
14197 * diff-mode.el (diff-mouse-goto-source): New function.
14198
14199 * vc-sccs.el: Doc fixes.
14200 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
14201
14202 * vc-rcs.el: Doc fixes.
14203 (vc-rcs-register-switches, vc-rcs-checkin-switches)
14204 (vc-rcs-checkout-switches, vc-rcs-header)
14205 (vc-rcs-master-templates): Add or change :version.
14206
14207 * vc-cvs.el: Doc fixes.
14208 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
14209 (vc-cvs-stay-local): Add :version.
14210
14211 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
14212
14213 2000-09-07 Kenichi Handa <handa@etl.go.jp>
14214
14215 * international/quail.el (quail-help): Fix previous change.
14216
14217 2000-09-07 Gerd Moellmann <gerd@gnu.org>
14218
14219 * faces.el (color-values): Doc fix.
14220
14221 * faces.el (frame-set-background-mode): Use frame-parameter
14222 instead of frame-parameters.
14223
14224 * frame.el (filtered-frame-list): Reduce consing.
14225 (frames-on-display-list): Call frame-parameter instead of
14226 frame-parameters.
14227
14228 2000-09-07 Kenichi Handa <handa@etl.go.jp>
14229
14230 * language/devan-util.el (devanagari-to-indian-region): In the
14231 loop, change the following char, not preceding char.
14232
14233 2000-09-07 Gerd Moellmann <gerd@gnu.org>
14234
14235 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
14236 instead of frame-parameters.
14237
14238 * faces.el (set-face-attribute): Simplify by calling
14239 internal-set-lisp-face-attribute with FRAME being 0.
14240
14241 * vc.el: Remove `Id' version control keyword.
14242
14243 2000-09-07 Kenichi Handa <handa@etl.go.jp>
14244
14245 * help.el (help-make-xrefs): Adjusted for the change of
14246 help-xref-mule-regexp.
14247 (help-insert-xref-button): New function.
14248
14249 * international/mule-cmds.el (help-xref-mule-regexp-template):
14250 Include the pattern for character set.
14251 (leim): New group.
14252
14253 * international/quail.el: Don't require face.
14254 (quail): New group.
14255 (quail-other-command): Dummy command to make quail-help work better.
14256 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
14257 (quail-keyboard-layout-substitution): New variable.
14258 (quail-update-keyboard-layout): New function.
14259 (quail-keyboard-layout-type): New customizable variable.
14260 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
14261 (quail-keyboard-translate): Pay attention to
14262 quail-keyboard-layout-substitution.
14263 (quail-insert-kbd-layout): New function.
14264 (quail-show-keyboard-layout): New function.
14265 (quail-get-translation): If the definition is a vector of length
14266 1, and the element is a string of length 1, return the character
14267 in that string.
14268 (quail-update-current-translations): Fix the case of
14269 relative-index out of range.
14270 (quail-build-decode-map, quail-insert-decode-map): New Functions.
14271 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
14272 Show key sequences for all available characters.
14273 (quail-help-insert-keymap-description): Don't show such verbose
14274 key bindings as quail-self-insert-command.
14275
14276 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
14277 Format changed, and each element now have extra documentations.
14278 (tit-process-header): Delete invalid characters from TIT-PROMPT.
14279 Adjusted for the change of quail-cxterm-package-ext-info.
14280
14281 2000-09-06 Gerd Moellmann <gerd@gnu.org>
14282
14283 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
14284 requiring it leads to a recursive loading of vc.el and vc-hooks.el
14285 during bootstrap.
14286
14287 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14288
14289 * vc.el: (toplevel): Don't require `dired' at run-time.
14290 (vc-dired-resynch-file): Remove autoload cookie.
14291
14292 2000-09-05 Andre Spiegel <spiegel@gnu.org>
14293
14294 * vc.el: Made several backend functions optional.
14295 (vc-default-responsible-p): New function.
14296 (vc-merge): Use RET for first version to trigger merge-news, not
14297 prefix arg.
14298 (vc-annotate): Handle backends that do not support annotation.
14299 (vc-default-merge-news): Removed. The existence of a merge-news
14300 implementation is now checked on caller sites.
14301
14302 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
14303 case.
14304
14305 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
14306 special case that has been removed from the default in vc-hooks.el.
14307
14308 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14309
14310 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
14311
14312 2000-09-05 Andre Spiegel <spiegel@gnu.org>
14313
14314 * vc-hooks.el: Require vc during compilation.
14315 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
14316 macro `with-vc-properties' in vc.el.
14317 (vc-file-getprop): Doc fix.
14318 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
14319
14320 * vc.el: Require dired-aux during compilation.
14321 (vc-name-assoc-file): Moved to vc-sccs.el.
14322 (with-vc-properties): New macro.
14323 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
14324 vc-finish-steal): Use it.
14325 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
14326 to the backend-specific function is now supposed to do the checkout,
14327 too.
14328 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
14329
14330 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
14331 set file properties; that gets done in the generic code now.
14332
14333 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
14334 Changed parameter list, added code from vc.el that does the
14335 checkout, possibly with a double-take.
14336
14337 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
14338 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
14339 the above under the new name.
14340 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
14341 parameter list, added checkout command.
14342 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
14343 properties; that gets done in the generic code now.
14344
14345 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14346
14347 * vc.el: Docstring fixes (courtesy of checkdoc).
14348
14349 2000-09-05 Stefan Monnier <monnier@cs.yale.edu>
14350
14351 * vc.el (vc-checkout-writable-buffer-hook)
14352 (vc-checkout-writable-buffer): Remove.
14353 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
14354 (vc-log-mode): Make it into a clean derived major mode.
14355 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
14356 vc-log-mode if log-edit is not available.
14357 (vc-dired-mode-map): Don't set-keymap-parent yet.
14358 (vc-dired-mode): Do set-keymap-parent here.
14359 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
14360
14361 2000-09-05 Gerd Moellmann <gerd@gnu.org>
14362
14363 * faces.el (set-face-attribute, face-spec-reset-face)
14364 (face-spec-set): Avoid consing by removing calls to `apply'.
14365
14366 * frame.el (frame-parameter): Move to C code.
14367
14368 2000-09-05 Dave Love <fx@gnu.org>
14369
14370 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
14371 insert-before-markers-and-inherit. Now checked systematically!
14372
14373 2000-09-05 Alex Schroeder <alex@gnu.org>
14374
14375 * sql.el (sql-postgres): Use sql-postgres-options.
14376 (sql-postgres-options): New variable.
14377
14378 2000-09-05 Alex Schroeder <alex@gnu.org>
14379
14380 * sql.el (sql-mode-menu): Work around missing variable mark-active
14381 in XEmacs.
14382 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
14383 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
14384 compatibility.
14385
14386 2000-09-04 Gerd Moellmann <gerd@gnu.org>
14387
14388 * vc.el (vc-dired-resynch-file): Add autoload cookie.
14389
14390 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
14391
14392 * Makefile.in (DONTCOMPILE): Fix typo in file name.
14393
14394 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14395
14396 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
14397 don't support anything else under SCCS yet.
14398
14399 * vc-hooks.el: Minor doc fixes.
14400
14401 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14402
14403 * vc.el (vc-next-action-on-file): Do not visit the file if it's
14404 not necessary. If verbose in state `needs-patch', do the same as
14405 under `up-to-date'. When NOT verbose and `needs-patch', check out
14406 latest version instead of `merge-news'.
14407 (vc-next-action-dired): Don't mess with default-directory here; it
14408 breaks other parts of dired. It is the job of the
14409 backend-specific functions to adjust it temporarily if they need it.
14410 (vc-next-action): Remove a special CVS case.
14411 (vc-clear-headers): New optional arg FILE.
14412 (vc-checkin, vc-checkout): Set properties vc-state and
14413 vc-checkout-time properly.
14414 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
14415 (vc-print-log): Use new backend function `show-log-entry'.
14416 (vc-cancel-version): Do the checks in a different order. Added a
14417 FIXME concerning RCS-only code.
14418
14419 * vc-rcs.el (vc-rcs-show-log-entry): New function.
14420 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
14421
14422 * vc-cvs.el (vc-cvs-show-log-entry): New function.
14423
14424 * vc-hooks.el (vc-default-mode-line-string): Show state
14425 `needs-patch' as a `-' too.
14426
14427 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14428
14429 * vc.el (vc-responsible-backend): New optional arg REGISTER.
14430 (vc-default-could-register): New function.
14431 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
14432 (vc-resynch-buffer): Call vc-dired-resynch-file.
14433 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
14434 vc-resynch-buffer instead of vc-resynch-window.
14435 (vc-next-action-dired): Don't redisplay here, that gets done as a
14436 result of the individual file operations.
14437 (vc-retrieve-snapshot): Corrected prompt order.
14438
14439 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
14440
14441 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
14442 as well.
14443 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
14444 hostname regexps. Updated all callers.
14445 (vc-cvs-responsible-p): Handle directories as well.
14446 (vc-cvs-could-register): New function.
14447 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
14448 properties up-to-date.
14449
14450 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
14451 user whether to create one.
14452
14453 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14454
14455 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
14456 check out a non-existing file.
14457
14458 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
14459 workfile does not exist.
14460
14461 * vc.el (vc-version-diff): Use `require' to check for existence of
14462 diff-mode.
14463
14464 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14465
14466 * vc-cvs.el (vc-cvs-registered): Use new function
14467 vc-cvs-parse-entry to do the actual work.
14468
14469 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14470
14471 * vc-hooks.el (vc-find-backend-function): If function doesn't
14472 exist, return nil instead of error.
14473 (vc-call-backend): Doc fix.
14474
14475 * vc.el (vc-do-command): Doc fix.
14476 (vc-finish-logentry): When checking in from vc-dired, choose the
14477 right backend for logentry check.
14478 (vc-dired-mode-map): Inherit from dired-mode-map.
14479 (vc-dired-mode): Local value of dired-move-to-filename-regexp
14480 simplified.
14481 (vc-dired-state-info): Removed, updated caller.
14482 (vc-default-dired-state-info): Use parentheses instead of hyphens.
14483 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
14484 (vc-dired-listing-switches): New variable.
14485 (vc-directory): Use it, instead of dired-listing-switches.
14486
14487 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
14488 (vc-cvs-dir-state): New function.
14489 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
14490 (vc-cvs-parse-entry): New function, also to be used in
14491 vc-cvs-registered.
14492
14493 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14494
14495 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
14496 *or* single-window-frames.
14497
14498 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14499
14500 * vc.el (vc-update-changelog): Split into generic part and default
14501 implementation. Doc string adapted.
14502 (vc-default-update-changelog): New function. Call the `rcs2log'
14503 script in exec-directory, to fix a long-standing nuisance.
14504
14505 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
14506 simply signals an error.
14507
14508 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14509
14510 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
14511 control-flow more clear and to avoid running `cvs' twice.
14512
14513 * vc.el (vc-next-action-on-file): Doc fix.
14514 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
14515 (vc-print-log): Eval `file' before constructing the continuation.
14516
14517 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14518
14519 * vc.el (vc-next-action-on-file): Corrected several messages.
14520 (vc-merge): Add prefix arg `merge-news'; handle it.
14521
14522 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
14523 is not reached. It is.
14524 (vc-cvs-merge): Set state to 'edited after merge.
14525 (vc-cvs-merge-news): Set workfile version to nil if not known.
14526 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
14527
14528 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
14529 via stdout. (Merge from main line.)
14530
14531 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14532
14533 * vc.el (vc-finish-logentry): Thinko in the "same comment"
14534 detection.
14535
14536 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14537
14538 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
14539 against kill-all-local-variables.
14540 (vc-log-edit): Don't save vc-parent-buffer any more.
14541 (vc-last-comment-match): Initialize to an empty string.
14542 (vc-post-command-functions): New hook.
14543 (vc-do-command): Run it.
14544 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
14545 (vc-finish-logentry): Only add the comment to the ring if it's
14546 different from the last comment entered.
14547 (vc-new-comment-index): New function.
14548 (vc-previous-comment): Use it. Make the minibuffer message
14549 slightly less terse.
14550 (vc-comment-search-reverse): Make it work forward as well. Don't
14551 set vc-comment-ring-index if no match is found. Use
14552 vc-new-comment-index.
14553 (vc-comment-search-forward): Use vc-comment-search-reverse.
14554 (vc-dired-mode-map): Don't inherit from dired-mode-map since
14555 define-derived-mode will do it for us. Bind `v' to a keymap that
14556 inherits from vc-prefix-map so that we can bind `vt' without
14557 binding C-x v t.
14558 (vc-retrieve-snapshot): Parenthesis typo.
14559
14560 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
14561 to 1. Make sure to switch to *vc* before looking for an error
14562 message. Use vc-parse-buffer.
14563
14564 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14565
14566 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
14567 and NAME.
14568 (vc-retrieve-snapshot): Split into two parts.
14569 (vc-default-retrieve-snapshot): New function.
14570
14571 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
14572 (vc-cvs-retrieve-snapshot): New function (untested).
14573 (vc-cvs-stay-local): Default to t.
14574 (vc-cvs-remote-p): New function and property.
14575 (vc-cvs-state): Stay local only if the above is t.
14576 (vc-handle-cvs): Removed.
14577 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
14578 done via vc-handled-backends now.
14579 (vc-cvs-header): Escape Id.
14580
14581 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14582
14583 * vc.el (vc-do-command): Remove unused commands.
14584 (vc-version-diff): Make sure default-directory ends with a slash.
14585 Move the window commands into a vc-exec-after.
14586 (vc-print-log): Move more of the code into the `vc-exec-after'.
14587
14588 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14589
14590 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
14591 (vc-print-log): Search current revision from beginning of buffer.
14592 (vc-revert-buffer): Clear echo area after the diff is finished.
14593 (vc-prefix-map): Removed definition of "t" for terse display in vc
14594 dired.
14595 (vc-dired-mode-map): Inherit from dired-mode-map. Added
14596 definition of "vt" for terse display.
14597 (vc-dired-mode): Fix dired-move-to-filename-regexp.
14598
14599 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14600
14601 * vc.el (vc-exec-after): Avoid caddr.
14602
14603 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14604
14605 * vc.el (vc-exec-after): New function.
14606 (vc-do-command): Use it to add a termination message for async
14607 procs.
14608 (vc-checkout): Try to handle a missing-backend situation.
14609 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
14610 of a directory with a backend using async diffs.
14611 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
14612 present.
14613
14614 * vc-sccs.el (vc-sccs-state-heuristic): Use
14615 file-ownership-preserved-p.
14616
14617 * vc-rcs.el (vc-rcs-state-heuristic): Use
14618 file-ownership-preserved-p.
14619 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
14620
14621 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14622
14623 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
14624 vc-do-command.
14625
14626 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
14627 when there are no changes.
14628
14629 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14630
14631 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
14632
14633 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
14634
14635 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14636
14637 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
14638
14639 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
14640 the `fset' outside of the defvar so that it works even if
14641 vc-prefix-map was already defined.
14642 (vc-setup-buffer): New function, split out of vc-do-command.
14643 (vc-do-command): Allow BUFFER to be t to mean `just use the
14644 current buffer without any fuss'.
14645 (vc-version-diff): Change the `diff' backend operation to just put
14646 the diff in the current buffer without erasing it. Always use
14647 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
14648 shrink-window-if-larger-than-buffer.
14649 (vc-print-log): Change the `print-log' backend operation to just
14650 put the log in the current buffer without erasing it. Protect
14651 shrink-window-if-larger-than-buffer.
14652 (vc-update-change-log): Fix setd typo.
14653
14654 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
14655 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
14656
14657 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
14658 (vc-rcs-diff): Insert in the current buffer and remove unused arg
14659 CMP.
14660
14661 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
14662 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
14663 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
14664
14665 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14666
14667 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
14668 not possible, use vc-BACKEND-workfile-unchanged-p.
14669 (vc-default-workfile-unchanged-p): New function. Delegates to a
14670 full vc-BACKEND-diff.
14671
14672 * vc-hooks.el (vc-simple-command): Removed.
14673
14674 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
14675 instead of vc-simple-command.
14676 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
14677 avoid doing a diff when opening a file.
14678 (vc-rcs-state): Added check for unlocked-changes.
14679 (vc-rcs-header): Escape Id.
14680 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
14681 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
14682 version.
14683
14684 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
14685 (vc-sccs-diff): Remove optional arg CMP.
14686 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
14687 SCCS-specific function.
14688
14689 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
14690 vc-simple-command.
14691
14692 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14693
14694 * vc.el (vc-editable-p): Renamed from vc-writable-p.
14695 (with-vc-file, vc-merge): Use vc-editable-p.
14696 (vc-do-command): Remove unused var vc-file and fix the
14697 doubly-defined `status' var. Add a user message when starting an
14698 async command.
14699 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
14700 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
14701 Use with-current-buffer.
14702 (vc-buffer-sync): Use unless.
14703 (vc-next-action-on-file): If the file is 'edited by read-only,
14704 make it read-write instead of trying to commit.
14705 (vc-version-diff, vc-update-change-log): Use `setq
14706 default-directory' rather than `cd'.
14707 (vc-log-edit): Don't forget to set default-directory in the
14708 buffer.
14709
14710 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
14711 (vc-sccs-state-heuristic): Use file-writable-p instead of
14712 comparing userids.
14713 (vc-sccs-checkout): Use `unless'.
14714
14715 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
14716 of comparing userids.
14717 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
14718 Simplify the logic by eliminating unreachable code.
14719 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
14720 just do a recursive call if we need to retry.
14721 (vc-rcs-checkout): Handle the case where rcs is missing by making
14722 the buffer read-write if requested and re-signalling the error.
14723
14724 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
14725
14726 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14727
14728 * vc-hooks.el (vc-handled-backends): Docstring change.
14729 (vc-ignore-vc-files): Mark obsolete.
14730 (vc-registered): Check vc-ignore-vc-files.
14731 (vc-find-file-hook, vc-file-not-found-hook): Don't check
14732 vc-ignore-vc-files.
14733
14734 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
14735
14736 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14737
14738 * vc.el (vc-checkout): Don't do anything special for ange-ftp
14739 files since ange-ftp already has vc-registered return nil.
14740
14741 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
14742 (vc-sccs-workfile-version): Use with-temp-buffer and new
14743 vc-parse-buffer and don't bother setting the property.
14744 (vc-sccs-add-triple): Use with-current-buffer and
14745 find-file-noselect.
14746 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
14747
14748 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
14749 derives from the old vc-parse-buffer but uses the revision number
14750 rather than the date (much easier to compare robustly).
14751 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
14752 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
14753 locking-user more directly. Check strict locking and set
14754 checkout-model appropriately.
14755 (vc-rcs-parse-locks): Remove.
14756 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
14757 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
14758 (vc-rcs-system-release): Use with-current-buffer and
14759 vc-parse-buffer.
14760 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
14761
14762 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
14763 (vc-simple-command): Docstring fix.
14764 (vc-registered): Align the way the file-handler is called with the
14765 way the function itself works.
14766 (vc-file-owner): Remove.
14767
14768 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
14769 extraction of fields and call to file-attributes because of a
14770 temporary bug in rcp.el.
14771 (vc-cvs-fetch-status): Use with-current-buffer.
14772
14773 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14774
14775 * vc.el (vc-do-command): Use file-relative-name.
14776 (vc-responsible-backend): Use vc-backend if possible.
14777 (vc-create-snapshot): Improve the `interactive' spec. Add support
14778 for branches and dispatch to backend-specific `create-snapshot'.
14779 (vc-default-create-snapshot): New function, containing the bulk of
14780 the old vc-create-snapshot.
14781 (vc-retrieve-snapshot): Improve the interactive spec.
14782
14783 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
14784 (vc-backend-hook-functions): Remove.
14785 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
14786 (vc-backend): Reintroduce the test for `file = nil' now that I
14787 know why it was there (and added a comment to better remember).
14788
14789 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
14790 code from vc-sccs-hooks.el.
14791 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
14792 'vc anymore.
14793 (vc-sccs-responsible-p): Use expand-file-name instead of concat
14794 and file-directory-p instead of file-exists-p.
14795 (vc-sccs-check-headers): Simplify the regexp.
14796
14797 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
14798 from vc-rcs-hooks.el. Don't require 'vc anymore.
14799 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
14800 file-directory-p instead of file-exists-p.
14801
14802 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
14803 from vc-cvs-hooks.el.
14804 (proto vc-cvs-registered): Require 'vc-cvs instead of
14805 'vc-cvs-hooks. Don't require 'vc anymore.
14806 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
14807 file-directory-p instead of file-exists-p.
14808 (vc-cvs-create-snapshot): New function, replacing
14809 vc-cvs-assign-name.
14810 (vc-cvs-assign-name): Remove.
14811
14812 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14813
14814 * vc-cvs.el (vc-cvs-header): New var.
14815
14816 * vc-rcs.el (vc-rcs-exists): Remove.
14817 (vc-rcs-header): New var.
14818
14819 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
14820 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
14821 (vc-sccs-header): New var.
14822
14823 * vc.el (vc-do-command): Get rid of the `last' argument.
14824 (vc-header-alist): Remove, replaced by vc-X-header.
14825 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
14826 (vc-dired-hook): Use expand-file-name instead of concat.
14827 (vc-directory): Use file-name-as-directory.
14828 (vc-snapshot-precondition, vc-create-snapshot)
14829 (vc-retrieve-snapshot): Allow the command to operate on any
14830 directory.
14831
14832 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
14833 just removing the 'WORKFILE argument or by removing the 'MASTER
14834 argument and replacing `file' with (vc-name file).
14835
14836 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14837
14838 * vc.el: Update Copyright and add a crude list of backend funs.
14839 (vc-writable-p): New function.
14840 (with-vc-file): Use vc-writable-p.
14841 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
14842 (vc-register): Avoid vc-name.
14843 (vc-locking-user): Remove.
14844 (vc-steal-lock): Make the `owner' arg non-optional.
14845 (vc-merge): Use vc-writable-p instead of vc-locking-user and
14846 vc-checkout-model.
14847 (vc-default-dired-state-info): Use vc-state instead of
14848 vc-locking-user and return special strings for special states.
14849 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
14850 and get rid of one of the special CVS cases.
14851 (vc-cancel-version): prettify error message with \\[...].
14852 (vc-rename-master): New function.
14853 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
14854 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
14855 the CVS special case generic.
14856 (vc-default-record-rename): Remove.
14857 (vc-file-tree-walk-internal): Only call FUNC for files that are
14858 under control of some VC backend and replace `concat' with
14859 expand-file-name.
14860 (vc-file-tree-walk): Update docstring.
14861 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
14862 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
14863
14864 * vc-sccs.el (vc-sccs-rename-file): Renamed from
14865 vc-sccs-record-rename. Use `find-file-noselect' rather than
14866 `find-file' and call `vc-rename-master' to do the actual move.
14867 (vc-sccs-diff): Remove unused `backend' variable.
14868
14869 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
14870 to delay loading of vc-sccs until it is really used.
14871 (vc-sccs-master-templates): Preload.
14872 (vc-sccs-state): Update call to vc-sccs-parse-locks.
14873 (vc-sccs-project-dir): Remove (merged into
14874 vc-sccs-search-project-dir).
14875 (vc-sccs-search-project-dir): Rewrite using file name handling ops
14876 rather than `concat', make sure it is preloaded and don't bother
14877 to check that the file actually exists.
14878 (vc-sccs-parse-locks): Remove unused `file' argument, remove
14879 `locks' argument (use buffer's content instead) and eliminate n^2
14880 behavior.
14881
14882 * vc-rcs.el: Update Copyright.
14883 (vc-rcs-rename-file): New function.
14884 (vc-rcs-diff): Remove unused `backend' variable.
14885
14886 * vc-hooks.el: Update Copyright.
14887 (vc-backend): Don't accept a nil argument any more.
14888 (vc-up-to-date-p): Turn into a defsubst.
14889 (vc-possible-master): New function.
14890 (vc-check-master-templates): Use `vc-possible-master' and allow
14891 funs in vc-X-master-templates to return a non-existent file.
14892
14893 * vc-cvs.el: Update Copyright.
14894 (vc-cvs-diff): Remove unused `backend' variable.
14895 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
14896
14897 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
14898
14899 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14900
14901 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
14902 since it can be called from vc-rcs.el.
14903 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
14904
14905 2000-09-04 Andre Spiegel <spiegel@gnu.org>
14906
14907 * vc.el (vc-version-diff): Expand file name read from the
14908 minibuffer. Handle the case when a previous version number can't
14909 be guessed. Give suitable messages when there were no differences
14910 found.
14911 (vc-clear-headers): Call backend-specific implementation, if one
14912 exists.
14913 (vc-cancel-version): Made error checks generic. When done, clear
14914 headers generically, too.
14915
14916 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
14917 from vc-clear-headers in vc.el.
14918
14919 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
14920 correctly.
14921 (vc-rcs-latest-on-branch-p): Made second argument VERSION
14922 optional. Handle the case when it's not there.
14923
14924 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14925
14926 * vc.el (vc-locking-user): Moved from vc-hooks.el.
14927
14928 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14929
14930 * vc-hooks.el (vc-loadup): Remove.
14931 (vc-find-backend-function): Use `require'. Also, handle the case
14932 where vc-BACKEND-hooks.el doesn't exist.
14933 (vc-call-backend): Cleanup.
14934
14935 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14936
14937 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
14938 vc-rcs-grab-templates)
14939 (vc-rcs-registered): Remove. The default function works as well.
14940 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
14941 vc-sccs-grab-templates)
14942 (vc-sccs-registered): Remove. The default function works as well.
14943
14944 * vc.el (vc-version-diff): Left out a vc- in call to
14945 vc-call-backend.
14946 (vc-default-dired-state-info, vc-default-record-rename)
14947 (vc-default-merge-news): Update for the new backend argument.
14948
14949 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
14950 using the default function.
14951 (vc-call-backend): If calling the default function, pass it the
14952 backend as first argument. Update the docstring accordingly.
14953 (vc-default-state-heuristic, vc-default-mode-line-string): Update
14954 for the new backend argument.
14955 (vc-make-backend-sym): Renamed from vc-make-backend-function.
14956 (vc-find-backend-function): Use the new name.
14957 (vc-default-registered): New function.
14958
14959 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14960
14961 * vc.el (vc-merge): Use vc-find-backend-function.
14962
14963 * vc-hooks.el (vc-backend-functions): Remove.
14964 (vc-loadup): Don't setup 'vc-functions.
14965 (vc-find-backend-function): New function.
14966 (vc-call-backend): Use above fun and populate 'vc-functions
14967 lazily.
14968 (vc-backend-defines): Remove.
14969
14970 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14971
14972 * vc.el (vc-register): Put a FIXME note for a newly found bug.
14973 Call vc-call-backend without the leading vc-.
14974 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
14975 (vc-check-headers): Call vc-call-backend without the leading vc-.
14976 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
14977 (vc-annotate-display): Replace confusing use of `cond' with `or'.
14978 Call vc-call-backend without the leading vc-.
14979
14980 * vc-cvs.el (tail): Provide vc-cvs.
14981 * vc-sccs.el (tail): Provide vc-sccs.
14982 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
14983
14984 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
14985 (vc-make-backend-function, vc-call): Pass names without leading
14986 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
14987 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
14988 (vc-call-backend): Always try to load vc-X-hooks.
14989 (vc-registered): Remove vc- in call to vc-call-backend.
14990
14991 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
14992
14993 * vc.el (vc-process-filter): New function.
14994 (vc-do-command): Setup `vc-process-filter' for the async process.
14995 (vc-maybe-resolve-conflicts): New function to reduce
14996 code-duplication. Additionally, it puts the buffer in
14997 `smerge-mode' if applicable.
14998 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
14999 calling `merge-news'.
15000 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
15001 (vc-log-edit): New function. Replacement for `vc-log-mode' by
15002 interfacing to log-edit.el.
15003 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
15004 log-edit is available.
15005 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
15006
15007 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15008
15009 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
15010 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
15011 defvar and the initialization.
15012 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
15013
15014 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
15015 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
15016
15017 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
15018
15019 2000-09-04 Andre Spiegel <spiegel@gnu.org>
15020
15021 * vc.el (vc-file-clear-masterprops): Removed.
15022 (vc-checkin, vc-revert-buffer): Removed calls to the above.
15023 (vc-version-diff): Use buffer-size without argument.
15024 (vc-register): Heed vc-initial-comment.
15025
15026 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
15027 default branch.
15028
15029 * vc-rcs.el (vc-rcs-register): Parse command output to find master
15030 file name and workfile version.
15031 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
15032
15033 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
15034 vc-file-clear-masterprops.
15035
15036 * vc-sccs.el (vc-sccs-checkout): Removed call to
15037 vc-file-clear-masterprops. If writable, set vc-state to 'edited
15038 rather than user login name.
15039
15040
15041 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15042
15043 * vc.el (vc-workfile-unchanged-p): Remove unused argument
15044 `want-differences-if-changed' and simplify.
15045 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
15046 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
15047 output (which is invalid for async vc-diff) to decide whether to
15048 do the revert silently or not.
15049
15050 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15051
15052 * vc-hooks.el (vc-loadup): Load files quietly.
15053 (vc-call-backend): Oops, brain fart.
15054
15055 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15056
15057 * vc-cvs.el (vc-cvs-state): Typo.
15058 (vc-cvs-merge-news): Return the status code rather than the error msg.
15059
15060 2000-09-04 Andre Spiegel <spiegel@gnu.org>
15061
15062 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
15063 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
15064 vc-state or vc-up-to-date-p.
15065 (vc-merge): Use vc-backend-defines to check whether merging is
15066 possible. Set state to 'edited after successful merge.
15067
15068 * vc-hooks.el (vc-locking-user): If locked by the calling user,
15069 return that name. Redocumented.
15070
15071 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15072
15073 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
15074 new `vc-state' semantics.
15075 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
15076 'vc-locking-user to the current user.
15077 (vc-merge): Inline vc-backend-merge. Comment out code that I
15078 don't understand and hence can't adapt to the new `vc-state' and
15079 `vc-locking-user' semantics.
15080 (vc-backend-merge): Remove.
15081
15082 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
15083 rather than 'vc-locking-user.
15084
15085 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
15086
15087 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
15088 (vc-state): Don't use 'reserved any more. Just use the same
15089 convention as the one used for vc-<backend>-state where the
15090 locking user (as a string) is returned.
15091 (vc-locking-user): Update, based on the above convention. The
15092 'vc-locking-user property has disappeared.
15093 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
15094
15095 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
15096 with a heuristic one.
15097 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
15098 (vc-cvs-checkin): Do a trivial parse to set the state in case of
15099 error. That allows us to get to 'needs-merge even in the
15100 stay-local case. There's still no way to detect 'needs-patch in
15101 such a setup (or to force an update for that matter).
15102 (vc-cvs-logentry-check): Remove, the default works as well.
15103
15104 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15105
15106 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
15107
15108 * vc.el (vc-do-command): kill-all-local-variables, to reset any
15109 major-mode in which the buffer might have been put earlier. Use
15110 `remove' and `when'. Allow `okstatus' to be `async' and use
15111 `start-process' in this case.
15112 (vc-version-diff): Handle the case where the diff looks empty
15113 because of the use of an async process.
15114
15115 2000-09-04 Andre Spiegel <spiegel@gnu.org>
15116
15117 * vc.el (vc-next-action-on-file): Removed optional parameter
15118 `simple'. Recompute state unconditionally.
15119 (vc-default-toggle-read-only): Removed.
15120
15121 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
15122 (vc-toggle-read-only): Undid prev change.
15123
15124 * vc-cvs.el (vc-cvs-stay-local): Renamed from
15125 vc-cvs-simple-toggle. Redocumented.
15126 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
15127 (vc-cvs-toggle-read-only): Removed.
15128
15129 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15130
15131 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
15132 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
15133 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
15134 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
15135 still is. So maybe it should be removed.
15136 (vc-head-version, vc-find-binary): Remove.
15137 (vc-recompute-state): Move from vc-hooks.el.
15138 (vc-next-action-on-file): Add a `simple' argument to allow
15139 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
15140 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
15141 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
15142 (vc-dired-mode-map): Properly defvar it.
15143 (vc-print-log): Call log-view-mode if available.
15144 (small-temporary-file-directory): defvar instead of use boundp.
15145 (vc-merge-news): Moved to vc-cvs.el.
15146 (vc-default-merge-news): New function.
15147
15148 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
15149 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
15150 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
15151 unknown `vc-latest-version' function. It should probably refer to
15152 vc-workfile-version or somesuch, but it's very unclear to me and I
15153 don't have SCCS to test things.
15154
15155 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
15156 (vc-sccs-state-heuristic): Fix typo.
15157 (vc-sccs-workfile-unchanged-p): Add missing argument.
15158
15159 * vc-rcs.el: Require vc and vc-rcs-hooks.
15160 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
15161 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
15162 (vc-release-greater-or-equal-p): Move from vc.
15163 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
15164 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
15165 (vc-rcs-checkout): Add a missing `new-version' argument in the
15166 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
15167
15168 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
15169 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
15170 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
15171 than the apparently unbound `workfile-version'.
15172
15173 * vc-hooks.el (vc-master-templates): Def the obsolete var.
15174 (vc-file-prop-obarray): Use `make-vector'.
15175 (vc-backend-functions): Add new hookable functions
15176 vc-toggle-read-only, vc-record-rename and vc-merge-news.
15177 (vc-loadup): If neither backend nor default functions exist, use
15178 the backend function rather than nil.
15179 (vc-call-backend): If the function if not bound yet, try to load
15180 the non-hook file to see if it provides it.
15181 (vc-call): New macro plus use it wherever possible.
15182 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
15183 nor `vc-find-binary' since it's only called from
15184 vc-mistrust-permission which is only used once the backend is known.
15185 (vc-checkout-model): Fix parenthesis.
15186 (vc-recompute-state, vc-prefix-map): Move to vc.el.
15187
15188 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
15189 (vc-cvs-release, vc-cvs-system-release): Remove.
15190 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
15191 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
15192 status symbols.
15193 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
15194 (vc-cvs-toggle-read-only): First cut at a function to allow a
15195 cvs-status-free vc-toggle-read-only.
15196 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
15197 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
15198 vc-cvs-status. Also set vc-state rather than vc-locking-user.
15199 (vc-cvs-checkout): Modify access rights directly if the user
15200 requested not to use `cvs edit'. And refresh the mode line.
15201
15202 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
15203 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
15204
15205 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
15206
15207 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
15208 workfile' that got lost when the code was extracted from vc.el.
15209 And merged the tail with the rest of the code (not possible in the
15210 old vc.el where the tail was shared among all backends). And
15211 explicitly set the state to 'edited if `writable' is set.
15212
15213 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
15214 (vc-cvs-state): Be careful to return the value from
15215 vc-cvs-parse-state.
15216 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
15217 property but return it instead. Also be careful to handle a nil
15218 or "" `rev' when workfile is non-nil (it was handled properly when
15219 workfile was nil).
15220
15221 * vc.el: Removed those pesky unnecessary `(function' quotes.
15222 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
15223 directly in the defvar.
15224 (vc-do-command): Bind inhibit-read-only so as to properly handle
15225 the case where the destination buffer has been made read-only.
15226 (vc-diff): Delegate to vc-version-diff in all cases.
15227 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
15228 (vc-annotate-mode-variables): Removed (code moved partly to
15229 defvars and partly to vc-annotate-add-menu).
15230 (vc-annotate-mode): Turned into a derived-mode.
15231 (vc-annotate-add-menu): Moved in code in
15232 vc-annotate-mode-variables.
15233 (vc-update-change-log): Use make-temp-file if available.
15234
15235 2000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
15236
15237 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
15238 `vc-checkout-model' updated to `vc-cvs-update-model'.
15239
15240 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15241
15242 * vc.el (vc-next-action-on-file): Added handling of state
15243 `unlocked-changes'.
15244 (vc-checkout-carefully): Is now practically obsolete, unless the
15245 above is too slow to be enabled unconditionally.
15246 (vc-update-change-log): Fixed typo.
15247
15248 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
15249
15250 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
15251 Now handles state `unlocked-changes'.
15252 (vc-sccs-workfile-unchanged-p): New function, to support the above.
15253
15254 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
15255
15256 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
15257 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
15258 `unlocked-changes'.
15259 (vc-rcs-workfile-unchanged-p): Renamed from
15260 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
15261 function yet, but supposed to become one soon.
15262
15263 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
15264 `vc-steal-lock'.
15265 (vc-call-backend): Changed error message.
15266 (vc-state): Added description of state `unlocked-changes'.
15267
15268 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15269
15270 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
15271 always return t in CVS-controlled directories.
15272
15273 * vc.el (vc-responsible-backend): New function.
15274 (vc-register): Largely rewritten.
15275 (vc-admin): Removed (implementation moved into vc-register).
15276 (vc-checkin): Redocumented.
15277 (vc-finish-logentry): If no backend defined yet (because we are in
15278 the process of registering), use the responsible backend.
15279
15280 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
15281 Updated function lists.
15282 (vc-call-backend): Fixed typo.
15283
15284 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
15285 New functions.
15286 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
15287 Removed query option. Redocumented.
15288
15289 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15290
15291 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
15292
15293 * vc.el: Updated callers of `vc-checkout-required' to use
15294 `vc-checkout-model'.
15295
15296 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15297
15298 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
15299 stuff updated to reference this function instead of the old
15300 `vc-backend-release-p'.
15301
15302 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15303
15304 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
15305 vc-checkout-model. Return appropriate values. Updated callers.
15306
15307 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15308
15309 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
15310 (vc-backend-revert): Function moved into `vc-revert';
15311 `vc-next-action' must be updated to accomodate this change.
15312 (vc-backend-steal): Function moved into `vc-finish-steal'.
15313 (vc-backend-logentry-check): Function moved into
15314 `vc-finish-logentry'.
15315 (vc-backend-printlog): Function moved into `vc-print-log'.
15316 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
15317 (vc-backend-assign-name): Function moved into
15318 `vc-create-snapshot'.
15319
15320 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15321
15322 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
15323 Rename to vc-checkout-model. Return appropriate values.
15324 Update callers.
15325
15326 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
15327 to vc-checkout-model.
15328 (vc-checkout-required): Rename to vc-checkout-model.
15329 Re-implement and re-comment.
15330 (vc-after-save): Use vc-checkout-model.
15331
15332 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15333
15334 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
15335 Update to use the vc-BACKEND-diff functions instead.
15336 `vc-diff' is now working.
15337
15338 * vc-rcs.el (vc-rcs-logentry-check): New function.
15339
15340 * vc-cvs.el (vc-cvs-logentry-check): New function.
15341
15342 * vc-sccs.el (vc-sccs-diff): Function changed name from
15343 `vc-backend-diff'. This makes `vc-diff' work.
15344
15345 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
15346 of functions possibly implemented in a vc-BACKEND library.
15347 (vc-checkout-required): Fix bug that caused an error to be
15348 signaled during `vc-after-save'.
15349
15350 * vc.el: Fix typo.
15351 This checkin is made with our new VC code base for the very first time.
15352 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
15353
15354 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
15355 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
15356
15357 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
15358 updated to `vc-uses-locking'.
15359 (vc-checkout-required): Call to backend function.
15360 `vc-checkout-required' updated to `vc-uses-locking' instead.
15361
15362 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
15363 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
15364
15365 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
15366 to match the split into various backends.
15367 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
15368 (vc-retrieve-snapshot): Bug fix.
15369
15370 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15371
15372 * vc-sccs.el (vc-sccs-release): Doc fix.
15373
15374 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15375
15376 * vc.el (vc-next-action-on-file): Bug found and fixed.
15377 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
15378 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
15379
15380 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
15381 (vc-rcs-checkout): Name space cleaned up. No more revision number
15382 crunching function names that are not prefixed with vc-rcs.
15383 (vc-rcs-checkout-model): Function added. References to
15384 `vc-checkout-model' replaced.
15385
15386 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15387
15388 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
15389 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
15390 still need to be split, and implemented for RCS).
15391
15392 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15393
15394 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
15395
15396 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
15397 required by the vc.el file.
15398
15399 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
15400 required by the vc.el file.
15401 (vc-rcs-exists): Function added.
15402
15403 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
15404 required by the vc.el file.
15405
15406 * vc.el (vc-admin): Updated to handle selection of appropriate
15407 backend. Current implementation is crufty and need re-thinking.
15408
15409 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
15410
15411 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15412
15413 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
15414 beginning of annotate buffers correctly.
15415
15416 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
15417 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
15418 functionality updated quite a lot to support multiple backends.
15419 Variables `vc-annotate-mode', `vc-annotate-buffers',
15420 `vc-annotate-backend' added.
15421
15422 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
15423 `vc-annotate-difference' added to supported backend functions.
15424
15425 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15426
15427 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
15428 Use with-temp-file instead of /bin/sh. Merged from mainline
15429
15430 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15431
15432 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
15433
15434 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
15435
15436 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
15437
15438 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15439
15440 * vc-hooks.el: vc-state-heuristic added to
15441 vc-backend-hook-functions.
15442
15443 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
15444
15445 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
15446
15447 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
15448 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
15449 state to `reserved'.
15450
15451 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
15452 `vc-checkout-required'. Rename the `locked' state to `reserved'.
15453
15454 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15455
15456 * vc-rcs-hooks.el: Implement new state model. Hardly anything
15457 untouched.
15458
15459 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
15460
15461 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
15462 if defined. (Merged from main line, slightly adapted.)
15463
15464 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
15465 millenium problem (merged from mainline).
15466
15467 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15468
15469 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
15470 part and moved the non-BACKEND stuff to vc.el.
15471
15472 * vc.el: Split the annotate feature into a BACKEND specific part
15473 and moved it from the vc-cvs.el file to this one.
15474
15475 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15476
15477 * vc-hooks.el: Implement new state model.
15478 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
15479 (vc-locking-user): Simplify. Now only needed if the file is
15480 locked by somebody else.
15481 (vc-lock-from-permissions): Remove. Functionality is in
15482 vc-sccs-hooks.el and vc-rcs-hooks.el now.
15483 (vc-mode-line-string): New name for former vc-status. Adapted.
15484 (vc-mode-line): Adapt to use the above. Remove optional parameter.
15485
15486 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
15487 Various simplifications and adaptations all over the place.
15488
15489 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
15490 Simplify and adapt the rest.
15491
15492 * vc.el (vc-resynch-window): Add TODO comment: check for
15493 interaction with view mode according to recent RCS change.
15494 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
15495
15496 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15497
15498 * vc.el: Convert the remaining function comments to docstrings.
15499
15500 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15501
15502 * vc.el (vc-backend-release, vc-release-greater-or-equal)
15503 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
15504 (vc-minor-part, vc-previous-version): Functions that operate and
15505 compare revision numbers got proper documentation. Comments added
15506 about their possible removal.
15507
15508 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15509
15510 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
15511 the vc-backend.el files.
15512
15513 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
15514
15515 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
15516 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
15517 (vc-rcs-previous-version): Functions added.
15518
15519 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
15520
15521 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
15522
15523 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15524
15525 * vc-hooks.el (vc-master-templates): Is really obsolete.
15526 Comment out the definition for now. What is the right procedure
15527 to get rid of it?
15528 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
15529 rewritten.
15530 (vc-default-registered): Remove.
15531 (vc-check-master-templates): New function; does mostly what the
15532 above did before.
15533 (vc-locking-user): Don't rely on the backend to set the property.
15534
15535 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
15536 Rewrite documentation.
15537 (vc-rcs-templates-grabbed): New variable.
15538 (vc-rcs-grab-templates): New function.
15539 (vc-rcs-registered): Rewrite to use above mechanism.
15540
15541 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
15542 Rewrite documentation.
15543 (vc-sccs-templates-grabbed): New variable.
15544 (vc-sccs-grab-templates): New function.
15545 (vc-sccs-registered): Rewrite to use above mechanism.
15546 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
15547 Don't throw the result, simply return it.
15548
15549 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
15550 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
15551 (vc-cvs-registered): Does the check itself now. Simplify.
15552
15553 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
15554 from main line.
15555
15556 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15557
15558 * vc-cvs.el (vc-cvs-diff): New function.
15559
15560 * vc-sccs.el (vc-sccs-diff): New function.
15561
15562 * vc-rcs.el (vc-rcs-diff): New function.
15563 (vc-rcs-checkout): Bug (typo) found and fixed.
15564 (vc-rcs-register-switches): New variable.
15565
15566 * vc.el (vc-backend-diff): Function removed and placed in the
15567 backend files.
15568
15569 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15570
15571 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
15572
15573 * vc.el (vc-backend-checkout): Function removed and replaced in
15574 the vc-backend.el files.
15575
15576 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
15577
15578 * vc.el (vc-backend-admin): Removed and replaced in the
15579 vc-backend.el files.
15580
15581 * vc.el (Martin): Removed all the annotate functionality since it
15582 is CVS backend specific.
15583
15584 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15585
15586 * spec.txt: Added specification of vc-state.
15587
15588 * vc-sccs-hooks.el (vc-sccs-master-properties):
15589 Remove handling of vc-latest-version and
15590 vc-your-latest-version. What used to be vc-latest-version, is now
15591 returned as vc-workfile-version.
15592 (vc-sccs-workfile-version): Adapt.
15593
15594 2000-09-04 Dave Love <fx@gnu.org>
15595
15596 * vc.el: [Merged from mainline.]
15597 (vc-dired-mode): Make the dired-move-to-filename-regexp
15598 regexp match the date, to avoid treating date as file size.
15599 Add YYYY S option to WESTERN/
15600
15601 2000-09-04 Dave Love <fx@gnu.org>
15602
15603 * vc.el: Require `compile' when compiling.
15604 (vc-logentry-check-hook): New option.
15605 (vc-steal-lock): Use compose-mail.
15606 (vc-dired-mode-map): Defvar when compiling.
15607 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
15608 vc-sccs.el and renamed. Callers changed.
15609 (vc-backend-checkout, vc-backend-logentry-check)
15610 (vc-backend-merge-news): Doc fix.
15611 (vc-default-logentry-check): New function.
15612 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
15613 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
15614 (vc-backend-merge): Doc fix. Use backend functions.
15615 (vc-check-headers): Use backend functions.
15616
15617 * vc-cvs.el: Require vc when compiling.
15618 (vc-cvs-register-switches): Doc fix.
15619 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
15620 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
15621 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
15622 New functions (code from vc.el).
15623 (vc-annotate-display-default): Fix interactive spec.
15624 (vc-annotate-time-span): Doc fix.
15625
15626 * vc-rcs.el: Require vc when compiling.
15627 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
15628 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
15629 (vc-rcs-checkin): New functions (code from vc.el).
15630 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
15631 Doc fix.
15632 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
15633
15634 * vc-sccs.el: Require vc when compiling.
15635 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
15636 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
15637 (vc-sccs-revert)
15638 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
15639 from vc.el).
15640 (vc-sccs-add-triple, vc-sccs-record-rename)
15641 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
15642 (vc-sccs-admin): Doc fix.
15643
15644 2000-09-04 Martin Lorentzson <martinl@gnu.org>
15645
15646 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
15647 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
15648 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
15649 from vc.el.
15650
15651 * vc-sccs.el (vc-admin-sccs): Added from vc.el
15652
15653 * vc-cvs.el: Moved the annotate functionality from vc.el.
15654 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
15655
15656 2000-09-04 Dave Love <fx@gnu.org>
15657
15658 * vc.el (vc-backend-release): Call vc-system-release.
15659
15660 * vc-sccs.el (vc-sccs-system-release):
15661 Renamed from vc-sccs-backend-release.
15662
15663 * vc-rcs.el (vc-rcs-system-release):
15664 Renamed from vc-rcs-backend-release.
15665
15666 * vc-cvs.el (vc-cvs-system-release):
15667 Renamed from vc-cvs-backend-release.
15668
15669 2000-09-04 Dave Love <fx@gnu.org>
15670
15671 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
15672 backend files.
15673 (vc-backend-release): Dispatch to backend functions.
15674 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
15675 probably needs attention.]
15676
15677 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
15678 (vc-sccs-backend-release): New function.
15679
15680 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
15681 (vc-cvs-backend-release): New function.
15682
15683 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
15684 Doc fix.
15685 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
15686 (vc-default-dired-state-info): New function.
15687 (vc-dired-state-info): Dispatch to backends.
15688 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
15689
15690 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
15691 from vc.el and renamed.
15692
15693 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15694
15695 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
15696 (vc-version-other-window, vc-backend-assign-name): Removed
15697 references to vc-latest-version; sometimes changed into
15698 vc-workfile-version.
15699
15700 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
15701 vc-rcs-master-workfile-version.
15702 (vc-rcs-workfile-version): Use the above. Don't call
15703 vc-latest-version (that was unreachable code, anyway).
15704 (vc-rcs-fetch-master-properties): Doc fix.
15705
15706 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
15707 (vc-backend-hook-functions): Removed them from this list, too.
15708 (vc-fetch-properties): Removed.
15709 (vc-workfile-version): Doc fix.
15710
15711 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
15712 (vc-rcs-workfile-version, vc-rcs-locking-user)
15713 (vc-rcs-uses-locking): Use it.
15714
15715 * vc-hooks.el (vc-consult-rcs-headers):
15716 Moved into vc-rcs-hooks.el, under the name
15717 vc-rcs-consult-headers.
15718
15719 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
15720 headers.
15721 (vc-cvs-find-master): Use this name only; correct different
15722 versions of the name.
15723
15724 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
15725 New functions.
15726 (vc-sccs-locking-user): Use the latter.
15727
15728 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
15729 New functions.
15730
15731 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
15732 Moved into both
15733 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
15734 functions are implementation details of those two backends.
15735
15736 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15737
15738 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
15739 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
15740
15741 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
15742 (vc-sccs-parse-locks): SCCS-specific code moved here from
15743 vc-hooks.
15744
15745 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
15746 code moved here from vc-hooks.
15747
15748 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
15749 into back-end specific parts and removed. Callers not updated
15750 yet; because I guess these callers will disappear into back-end
15751 specific files anyway.
15752
15753 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15754
15755 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
15756 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
15757 `vc-uses-locking'.
15758
15759 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
15760 Store yes/no in the property, and return t/nil. Updated all
15761 callers.
15762
15763 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
15764 vc-sccs-uses-locking. Don't set property.
15765 (vc-sccs-locking-user): Don't set property.
15766
15767 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
15768 vc-cvs-uses-locking. Don't set property here; leave that to
15769 vc-hooks.
15770 (vc-cvs-locking-user): Reflect above change. Streamlined.
15771
15772 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
15773 vc-rcs-uses-locking.
15774 (vc-rcs-locking-user): Reflect above change.
15775
15776 2000-09-04 Dave Love <fx@gnu.org>
15777
15778 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
15779
15780 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
15781
15782 * vc-hooks.el (vc-checkout-model): Punt to backends.
15783
15784 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
15785
15786 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
15787
15788 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
15789 New functions.
15790
15791 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
15792 New functions.
15793
15794 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
15795 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
15796
15797 * vc-hooks.el (vc-default-locking-user): New function.
15798 (vc-locking-user, vc-workfile-version): Punt to backends.
15799
15800 2000-09-04 Dave Love <fx@gnu.org>
15801
15802 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
15803 (vc-master-workfile-version): Moved from vc-hooks.
15804
15805 * vc-rcs-hooks.el: Fix duplicate code in last change.
15806
15807 * vc-rcs-hooks.el: Require vc-hooks when compiling.
15808 (vc-rcs-master-templates): Improve :type.
15809 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
15810 vc-master-workfile-version): Moved from vc-hooks.
15811
15812 * vc-sccs-hooks.el: Require vc-hooks when compiling.
15813 (vc-sccs-master-templates): Improve :type.
15814 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
15815
15816 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
15817
15818 * vc-cvs-hooks.el: Require vc-hooks when compiling.
15819 (vc-cvs-master-templates): Improve :type. Use
15820 vc-cvs-find-cvs-master.
15821 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
15822 from vc-hooks.
15823 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
15824
15825 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
15826 Moved to vc-cvs-hooks.
15827
15828 * vc-hooks.el: Add doc strings in various places. Simplify the
15829 minor mode setup.
15830 (vc-handled-backends): New user variable.
15831 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
15832 simplification.
15833
15834 2000-09-04 Dave Love <fx@gnu.org>
15835
15836 * vc.el: Some doc fixes for autoloaded and interactive functions.
15837 Fix compilation warnings from ediff stuff.
15838 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
15839
15840 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
15841
15842 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
15843
15844 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
15845
15846 2000-09-04 Dave Love <fx@gnu.org>
15847
15848 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
15849 New variable.
15850 (vc-make-backend-function, vc-loadup, vc-call-backend)
15851 (vc-backend-defines): New functions.
15852
15853 * vc-hooks.el: Various doc fixes.
15854 (vc-default-back-end, vc-follow-symlinks): Custom fix.
15855 (vc-match-substring): Function removed. Callers changed to use
15856 match-string.
15857 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
15858 Simplify.
15859
15860 2000-09-04 Dave Love <fx@gnu.org>
15861
15862 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
15863 type.
15864 (vc-sccs-project-dir, vc-search-sccs-project-dir)
15865 (vc-sccs-registered): Doc fix.
15866
15867 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
15868 (vc-cvs-registered): Doc fix.
15869
15870 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
15871 (vc-rcs-registered): Doc fix.
15872
15873 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15874
15875 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
15876
15877 * vc-hooks.el: vc-registered has been renamed
15878 vc-default-registered. Some functions have been moved to the
15879 backend specific files. they all support the
15880 vc-BACKEND-registered functions.
15881
15882 2000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
15883
15884 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
15885
15886 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
15887
15888 2000-09-04 Dave Love <fx@gnu.org>
15889
15890 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
15891 menu-bar-update-hook.
15892
15893 * help.el (help-manyarg-func-alist): Add
15894 find-operation-coding-system.
15895
15896 * wid-edit.el (widget-sexp-validate): Fix garbled code.
15897
15898 * custom.el (custom-set-variables): Print message about errors in
15899 setting.
15900
15901 2000-09-03 Andrew Innes <andrewi@gnu.org>
15902
15903 * makefile.w32-in: Change to DOS line endings.
15904
15905 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
15906
15907 * mouse.el (mouse-popup-menubar): Supply the prompt string for
15908 minor-mode keymaps, if they don't have one.
15909
15910 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
15911
15912 * eshell/esh-module.el (eval-when-compile): Don't lose if
15913 esh-module.el's file name is truncated to DOS 8+3 limits.
15914
15915 2000-09-01 John Wiegley <johnw@gnu.org>
15916
15917 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
15918 predicate, which caused entries in the completion list to be
15919 doubled.
15920
15921 2000-08-30 John Wiegley <johnw@gnu.org>
15922
15923 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
15924 sending to subprocesses. Also, hook pre-command-hook if
15925 `eshell-send-direct-to-subprocesses' is non-nil.
15926 (eshell-send-direct-to-subprocesses): New config variable. If t,
15927 subprocess input is send immediately.
15928 (eshell-toggle-direct-send): New function.
15929 (eshell-self-insert-command): New function.
15930 (eshell-intercept-commands): New function.
15931 (eshell-send-input): If direct subprocess sending is enabled,
15932 don't echo any input to the Eshell buffer. Let the subprocess
15933 handle that. This requires "stty echo" in bash, for example.
15934
15935 2000-08-28 John Wiegley <johnw@gnu.org>
15936
15937 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
15938 completion function for Eshell's implementation of `unset'.
15939
15940 2000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
15941
15942 * info.el (Info-directory-list): Doc fix.
15943
15944 2000-08-31 Peter Breton <pbreton@ne.mediaone.net>
15945
15946 * filecache.el (file-cache-add-directory-using-find): Don't quote
15947 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
15948
15949 2000-08-31 Kenichi Handa <handa@etl.go.jp>
15950
15951 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
15952 coding systems.
15953
15954 2000-08-30 Andrew Innes <andrewi@gnu.org>
15955
15956 * timer.el (run-with-idle-timer): Undo last change, so that timer
15957 is not activated immediately if Emacs is already idle. Some
15958 existing code relies on this behaviour.
15959
15960 2000-08-30 Miles Bader <miles@gnu.org>
15961
15962 * frame.el (set-frame-font): Do completion of font-name for
15963 interactive use.
15964
15965 2000-08-30 Kenichi Handa <handa@etl.go.jp>
15966
15967 * international/quail.el (quail-start-translation): Bind locally
15968 last-command-event, last-command, and this-command.
15969 (quail-start-conversion): Likewise.
15970 (quail-self-insert-command): Fix docstring.
15971
15972 2000-08-29 Gerd Moellmann <gerd@gnu.org>
15973
15974 * progmodes/executable.el
15975 (executable-make-buffer-file-executable-if-script-p): Check that
15976 buffer contains at least 2 characters.
15977
15978 2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
15979
15980 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
15981
15982 2000-08-29 Dave Love <fx@gnu.org>
15983
15984 * diff-mode.el (diff-mode) <defgroup>: Add :version.
15985 (diff-mode-shared-map): Bind mouse-2.
15986 (diff-imenu-generic-expression): New variable.
15987 (diff-mode): Use it.
15988
15989 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
15990 (mouse-popup-menubar): Add minor mode menus.
15991 (popup-menu): Check for lookup-key returning number.
15992
15993 2000-08-29 Miles Bader <miles@gnu.org>
15994
15995 * comint.el (comint-send-input): Create overlays using the proper
15996 front/read-advance arguments.
15997
15998 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15999
16000 * ps-print.el: Even/odd pages printing. Doc fix.
16001 (ps-print-version): New version number (6.0).
16002 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
16003 (ps-background, ps-begin-file, ps-begin-job): Code fix.
16004 (ps-print-duplex-feature): Variable eliminated.
16005 (ps-even-or-odd-pages): New variable.
16006
16007 * progmodes/ebnf2ps.el: Doc fix.
16008 (ebnf-version): New version (3.3).
16009 (ebnf-user-arrow): Change variable customization to sexp.
16010 (ebnf-user-arrow): Function eliminated.
16011 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
16012
16013 2000-08-29 Kenichi Handa <handa@etl.go.jp>
16014
16015 * help.el (help-xref-mule-regexp): New variable.
16016 (help-make-xrefs): Handle help-xref-mule-regexp.
16017
16018 * international/mule-cmds.el (help-xref-mule-regexp-template): New
16019 variable.
16020 (describe-input-method): Temporarily activate the specfied input
16021 method to display the information.
16022 (describe-language-environment): Hyperlinks to mule related items.
16023
16024 * international/mule-diag.el (charset-multibyte-form-string): New
16025 function.
16026 (list-character-sets-1): Use charset-multibyte-form-string.
16027 (describe-character-set): New function.
16028 (describe-coding-system): Hyperlinks to safe character sets.
16029
16030 * international/quail.el (quail-help): New arg PACKAGE.
16031 Hyperlinks to mule related items.
16032 (quail-help-insert-keymap-description): Use
16033 substitute-command-keys instead of describe-bindings.
16034 (quail-translation-help): Hyperlinks to mule related items.
16035
16036 2000-08-28 John Wiegley <johnw@gnu.org>
16037
16038 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
16039 have a defsubst call itself. Made `eshell-flatten-list' back into
16040 a function again.
16041
16042 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
16043 catch, in case re-centering point at bottom messes up the display.
16044 This happens frequently in Emacs 21, due I believe to variable
16045 line heights.
16046
16047 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
16048 to call `find-tag-interactive'.
16049
16050 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
16051 the list of remember directories.
16052
16053 2000-08-28 John Wiegley <johnw@gnu.org>
16054
16055 * align.el: Test align-region-separate to see if it's a symbol.
16056
16057 2000-08-28 John Wiegley <johnw@gnu.org>
16058
16059 * eshell/esh-util.el (eshell-flatten-list): Made this function
16060 into a defsubst form. It gets used very frequently, although
16061 calls don't occur all that often.
16062
16063 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
16064 examining it.
16065
16066 * eshell/esh-cmd.el (eshell-rewrite-while-command):
16067 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
16068 `eshell-protect'.
16069 (eshell-copy-handles): Created a new macro for duplicating the
16070 current set of open handles. This is needed by the looping
16071 functions.
16072 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
16073 is not incorrectly stomped on.
16074
16075 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
16076 declaration for pcomplete-use-paring.
16077 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
16078 value of eshell-cmpl-use-paring.
16079 * pcomplete.el (pcomplete-use-paring): New config variable, to
16080 indicate whether paring should be used.
16081 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
16082 completion alternatives that have already been used.
16083
16084 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
16085 bound to C-c C-y, which will repeat the previous N arguments
16086 (based on prefix argument).
16087 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
16088
16089 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
16090 if there is no *Help* buffer. This is for XEmacs, which renames
16091 its help buffers uniquely. TODO: Find out what the current buffer
16092 name to delete is.
16093
16094 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
16095 first entry that correlates to a passwd/group number. Later
16096 entries (used for group/user name aliasing to multiple IDs) are
16097 ignored.
16098
16099 * eshell/em-xtra.el (eshell/expr):
16100 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
16101 (eshell-grep, eshell/diff, eshell/locate):
16102 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
16103 argument list, before passing it to the system command.
16104
16105 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
16106 `find-tag' for use at final position in Eshell buffers (which
16107 otherwise triggers an error on Emacs 21).
16108 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
16109 buffer, if it is currently bound to `find-tag'.
16110
16111 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
16112 in the list of matched Makefile names.
16113 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
16114 directory, prefer its contents to Makefile.
16115
16116 * eshell/em-dirs.el (eshell/cd): cd commands that look up
16117 directory parts (like "cd old new", or "cd =regexp"), are now case
16118 sensitive on non-Windows/DOS platforms.
16119
16120 * eshell/esh-mode.el (eshell-parse-command-input): When a user
16121 types RET after an open delimiter (like "), display a message
16122 indicating that Eshell is waiting for the closing delimiter.
16123
16124 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
16125 environment variables.
16126
16127 * eshell/em-unix.el (eshell/diff): Added logic to fail more
16128 gracefully if the user enters incorrect arguments.
16129
16130 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
16131 Eshell buffers.
16132
16133 * eshell/esh-var.el (eshell-interpolate-variable):
16134 * eshell/esh-mode.el (eshell-move-argument):
16135 * eshell/em-unix.el (eshell-du-sum-directory):
16136 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
16137 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
16138 (not (= ...)).
16139
16140 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
16141 to ensure the `preserve' flag gets propagated when doing recursive
16142 directory copies.
16143
16144 2000-08-28 Stefan Monnier <monnier@cs.yale.edu>
16145
16146 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
16147 Don't convert \n into \0177 in memory.
16148 (eshell-read-history, eshell-write-history): Convert \n to \0177,
16149 and back again, when reading and writing.
16150
16151 2000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
16152
16153 * eshell/esh-util.el (eshell-processp): Added to relieve constant
16154 testing of `fboundp' on `processp'.
16155
16156 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
16157 (eshell/jobs): Don't call process-list if it is not bound.
16158 (eshell-gather-process-output): Support systems where async
16159 subprocesses aren't supported.
16160 (eshell-scratch-buffer, eshell-last-sync-output-start): New
16161 variables.
16162
16163 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
16164 eshell-do-eval returns t.
16165 (eshell-do-pipelines-synchronously): New defmacro.
16166 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
16167 when async subprocesses aren't supported.
16168 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
16169 if async subprocesses aren't supported.
16170 (eshell-resume-command): Don't assume STATUS is a string.
16171
16172 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
16173
16174 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
16175 (eshell-close-target, eshell-get-target): Use eshell-processp.
16176 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
16177 fix.
16178 (eshell-get-target, eshell-create-handles): Doc fix.
16179
16180 2000-08-28 Miles Bader <miles@lsi.nec.co.jp>
16181
16182 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
16183 criterion to include commands that output something, as long as it
16184 leaves both the command and the end-of-buffer visible when the
16185 command has exited.
16186 (eshell-review-quick-commands): Adjust the help doc string
16187 accordingly.
16188
16189 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
16190
16191 * locate.el (locate): Cleaned up locate command's interactive prompting
16192 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
16193
16194 * filecache.el (file-cache-case-fold-search): New variable
16195 (file-cache-assoc-function): New variable
16196 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
16197 Use file-cache-case-fold-search variable
16198 (file-cache-add-file): Use file-cache-assoc-function
16199 (file-cache-delete-file): likewise
16200 (file-cache-directory-name): likewise
16201 (file-cache-debug-read-from-minibuffer): likewise
16202
16203 2000-08-28 Gerd Moellmann <gerd@gnu.org>
16204
16205 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
16206 (abbrev-table-name): New function.
16207 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
16208 If non-nil list local abbrev, only.
16209
16210 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
16211
16212 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
16213 from Gnus support code, and use special article copy buffer
16214 `(gnus-original-article-buffer)' instead. This allows to get rid
16215 of article-hide-headers usage (which breaks in the latest Gnus
16216 version). Thanks to Detlev Zundel.
16217
16218 2000-08-28 Kenichi Handa <handa@etl.go.jp>
16219
16220 * international/quail.el (quail-use-package): Hide "... loaded"
16221 message.
16222 (quail-start-translation, quail-start-conversion): Likewise.
16223
16224 * international/kkc.el (kkc-region): Hide "... loaded" message.
16225
16226 2000-08-27 Dave Love <fx@gnu.org>
16227
16228 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
16229
16230 2000-08-27 Miles Bader <miles@gnu.org>
16231
16232 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
16233
16234 2000-08-27 Kenichi Handa <handa@etl.go.jp>
16235
16236 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
16237 'ja-dic-cnv), not (require 'skkdic-cnv).
16238
16239 2000-08-26 Miles Bader <miles@gnu.org>
16240
16241 * faces.el (face-x-resources): Add entry for :inherit.
16242 * cus-face.el (custom-face-attributes): Add support for :inherit
16243 attribute. Add support for relative face heights.
16244 (custom-face-attributes-get): Treat `nil' as being a default value
16245 for :inherit (as well as `unspecified').
16246
16247 * faces.el (set-face-attribute): Update doc string.
16248 (face-attribute-name-alist): Add :inherit.
16249 (face-valid-attribute-values): Handle :inherit.
16250 (face-read-string): Rephrase prompt to be less confusing.
16251 Assume that DEFAULT is a string, since we must return a string.
16252 (face-read-integer): Use `format' to turn DEFAULT into an
16253 acceptable default for face-read-string. Match NEW-VALUE against
16254 the string "unspecified", not the symbol `unspecified', since
16255 that's what face-read-string returns.
16256 (read-face-attribute): Lookup a name for old-value in valid, and
16257 use it as a default if we find one. Treat all values from
16258 face-read-string as strings. If the default is used, don't do any
16259 more processing on the value, just use the old value directly.
16260 (read-face-and-attribute, modify-face): Tweak prompt.
16261 (read-face-name): Don't assume prompt ends with a space.
16262
16263 * faces.el (describe-face): Add support for :inherit attribute.
16264
16265 2000-08-25 Kenichi Handa <handa@etl.go.jp>
16266
16267 * terminal.el (terminal-emulator): Fix args to `concat'. Now
16268 concat doesn't accept interger.
16269
16270 * international/kkc.el: Remove SKK from Keywords. Require
16271 ja-dic-utl instead of skkdic-utl.
16272
16273 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
16274 Provide ja-dic-cnv instead of skkdic-cnv.
16275 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
16276 (iso-2022-7bit-short): Add safe-charsets property.
16277 (skkdic-convert-postfix): Search Japanese chou-on character in
16278 addition to Hiragana character.
16279 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
16280 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
16281 (batch-skkdic-convert): Likewise.
16282
16283 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
16284 Provide ja-dic-utl instead of skkdic-utl.
16285 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
16286
16287 2000-08-24 Dave Love <fx@gnu.org>
16288
16289 * disp-table.el (standard-display-default): Make the test of `l'
16290 useful.
16291
16292 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
16293 mod sample text.
16294
16295 * international/iso-ascii.el: Make pilcrow convenient string
16296 consistent with section.
16297 (iso-ascii-display): Set up multibyte characters as well as
16298 unibyte.
16299
16300 2000-08-24 Kenichi Handa <handa@etl.go.jp>
16301
16302 * international/mule-cmds.el (reset-language-environment): Set
16303 default-process-coding-system to '(undecided . iso-latin-1), which
16304 makes process I/O almost consistent with file I/O. Call this
16305 function when mule-cmds.el[c] is loaded.
16306
16307 2000-08-22 Andrew Innes <andrewi@gnu.org>
16308
16309 * makefile.w32-in: New file.
16310
16311 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
16312
16313 * comint.el (comint-output-filter): Compare end of
16314 comint-last-output-overlay with the start of the newly inserted
16315 text, not the end, when deciding whether to extend it.
16316 Set saved-point's insertion type to advance after insertion.
16317
16318 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
16319 since this is now done independently of font-lock mode.
16320
16321 2000-08-21 Gerd Moellmann <gerd@gnu.org>
16322
16323 * server.el (server-kill-new-buffers): New user option.
16324 (server-existing-buffer): New buffer-local variable.
16325 (server-visit-files): When using an existing buffer, set
16326 server-existing-buffer to t.
16327 (server-buffer-done): If server-kill-new-buffers is t, kill the
16328 buffer, unless it was already present before visiting it with
16329 Emacs server.
16330
16331 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
16332
16333 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
16334 even if the display doesn't support colors: some displays will
16335 support bold/underline faces.
16336
16337 2000-08-21 Gerd Moellmann <gerd@gnu.org>
16338
16339 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
16340
16341 * startup.el (command-line): If user's init file had an error,
16342 add explanatory text to *Messages*.
16343
16344 2000-08-21 Kenichi Handa <handa@etl.go.jp>
16345
16346 * man.el (Man-getpage-in-background): Decode the process output by
16347 the system locale coding system.
16348
16349 2000-08-20 Dave Love <fx@gnu.org>
16350
16351 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
16352 Don't test x-popup-menu.
16353 (function) <complete-function>: Complete only fbound symbols.
16354 <validate, value>: New.
16355 (variable) <complete-function>: Complete only bound symbols.
16356 (coding-system): Add :base-only, :complete-function, :validate,
16357 :value, :prompt-match.
16358 (widget-coding-system-prompt-value): Use read-coding-system and
16359 act on :base-only.
16360 (editable-field): Add :help-echo.
16361 (widget-push-button-gui, widget-push-button-cache)
16362 (widget-gui-action, widget-editable-list-gui): COmment out, along
16363 with uses.
16364 (widget-at): Make arg optional.
16365 (widget-echo-help): Adjust for current help-echo calling sequence.
16366 (widget-specify-field, widget-specify-button)
16367 (widget-specify-insert, widget-get-sibling, widget-image-find)
16368 (widget-convert, widget-insert, widget-leave-text)
16369 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
16370 (widget-setup, widget-field-find, widget-before-change)
16371 (widget-after-change, widget-default-complete)
16372 (widget-default-create, widget-default-delete)
16373 (widget-push-button-value-create, editable-field)
16374 (widget-field-prompt-value, widget-field-validate)
16375 (widget-choice-value-create, widget-choice-action)
16376 (widget-choice-validate, widget-checklist-add-item)
16377 (widget-radio-add-item, widget-radio-chosen)
16378 (widget-radio-value-inline, widget-editable-list-value-create)
16379 (widget-editable-list-entry-create)
16380 (widget-documentation-link-add)
16381 (widget-documentation-string-value-create)
16382 (widget-regexp-validate, widget-file-complete)
16383 (widget-sexp-validate, widget-plist-convert-widget)
16384 (widget-plist-convert-widget, widget-alist-convert-widget)
16385 (widget-alist-convert-widget, widget-color-complete): Simplify,
16386 particularly to avoid bindings which aren't optimized out.
16387
16388 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
16389 Doc fix.
16390 (down-list, backward-up-list, up-list, kill-sexp)
16391 (backward-kill-sexp, mark-sexp): Make arg optional.
16392 (lisp-complete-symbol): Add optional arg PREDICATE.
16393
16394 * cus-start.el: Add display-buffer-reuse-frames,
16395 file-coding-system-alist.
16396
16397 2000-08-20 Gerd Moellmann <gerd@gnu.org>
16398
16399 * startup.el (command-line): Clear realized faces after
16400 modifying TTY color mappings.
16401
16402 2000-08-20 Miles Bader <miles@gnu.org>
16403
16404 * faces.el (face-attr-match-p): Don't return true if ATTRS are
16405 merely a subset of FACE's attributes.
16406
16407 2000-08-19 Miles Bader <miles@gnu.org>
16408
16409 * comint.el (comint-output-filter): Save the point with a marker,
16410 not just a buffer position.
16411
16412 * international/mule.el (set-buffer-process-coding-system): Make
16413 interactive prompt less confusing.
16414
16415 2000-08-19 Gerd Moellmann <gerd@gnu.org>
16416
16417 * hilit-chg.el: General cleanup of doc strings, comments and
16418 code formatting.
16419
16420 2000-08-19 Miles Bader <miles@gnu.org>
16421
16422 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
16423 Compiler macro removed; beginning-of-line is no longer always
16424 equivalent to forward-line, in the presence of fields.
16425
16426 * comint.el (comint-output-filter): Remove ad-hoc saving of
16427 restriction, and just use save-restriction, now that it works
16428 correctly. Don't adjust comint-last-input-start to account for
16429 our insertion; it shouldn't have moved because we don't use
16430 insert-before-markers anymore. Comment out call to
16431 `force-mode-line-update'; why is it here?
16432
16433 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
16434 while checking for prompt to delete. Use `forward-line 0'
16435 instead of beginning-of-line.
16436 (gud-filter): Temporarily widen gud comint buffer while
16437 examining output.
16438
16439 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
16440
16441 * progmodes/sh-script.el: Big bag of typos.
16442
16443 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
16444 check since ispell-process is not bound when ispell is not yet loaded.
16445
16446 2000-08-18 Dave Love <fx@gnu.org>
16447
16448 * image.el (find-image): Copy `spec' before using plist-put.
16449
16450 2000-08-18 Gerd Moellmann <gerd@gnu.org>
16451
16452 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
16453 `portugues'.
16454
16455 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
16456 backward-kill-sexp, analogous to kill-sexp.
16457
16458 * progmodes/icon.el (icon-indent-line)
16459 (icon-is-continuation-line): Handle comments specially.
16460
16461 2000-08-17 Ken Stevens <k.stevens@ieee.org>
16462
16463 * ispell.el: Set to standard author/maintainer/keyword fields.
16464 Fine tuning to menu map appearance and operation, and added help.
16465 Remove `start' and `end' error messages when compiling.
16466 (ispell-choices-win-default-height): Fixed comment string.
16467 (ispell-dictionary-alist-1): Fixed regexp in castellano and
16468 castellano8 dictionaries.
16469 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
16470 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
16471 dictionary, added italiano dictionary.
16472 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
16473 word character
16474 (ispell-tex-skip-alists): Added psfig support.
16475 (ispell-skip-html): Renamed from ispell-skip-sgml.
16476 (ispell-begin-skip-region-regexp, ispell-skip-region)
16477 (ispell-minor-check): Improved html skipping support to skip across
16478 code, and recognize `&' commands without propper `;' syntax;
16479 (ispell-process-line): Fix alignment error when manually
16480 correcting spelling.
16481 (ispell): Fix comment string.
16482 (ispell-add-per-file-word-list): Always put word list on new line.
16483
16484 2000-08-17 Gerd Moellmann <gerd@gnu.org>
16485
16486 * format.el (format-encode-run-method): Fix error message to say
16487 `encode' instead of `decode'. Use save-window-excursion around
16488 shell-command-on-region as in format-decode-run-method because
16489 shell-command-on-region can display a buffer with error output.
16490 (format-decode): Don't record undo information for the decoding.
16491 (format-annotate-function): Add parameter FORMAT-COUNT. Make
16492 that number part of the temporary buffer name so that more than
16493 one decoding using a temporary buffer can happen safely.
16494
16495 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
16496 of `A-z' in the regexp.
16497
16498 * hilit-chg.el: Fix typos in commentary.
16499
16500 * help.el (view-emacs-news): Rewritten for new naming scheme
16501 for old NEWS files.
16502
16503 * startup.el (command-line): Pop to *Messages* in case an error
16504 is signaled while loading user-init-file.
16505
16506 2000-08-17 Andreas Schwab <schwab@suse.de>
16507
16508 * files.el (insert-directory): Don't lose original file name,
16509 undoing an undocumented change.
16510
16511 2000-08-17 Alex Schroeder <alex@gnu.org>
16512
16513 * sql.el (sql-magic-go): Use comint-bol.
16514 (sql-copy-column): Use comint-line-beginning-position.
16515 (comint-line-beginning-position): Define a replacement for
16516 comint-line-beginning-position if it is not fboundp.
16517
16518 2000-08-17 Alex Schroeder <alex@gnu.org>
16519
16520 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
16521 it didn't have any effect anyway.
16522
16523 2000-08-17 Alex Schroeder <alex@gnu.org>
16524
16525 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
16526 --pset and pager=off instead of sending \\o|cat at the beginning
16527 of the session.
16528
16529 2000-08-17 Miles Bader <miles@gnu.org>
16530
16531 * progmodes/octave-inf.el: Add compatibility definition of
16532 comint-line-beginning-position.
16533
16534 2000-08-17 Kenichi Handa <handa@etl.go.jp>
16535
16536 * startup.el (normal-top-level): Look in each dir in load-path for
16537 a leim-list.el file too. This assures of loading leim-list.el
16538 that is created at Emacs installation time even if a user have his
16539 own leim-list.el.
16540
16541 2000-08-17 Miles Bader <miles@gnu.org>
16542
16543 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
16544 foreground color to black if the background is dark.
16545
16546 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
16547
16548 * loadhist.el (unload-feature): Typo.
16549
16550 * finder.el (finder-compile-keywords):
16551 * cus-dep.el (custom-make-dependencies): Add local-variable settings
16552 to the generated file.
16553
16554 * mail/mh-e.el (mh-make-local-vars):
16555 Replace make-variable-buffer-local with make-local-variable.
16556
16557 * play/landmark.el:
16558 * options.el (Edit-options-{set,toggle,t,nil}):
16559 * mail/mailabbrev.el (mail-abbrevs-mode):
16560 * textmodes/tex-mode.el (tex-expand-files):
16561 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
16562
16563 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
16564
16565 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
16566 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
16567 Allow going past the last element.
16568 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
16569 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
16570 (cvs-mouse-toggle-mark): Don't move point.
16571 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
16572
16573 * progmodes/compile.el (grep): Provide a default set of files.
16574 (next-error): Docstring fix.
16575 (compilation-find-file): Avoid find-file (fails in a dedicated window).
16576
16577 * emacs-lisp/easy-mmode.el (define-minor-mode):
16578 Use `symbol-value' to keep the byte-compiler quiet.
16579
16580 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
16581 (diff-find-source-location): New fun, extracted from diff-goto-source.
16582 (diff-goto-source): Use it.
16583 (diff-next-complex-hunk, diff-filter-lines): New function.
16584 (diff-apply-hunk): New command.
16585
16586 * smerge-mode.el (smerge-mode-menu): Doc fix.
16587
16588 * msb.el (msb-mode): Define it in terms of define-minor-mode.
16589
16590 2000-08-16 Dave Love <fx@gnu.org>
16591
16592 * windmove.el (windmove) <defgroup>: Add :version.
16593
16594 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
16595 (goto-address-fontify-p, goto-address-highlight-p)
16596 (goto-address-url-face, goto-address-url-mouse-face)
16597 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
16598 (goto-address-url-regexp): Use thing-at-point-url-regexp.
16599 (goto-address-fontify, goto-address-at-mouse): Simplify,
16600 (goto-address-at-point): browse-url-url-at-point,
16601 goto-address-find-address-at-point can return nil.
16602 (goto-address-find-address-at-point): Return nil on failure.
16603
16604 * align.el (align) <defgroup>: Add :version.
16605
16606 * calculator.el (calculator): Add :version.
16607 (calculator): Use two lines for calculator window if `modeline'
16608 face is boxed.
16609
16610 * play/5x5.el: Doc fixes.
16611 (5x5) <defgroup>: Add :version.
16612
16613 * play/fortune.el (fortune) <defgroup>: Add :version.
16614 (fortune-append): Fix error message.
16615 (fortune-from-region): Doc fix.
16616
16617 * play/pong.el (pong): Doc fix.
16618
16619 * play/morse.el: Keywords, commentary, autoloads.
16620
16621 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
16622
16623 * desktop.el (desktop-save): Don't look at symbol-value of a
16624 member of minor-mode-alist, unless it is boundp.
16625
16626 2000-08-16 Sam Steingold <sds@gnu.org>
16627
16628 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
16629 `while'; use `with-current-buffer' instead of `save-excursion'.
16630 Removed unnecessary kludges now that "*Buffer List*" is excluded.
16631
16632 2000-08-16 Kenichi Handa <handa@etl.go.jp>
16633
16634 * international/ccl.el (declare-ccl-program): Docstring modified.
16635 (ccl-execute-with-args): Likewise.
16636
16637 2000-08-16 Miles Bader <miles@gnu.org>
16638
16639 * progmodes/sql.el: Add compatibility definition of
16640 comint-line-beginning-position.
16641
16642 2000-08-15 Gerd Moellmann <gerd@gnu.org>
16643
16644 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
16645 'buffer-menu' property.
16646 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
16647 fails.
16648 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
16649 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
16650 wasn't killed.
16651
16652 * buff-menu.el (list-buffers-noselect): Don't display the
16653 *Buffer List* buffer.
16654
16655 * font-lock.el: Require jit-lock to prevent a very late
16656 `Loading jit-lock' message.
16657
16658 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
16659 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
16660 mail address.
16661
16662 2000-08-15 Miles Bader <miles@gnu.org>
16663
16664 * textmodes/ispell.el (ispell-graphic-p): New constant.
16665 (ispell-choices-win-default-height, ispell-help): Use
16666 `ispell-graphic-p' instead of `xemacsp'.
16667
16668 2000-08-15 Dave Love <fx@gnu.org>
16669
16670 * simple.el: Autoload widget-convert when compiling.
16671 (mail-user-agent): Doc fix.
16672
16673 * help.el (function-called-at-point, variable-at-point): Use
16674 with-syntax-table.
16675 (help-manyarg-func-alist): Add insert-and-inherit.
16676
16677 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
16678
16679 * delsel.el (delsel-unload-hook): New function.
16680
16681 * find-file.el: Doc fixes. Move provide to end.
16682 (ff) <defgroup>: Add :link.
16683 (ff-goto-click): Deleted.
16684 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
16685 Use mouse-set-point.
16686
16687 * textmodes/tildify.el: Doc fixes.
16688 (tildify) <defgroup>: Add:version.
16689
16690 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
16691 (glasses-custom-set): Use set-default, not set.
16692 (minor-mode-alist): Propertize the lighter.
16693 (glasses-mode): Provide optional arg.
16694
16695 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
16696 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
16697 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
16698 option. Provide :type.
16699 (cwarn-configuration): Provide :type.
16700 (cwarn-mode): Doc fix.
16701
16702 * add-log.el (change-log-merge): Doc fix.
16703 (change-log-redate): New command.
16704
16705 * net/browse-url.el (browse-url-filename-alist): Add a clause for
16706 Doze and Dog.
16707 (browse-url): Use dolist, not mapcar.
16708 (browse-url-at-point): Check for null url.
16709 (browse-url-event-buffer, browse-url-event-point): Functions
16710 deleted.
16711 (browse-url-at-mouse, browse-url-netscape): Simplify.
16712
16713 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
16714 modes.
16715 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
16716 Fix previous change to mapcan.
16717 (msb--init-file-alist, msb--add-separators)
16718 (msb--make-keymap-menu): Simplify.
16719 (msb--choose-file-menu): Use copy-sequence.
16720 (msb-mode-map): Add title to keymap.
16721 (msb-unload-hook): New function.
16722
16723 * bs.el: Fix indentation.
16724 (bs) <defgroup>: Add :links.
16725 (bs-show): Doc fix.
16726 (bs-apply-sort-faces): Don't use window-system.
16727 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
16728
16729 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
16730
16731 * calendar/timeclock.el (timeclock-file): Run .timelog through
16732 convert-standard-filename.
16733
16734 2000-08-14 Gerd Moellmann <gerd@gnu.org>
16735
16736 * emacs-lisp/authors.el: New file.
16737
16738 * paren.el (show-paren-priority): New user option.
16739 (show-paren-function): Set overlay priorities to
16740 show-paren-priority.
16741
16742 2000-08-14 Miles Bader <miles@gnu.org>
16743
16744 * comint.el (comint-bol): Use `forward-line 0' instead of calling
16745 beginning-of-line with inhibit-field-text-motion bound.
16746
16747 2000-08-14 Gerd Moellmann <gerd@gnu.org>
16748
16749 * calendar/timeclock.el: New file.
16750
16751 2000-08-14 David Ponce <david@dponce.com>
16752
16753 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
16754 `widget-button-click'. so that one can use left mouse button to
16755 click on dialog buttons.
16756
16757 2000-08-14 Emmanuel Briot <briot@gnat.com>
16758
16759 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
16760 identifiers, since XML is case sensitive
16761
16762 2000-08-12 Miles Bader <miles@gnu.org>
16763
16764 * comint.el (comint-output-filter): Don't bother frobbing
16765 window-start, it doesn't seem to be necessary.
16766
16767 * comint.el (comint-send-string, comint-send-region): Make into
16768 real functions. Snapshot the prompt before sending.
16769
16770 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
16771
16772 * info.el (Info-find-emacs-command-nodes): Rewrite to use
16773 technique similar to Info-index, instead of relying on specific
16774 names of relevant Index nodes.
16775 (Info-goto-emacs-command-node): Bind Info-history to nil when
16776 going to the first node found by Info-find-emacs-command-nodes.
16777
16778 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
16779
16780 * menu-bar.el (menu-bar-help-menu): Add a :help string.
16781
16782 2000-08-10 Miles Bader <miles@gnu.org>
16783
16784 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
16785
16786 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
16787
16788 * info.el (Info-file-list-for-emacs): More elements for the
16789 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
16790 and woman manuals.
16791
16792 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
16793
16794 * comint.el (comint-send-input): Make the newline boundary overlay
16795 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
16796 (comint-output-filter): Use `insert' instead of
16797 `insert-before-markers'. Extend comint-last-output-overlay when
16798 necessary since we can't rely on insert-before-markers to do it.
16799 * gud.el (gud-filter): Use `with-current-buffer' instead of
16800 save-excursion when inserting the output, so that point gets
16801 updated correctly; the old method relied on a rather dodgy
16802 side-effect of comint-output-filter to avoid the effect of
16803 save-excursion.
16804
16805 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
16806
16807 * files.el (recover-file): Call insert-directory instead of
16808 invoking `ls' directly.
16809
16810 2000-08-10 Miles Bader <miles@gnu.org>
16811
16812 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
16813 (comint-last-prompt-overlay): New variables.
16814 (comint-output-filter): Implement prompt highlighting.
16815 (comint-snapshot-last-prompt): New function.
16816 (comint-send-input): Snapshot the last prompt.
16817 Use comint-highlight-input-face.
16818 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
16819 Use defface instead of defcustom.
16820 (send-invisible, comint-send-eof): Snapshot the last prompt.
16821 (comint-delchar-or-maybe-eof): Use comint-send-eof.
16822 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
16823
16824 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
16825
16826 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
16827 (regexp-opt-group): Use a list of chars for `letters'.
16828 (regexp-opt-charset): `chars' is now a list of chars.
16829 Use a char-table rather than a vector so it works for multibyte chars.
16830
16831 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
16832 Set cvs-minor-current-files to the selected fileinfo.
16833 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
16834 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
16835
16836 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
16837
16838 * files.el (insert-directory): Don't call access-file on
16839 directories on DOS and Windows.
16840
16841 2000-08-09 Kenichi Handa <handa@etl.go.jp>
16842
16843 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
16844 longer if necessary.
16845 (ccl-embed-code): Call ccl-embed-data to store CODE in
16846 ccl-program-vector.
16847
16848 2000-08-09 Miles Bader <miles@gnu.org>
16849
16850 * comint.el (comint-output-filter): Properly handle the case where
16851 the text surrounded by comint-last-output-overlay was deleted.
16852
16853 2000-08-08 Gerd Moellmann <gerd@gnu.org>
16854
16855 * info.el (Info-insert-dir): Use Info-additional-directory-list if
16856 non-nil.
16857 (Info-file-list-for-emacs): Remove "info" from the list because
16858 that leads to trying to use the documentation from file `info'
16859 in various situations where it isn't appropriate, for instance
16860 C-h C-k C-h i.
16861
16862 * ffap.el (ffap-read-file-or-url-internal): Handle case that
16863 DIR and/or STRING are nil.
16864
16865 * progmodes/compile.el (compilation-setup): Make variable
16866 compilation-error-screen-columns buffer-local, as some comment
16867 in the code suggests it should be.
16868
16869 * files.el (auto-mode-interpreter-regexp): New variable.
16870 (set-auto-mode): Use it.
16871
16872 * indent.el (indent-for-tab-command): Doc fix.
16873
16874 * mouse-sel.el (mouse-sel-mode): Doc fix.
16875
16876 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
16877 labels.
16878
16879 * help.el (print-help-return-message): When
16880 display-buffer-reuse-frames is set, let the help window been quit,
16881 instead of deleting it, which might delete a reused frame.
16882
16883 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
16884
16885 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
16886 rename a directory to a name that differs only by its letter case.
16887
16888 2000-08-08 Kenichi Handa <handa@etl.go.jp>
16889
16890 * international/quail.el (quail-define-rules): Handle Quail decode
16891 map correctly. Add code for supporting annotations.
16892 (quail-install-decode-map): New function.
16893 (quail-defrule-internal): New optional arguments decode-map and
16894 props.
16895 (quail-advice): New function.
16896
16897 2000-08-07 Sam Steingold <sds@gnu.org>
16898
16899 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
16900 `defconst', `define-condition', `with-slots'.
16901 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
16902
16903 2000-08-03 Miles Bader <miles@gnu.org>
16904
16905 * comint.el (comint-use-prompt-regexp-instead-of-fields):
16906 New variable.
16907 (comint-prompt-regexp, comint-get-old-input): Document dependence on
16908 comint-use-prompt-regexp-instead-of-fields.
16909 (comint-send-input): Add `input' field property to stuff we send to
16910 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
16911 (comint-output-filter): Add `output' field property to process
16912 output, if comint-use-prompt-regexp-instead-of-fields is nil.
16913 (comint-replace-by-expanded-history)
16914 (comint-get-old-input-default, comint-show-output)
16915 (comint-backward-matching-input, comint-forward-matching-input)
16916 (comint-next-prompt, comint-previous-prompt): Use field
16917 properties if comint-use-prompt-regexp-instead-of-fields is nil.
16918 (comint-line-beginning-position): New function.
16919 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
16920 (comint-replace-by-expanded-history-before-point): Use
16921 comint-line-beginning-position and line-end-position.
16922 (comint-last-output-overlay): New variable.
16923 (comint-mode): Make `comint-last-output-overlay' buffer-local.
16924
16925 * shell.el (shell-prompt-pattern): Doc change.
16926 (shell-backward-command): Use line-beginning-position.
16927
16928 * gud.el (gud-gdb-complete-command): Use
16929 comint-line-beginning-position.
16930
16931 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
16932 comint-bol doesn't actually go to the beginning of the line.
16933
16934 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
16935 if comint-use-prompt-regexp-instead-of-fields is non-nil.
16936 (try-expand-line-all-buffers): Likewise.
16937
16938 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
16939 explicitly matching comint-prompt-regexp.
16940 (sql-copy-column): Use comint-line-beginning-position instead of
16941 explicitly matching comint-prompt-regexp.
16942
16943 * progmodes/octave-inf.el (inferior-octave-complete): Use
16944 comint-line-beginning-position.
16945
16946 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
16947
16948 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
16949 looking for a prompt, use `forward-line 0' instead of
16950 `beginning-of-line', to avoid getting caught by an input field.
16951
16952 2000-08-07 Gerd Moellmann <gerd@gnu.org>
16953
16954 * files.el (shell-quote-wildcard-pattern): Make sure to return
16955 PATTERN, in the Unix case.
16956
16957 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
16958
16959 * play/zone.el (zone): Discard any pending input before running
16960 the randomly-chosen pgm.
16961
16962 2000-08-07 Kenichi Handa <handa@etl.go.jp>
16963
16964 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
16965 checking the existence of any multibyte characters.
16966
16967 2000-08-06 Gerd Moellmann <gerd@gnu.org>
16968
16969 * help.el (describe-mode): Test minor-mode symbol for being
16970 bound before testing its value for being nil.
16971
16972 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
16973 `first', `second', and `third'.
16974
16975 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
16976 (second): Make it an alias for `cadr'.
16977
16978 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
16979
16980 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
16981 types of display support faces now.
16982
16983 2000-08-05 Gerd Moellmann <gerd@gnu.org>
16984
16985 * pcvs.el (require): Require `cl' during compilation, only.
16986
16987 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
16988 (toplevel): Remove `remq' and `remove' from autoloads.
16989 (cl-fake-autoloads): New variable. If set, arrange for an error
16990 when CL functions etc. are autoloaded.
16991
16992 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
16993
16994 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
16995
16996 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
16997 popped up, but the user clicks outside the menu, return an empty
16998 regexp (that causes unhighlight-regexp to have no effect).
16999
17000 * menu-bar.el (menu-bar-games-menu): Add Zone.
17001
17002 * hi-lock.el (toplevel): Require font-lock.
17003
17004 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17005
17006 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
17007 (ebnf-8-bit-chars): New var for bug fix.
17008 (ebnf-string): Bug fix.
17009
17010 2000-08-03 Sam Steingold <sds@gnu.org>
17011
17012 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
17013 instead of `buffer-string'.
17014 (require 'cl): Always, not just when compiling.
17015 `ignore-errors' in `interactive', `list*', `defun*' &c make this
17016 necessary.
17017
17018 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
17019
17020 * international/mule-cmds.el (select-safe-coding-system): Make
17021 the message text about selecting a safe coding system more clear.
17022
17023 2000-08-02 Gerd Moellmann <gerd@gnu.org>
17024
17025 * hi-lock.el: New file.
17026
17027 * play/zone.el: New file.
17028
17029 * replace.el (occur): Set tab-width in the *Occur* buffer to the
17030 value of tab-width in the original buffer. Choose a line number
17031 format that's a multiple of the original buffer's tab width, so
17032 that lines appear right.
17033
17034 * textmodes/ispell.el (ispell): New function, replacing an alias.
17035 Spell-check active region if in transient-mark-mode and mark
17036 is active; otherwise spell-check buffer.
17037
17038 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17039
17040 * ps-mule.el: Fix a customization problem on
17041 ps-mule-font-info-database-default.
17042
17043 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
17044
17045 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
17046 display-mouse-p instead of window-system.
17047 (ebrowse-member-mode-map): Ditto.
17048
17049 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17050
17051 * progmodes/ebnf2ps.el: Update ps-print functions call.
17052 Indentation fix. Doc fix.
17053 (ebnf-version): New version number (3.2).
17054 (ebnf-format-color, ebnf-begin-job): Code fix.
17055
17056 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
17057
17058 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
17059 font lock support on window-system.
17060 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
17061
17062 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
17063 display-color-p, if fboundp, instead of window-system.
17064
17065 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
17066
17067 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
17068 instead of window-system.
17069
17070 * wid-edit.el (widget-choose): Use display-mouse-p instead of
17071 window-system.
17072 (widget-choice-mouse-down-action): Use display-popup-menus-p
17073 instead of window-system.
17074
17075 * strokes.el (strokes-file): Run the file name through
17076 convert-standard-filename.
17077 (strokes-mode): Call display-mouse-p instead of looking at
17078 window-system. Change the error message accordingly.
17079
17080 * progmodes/cpp.el (toplevel): Support faces on tty's.
17081
17082 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
17083 (lm-plot-square, lm-init-display): Don't use window-system.
17084
17085 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
17086 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
17087
17088 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
17089 instead of looking at window-system.
17090
17091 2000-07-30 Gerd Moellmann <gerd@gnu.org>
17092
17093 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
17094 of testing if iswitchb-prepost-hooks is bound, because the
17095 latter will always be true when invoking a recursive minibuffer
17096 from an active Iswitchb buffer.
17097
17098 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
17099
17100 * files.el (shell-quote-wildcard-pattern): New function.
17101 (insert-directory): Call it. Only prepend "\" to command on Unix
17102 and GNU/Linux systems.
17103
17104 2000-07-30 Gerd Moellmann <gerd@gnu.org>
17105
17106 * eshell/esh-groups.el: Change custom :link file names
17107 from `eshell.info' to `eshell'.
17108
17109 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
17110
17111 * dired.el (dired-build-subdir-alist): Expand subdirectory names
17112 correctly in recursive ange-ftp listings.
17113
17114 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
17115
17116 * ps-print.el: Fix bug 1: if ps-font-size-internal,
17117 ps-header-font-size-internal and
17118 ps-header-title-font-size-internal variables are not set,
17119 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
17120 face text property is (foreground-color . COLOR) or
17121 `(background-color . COLOR)', ps-print crashes. Doc fix.
17122 (ps-print-version): New version number (5.2.4).
17123 (ps-plot-region): Code fix.
17124 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
17125 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
17126 Bug fix 2.
17127
17128 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
17129
17130 * glasses.el (glasses-make-readable): Fix uncapitalization of
17131 identifiers like `myXMLDocument'.
17132
17133 2000-07-28 Karl Fogel <kfogel@red-bean.com>
17134
17135 * mail/mail-hist.el (mail-hist-previous-input)
17136 (mail-hist-next-input): Do the obvious code factorization.
17137 (mail-hist-retrieve-and-insert): New func, contains common
17138 code of above two.
17139 If inserting a message body, leave point at top.
17140
17141 2000-07-28 Sam Steingold <sds@gnu.org>
17142
17143 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
17144 Use `<=', not `<' to compare times!
17145 (ange-ftp-ls): Remove.
17146
17147 2000-07-27 Gerd Moellmann <gerd@gnu.org>
17148
17149 * play/cookie1.el: Add explanation of how to make cookie.el
17150 compatible with strfile(1) to comment.
17151
17152 * subr.el (remove, remq): New functions.
17153
17154 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
17155 escape `*' in regexps.
17156 (midnight-find): Reverse order of arguments in the funcall of
17157 TEST.
17158
17159 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
17160 and `.class'.
17161
17162 * play/meese.el: Add Commentary section.
17163
17164 2000-07-27 Alex Schroeder <alex@gnu.org>
17165
17166 * sql.el (sql-ms): Added autoload cookie.
17167 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
17168 (sql-oracle): Ditto.
17169 (sql-help): Doc change.
17170
17171 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
17172 types and exceptions.
17173
17174 2000-07-27 Alex Schroeder <alex@gnu.org>
17175
17176 * sql.el (sql-placeholder-history): New variable.
17177 (sql-query-placeholders-and-send): New function that will query
17178 the user and replace placeholders with user input.
17179 (sql-oracle): If running on NT, set comint-input-sender to
17180 sql-query-placeholders-and-send.
17181
17182 (sql-stop): If in the SQLi buffer, insert stop notification, else
17183 present it as a message.
17184
17185 2000-07-27 Alex Schroeder <alex@gnu.org>
17186
17187 * sql.el (sql-input-ring-separator): Doc change.
17188 (sql-input-ring-file-name): Doc change.
17189 (sql-interactive-mode): Use `sql-input-ring-separator' and
17190 `sql-input-ring-file-name' to set the comint-mode equivalents
17191 without making them local variables.
17192 (sql-stop): Don't bind `sql-input-ring-separator' and
17193 `sql-input-ring-file-name' dynamically to their comint-mode
17194 equivalents.
17195
17196 2000-07-27 Kenichi Handa <handa@etl.go.jp>
17197
17198 * international/mule.el (register-char-codings): New function.
17199 (make-coding-system): Handle `safe-chars' specification in the arg
17200 PROPERTY.
17201
17202 * international/mule-cmds.el
17203 (find-coding-systems-region-subset-p): This function deleted.
17204 (sort-coding-systems-predicate): New variable.
17205 (sort-coding-systems): New function.
17206 (find-coding-systems-region): Use
17207 find-coding-systems-region-internal.
17208 (find-coding-systems-string): Use find-coding-systems-region.
17209 (find-coding-systems-for-charsets): Check
17210 char-coding-system-table.
17211 (select-safe-coding-system-accept-default-p): New variable.
17212 (select-safe-coding-system): Mostly rewritten. New argument
17213 ACCEPT-DEFAULT-P.
17214 (select-message-coding-system): Call select-safe-coding-system
17215 with ACCEPT-DEFAULT-P arg.
17216 (reset-language-environment): Reset default-sendmail-coding-system
17217 to the default value iso-latin-1.
17218 (set-language-environment): Don't set the obsolete variable
17219 charset-origin-alist.
17220
17221 * international/codepage.el (cp-coding-system-for-codepage-1):
17222 Give `safe-chars' property to make-coding-system.
17223
17224 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
17225 calling select-message-coding-system twice.
17226
17227 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
17228 instead of `safe-charsets'.
17229 (cyrillic-alternativnyj): Likewise.
17230 (ccl-encode-alternativnyj): Don't check the charset
17231 cyrillic-iso8859-5.
17232
17233 2000-07-27 Kenichi Handa <handa@etl.go.jp>
17234
17235 * composite.el (compose-chars-after): Preserve match data.
17236
17237 2000-07-26 Sam Steingold <sds@gnu.org>
17238
17239 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
17240 (ange-ftp-real-file-newer-than-file-p): New function.
17241 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
17242 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
17243
17244 * tooltip.el (tooltip-float-time): Removed (use `float-time').
17245 * midnight.el (midnight-float-time): Ditto.
17246
17247 2000-07-26 Andreas Schwab <schwab@suse.de>
17248
17249 * files.el (normal-backup-enable-predicate): Correct
17250 interpretation of the return value of compare-strings.
17251
17252 2000-07-26 Gerd Moellmann <gerd@gnu.org>
17253
17254 * isearch.el (isearch-resume): New function.
17255 (isearch-done): Add something to command-history to resume
17256 the search.
17257 (isearch-yank-line, isearch-yank-word): Use
17258 buffer-substring-no-properties instead of buffer-substring.
17259
17260 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
17261 of flyspell-mouse-map.
17262
17263 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
17264 duplicate definition.
17265 (makefile-mode): Remove duplicate setting of local-abbrev-table.
17266
17267 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
17268 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
17269
17270 2000-07-25 Sam Steingold <sds@gnu.org>
17271
17272 * net/ange-ftp.el: Get modtime over the net.
17273 (ange-ftp-file-modtime): New function.
17274 (ange-ftp-write-region, ange-ftp-insert-file-contents)
17275 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
17276 Use it.
17277 (ange-ftp-dot-to-slash): New function.
17278 (ange-ftp-fix-name-for-vms): Use it.
17279
17280 * midnight.el (midnight-buffer-display-time): Use
17281 `with-current-buffer'.
17282
17283 2000-07-25 Gerd Moellmann <gerd@gnu.org>
17284
17285 * find-dired.el: Update copyright notice.
17286 (find-dired): Offer to kill a running `find'.
17287
17288 * enriched.el (enriched-face-ans): For a `foreground-color'
17289 property, return '(("x-color" COLOR))' so that COLOR will be
17290 output as a parameter of the x-color annotation. Likewise for the
17291 `background-color' property. In the case of normal face
17292 properties, don't return annotations for unspecified foreground
17293 and background face attributes.
17294
17295 2000-07-25 Kenichi Handa <handa@etl.go.jp>
17296
17297 * language/japan-util.el (japanese-katakana-region): Fix handling
17298 HANKAKU argument.
17299
17300 2000-07-25 Miles Bader <miles@gnu.org>
17301
17302 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
17303 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
17304 constrain-to-field.
17305
17306 2000-07-24 Andrew Innes <andrewi@gnu.org>
17307
17308 * timer.el (timer-activate-when-idle): Add optional parameter
17309 DONT-WAIT. Update docstring.
17310 (run-with-idle-timer): Specify extra parameter to
17311 timer-activate-when-idle, so that timer will be activated
17312 immediately if Emacs is already idle.
17313
17314 * w32-fns.el (w32-using-nt): Fix docstring.
17315
17316 2000-07-24 Dave Love <fx@gnu.org>
17317
17318 * mouse.el (popup-menu): Set last-command-event.
17319 (mouse-major-mode-menu-prefix): Declare.
17320
17321 2000-07-24 Gerd Moellmann <gerd@gnu.org>
17322
17323 * textmodes/flyspell.el: Update to author's version 1.5d.
17324
17325 * progmodes/hideshow.el: Update copyright notice.
17326
17327 * vcursor.el: Set maintainer to FSF, since author cannot
17328 be reached.
17329
17330 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
17331
17332 * info.el (Info-goto-emacs-key-command-node): Leave a space after
17333 the prompt.
17334
17335 * mouse.el (popup-menu): Run the keymap through indirect-function,
17336 in case it was defined with define-prefix-key. If the menu is a
17337 list of keymaps, look up the binding of user's choice in each one
17338 of the keymaps.
17339 (mouse-popup-menubar): If the global and local menu-bar keymaps
17340 don't have a prompt string, create one and insert it into the
17341 keymap. Don't barf if current-local-map returns nil.
17342
17343 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
17344
17345 * dired.el (dired-sort-R-check): Added to allow recursive listing
17346 to be undone.
17347 (dired-sort-other): Use it.
17348
17349 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17350
17351 * Release of cc-mode 5.27
17352
17353 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17354
17355 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
17356 c-beginning-of-statement-1 that caused a bad case of recursion
17357 which could consume a lot of CPU in large classes in languages
17358 that have in-expression classes (i.e. Java and Pike).
17359
17360 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
17361 statements before top level constructs (i.e. case 6 is moved
17362 before case 5 and is now case 4) to catch in-expression
17363 classes in top level expressions correctly.
17364
17365 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17366
17367 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
17368 objc-method-intro. Case 4 removed and case 5I added.
17369
17370 * cc-langs.el (c-append-paragraph-start): New variable used by
17371 c-common-init to get paragraph-start correct.
17372 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
17373 initialize paragraph-start to make it correct both with and
17374 without the javadoc special case.
17375
17376 * cc-mode.el (java-mode): Use c-append-paragraph-start to
17377 initialize paragraph-start for javadoc markup.
17378
17379 * cc-vars.el (c-style-variables-are-local-p): Incompatible
17380 change by defaulting this to t. It's motivated by the
17381 confusing behavior that otherwise arise from the style system
17382 when editing both java and non-java files at the same time
17383 (see the comments about style setting in c-common-init).
17384
17385 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17386
17387 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
17388 similar to the one in c-fill-paragraph to check the fill
17389 prefix from the adaptive fill function for sanity.
17390
17391 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17392
17393 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
17394 defun block.
17395
17396 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17397
17398 * cc-align.el (c-lineup-multi-inher): Handle lines with
17399 leading comma nicely. Extended to handle member initializers
17400 too.
17401
17402 * cc-engine.el: (c-beginning-of-inheritance-list,
17403 c-guess-basic-syntax): Fixed recognition of inheritance lists
17404 when the lines begins with a comma.
17405
17406 * cc-vars.el (c-offsets-alist): Changed default for
17407 member-init-cont to c-lineup-multi-inher since it now handles
17408 member initializers and indents better for leading commas.
17409
17410 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17411
17412 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
17413 handling that caused class open lines to be recognized as
17414 statement-conts in some cases.
17415
17416 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
17417 guessed by the adaptive fill function unless point is on the
17418 first line of a block comment.
17419
17420 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
17421 when the buffer ends with a macro continuation char.
17422
17423 * cc-engine.el (c-guess-basic-syntax): Added support for
17424 function definitions as statements in Pike. The first
17425 statement in a lambda block is now labeled defun-block-intro
17426 instead of statement-block-intro.
17427
17428 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
17429 so that the class surrounding point is selected, not the one
17430 innermost in the state.
17431
17432 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
17433 recognition of switch labels having hanging multiline
17434 statements.
17435
17436 * cc-engine.el (c-beginning-of-member-init-list): Broke out
17437 some code in c-guess-basic-syntax to a separate function.
17438 * cc-engine.el (c-just-after-func-arglist-p): Fixed
17439 recognition of member inits with multiple line arglists.
17440 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
17441 member-init-cont when the commas are in funny places.
17442
17443 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17444
17445 * cc-defs.el (c-auto-newline): Removed this macro since it's
17446 not used anymore.
17447
17448 * cc-engine.el (c-looking-at-bos): New helper function.
17449 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
17450 inexpr and toplevel classes apart in Pike.
17451
17452 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
17453 of case 9A.
17454
17455 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
17456 constant, since "class" can introduce an in-expression class
17457 in Pike nowadays.
17458
17459 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17460
17461 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
17462 indentation on cpp-macro lines.
17463
17464 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
17465 a syntax modifier like comment-intro, to make it possible to
17466 get syntactic indentation for preprocessor directives. It's
17467 incompatible wrt to lineup functions on cpp-macro, but it has
17468 no observable effect in the 99.9% common case where cpp-macro
17469 is set to -1000.
17470
17471 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17472
17473 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
17474 member-init-cont when the preceding arglist is several lines.
17475
17476 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17477
17478 * cc-styles.el (c-style-alist): The basic offset for the BSD
17479 style corrected to 8.
17480
17481 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17482
17483 * cc-styles.el (c-style-alist): Adjusted the indentation of
17484 brace list openers in the gnu style.
17485
17486 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17487
17488 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
17489
17490 * cc-cmds.el (c-electric-brace, c-electric-slash,
17491 c-electric-star, c-electric-semi&comma, c-electric-colon,
17492 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
17493 when c-syntactic-indentation is nil.
17494
17495 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
17496 we were left at comments preceding the first statement when
17497 reaching the beginning of the buffer.
17498
17499 * cc-vars.el (c-syntactic-indentation): New variable to turn
17500 off all syntactic indentation.
17501
17502 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17503
17504 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
17505 between the text and the block comment ender when it hangs,
17506 depending on how many there are before the fill.
17507
17508 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17509
17510 * cc-engine.el (c-beginning-of-closest-statement): New helper
17511 function to go back to the closest preceding statement start,
17512 which could be inside a conditional statement.
17513 * cc-engine.el (c-guess-basic-syntax): Use
17514 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
17515
17516 * cc-engine.el (c-guess-basic-syntax): Better handling of
17517 arglist-intro, arglist-cont-nonempty and arglist-close when
17518 the arglist is nested inside parens. Cases 7A, 7C and 7F
17519 changed.
17520
17521 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
17522 up-to-date with javadoc 1.2.
17523
17524 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17525
17526 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
17527 multiline Pike type decls.
17528
17529 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17530
17531 * cc-cmds.el (c-indent-new-comment-line): Always break
17532 multiline comments in multiline mode, regardless of
17533 comment-multi-line.
17534
17535 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17536
17537 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
17538 fully::qualified::names in C++ member init lists. Preamble in
17539 case 5D changed.
17540
17541 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17542
17543 * cc-langs.el (c-common-init): Handling of obsolete variables
17544 moved to c-initialize-cc-mode. More compatible style override
17545 when using global style variables.
17546 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
17547 variables moved here.
17548
17549 * cc-styles.el (c-make-styles-buffer-local): Flag style
17550 variable localness in c-style-variables-are-local-p to make
17551 the compatibility measure in c-common-init work well.
17552
17553 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
17554 longer contain set-from-style.
17555 * cc-styles.el (c-initialize-builtin-style): Don't check for
17556 set-from-style on c-special-indent-hook.
17557 * cc-styles.el (c-copy-tree): Obsolete. The standard function
17558 copy-alist is sufficient now.
17559
17560 * cc-styles.el (c-set-style, c-set-style-1,
17561 c-get-style-variables): Fixes to variable initialization so
17562 that duplicate entries in styles have the same effect
17563 regardless of DONT-OVERRIDE.
17564
17565 * cc-styles.el (c-set-style-2): Fixed bug where the
17566 initialization of inheriting styles failed when the
17567 dont-override flag is set.
17568
17569 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
17570 on this.
17571
17572 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17573
17574 * cc-defs.el (c-forward-comment): Removed the workaround
17575 introduced in 5.38 since it had worse side-effects. If a line
17576 contains the string "//\"", it regarded the // as a comment
17577 start since the \ temporarily doesn't have escape syntax.
17578
17579 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
17580
17581 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
17582 ada-xref.el before ada-prj.el, so that the Project menu is created
17583 when ada-prj tries to add to it.
17584 (ada-activate-keys-for-case): Suppress the characters that are not
17585 part of the Ada syntax. Better compatibility with else-mode
17586 (ada-adjust-case-interactive): When auto-casing is not active,
17587 correctly insert newlines (used to insert only ^M). Prevent the
17588 syntax table from being changed in case of an error
17589 (or '_' becomes part of a word and some commands are confused).
17590 Do nothing if ada-auto-case is nil.
17591 (ada-after-keyword-p): Ignore keywords that are also attributes
17592 (ada-batch-reformat): Update usage comment
17593 (ada-call-from-contextual-menu): New function
17594 (ada-case-read-exceptions): Reinitialize the casing exception list
17595 first to nil first, so that the casing exception file can be
17596 shared.
17597 (ada-check-defun-name): Handles "configure" keyword for gnatdist
17598 files.
17599 (ada-compile-goto-error): Fix regexp used to detect a file:line
17600 anywhere in the error message
17601 (ada-contextual-menu-last-point): New variable
17602 (ada-create-keymap): If the variable delete-key-deletes-forward is
17603 t on XEmacs, it means that DEL should delete one character
17604 forward.
17605 (ada-create-menu): Use :included instead of :visible for XEmacs.
17606 New submenu "Options".
17607 (ada-end-stmt-re): Correctly indent "select ... then abort"
17608 statements.
17609 (ada-fill-comment-paragraph): Correctly delete all leading '--'
17610 even if they don't match ada-fill-comment-prefix Fix handling of
17611 paragraphs on the first or last line of a file.
17612 (ada-format-paramlist): Fix handling of default parameter values.
17613 (ada-get-body-name): New function.
17614 (ada-get-current-indent): Optimized by searchling directly for an
17615 existing generic part or a statement outside of it. Handle
17616 ada-indent-align-comments when indenting comments Replaced some
17617 regexps by testing directly the next character. This results in a
17618 huge speedup on some files. New indentation scheme for renames
17619 statements. Stop looking for the 'while' or 'for' associated with
17620 a 'loop' at the first semicolon encountered. A "return" can also
17621 match an anonymous access subprogram declaration.
17622 (ada-get-indent-noindent): Ignore strings and comments when
17623 looking for the keywords "record" and "private".
17624 (ada-goto-matching-decl-start): When matching "if", make sure we
17625 are not in fact seeing "end if". Ignore "when" statements except
17626 when initial keyword was "begin". Fix handling of nested
17627 procedures. Add a recursive call to this function to skip over
17628 other 'end' statmts. Fix indentation for "when .. => begin"
17629 (ada-in-open-paren-p): Fix indentation for complex boolean
17630 expressions, where 'and then', 'or else' and parenthesis
17631 statements are mixed up.
17632 (ada-in-paramlist-p): Skip comments while searching for the
17633 beginning Fix handling of operator declarations.
17634 (ada-indent-align-comments): New variable
17635 (ada-indent-current): Change the syntax table only in the
17636 protected section, so that we are sure it is restored correctly.
17637 (ada-indent-on-previous-lines): Use ada-use-indent and
17638 ada-with-indent Correctly indent "select ... then"
17639 (ada-indent-region): Slight speedup.
17640 (ada-indent-renames): New variable.
17641 (ada-last-which-function-subprog, ada-last-which-function-line):
17642 New variables
17643 (ada-looking-at-semi-private): Correctly indent the 'private'
17644 keyword when it is the first word in a package declaration.
17645 (ada-loose-case-word): Stop searching if at the end of the buffer.
17646 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
17647 even if point is not initially at the end of the word.
17648 (ada-matching-decl-start-re): Add "when".
17649 (ada-mode): Add support for abbrev-mode, outline-mode and
17650 which-func-mode Override the old find-file.el entry in
17651 ff-special-constructs since it is using the obsolete
17652 ada-spec-suffix variable
17653 (ada-no-auto-case): New function
17654 (ada-scan-paramlist): When parsing the argument type, accept
17655 spaces (as in "X 'Class", generated by Rational Rose).
17656 (ada-other-file-name): No longer loads the other file.
17657 (ada-popup-menu): Save and restore the current buffer and cursor
17658 position before and after displaying the menu.
17659 (ada-search-ignore-complex-boolean): New function.
17660 (ada-uncomment-region): Emacs21 already knows how to delete
17661 comments not starting in the first column.
17662 (ada-use-indent): New variable
17663 (ada-which-function): New function.
17664 (ada-with-indent): New variable
17665 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
17666 can be batch-compiled from the command line.
17667
17668 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
17669 Add to the menu when the file is loaded, not in ada-mode-hook.
17670 Add -toolbar to the default ddd command Switches moved from
17671 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
17672 ada-prj-default-comp-opt
17673 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
17674 Reference Manual to the menu
17675 (ada-check-current): rewritten as a call to ada-compile-current
17676 (ada-compile): Removed.
17677 (ada-compile-application, ada-compile-current, ada-check-current):
17678 Set the compilation-search-path so that compile.el automatically
17679 finds the sources in src_dir. Automatic scrollong of the
17680 compilation buffer. C-uC-cC-c asks for confirmation before
17681 compiling
17682 (ada-compile-current): New parameter, prj-field
17683 (ada-complete-identifier): Load the .ali file before doing
17684 processing
17685 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
17686 conform to gnatmake's behavior.
17687 (ada-find-file-in-dir): New function
17688 (ada-find-references): Set the environment variables for gnatfind
17689 (ada-find-src-file-in-dir): New function.
17690 (ada-first-non-nil): Removed
17691 (ada-gdb-application): Add support for jdb, the java debugger.
17692 (ada-get-ada-file-name): Load the original-file first if not done
17693 yet.
17694 (ada-get-all-references): Handles the new ali syntax (parent types
17695 are found between <>).
17696 (ada-initialize-runtime-library): New function
17697 (ada-mode-hook): Always load a project file when a file is opened,
17698 so that the casing exceptions are correctly read.
17699 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
17700 (ada-parse-prj-file): Use find-file-noselect instead of find-file
17701 to open the project file, since the latter does not work with
17702 speedbar Get default values before loading the prj file, or the
17703 default executable file name is wrong. Use the absolute value of
17704 src_dir to initialize ada-search-directories and
17705 compilation-search-path,... Add the standard runtime library to
17706 the search path for find-file.
17707 (ada-prj-default-debugger): Was missing an opening '{'
17708 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
17709 variables.
17710 (ada-prj-default-gnatmake-opt): New variable
17711 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
17712 buffers, the project file is the default one Save the windows
17713 configuration before displaying the menu.
17714 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
17715 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
17716 ...) regexp-quote identifiers names to support operators +,
17717 -,... in regexps.
17718 (ada-remote): New function.
17719 (ada-run-application): Erase the output buffer before starting the
17720 run Support remote execution of the application. Use
17721 call-process, or the arguments are incorrectly parsed
17722 (ada-set-default-project-file): Reread the content of the active
17723 project file, not the one from the current buffer When a project
17724 file is set as the default project, all directories are
17725 automatically associated with it.
17726 (ada-set-environment): New function
17727 (ada-treat-cmd-string): New special variable ${current}
17728 (ada-treat-cmd-string): Revised. The substitution is now done for
17729 any ${...} substring
17730 (ada-xref-current): If no body was found, compiles the spec
17731 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
17732 compiler to get rid of command line length limitations.
17733 (ada-xref-get-project-field): New function
17734 (ada-xref-project-files): New variable
17735 (ada-xref-runtime-library-specs-path)
17736 (ada-xref-runtime-library-ali-path): New variables
17737 (ada-xref-set-default-prj-values): Default run command now does a
17738 cd to the build directory. New field: main_unit Provide a default
17739 file name even if the current buffer has no prj file.
17740
17741 * ada-prj.el:
17742 Rewritten to show a tabbed-dialog.
17743 (ada-prj-add-ada-menu): Remove the map and name parameters.
17744 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
17745 New function
17746 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
17747 (ada-prj-load-from-file): New function
17748 (ada-prj-save): Always save fields that depend on the current buffer
17749 (ada-prj-show-value): New function
17750
17751 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
17752 Ada mode. This will allow us to display the Ada menu in any buffer
17753 we want (for project items).
17754 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
17755 number of spaces in the header.
17756
17757 2000-07-24 Dave Love <fx@gnu.org>
17758
17759 * ediff-init.el (ediff-region-help-echo): Bind face-help.
17760
17761 2000-07-23 Noah Friedman <friedman@splode.com>
17762
17763 * type-break.el (type-break): perform autosave.
17764 Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
17765 (type-break-do-query): Cancel query schedule while performing
17766 actual query, to avoid possibility of a second query being made
17767 while first one is already in progress.
17768 (type-break-time-stamp-format): New variable.
17769 (type-break-time-stamp): New function.
17770 (type-break-time-warning): Use it.
17771 (type-break-keystroke-warning): Use it.
17772 (type-break-noninteractive-query): Use it.
17773
17774 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
17775 cookie.
17776 Use add-minor-mode to set minor-mode-alist, if available.
17777 (eldoc-echo-area-use-multiline-p): New user option.
17778 (eldoc-echo-area-multiline-supported-p): New variable.
17779 (eldoc-docstring-format-sym-doc): Use them.
17780 (eldoc-mode): If not using idle timers, append to local post and
17781 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
17782 (eldoc-display-message-no-interference-p): Don't interfere with
17783 edebug.
17784 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
17785 (eldoc-function-arglist): New function.
17786 (eldoc-function-argstring): Use it.
17787
17788 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
17789 auto save directory exists before calling directory-files.
17790
17791 2000-07-23 Dave Love <fx@gnu.org>
17792
17793 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
17794 ^o, ^u.
17795
17796 2000-07-21 Dave Love <fx@gnu.org>
17797
17798 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
17799 now passed to the function. It now works properly.
17800
17801 * smerge-mode.el (smerge-mode-menu): Fill it out.
17802
17803 2000-07-20 Gerd Moellmann <gerd@gnu.org>
17804
17805 * info-look.el (info-lookup): If *info* is shown in another frame
17806 on the same display, select that frame, instead of switching to
17807 the Info buffer in another window of the selected frame.
17808
17809 * simple.el (universal-argument-map): Bind numeric keypad keys
17810 kp-0 to kp-9 and kp-subtract.
17811 (digit-argument): Handle these keys.
17812
17813 2000-07-20 Dave Love <fx@gnu.org>
17814
17815 * net/goto-addr.el (goto-address-fontify): Don't bother with
17816 buffer-modified and read-only stuff -- irrelevant with overlays.
17817 Put an extra property on the overlays and use it to clean up in
17818 case goto-address is re-run.
17819
17820 2000-07-19 Richard M. Stallman <rms@gnu.org>
17821
17822 * timer.el (run-with-idle-timer): Doc fix.
17823
17824 * mail/mail-utils.el (mail-strip-quoted-names):
17825 Handle case where <...> appears inside "...".
17826 Use replace-match to edit the string more simply.
17827 (rmail-dont-reply-to): Cope with an unmatched ".
17828
17829 2000-07-19 Dave Love <fx@gnu.org>
17830
17831 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
17832 implementation.
17833
17834 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
17835 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
17836 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
17837
17838 2000-07-19 Gerd Moellmann <gerd@gnu.org>
17839
17840 * textmodes/refer.el: Correct maintainer's email address.
17841
17842 * progmodes/hideif.el: Correct author's email address.
17843 Fix typo in comment.
17844
17845 * xml.el: New file.
17846
17847 * mail/mailheader.el: Correct author's mail address.
17848
17849 * gnus/parse-time.el: Correct author's mail address.
17850
17851 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
17852
17853 * comint.el (comint-highlight-input, comint-highlight-face):
17854 New user options.
17855 (comint-input-ring-file-name): Change custom type.
17856 (comint-mode-map): Bind mouse-2.
17857 (comint-insert-clicked-input): New function.
17858 (comint-send-input): Handle input highlighting.
17859
17860 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
17861
17862 * mouse.el (popup-menu): New function.
17863 (mouse-major-mode-menu): Use it.
17864
17865 2000-07-18 Dave Love <fx@gnu.org>
17866
17867 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
17868 improvements.
17869
17870 2000-07-18 Gerd Moellmann <gerd@gnu.org>
17871
17872 * faces.el (face-font-selection-order)
17873 (face-font-family-alternatives): Add custom type.
17874
17875 2000-07-18 Dave Love <fx@gnu.org>
17876
17877 * cus-edit.el (custom-variable-reset-saved)
17878 (custom-variable-reset-standard): Remove unused bindings.
17879
17880 * rect.el (open-rectangle-line): Remove unused let.
17881
17882 * hl-line.el (hl-line-highlight): Check hl-line-mode.
17883
17884 2000-07-18 Gerd Moellmann <gerd@gnu.org>
17885
17886 * cdl.el: Fix `Maintainer' keyword.
17887
17888 * play/pong.el: Add author's email address.
17889
17890 2000-07-17 Sam Steingold <sds@gnu.org>
17891
17892 * files.el (insert-directory): Call `split-string' instead of
17893 re-implementing it.
17894
17895 2000-07-18 Gerd Moellmann <gerd@gnu.org>
17896
17897 * mail/vms-pmail.el: Change maintainer to FSF.
17898
17899 * net/goto-addr.el: Change maintainer to FSF.
17900
17901 * info.el (Info-title-face-alist): Removed.
17902
17903 2000-07-18 David Ponce <david@dponce.com>
17904
17905 * recentf.el (recentf-open-files): New command that works like
17906 `recentf-open-more-files', but shows the whole list of files (not just
17907 those omitted from the menu). Useful if you don't use a menu-bar!
17908 (recentf-open-more-files) Modified to use `recentf-open-files'.
17909
17910 (recentf-open-files, recentf-open-more-files)
17911 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
17912
17913 (recentf-dialog-mode): New mode for dialogs. You can now just type
17914 "q" to cancel the dialogs.
17915
17916 2000-07-18 David Ponce <david@dponce.com>
17917
17918 * recentf.el: This is a major update of recentf.el. It adds new
17919 features to better organize the recentf menu and "More..." buffer.
17920
17921 Using new provided menu filtering functions you can now organize the
17922 recent files list:
17923
17924 - by major modes
17925 - by directories
17926 - by user defined rules
17927
17928 Finally, with the new `recentf-filter-changer' customizable filter you
17929 can define a ring of filters and dynamically (via the menu) cycle on
17930 each menu organization in the ring (a la msb).
17931
17932 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
17933
17934 * eshell/eshell.el (eshell): Replace links to eshell.info with
17935 links to eshell, to avoid problems on systems where the manual is
17936 installed as `eshell'.
17937 * eshell/esh-cmd.el (eshell-cmd): Ditto.
17938 * eshell/em-smart.el (eshell-smart): Ditto.
17939 * eshell/em-banner.el (eshell-banner): Ditto.
17940 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
17941
17942 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
17943 same-file check in the MS-DOS version (it does support inodes).
17944
17945 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
17946
17947 * eshell/eshell.el (eshell-directory-name):
17948 Run default directory name through convert-standard-filename.
17949
17950 2000-07-18 Kenichi Handa <handa@etl.go.jp>
17951
17952 * international/mule-cmds.el (select-safe-coding-system):
17953 Fix typo in the comment.
17954
17955 * language/european.el (compound-text):
17956 Force katakana-jisx0201 to be designated to G1.
17957
17958 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
17959 Don't translate some national variant characters of latin-jisx0201.
17960 (x-ctext): Force katakana-jisx0201 to be designated to G1.
17961
17962 * international/kkc.el (kkc-after-update-conversion-functions):
17963 New variable.
17964 (kkc-update-conversion): Run functions in it at the tail.
17965
17966 2000-07-16 John Wiegley <johnw@gnu.org>
17967
17968 * lisp/align.el (align-newline-and-indent):
17969 Adding new function. for auto-aligning blocks of code on RET.
17970 (align-region): Fixed badly formatted minibuffer message.
17971
17972 2000-07-17 Kenichi Handa <handa@etl.go.jp>
17973
17974 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
17975 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
17976 the conversion list at first if appropriate.
17977 (kkc-next): Don't update kkc-next-count here.
17978 (kkc-prev): Don't update kkc-prev-count here.
17979 (kkc-show-conversion-list-update): Fix setting up of conversion
17980 list message.
17981
17982 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
17983
17984 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
17985
17986 2000-07-16 Dave Love <fx@gnu.org>
17987
17988 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
17989 function to be more specific.
17990
17991 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
17992 non-string help-echo.
17993 (widget-types-convert-widget): Defsubst it.
17994 (widget-echo-help): Try to cope with a help-echo function of two
17995 possible sorts.
17996
17997 2000-07-15 Jason Rumney <jasonr@gnu.org>
17998
17999 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
18000 Declare as obsolete.
18001
18002 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
18003
18004 2000-07-14 Gerd Moellmann <gerd@gnu.org>
18005
18006 * hilit-chg.el: Fix typo.
18007
18008 2000-07-14 Dave Love <fx@gnu.org>
18009
18010 * info.el (Info-mode-menu): Fix use of :help, :enable.
18011
18012 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
18013
18014 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
18015
18016 2000-07-13 Dave Love <fx@gnu.org>
18017
18018 * emacs-lisp/easymenu.el: Doc fixes.
18019 (easy-menu-remove): Defalias to ignore.
18020
18021 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
18022 Call throw correctly.
18023
18024 2000-07-13 Gerd Moellmann <gerd@gnu.org>
18025
18026 * faces.el (frame-background-mode): Doc fix.
18027
18028 * simple.el (eval-expression-print-length): Change custom type to
18029 allow entering nil as value.
18030
18031 2000-07-13 Dave Love <fx@gnu.org>
18032
18033 * progmodes/fortran.el (fortran-imenu-generic-expression):
18034 Change definition layout.
18035 (fortran-mode-menu): Reinstate customize entries.
18036
18037 * cus-edit.el (custom-group-menu-create, customize-menu-create):
18038 Use :filter, per old XEmacs code.
18039
18040 2000-07-12 Gerd Moellmann <gerd@gnu.org>
18041
18042 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
18043 event when deciding what to send to the terminal.
18044
18045 2000-07-12 Dave Love <fx@gnu.org>
18046
18047 * cus-start.el: Add optional version as 4th element of specs and
18048 use it for several things new in v21. Remove load-path. Fix type
18049 of line-number-display-limit.
18050
18051 2000-07-11 Dave Love <fx@gnu.org>
18052
18053 * progmodes/fortran.el: Don't require easymenu.
18054 Use repeat counts in various regexps.
18055 (fortran-mode-syntax-table): Defvar directly.
18056 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
18057 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
18058 Use defvar, not defconst.
18059 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
18060 (fortran-mode): Set fortran-comment-line-start-skip,
18061 fortran-comment-line-start-skip, dabbrev-case-fold-search.
18062 (fortran-comment-indent): Use defsubst.
18063 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
18064 Use fortran-comment-indent, not fortran-comment-indent-function.
18065 (fortran-comment-region, fortran-electric-line-number): Simplify.
18066 (fortran-auto-fill): New function.
18067 (fortran-do-auto-fill): Deleted.
18068 (fortran-find-comment-start-skip):
18069 Check for non-null comment-start-skip.
18070 (fortran-auto-fill-mode, fortran-fill-statement):
18071 Use fortran-auto-fill.
18072 (fortran-fill): Use fortran-auto-fill. Check for null
18073 comment-start-skip. Simplify final clause and use end-of-line finally.
18074
18075 * widget.el (widget-plist-member): New alias.
18076
18077 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
18078
18079 * eshell/esh-module.el (toplevel): Reference
18080 byte-compile-current-file only if it is bound.
18081
18082 2000-07-10 Gerd Moellmann <gerd@gnu.org>
18083
18084 * dired.el: Don't require `dired-aux'.
18085
18086 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
18087
18088 * dired-aux.el (dired-show-file-type): New function.
18089 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
18090 (dired-show-file-type): Add autoload.
18091
18092 2000-07-10 Kenichi Handa <handa@etl.go.jp>
18093
18094 * international/mule-diag.el (describe-font): Adjusted for the
18095 change of fontset-info.
18096 (print-fontset): Likewise.
18097
18098 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
18099
18100 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
18101
18102 2000-07-07 Gerd Moellmann <gerd@gnu.org>
18103
18104 * bindings.el: Bind `[delete]' to delete-char.
18105
18106 * dired.el (dired-find-alternate-file): New function.
18107 (dired-mode-map): Bind `a' to dired-find-alternate-file.
18108 (toplevel): Require dired-aux when compiling.
18109 (dired-buffers): Move defvar within file to avoid compiler warning.
18110
18111 * info.el (Info-last-search): Variable removed.
18112 (Info-search-history): New variable.
18113 (Info-search): New Info-search-history.
18114
18115 * battery.el, info-look.el: Change author's mail address.
18116
18117 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
18118
18119 * mail/rmail.el (rmail-clear-headers): Don't throw an error
18120 if rmail-ignored-headers is nil.
18121 (rmail-retry-failure): Bind rmail-ignored-headers and
18122 rmail-displayed-headers to nil.
18123
18124 2000-07-06 Gerd Moellmann <gerd@gnu.org>
18125
18126 * lpr.el (lpr-page-header-switches): Add `-h' switch.
18127 (print-region-1): Don't hard code `-h' here.
18128
18129 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
18130
18131 2000-07-01 Francesco Potorti` <pot@gnu.org>
18132
18133 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
18134 exim can use "your message" instead of "the message".
18135
18136 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
18137
18138 * facemenu.el: Docstrings fixes.
18139 (facemenu-get-face): Don't use internal-find-face.
18140 (facemenu-iterate): Rename arg to match the docstring.
18141
18142 * newcomment.el (uncomment-region): Be more careful when skipping
18143 backwards over `=' not to bump into BOBP.
18144
18145 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
18146
18147 * ediff-diff.el (ediff-wordify): Use syntax table.
18148 * ediff-init.el (ediff-has-face-support-p): Use
18149 ediff-color-display-p.
18150 (ediff-color-display-p): Use display-color-p, changed to defun
18151 from defsubst.
18152 Got rid of special cases for NeXT and OS/2.
18153 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
18154 face.
18155
18156 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
18157
18158 * emacs-lisp/lucid.el: Require CL.
18159 (copy-tree, remprop): Remove, it's provided by CL.
18160 (map-keymap): Define in terms of cl-map-keymap.
18161 (extent-property, set-extent-end-glyph): New functions.
18162
18163 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
18164
18165 2000-07-05 Gerd Moellmann <gerd@gnu.org>
18166
18167 * Makefile.in (DONTCOMPILE): Add comment that the name may
18168 not be changed without changing the make-dist script.
18169
18170 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
18171 (cl-mapc): Use mapc instead of cl-old-mapc.
18172
18173 2000-07-05 Andrew Innes <andrewi@gnu.org>
18174
18175 * makefile.nt: Add support for `bootstrap' and related targets.
18176
18177 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
18178
18179 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
18180 (easy-menu-do-define): Use `menu-item' format.
18181 Handle case where easy-menu-create-menu returns a symbol.
18182 Manually call the potential top-level filter in the function binding.
18183 (easy-menu-filter-return): New arg NAME.
18184 Convert to a keymap if MENU is an XEmacs menu.
18185 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
18186 (easy-menu-converted-items-table, easy-menu-convert-item):
18187 New var and fun to memoize easy-menu-convert-item-1.
18188 (easy-menu-do-add-item): Use it.
18189 (easy-menu-create-menu): Use easy-menu-convert-item.
18190 Wrap easy-menu-filter-return around any :filter specification.
18191 Don't convert the menu if a filter was specified.
18192 Tell easy-menu-make-symbol not to check for MENU being an expression.
18193 (easy-menu-make-symbol): New arg NOEXP.
18194
18195 2000-07-05 Gerd Moellmann <gerd@gnu.org>
18196
18197 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
18198 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
18199 (eval-defun): If called with prefix arg, instrument code for
18200 Edebug.
18201
18202 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
18203 similar to that of eval-defun.
18204
18205 2000-07-04 Dave Love <fx@gnu.org>
18206
18207 * hl-line.el (hl-line-overlay): Make it permanent-local.
18208
18209 * calendar/todo-mode.el: Replaced with a working version, based on
18210 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
18211
18212 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
18213
18214 * paths.el (prune-directory-list): New function.
18215 (Info-default-directory-list): Rewritten to more methodically
18216 enumerate a big list of possible info directories (based on the
18217 list used by the standalone info reader).
18218
18219 * info.el (info-initialize): Use prune-directory-list to remove
18220 non-existent directories from Info-directory-list.
18221
18222 * paths.el (Info-default-directory-list): Try a list of possible
18223 info-directories instead of a single one. Add the possible
18224 info directory "/usr/share/info".
18225
18226 * woman.el (woman-man.conf-path): Explicitly include the debian
18227 man-db config file "/etc/manpath.config".
18228 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
18229 are present in `manpath.config'.
18230 (woman-manpath): Include "/usr/share/man".
18231
18232 2000-07-03 Gerd Moellmann <gerd@gnu.org>
18233
18234 * frame.el (blink-cursor-mode): Don't hide cursor initially.
18235
18236 * startup.el (command-line): Initialize blink-cursor based
18237 on window-system.
18238
18239 * frame.el (blink-cursor): Default to nil if not running under
18240 a window-system.
18241
18242 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
18243 (face-x-resources): Remove duplicate entry for :font.
18244
18245 * textmodes/refer.el (refer-find-entry-internal): Use some-window
18246 instead of cycling through windows with next-window.
18247
18248 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
18249 of cycling through windows with next-window.
18250
18251 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
18252 of cycling through windows with next-window.
18253
18254 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
18255 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
18256 instead of cycling through windows with next-window.
18257
18258 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
18259 instead of cycling through windows with next-window.
18260
18261 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
18262 of cycling through windows with next-window.
18263
18264 * terminal.el (te-process-output): Use walk-windows instead of
18265 cycling through windows with next-window.
18266
18267 * server.el (server-switch-buffer): Use some-window instead of
18268 cycling through windows with next-window.
18269
18270 * window.el (some-window): New function.
18271 (walk-windows): Remove reference to walk-windows-start.
18272
18273 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
18274
18275 2000-07-03 Richard Stallman <rms@gnu.org>
18276
18277 * window.el (walk-windows): Guarantee termination by keeping a list
18278 of all the windows already handled.
18279
18280 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
18281
18282 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
18283 window-system.
18284
18285 * man.el (Man-notify-when-ready): Don't use window-system. If
18286 Man-notify-method is newframe, and the display is not
18287 multi-frame, select the frame created for the man page.
18288 (Man-init-defvars): Doc fix.
18289
18290 2000-06-28 Gerd Moellmann <gerd@gnu.org>
18291
18292 * faces.el (region): Change background color for light background.
18293
18294 * ediff-wind.el (ediff-setup-control-frame): Remove :box
18295 attribute from mode-line face of Ediff control frame.
18296
18297 * replace.el (query-replace-map): Bind `e' like `E'.
18298
18299 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
18300
18301 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
18302 Change name to "Select All".
18303
18304 * dos-fns.el (convert-standard-filename): Fix last change.
18305
18306 2000-06-27 Gerd Moellmann <gerd@gnu.org>
18307
18308 * help.el (describe-variable): Don't insert a second `'s' in front
18309 of the string `value is shown below'. Since the syntax-table is
18310 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
18311 an existing `'s', so that this won't be deleted.
18312
18313 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
18314 * pcmpl-unix.el: New files.
18315
18316 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
18317
18318 * wid-edit.el (widget-member): Use the new plist-member.
18319
18320 2000-06-26 Gerd Moellmann <gerd@gnu.org>
18321
18322 * replace.el (perform-replace): Undo change of 2000-04-04.
18323 Instead, move backward 1 character at the end of the loop when
18324 necessary.
18325
18326 * faces.el (fringe): Change face for different backgrounds.
18327
18328 * eshell/esh-module.el (toplevel): Load defgroup's differently;
18329 patch from John.
18330
18331 * eshell/*.el: Change spelling of the Free Software Foundation.
18332
18333 * eshell/esh-toggle.el: Removed.
18334
18335 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
18336
18337 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
18338 interactively.
18339
18340 2000-06-26 Alex Schroeder <alex@gnu.org>
18341
18342 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
18343 `define-key'; instead of checking `(emacs-version)' check for
18344 `set-keymap-parent' and `set-keymap-name' directly. Add entries
18345 for `;' and `o' which might be electric.
18346
18347 (sql-electric-stuff): New user option.
18348 (sql-magic-go): New function which uses `sql-electric-stuff'.
18349 (sql-magic-semicolon): New function which uses
18350 `sql-electric-stuff'.
18351
18352 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
18353 is not fboundp.
18354
18355 (sql-oracle-options): New variable.
18356 (sql-oracle): Use it.
18357
18358 (sql-imenu-generic-expression): Doc change.
18359 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
18360 is used.
18361
18362 (sql-informix): Added command line parameter "-" to force
18363 sql-informix-program to use stdout.
18364
18365 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
18366
18367 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
18368 (cp864-decode-table): Doc fix.
18369 (cp720-decode-table): New variable, supports the Arabic OEM
18370 codepage used by Windows.
18371 (cp737-decode-table): New, Greek OEM codepage used by Windows.
18372
18373 2000-06-23 Dave Love <fx@gnu.org>
18374
18375 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
18376 (font-lock-fontify-anchored-keywords): Use
18377 line-beginning-position.
18378 (global-font-lock-mode): Use mapc.
18379
18380 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
18381
18382 * eshell/esh-module.el: Require CL when compiling.
18383
18384 2000-06-23 Gerd Moellmann <gerd@gnu.org>
18385
18386 * comint.el (comint-substitute-in-file-name): Call replace-match
18387 with second and third arg t.
18388
18389 * cus-edit.el (custom-button-face, custom-button-pressed-face):
18390 Specify foreground color.
18391
18392 * faces.el (tool-bar, mode-line, header-line): Specify foreground
18393 color.
18394
18395 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
18396
18397 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
18398 cddr instead of cdddr.
18399
18400 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
18401 instead of copy-list.
18402
18403 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
18404 of copy-list.
18405
18406 * subdirs.el: Add eshell subdirectory.
18407
18408 * eshell: New subdirectory containing the Eshell package.
18409
18410 * pcomplete.el: New file.
18411
18412 2000-06-23 Paul Eggert <eggert@twinsun.com>
18413
18414 * mail/mailpost.el (post-mail-send-it): Make sure file has
18415 proper permissions from birth.
18416
18417 * files.el (basic-save-buffer-2): When temporarily setting
18418 file modes, set them to current modes plus 0200, not to 0777.
18419
18420 * emerge.el (emerge-make-temp-file): Make sure file has proper
18421 permissions from birth.
18422
18423 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
18424
18425 * files.el (make-backup-file-name-1): On DOS/Windows, run the
18426 backup file name through convert-standard-filename.
18427
18428 * dos-fns.el (convert-standard-filename): Convert leading
18429 directories as well. When long file names are supported, convert
18430 characters that are invalid in Windows file names.
18431
18432 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18433
18434 * ps-print.el: Fix bug: if ^L is the very first buffer character,
18435 ps-print crashes. New feature: page selection for printing. Create
18436 raw-text-unix coding system for XEmacs. Doc fix.
18437 (ps-print-version): New version number (5.2.3).
18438 (ps-plot-region): Bug fix.
18439 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
18440 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
18441 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
18442 funs.
18443 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
18444 (ps-last-page): New vars.
18445
18446 2000-06-21 Gerd Moellmann <gerd@gnu.org>
18447
18448 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
18449 empty option string.
18450
18451 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
18452
18453 * man.el (man): Doc fix.
18454
18455 2000-06-21 Kenichi Handa <handa@etl.go.jp>
18456
18457 * international/mule-cmds.el (set-language-info-alist): Docstring
18458 fixed.
18459
18460 2000-06-20 Gerd Moellmann <gerd@gnu.org>
18461
18462 * version.el (emacs-version): Use ISO date format.
18463
18464 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
18465 instead of `M-backspace'.
18466
18467 * simple.el (turn-off-auto-fill): New function.
18468
18469 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
18470
18471 * jit-lock.el (with-buffer-prepared-for-jit-lock):
18472 Renamed from with-buffer-prepared-for-font-lock and use
18473 inhibit-modification-hooks rather than setting *-change-functions.
18474 Update all functions to use the new name.
18475 (jit-lock-first-unfontify-pos): New semantics (and doc).
18476 (jit-lock-mode): Make non-interactive.
18477 Don't automatically turn on font-lock.
18478 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
18479 Always use jit-lock-after-change.
18480 Remove and restore font-lock-after-change-function.
18481 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
18482 (jit-lock-after-unfontify-buffer): Remove.
18483 (jit-lock-stealth-fontify):
18484 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
18485 (jit-lock-after-change): Set the `fontified' text-prop to nil.
18486
18487 2000-06-20 Sam Steingold <sds@gnu.org>
18488
18489 * emacs-lisp/cl-indent.el (toplevel): Indent
18490 `print-unreadable-object' properly. Untabify.
18491
18492 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
18493
18494 * textmodes/reftex.el (reftex-find-citation-regexp-format):
18495 Support for bibentry.
18496 (reftex-compile-variables): Fixed problem with end of section-re.
18497
18498 * texmodes/reftex-dcr.el (reftex-view-crossref,
18499 reftex-view-crossref-from-bibtex):
18500 Deal with changed `reftex-find-citation-regexp-format'.
18501 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
18502 Replaced `remprop' with `put'.
18503 (reftex-view-crossref, reftex-view-crossref-when-idle):
18504 Support for bibentry.
18505
18506 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
18507 New entry for bibentry package.
18508
18509 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
18510 Regexp also matches "\nobibliography".
18511
18512 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
18513 Call `reftex-ensure-write-access' before doing anything.
18514 (reftex-ensure-write-access): New function.
18515
18516 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
18517
18518 * progmodes/idlwave.el: File re-installed (update to version 4.2)
18519
18520 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
18521
18522 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
18523
18524 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
18525
18526
18527 2000-06-20 Dave Love <fx@gnu.org>
18528
18529 * faces.el (frame-background-mode): Use set-default, not set, in
18530 setter.
18531 (frame-update-faces, frame-update-face-colors): Define with
18532 defalias.
18533
18534 * enriched.el (enriched-decode-foreground)
18535 (enriched-decode-background): Don't use internal-find-face.
18536
18537 * apropos.el: Doc fixes.
18538
18539 * cus-edit.el (customize-changed-options): Check arg.
18540 (customize-version-lessp): Don't require decimal point.
18541
18542 * custom.el (defcustom, defgroup): Doc fix.
18543
18544 * newcomment.el (comment) <defgroup>: Add :version.
18545 (comment-multi-line): Doc fix.
18546
18547 * emulation/mlsupport.el (define-hooked-local-abbrev,
18548 define-hooked-global-abbrev): Fix, using define-abbrev.
18549
18550 2000-06-19 Gerd Moellmann <gerd@gnu.org>
18551
18552 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
18553 the whole buffer.
18554
18555 2000-06-19 Dave Love <fx@gnu.org>
18556
18557 * menu-bar.el (menu-bar-options-save): New function.
18558 (menu-bar-options-menu): Use it.
18559 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
18560 Simplify.
18561
18562 2000-06-19 Andreas Schwab <schwab@suse.de>
18563
18564 * progmodes/etags.el (tags-query-replace): Put new parameters
18565 START and END at the end, for backward compatibility.
18566
18567 2000-06-19 Kenichi Handa <handa@etl.go.jp>
18568
18569 * international/codepage.el:
18570 (cp-coding-system-for-codepage-1): Delete special codes for
18571 generating xxx-dos coding system because now a CCL based coding
18572 system can handle EOL conversion by default.
18573
18574 * international/mule.el (make-coding-system): Generate subsidiary
18575 coding systems for EOL handling variants even for a CCL based
18576 coding system.
18577
18578 2000-06-19 Kenichi Handa <handa@etl.go.jp>
18579
18580 * international/isearch-x.el (isearch-minibuffer-input-method)
18581 (isearch-minibuffer-input-method-function): These variables
18582 deleted.
18583 (isearch-with-input-method): Don't use the above variables.
18584 (isearch-process-search-multibyte-characters): Likewise. Call
18585 read-string with the arg INHERIT-INPUT-METHOD t.
18586
18587 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
18588
18589 * font-lock.el (font-lock-after-fontify-buffer)
18590 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
18591
18592 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
18593 Use consistent make-local-variable style for font-lock-fontified.
18594 (jit-lock-fontify-buffer):
18595 Don't bother checking for font-lock-mode and jit-lock-mode.
18596
18597 * time.el: Remove trailing ^M that prevent CVS-merging.
18598
18599 2000-06-16 Gerd Moellmann <gerd@gnu.org>
18600
18601 * Makefile.in (distclean): New target.
18602
18603 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
18604
18605 * Makefile.in (srcdir): Define for update-subdirs.
18606
18607 2000-06-16 Gerd Moellmann <gerd@gnu.org>
18608
18609 * find-lisp.el: New file.
18610
18611 2000-06-16 Andrew Innes <andrewi@gnu.org>
18612
18613 * time.el (display-time-mail-function): New variable, to allow
18614 external packages to indicate when new mail is available.
18615 (display-time-update): Use it.
18616
18617 2000-06-16 Kenichi Handa <handa@etl.go.jp>
18618
18619 * international/mule.el (mule-version): Change version name to
18620 SAKAKI. AOI has already been used by Meadow.
18621
18622 * international/quail.el (quail-show-guidance-buf): To find the
18623 bottom window (but minibuffer), pay attention to the height of
18624 minibuffer.
18625
18626 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
18627
18628 * arc-mode.el (archive-mode-map): Use the new menu-item format for
18629 menu-bar menus. Add help strings. Don't remove the Edit menu
18630 from the menu bar, as the menu bar has enough space now.
18631
18632 * Makefile.in (SHELL): Make sure /bin/sh is used.
18633
18634 * woman.el (woman-man-buffer): Fix bold and underlined CJK
18635 characters, which use series of two ^H characters instead of one.
18636
18637 2000-06-15 Gerd Moellmann <gerd@gnu.org>
18638
18639 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
18640 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
18641 functions.
18642 (Info-find-node-2): Try a case-sensitive search first, then
18643 do a case-insensitive search.
18644
18645 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
18646 tutorials.
18647
18648 * complete.el (PC-env-vars-alist): New variable.
18649 (PC-complete-as-file-name): New function.
18650 (partial-completion-mode): Initialize PC-env-vars-alist from
18651 process-environment.
18652 (PC-do-completion): Handle completion of env vars.
18653
18654 * info.el (Info-set-mode-line): Show file name in mode line,
18655 use `*Info*' instead of `Info:'.
18656
18657 * startup.el (command-line-1): Change copyright messages to year
18658 2000.
18659
18660 2000-06-15 Dave Love <fx@gnu.org>
18661
18662 * net/goto-addr.el (goto-address-fontify): Use keymap property,
18663 not local-map.
18664
18665 2000-06-15 Kenichi Handa <handa@etl.go.jp>
18666
18667 * international/mule.el (set-buffer-file-coding-system): Almost
18668 rewritten to handle `undecided' as no-op.
18669
18670 2000-06-14 Gerd Moellmann <gerd@gnu.org>
18671
18672 * Makefile.in: New file.
18673
18674 * Makefile: Removed.
18675
18676 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
18677 (goto-address-highlight-keymap): Bind C-c RET.
18678
18679 2000-06-14 Kenichi Handa <handa@etl.go.jp>
18680
18681 * mail/sendmail.el (sendmail-send-it): The temporary buffer
18682 inherits buffer-file-coding-system of the current buffer.
18683
18684 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
18685 0. Give correct argument to set-auto-coding-function.
18686 (tar-expunge): For goto-char, use (point-min), not 0.
18687 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
18688 (tar-subfile-save-buffer): Likewize.
18689
18690 * international/mule.el
18691 (after-insert-file-set-buffer-file-coding-system): Call
18692 set-buffer-file-coding-system with the arg FORCE t.
18693
18694 2000-06-13 Gerd Moellmann <gerd@gnu.org>
18695
18696 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
18697 nil. Contemporary sendmails issue an X-Authentication-Warning if
18698 the sender is set with `-f'.
18699
18700 2000-06-13 Dave Love <fx@gnu.org>
18701
18702 * help.el (describe-function-1): Kluge around cases of functions
18703 fset to subrs whose doc doesn't match their symbol-name.
18704
18705 * image.el (insert-image): Default STRING to a space.
18706
18707 * info.el Doc fixes.
18708 (Info-build-node-completions): Match Ref tags.
18709
18710 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
18711
18712 * frame.el (display-multi-frame-p, display-multi-font-p): New
18713 defaliases for display-graphic-p.
18714
18715 * hl-line.el: Fixed a typo in commentary.
18716
18717 2000-06-13 Kenichi Handa <handa@etl.go.jp>
18718
18719 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
18720 fixed.
18721
18722 2000-06-12 Dave Love <fx@gnu.org>
18723
18724 * image.el (insert-image): Save a little consing.
18725
18726 2000-06-12 Kenichi Handa <handa@etl.go.jp>
18727
18728 * language/tibet-util.el: Convert all tibetan-1-column characters
18729 to the corresponding tibetan characters.
18730 (tibetan-add-components): Delete code for the special treatment of
18731 'a chung.
18732
18733 * language/tibetan.el (tibetan-composable-pattern): Fix previous
18734 change.
18735 (tibetan-vowel-transcription-alist): More rules added.
18736 (tibetan-composite-vowel-alist): New variable.
18737 (tibetan-precomposition-rule-alist): More rules added.
18738
18739 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
18740
18741 * startup.el (command-line): Only call menu-bar-mode if interactive.
18742
18743 * thingatpt.el (toplevel symbol-properties):
18744 * textmodes/makeinfo.el (makeinfo-compile):
18745 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
18746 * progmodes/hideif.el (hif-compress-define-list)
18747 (hide-ifdef-use-define-alist):
18748 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
18749 (ange-ftp-vms-add-file-entry):
18750 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
18751 * man.el (Man-build-man-command):
18752 * mail/rnewspost.el (news-reply-header-hook):
18753 * info.el (Info-insert-dir):
18754 * emulation/mlconvert.el (backward-word, forward-word, setq):
18755 * emacs-lisp/gulp.el (gulp-send-requests):
18756 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
18757 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
18758 (byte-optimize-apply, end of file):
18759 * emacs-lisp/advice.el (ad-advice-class-completion-table)
18760 (ad-make-freeze-definition):
18761 * startup.el (command-line, command-line-1): Don't quote lambdas.
18762
18763 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
18764 (cvs-cleanup-removed): New function.
18765 (cvs-cleanup-functions): New var.
18766 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
18767 some flexibility in specifying additional entries to auto-cleanup.
18768 (cvs-quickdir): New function.
18769 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
18770 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
18771 (cvs-mode-find-file): Check that we are on a filename or dirname
18772 when invoked through a mouse-click.
18773 (cvs-full-path): Remove.
18774 (cvs-dired-action): Re-introduced.
18775 (cvs-dired-noselect): Use it.
18776 (vc-post-command-functions): use this new hook if available.
18777
18778 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
18779 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
18780 (cvs-filename-map, cvs-dirname-map): Remove.
18781 (cvs-default-action): Remove.
18782 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
18783 if the arg is really a keymap.
18784 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
18785 Don't hardcode the mapping from state (aka type) to face, but check
18786 the var cvs-fi-<type>-face instead.
18787 (cvs-fileinfo-from-entries): New function.
18788
18789 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
18790 Docstring fix.
18791 (cvs-find-file-and-jump): Change default to be safer.
18792 (cvs-mode-diff-map): Define it as a function as well.
18793 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
18794 Bind mouse-2 in this global map rather than with text-properties.
18795
18796 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
18797 file to resolve the ambiguity between C(conflict) and C(need-merge).
18798
18799 2000-06-12 Kenichi Handa <handa@etl.go.jp>
18800
18801 * international/mule.el (set-buffer-file-coding-system): If
18802 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
18803 unconditionally.
18804
18805 2000-06-12 Dave Love <fx@gnu.org>
18806
18807 * wid-edit.el (widget-specify-button): Really suppress the face if
18808 required.
18809
18810 2000-06-11 Gerd Moellmann <gerd@gnu.org>
18811
18812 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
18813
18814 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
18815
18816 * imenu.el (imenu-generic-expression): Docstring fix.
18817
18818 * composite.el (composition-function-table): Move the `put'
18819 below the autoload cookie so we can load the file before loaddefs.
18820
18821 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
18822
18823 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
18824 Handle easy-mmode-define-global-mode.
18825 For complex macros like define-minor-mode that can generate
18826 several autoload entries, try to autoload entries in the
18827 macroexpanded code.
18828
18829 * emacs-lisp/easy-mmode.el (define-minor-mode):
18830 If KEYMAP is a symbol, just use it.
18831 Use byte-compile-current-file and load-file-name to infer the
18832 proper :require to pass to defcustom.
18833 Wrap the hook var into `progn' so as not to autoload it.
18834 Add a :autoload-end cookie.
18835 Be more careful about the evaluation of KEYMAP.
18836 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
18837 (define-derived-mode): Move define-abbrev-table outside of defvar.
18838
18839 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
18840
18841 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
18842 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
18843 (backup-compiled-files): Ignore errors during `tar'.
18844 (bootstrap): Make autoloads before elc files.
18845
18846 2000-06-10 Kenichi Handa <handa@etl.go.jp>
18847
18848 * international/mule.el (set-buffer-file-coding-system): If one of
18849 undecided-XXX is specified, change only EOL conversion.
18850
18851 * international/mule-conf.el (unix): New alias for the coding
18852 system undecided-unix.
18853
18854 2000-06-09 Dave Love <fx@gnu.org>
18855
18856 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
18857
18858 * progmodes/executable.el: Byte compile dynamic.
18859 (executable-insert): Change custom type.
18860 (executable-find): Add autoload cookie.
18861 (executable-make-buffer-file-executable-if-script-p): New
18862 function. After Noah Friedman.
18863
18864 * files.el (after-save-hook): Customize, with
18865 executable-make-buffer-file-executable-if-script-p as an option.
18866
18867 2000-06-09 Kenichi Handa <handa@etl.go.jp>
18868
18869 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
18870 "tib24p-mule.bdf" for Tibetan.
18871
18872 * composite.el (decompose-composite-char): Declare it as obsolete.
18873
18874 * man.el (Man-fontify-manpage): Pay attention to underline and
18875 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
18876
18877 2000-06-08 Gerd Moellmann <gerd@gnu.org>
18878
18879 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
18880 Set maintainer to FSF since author isn't reachable.
18881
18882 2000-06-08 Dave Love <fx@gnu.org>
18883
18884 * international/mule-cmds.el (select-safe-coding-system): If
18885 DEFAULT-CODING-SYSTEM is not specified, also check the most
18886 preferred coding-system if buffer-file-coding-system is
18887 `undecided'. From Handa.
18888
18889 2000-06-08 Kenichi Handa <handa@etl.go.jp>
18890
18891 * international/mule.el
18892 (after-insert-file-set-buffer-file-coding-system): If the buffer
18893 size is greater than INSERTED, judget that we are not visiting.
18894
18895 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
18896
18897 * whitespace.el (defgroup whitespace): Comment out `:version'.
18898 XEmacs 20.4 has problems defining the group with this present.
18899 We'll have this commented out till get resolve the problem.
18900
18901 2000-06-07 John Wiegley <johnw@gnu.org>
18902
18903 * align.el (align-dq-string-modes, align-sq-string-modes)
18904 (align-open-comment-modes): Add pyhton-mode.
18905 (align-rules-list): Use get-text-property instead of
18906 text-properties-at.
18907 (align-rules-list): Add python-assignment.
18908 (align-rules-list): Change perl-comma-delimiter to
18909 basic-comma-delimiter. Use if for Perl modes and python-mode.
18910 (align-rules-list): Add python-chain-logic and
18911 basic-line-continuation.
18912
18913 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
18914
18915 * apropos.el (apropos-mode-hook): New user variable.
18916 (apropos-mode): Run apropos-mode-hook.
18917
18918 2000-06-07 David Ponce <david@dponce.com>
18919
18920 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
18921 commands. Require `wid-edit' at run-time.
18922
18923 2000-06-07 David Ponce <david@dponce.com>
18924
18925 * recentf.el: Added some "Commentary".
18926 (recentf-open-more-files, recentf-edit-list): Minor changes to
18927 move the point at the top of the file list. This behaviour is
18928 consistent with the menu one when the list contains a lot of
18929 files.
18930 (recentf-cleanup): Now displays the number of items removed from
18931 the list.
18932 (recentf-relative-filter) New menu filter to show filenames
18933 relative to `default-directory'.
18934
18935 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18936
18937 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
18938 with/without giving an error if PostScript printer doesn't have this
18939 kind of page size. Zebra Stripe continues or restarts on next page.
18940 Manual/automatic paper feeding. Switch or not the header.
18941 (ps-print-version): New version number (5.2.2).
18942 (ps-windows-system): Include emx as a Windows system.
18943 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
18944 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
18945 (ps-background-text): Code fix.
18946 (ps-error-handler-message, ps-user-defined-prologue)
18947 (ps-print-prologue-header, ps-printer-name)
18948 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
18949 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
18950 (ps-use-face-background): Customization fix.
18951 (ps-n-up-database): Data fix.
18952 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
18953 (ps-switch-header): New vars.
18954 (ps-xemacs-color-name, ps-face-foreground-name)
18955 (ps-face-background-name, ps-boolean-constant): New funs.
18956
18957 2000-06-07 Dave Love <fx@gnu.org>
18958
18959 * allout.el: New version from Manheimer.
18960
18961 2000-06-07 Kenichi Handa <handa@etl.go.jp>
18962
18963 * textmodes/fill.el (fill-find-break-point): Check the validity of
18964 charset.
18965
18966 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
18967
18968 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
18969 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
18970 Call display-color-p and display-mouse-p instead of looking at
18971 window-system.
18972
18973 2000-06-06 Dave Love <fx@gnu.org>
18974
18975 * image.el (find-image): Doc fix. Return nil if image not found.
18976 (put-image, insert-image): Make STRING arg optional.
18977
18978 2000-06-06 Kenichi Handa <handa@etl.go.jp>
18979
18980 * language/vietnamese.el: Remove eval-when-compile.
18981 (viet-viscii-nonascii-translation-table): Define it as a
18982 translation table made from viet-viscii-decode-table.
18983 (viet-viscii-encode-table): Define it as a translation table made
18984 from the reverse map of above.
18985 (viet-vscii-nonascii-translation-table): Define it as a
18986 translation table made from viet-vscii-decode-table.
18987 (viet-vscii-encode-table): Define it as a translation table made
18988 from the reverse map of above.
18989 (ccl-decode-viscii): Use translate-character.
18990 (ccl-encode-viscii, ccl-encode-viscii-font)
18991 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
18992 Likewize.
18993
18994 * language/cyrillic.el: Remove eval-when-compile.
18995 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
18996 translation table made from cyrillic-koi8-r-decode-table.
18997 (cyrillic-koi8-r-encode-table): Define it as a translation table
18998 made from the reverse map of above.
18999 (ccl-decode-koi8): Use translate-character.
19000 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
19001 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
19002 a translation table made from cyrillic-alternativnyj-decode-table.
19003 (cyrillic-alternativnyj-encode-table): Define it as a translation
19004 table made from the reverse map of above.
19005 (ccl-decode-alternativnyj): Use translate-character.
19006 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
19007 Likewize
19008
19009 * international/mule-diag.el (non-iso-charset-alist): Specify
19010 translation table symbol instead of translation table itself.
19011 (list-block-of-chars): CHARSET may be a translation table symbol.
19012
19013 * international/mule.el (make-coding-system): If CODING-SYSTEM
19014 already exists, override it.
19015
19016 * international/fontset.el: Use family `proportional' for Tibetan
19017 fonts.
19018
19019 * international/ccl.el (ccl-compile-translate-character): Don't
19020 check if Rrr has property translation-table.
19021 (ccl-compile-map-multiple): Modified to avoid compiler warning.
19022
19023 2000-06-05 Gerd Moellmann <gerd@gnu.org>
19024
19025 * info.el: Bind case-fold-search to t when searching in case
19026 a user sets it to nil in a hook.
19027
19028 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
19029
19030 * autoarg.el (autoarg-mode, autoarg-kp-mode):
19031 * hl-line.el (hl-line-mode): Use the new :global key argument.
19032
19033 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
19034 (tar-clip-time-string): Prepend a space.
19035 (tar-grind-file-mode): Construct a string rather than modifying one.
19036 (tar-header-block-summarize): Fix docstring.
19037 Use `format' rather than an error-prone set of copy-loops.
19038
19039 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
19040 (diff-goto-source, diff-unified->context, diff-context->unified)
19041 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
19042 understand the format output by the `-p' argument to diff.
19043
19044 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
19045 (sh-re-done): Use defconst.
19046 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
19047 (sh-help-string-for-variable, sh-guess-basic-offset):
19048 Don't quote lambdas.
19049 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
19050 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
19051
19052 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
19053 (mh-letter-mode): Derive from text-mode.
19054 This implicitly means that it now calls kill-all-local-variables.
19055 Also remove the Emacs-18 compatibility code.
19056
19057 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
19058 Make use of symbol-property doc-string-elt.
19059 Use memq rather than a sequence of eq.
19060 (doc-string-elt): Fix the wrong or missing previously unused values.
19061 (autoload-print-form): New function extracted from
19062 generate-file-autoloads to allow recursion when handling progn
19063 so that defvar's and defun's docstrings are properly printed.
19064 (generate-file-autoloads): Use it.
19065
19066 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
19067 Use find-file-hooks in the minor-mode function.
19068 Be careful not to loop indefinitely in the post-command-hook function.
19069
19070 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
19071
19072 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
19073 tty's.
19074 * ediff-diff.el (ediff-exec-process): Use --binary for fine
19075 differences whenever appropriate.
19076 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
19077 * viper.el (find-file, find-file-other-window): Get viper to do
19078 wildcards.
19079
19080 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
19081
19082 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
19083 (jit-lock-fontify-buffer): New function for JIT refontification.
19084 (jit-lock-mode): Fix docstring.
19085 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
19086 Remove jit-lock-after-change from the _local_ hook.
19087 (jit-lock-function-1): Fix docstring.
19088
19089 * info.el (Info-on-current-buffer): Initialize info.
19090
19091 * newcomment.el (comment-indent): Ignore comment-indent-hook.
19092
19093 * progmodes/tcl.el (tcl-indent-for-comment):
19094 Ignore comment-indent-hook.
19095
19096 * emacs-lisp/easy-mmode.el: Require CL during compilation.
19097 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
19098 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
19099 and improve to use the lighter to guess the capitalization.
19100 (define-minor-mode): Inline code from easy-mmode-define-toggle.
19101 Add keyword arguments to specify global-ness or the custom group.
19102 Add local-map and help-echo properties to the lighter.
19103 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
19104 (easy-mmode-define-global-mode): New macro.
19105
19106 2000-06-02 Dave Love <fx@gnu.org>
19107
19108 * wid-edit.el: byte-compile-dynamic since we typically don't use
19109 all the widgets. Don't require cl or widget. Remove
19110 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
19111 (widget-read-event): Removed. Callers changed to use read-event.
19112 (widget-button-release-event-p): Renamed from
19113 button-release-event-p.
19114 (widget-field-add-space, widget-field-use-before-change):
19115 Uncustomize.
19116 (widget-specify-field): Use keymap property, not local-map.
19117 (widget-specify-button): Obey :suppress-face.
19118 (widget-specify-insert): Use modern backquote syntax.
19119 (widget-image-directory): Renamed from widget-glyph-directory.
19120 (widget-image-enable): Renamed from widget-glyph-enable.
19121 (widget-image-find): Replaces widget-glyph-find.
19122 (widget-button-pressed-face): Move defvar.
19123 (widget-image-insert): Replaces widget-glyph-insert.
19124 (widget-convert): Use keywordp.
19125 (widget-leave-text, widget-children-value-delete): Use mapc.
19126 (widget-keymap): Remove XEmacs stuff.
19127 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
19128 (widget-button-click): Don't set point at the click, but re-centre
19129 if we scroll out of window. Rewritten for images v. glyphs &c.
19130 (widget-tabable-at): Use POS arg, not point.
19131 (widget-beginning-of-line, widget-end-of-line)
19132 (widget-item-value-create, widget-sublist, widget-princ-to-string)
19133 (widget-sexp-prompt-value, widget-echo-help): Simplify.
19134 (widget-default-create): Use widget-image-insert; some rewriting.
19135 (widget-visibility-value-create)
19136 (widget-push-button-value-create, widget-toggle-value-create): Use
19137 widget-image-insert.
19138 (checkbox): Create on and off images dynamically.
19139 (documentation-link): Change :help-echo.
19140 (widget-documentation-link-echo-help): Remove.
19141
19142 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
19143
19144 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
19145
19146 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
19147 (easy-mmode-define-toggle, define-minor-mode): Use it.
19148 (easy-mmode-define-keymap): Docstring fix.
19149 (define-derived-mode): Default PARENT to fundamental-mode.
19150 Add the derived-mode-parent symbol-property.
19151 (easy-mmode-derived-mode-p): New function.
19152
19153 2000-06-02 Dave Love <fx@gnu.org>
19154
19155 * files.el (convert-standard-filename): Doc fix.
19156 (normal-backup-enable-predicate): New function.
19157 (backup-enable-predicate): Use it to replace the lambda form.
19158
19159 * calendar/todo-mode.el: [This needs more work on the outline
19160 stuff.] Doc fixes.
19161 (todo) <defgroup>: Add :version.
19162 (todo-add-category): Don't use pushnew.
19163 (todo-cmd-raise): Fix typo.
19164 (todo-top-priorities): Change temp buffer name.
19165 (todo-category-alist): Avoid redundant lambda.
19166 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
19167 Use outline-next-heading.
19168
19169 * autoarg.el: Rewritten to use define-minor-mode.
19170 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
19171 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
19172
19173 2000-06-02 Kenichi Handa <handa@etl.go.jp>
19174
19175 * isearch.el (isearch-other-meta-char): Fix previous change.
19176
19177 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
19178
19179 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
19180 (log-edit-done): Only add the comment to the ring if it's different
19181 from the last comment entered.
19182
19183 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
19184
19185 2000-06-01 Dave Love <fx@gnu.org>
19186
19187 * hl-line.el: Rewritten using define-minor-mode.
19188
19189 * help.el (describe-function-1): Distinguish special form from
19190 builtin function. Sanity-check presence of arglist for builtins.
19191
19192 2000-06-01 Kenichi Handa <handa@etl.go.jp>
19193
19194 * international/characters.el: Fix syntax/category setting of
19195 Tibetan characters.
19196
19197 * language/tibet-util.el (tibetan-add-components): Fixes for new
19198 encoding of Tibetan characters.
19199 (tibetan-decompose-precomposition-alist): New variable.
19200 (tibetan-decompose-region): Convert precomposed characters to
19201 non-precomposed characters.
19202 (tibetan-decompose-string): Likewise.
19203 (tibetan-composition-function): Fix args to
19204 thibetan-compose-string.
19205
19206 * language/tibetan.el (tibetan-composable-pattern): More
19207 characters included.
19208 (tibetan-consonant-transcription-alist): Rule for "R" added.
19209 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
19210 "+R" added.
19211 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
19212
19213 * language/lao-util.el (lao-composition-function): Fix args to
19214 compose-string.
19215
19216 * language/thai-util.el (thai-composition-function): Fix args to
19217 compose-string.
19218
19219 * isearch.el (isearch-update): Set disable-point-adjustment to t
19220 to prevent the point moving to the end of a composition when a
19221 part of a composition is searched.
19222 (isearch-other-meta-char): If the key invoking this command can be
19223 mapped by function-key-map to a printing char, call
19224 isearch-process-search-char directly.
19225
19226 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
19227
19228 * emacs-lisp/bytecomp.el:
19229 * frame.el:
19230 * international/mule-cmds.el:
19231 * international/mule-util.el:
19232 * international/mule.el:
19233 * mouse.el:
19234 * subr.el:
19235 * faces.el: Update calls to make-obsolete with a WHEN argument.
19236
19237 * byte-run.el (make-obsolete, make-obsolete-variable):
19238 Add an optional WHEN argument and change the format of the
19239 symbol-property information.
19240 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
19241 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
19242 new obsolete-symbol-property format and print WHEN if it is provided.
19243
19244 2000-05-31 Dave Love <fx@gnu.org>
19245
19246 * loadhist.el (loadhist-hook-functions): Remove
19247 before-change-function, after-change-function.
19248 (unload-feature): Deal with symbols which are both bound and
19249 fbound.
19250
19251 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
19252 before-change-function, after-change-function.
19253
19254 * simple.el (newline): Don't bind before-change-function,
19255 after-change-function.
19256
19257 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
19258
19259 * whitespace.el (whitespace-rescan-timer-time): Update interval
19260 set to 600 seconds (10 minutes) instead of 60 seconds since
19261 a large number of whitespace buffers causes emacs to `freeze'
19262 for a considerable amount of time.
19263
19264 * whitespace.el: Updated email address
19265
19266 2000-05-31 Dave Love <fx@gnu.org>
19267
19268 * add-log.el (change-log-font-lock-keywords) <function>: Add
19269 pattern for function of change.
19270 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
19271 acknowledgements patterns.
19272
19273 2000-05-31 Kenichi Handa <handa@etl.go.jp>
19274
19275 * isearch.el (isearch-printing-char): If keyboard coding system is
19276 being used, call isearch-process-search-multibyte-characters.
19277
19278 * international/isearch-x.el: Mostly rewritten.
19279
19280 * international/quail.el (quail-start-conversion): Don't include
19281 unhandled events in the returned events, but set them in
19282 unread-command-events. Exit if all inputs are deleted.
19283
19284 2000-05-30 Jason Rumney <jasonr@gnu.org>
19285
19286 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
19287
19288 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
19289 Reenable code to create initial fontsets.
19290 Use set-fontset-font in place of put-charset-property.
19291
19292 2000-05-30 Gerd Moellmann <gerd@gnu.org>
19293
19294 * progmodes/perl-mode.el (perl-indent-line): When looking for a
19295 label, ensure that the first colon isn't followed by another.
19296
19297 * paths.el (Info-default-directory-list): Doc fix.
19298
19299 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
19300 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
19301 send a query containing USER only, not USER@HOST.
19302
19303 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
19304 and rmail-msgend to compute the restriction at the end, instead of
19305 computing it.
19306
19307 2000-05-29 Gerd Moellmann <gerd@gnu.org>
19308
19309 * dabbrev.el (dabbrev-expand): Don't display messages in the
19310 echo area if the minibuffer window is active.
19311
19312 * jit-lock.el (jit-lock-mode): Add after change function to
19313 local hook.
19314
19315 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
19316
19317 * antlr-mode.el: New commands: hide/unhide actions,
19318 upcase/downcase literals.
19319 (antlr-tiny-action-length): New user option.
19320 (antlr-hide-actions): New command. Suggested by
19321 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
19322 (antlr-mode-map): New binding [C-c C-v].
19323 (antlr-mode-menu): New entries.
19324 (antlr-downcase-literals): New command.
19325 (antlr-upcase-literals): Ditto.
19326
19327 * antlr-mode.el: Minor changes: indendation, mode-name.
19328 (antlr-indent-line): Indent cpp directive at column 0.
19329 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
19330
19331 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
19332 (antlr-font-lock-additional-keywords): Workaround for intentional
19333 bug in XEmacs version of font-lock.
19334 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
19335 be used by a smarter version of `buffers-menu-grouping-function'.
19336
19337 2000-05-29 Gerd Moellmann <gerd@gnu.org>
19338
19339 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
19340 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
19341
19342 2000-05-29 Kenichi Handa <handa@etl.go.jp>
19343
19344 * international/encoded-kb.el
19345 (encoded-kbd-iso2022-designation-map): Pay attention to that
19346 charset-iso-final-char return -1 for eight-bit-control and
19347 eight-bit-graphic.
19348
19349 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
19350
19351 * speedbar.el (speedbar-use-images, speedbar-update-flag)
19352 (speedbar-easymenu-definition-base): Use display-graphic-p where
19353 available, instead of window-system.
19354
19355 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
19356
19357 * international/codepage.el (cp-coding-system-for-codepage-1): Add
19358 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
19359 coding systems.
19360
19361 2000-05-26 Dave Love <fx@gnu.org>
19362
19363 * disp-table.el (standard-display-underline): Don't use
19364 internal-find-face.
19365
19366 * mail/reporter.el: Maintainer change. Doc fixes.
19367 (reporter-version): Deleted.
19368
19369 * emacs-lisp/elp.el: Maintainer change.
19370 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
19371
19372 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
19373
19374 * add-log.el (add-change-log-entry): Merge the current entry with the
19375 previous one if the previous one is empty.
19376
19377 2000-05-26 Dave Love <fx@gnu.org>
19378
19379 * loadhist.el (unload-feature): Fix interactive spec [from
19380 lijnzaad@ebi.ac.uk].
19381
19382 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
19383 subr-arity to check primitives.
19384 (byte-compile-flush-pending, byte-compile-file-form-progn)
19385 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
19386 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
19387 mapcar.
19388
19389 2000-05-26 Kenichi Handa <handa@etl.go.jp>
19390
19391 * international/fontset.el: Set family names of non-latin charsets
19392 in default fontset to "*".
19393
19394 * international/mule-diag.el (print-fontset): Combine family part
19395 and registry part of the fontname by "-*-" instead of "-".
19396
19397 * international/mule-cmds.el (encode-coding-char): Make strings
19398 multibyte before calling encode-coding-string.
19399
19400 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
19401
19402 * derived.el: Fix keywords.
19403 (define-derived-mode): Only define if needed.
19404
19405 * simple.el (fill-comment, comment-column, comment-start)
19406 (comment-start-skip, comment-end, comment-indent-function)
19407 (block-comment-start, block-comment-end, indent-for-comment)
19408 (set-comment-column, kill-comment, comment-padding, comment-region)
19409 (comment-multi-line, indent-new-comment-line): Remove.
19410
19411 * bindings.el (esc-map): Change ; to comment-dwim and use the new
19412 function names for comment operations.
19413
19414 * newcomment.el: Add abundant autoload cookies.
19415 (comment-style): Don't depend on runtime data at compile-time.
19416 (comment-indent-hook): Remove.
19417 (comment-indent): Check if comment-indent-hook is bound.
19418 (comment-region): Docstring fix.
19419
19420 2000-05-25 Dave Love <fx@gnu.org>
19421
19422 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
19423 byte-code-function-p.
19424
19425 * mail/rmailsum.el: Add provide.
19426
19427 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
19428
19429 * smerge-mode.el (smerge-diff-switches): Don't use list* in
19430 defcustom.
19431
19432 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
19433
19434 * ediff-diff.el (ediff-exec-process): delete --binary option from
19435 non-buffer ediff jobs.
19436
19437 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19438
19439 * hilit-chg.el (highlight-changes-mode): Ask about color or
19440 grayscale support, not about window-system.
19441
19442 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
19443 window-system.
19444 (ffap-highlight): Always default to t.
19445
19446 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
19447 display-popup-menus-p instead of looking at window-system.
19448
19449 * disp-table.el (standard-display-g1, standard-display-graphic):
19450 Only refuse to use string glyphs on X and MS-Windows.
19451
19452 * avoid.el: Remove window-system from commentary, suggest to use
19453 display-*-p instead.
19454
19455 * apropos.el (apropos-print): Use display-mouse-p instead of
19456 window-system.
19457
19458 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19459
19460 * international/codepage.el (cp-decoding-vector-for-codepage):
19461 Fill up unsupported characters with their own codes. From Kenichi
19462 Handa.
19463
19464 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19465
19466 * international/mule-diag.el (describe-char-after): Use
19467 display-graphic-p instead of window-system, so that this function
19468 works on MS-DOS.
19469
19470 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
19471
19472 * international/codepage.el (cp-make-coding-systems-for-codepage):
19473 Remove the eight-bit-graphic and eight-bit-control charsets from
19474 the list of charsets which we convert into `?'.
19475
19476 2000-05-25 Kenichi Handa <handa@etl.go.jp>
19477
19478 * international/mule-conf.el: Specify CHARSET-ID explicitely for
19479 private charsets.
19480 (mule-unicode-0100-24ff, japanese-jisx0213-1,
19481 japanese-jisx0213-2): New charsets.
19482
19483 * international/fontset.el: Setup default fontset for new charsets.
19484
19485 2000-05-24 Dave Love <fx@gnu.org>
19486
19487 * info.el (Info-find-node-2): Restructure [following "Vadim
19488 S. Solomin" <sovs@uic.nnov.ru>].
19489
19490 * icomplete.el: Fix header for Finder.
19491
19492 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
19493
19494 * rmailout.el (rmail-output-to-rmail-file): Added optional param
19495 STAY.
19496
19497 * rmail.el (rmail-automatic-folder-directives): New user variable.
19498 (rmail-show-message): Add call to `rmail-auto-file' during
19499 display.
19500 (rmail-auto-file): New function.
19501
19502 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
19503
19504 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
19505 account.
19506 (ediff-test-utility,ediff-diff-mandatory-option)
19507 (ediff-reset-diff-options): Utilities for proper initialization of
19508 ediff-diff-options and ediff-diff3-options on Windows.
19509
19510 * ediff-init.el (ediff-merge-filename-prefix): New customizable
19511 variable.
19512
19513 * ediff-mult.el (ediff-filegroup-action): Use
19514 ediff-merge-filename-prefix.
19515
19516 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
19517
19518 * viper-ex.el (ex-write): Set selective display to nil.
19519
19520 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
19521
19522 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
19523 aliases for hebrew-iso-8bit.
19524
19525 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
19526
19527 * woman.el: New version from Francis J. Wright
19528 <F.J.Wright@Maths.QMW.ac.uk>.
19529 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
19530 names in environment variables regardless of the path separator.
19531 (woman-topic-all-completions-1): Don't call file-name-directory-p
19532 on all files, since woman-file-regexp already filters out any
19533 directories.
19534
19535 2000-05-24 Kenichi Handa <handa@etl.go.jp>
19536
19537 * international/quail.el (quail-start-translation): Don't change
19538 modified-p of the current buffer.
19539 (quail-start-conversion): Likewise.
19540
19541 * international/kkc.el (kkc-region): Don't change modified-p of
19542 the current buffer.
19543
19544 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
19545 conform to RFC1468.
19546 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
19547
19548 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
19549
19550 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
19551 (speedbar-insert-button): Invisible text property fix.
19552 (speedbar-directory-plus): Renamed from speedbar-directory-+
19553 (speedbar-directory-minus): Renamed from speedbar-directory--
19554 (speedbar-page-plus): Renamed from speedbar-file-+
19555 (speedbar-page-minus): Renamed from speedbar-file--
19556 (speedbar-page): Renamed from speedbar-file-
19557 (speedbar-tag): Renamed from speedbar-tag-
19558 (speedbar-tag-plus): Renamed from speedbar-tag-+
19559 (speedbar-tag-minus): Renamed from speedbar-tag--
19560 (speedbar-expand-image-button-alist): Use above renames.
19561
19562 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
19563 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
19564 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
19565 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
19566 * sb-pg.xpm: Renamed from sb-file.xpm
19567 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
19568 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
19569
19570 2000-05-24 Kenichi Handa <handa@etl.go.jp>
19571
19572 * international/quail.el (quail-show-guidance-buf): Set
19573 current-input-method of the guidance buffer to the name of the
19574 curren input method.
19575
19576 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
19577
19578 * progmodes/compile.el (compile-internal): Style typo.
19579
19580 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
19581 quote vars and functions in the docstring.
19582
19583 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
19584
19585 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
19586 Don't quote lambdas.
19587
19588 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
19589
19590 2000-05-23 Gerd Moellmann <gerd@gnu.org>
19591
19592 * startup.el (command-line): Determine source file of compiled
19593 user init file differently. Warn if compiled user init file
19594 is older than its source file.
19595
19596 * ffap.el (ffap-url-regexp): Add `https'.
19597
19598 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
19599
19600 * files.el (make-backup-file-name-1): Replace slashes with `!'
19601 rather than `|' (which is not allowed on Windows). Replace the
19602 drive letters with a string "drive_X".
19603
19604 2000-05-23 Gerd Moellmann <gerd@gnu.org>
19605
19606 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
19607
19608 * files.el (interpreter-mode-alist): Add `bash2'.
19609
19610 2000-05-22 Dave Love <fx@gnu.org>
19611
19612 * loadhist.el (feature-symbols, file-provides, file-requires): Use
19613 mapc.
19614 (feature-file): Avoid calling symbol-name. Doc fix.
19615 (file-set-intersect, file-dependents): Use dolist, not mapcar.
19616 (loadhist-hook-functions): Add mouse-position-function.
19617 (unload-feature): Change uses of mapcar.
19618
19619 * files.el (parse-colon-path): Doc fix.
19620 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
19621 (set-auto-mode): Use mapc.
19622
19623 * complete.el (PC-look-for-include-file): Use :alnum: character
19624 class.
19625 (partial-completion-mode): Add autoload cookie.
19626
19627 2000-05-22 Sam Steingold <sds@gnu.org>
19628
19629 * info.el (Info-fontify-node): Fixed the call to
19630 `add-text-properties' (bug introduced on 2000-05-18).
19631
19632 2000-05-22 Dave Love <fx@gnu.org>
19633
19634 * bindings.el: Remove debug-ignored-errors set in other files.
19635
19636 * progmodes/etags.el: Add to debug-ignored-errors.
19637 (visit-tags-table-buffer): Clear out buffers holding old tables
19638 when making a new list.
19639 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
19640 mapc.
19641
19642 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
19643 quote keywords.
19644 (cmpl-string-case-type): Use character classes.
19645
19646 * comint.el:
19647 * textmodes/ispell.el:
19648 * imenu.el:
19649 * mail/mh-e.el:
19650 * progmodes/compile.el: Add to debug-ignored-errors.
19651
19652 * dabbrev.el: Add to debug-ignored-errors.
19653 (dabbrev-completion): Use mapc.
19654
19655 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
19656
19657 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
19658 (woman-mapcan, woman-parse-man.conf)
19659 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
19660 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
19661 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
19662 path syntax better.
19663 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
19664 (woman-manpath): Call woman-parse-man.conf.
19665 (woman-emulation): New defcustom, defaults to nroff.
19666 (woman-font-support): New defconst.
19667 (woman-use-symbol-font): New defcustom.
19668 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
19669 "Emulation".
19670 Many functions: Doc fix.
19671
19672 2000-05-22 Kenichi Handa <handa@etl.go.jp>
19673
19674 * international/quail.el (quail-simple-translation-keymap): Map
19675 128..255 to quail-self-insert-command.
19676 (quail-keyboard-layout-alist): Add definition for "pc102-de".
19677
19678 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
19679
19680 * help.el (help-manyarg-func-alist): Typo.
19681
19682 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
19683 intervals which makes it heaps simpler.
19684
19685 * newcomment.el (comment-region-internal): Go back to BEG after quoting
19686 the nested comment markers.
19687
19688 * subr.el (remove-hook): Don't turn the hook's value into a list.
19689
19690 2000-05-21 Dave Love <fx@gnu.org>
19691
19692 * edmacro.el (edmacro-parse-keys): Return vector if any elements
19693 are invalid characters.
19694
19695 * international/mule-util.el (detect-coding-with-priority): Use
19696 mapc. Remove redundant lambda.
19697
19698 * international/mule-diag.el (list-non-iso-charset-chars)
19699 (describe-fontset): Remove redundant lambda.
19700
19701 * emulation/crisp.el (brief-mode): New alias.
19702
19703 * emacs-lisp/ring.el (ring-elements): New function.
19704
19705 * emacs-lisp/easymenu.el (easy-menu-create-menu)
19706 (easy-menu-do-add-item): Use keywordp.
19707
19708 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
19709
19710 * replace.el: Doc and error message fixes.
19711 (replace-highlight): Use facep, not internal-find-face.
19712
19713 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
19714
19715 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
19716
19717 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
19718 (log-edit-insert-changelog): Drop `:' as well.
19719
19720 * log-view.el: Fix file description.
19721 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
19722 available.
19723 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
19724 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
19725
19726 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
19727 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
19728 Print a status message if the toggle is called interactively.
19729 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
19730 for global minor modes and use `defcustom' for them.
19731 Use add-minor-mode.
19732 (easy-mmode-define-derived-mode): Remove.
19733 (define-derived-mode): Fancier default docstring.
19734 (easy-mmode-define-navigation): Signal an error rather than (ding).
19735
19736 * newcomment.el (comment-styles): New `box-multi'.
19737 (comment-normalize-vars): Better default for comment-continue to
19738 avoid whitespace-only continuations.
19739 (comment-search-forward): Always move even in the no-syntax case.
19740 (comment-padright): Only obey N if it's only obeyed for padleft.
19741 (comment-make-extra-lines): Better handling of empty continuations.
19742 Use `=' for the filler if comment-start has only one character.
19743 (uncomment-region): Try handling the special `=' filler.
19744 (comment-region): Allow LINES even if MULTI is nil.
19745 (comment-box): Choose box style based on comment-style.
19746
19747 2000-05-20 Kenichi Handa <handa@etl.go.jp>
19748
19749 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
19750 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
19751
19752 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
19753
19754 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
19755 and insert, not subst-char-in-region.
19756
19757 * international/mule-diag.el (list-character-sets-1): Handle
19758 charsets eight-bit-control and eight-bit-graphic.
19759 (list-iso-charset-chars): Likewise.
19760 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
19761 charactes as is. Use indent-to to align characters.
19762
19763 * international/mule-cmds.el (find-multibyte-characters): Never
19764 exclude charsets eight-bit-control and eight-bit-graphic.
19765
19766 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
19767
19768 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
19769 Don't quote lambdas.
19770
19771 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
19772
19773 2000-05-19 Gerd Moellmann <gerd@gnu.org>
19774
19775 * gud.el (gud-jdb-directories): Doc fix.
19776
19777 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
19778
19779 * newcomment.el: New file.
19780
19781 2000-05-19 Gerd Moellmann <gerd@gnu.org>
19782
19783 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
19784
19785 2000-05-18 Andreas Schwab <schwab@suse.de>
19786
19787 * dired.el (dired-between-files): Also skip lines beginning with
19788 `used'.
19789
19790 2000-05-18 Gerd Moellmann <gerd@gnu.org>
19791
19792 * msb.el (msb-menu-cond): Add choice `user'.
19793
19794 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
19795
19796 * ps-print.el: Compatibility, customization and doc fix.
19797 (ps-printer-name-option): Replace defconst by defvar.
19798 (ps-postscript-code-directory): XEmacs compatibility.
19799 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
19800 fix.
19801 (ps-user-defined-prologue, ps-print-prologue-header)
19802 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
19803 compatibility and code fix.
19804 (ps-print-background-image, ps-print-background-text):
19805 Customization fix.
19806 (ps-line-number-start, ps-n-up-on): New vars.
19807
19808 2000-05-18 Espen Skoglund <esk@ira.uka.de>
19809
19810 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
19811 the indent-comment function to just return the appropriate indent.
19812
19813 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
19814
19815 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
19816 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
19817 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
19818
19819 2000-05-18 Dave Love <fx@gnu.org>
19820
19821 * info.el (Info-fontify-node): Add intangible property as well as
19822 invisible.
19823
19824 * calendar/appt.el (appt-make-list): Match all lines of entry.
19825 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
19826
19827 2000-05-18 Kenichi Handa <handa@etl.go.jp>
19828
19829 * international/mule-diag.el (describe-char-after): Call
19830 internal-char-font, not char-font. If internal-char-font returns
19831 nil, display "-- none --".
19832
19833 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
19834
19835 * image.el (image-type-available-p): Don't reference image-types
19836 if it isn't bound.
19837
19838 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
19839
19840 * autoarg.el (autoarg-mode): Typo in the :set argument.
19841
19842 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
19843
19844 * startup.el (command-line-1): Don't signal an error if the
19845 directory for auto-save-list files does not yet exist.
19846
19847 2000-05-17 Kenichi Handa <handa@etl.go.jp>
19848
19849 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
19850
19851 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
19852
19853 * subr.el (remove-hook): `setq' hook-value, not `set'.
19854
19855 2000-05-16 Sam Steingold <sds@gnu.org>
19856
19857 * info.el (debug-ignored-errors): More errors to ignore.
19858
19859 2000-05-16 Dave Love <fx@gnu.org>
19860
19861 * cus-edit.el: Don't require cl or easymenu.
19862 (custom-variable-prompt): Test standard-value property, not
19863 user-variable-p.
19864
19865 2000-05-16 Sam Steingold <sds@gnu.org>
19866
19867 * subr.el (add-hook): `setq' hook-value, not `set'.
19868
19869 2000-05-16 Gerd Moellmann <gerd@gnu.org>
19870
19871 * startup.el (command-line-1): Mention the FAQ in the startup
19872 message.
19873
19874 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
19875
19876 * progmodes/compile.el (compilation-parse-errors): Collect
19877 `nomessage' regexps last.
19878
19879 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
19880
19881 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
19882 to the function name.
19883
19884 2000-05-15 Dave Love <fx@gnu.org>
19885
19886 * speedbar.el (speedbar-recenter): Typo.
19887 (speedbar-expand-line): Make arg optional.
19888 (speedbar-mode): Avoid a compiler warning.
19889
19890 2000-05-15 Gerd Moellmann <gerd@gnu.org>
19891
19892 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
19893 user-specified option string is empty.
19894
19895 * mouse.el (mouse-yank-at-click): Doc fix.
19896
19897 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
19898
19899 * term/internal.el (IT-character-translations): More updates of
19900 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
19901 documents.
19902
19903 2000-05-15 Gerd Moellmann <gerd@gnu.org>
19904
19905 * env.el (getenv): New function, interactively callable.
19906 (setenv, getenv): Remove autoload cookies.
19907
19908 * loadup.el: Load `env'.
19909
19910 * progmodes/f90.el: Change author's mail address.
19911
19912 2000-05-14 Dave Love <fx@gnu.org>
19913
19914 * mail/rmail.el (rmail-show-message-hook): Customize and offer
19915 goto-addr as an option.
19916
19917 * help.el (help-xref-stack): Doc fix.
19918 (help-xref-following): New variable.
19919 (help-make-xrefs): Use it.
19920 (help-xref-go-back): Use position information from stack element.
19921 (help-follow): Make position in stack element a pair. Use
19922 help-xref-following.
19923
19924 * autoarg.el: New file.
19925
19926 * faces.el: Declare more functions obsolete.
19927
19928 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
19929 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
19930 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
19931 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
19932 Remove all the setup-...-environment functions.
19933
19934 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
19935
19936 * speedbar.el: Updated the commentary section. xemacs20p now uses
19937 >= when detecting. Require `defimage' safely.
19938 (speedbar-easymenu-definition-base): Add toggle for images.
19939 (speedbar-easymenu-definition-special): Add flush cache & expand.
19940 (speedbar-visiting-tag-hook): Set new defaults. Added options.
19941 (speedbar-reconfigure-keymaps-hook): New variable.
19942 (speedbar-frame-parameters): Updated documentation.
19943 (speedbar-use-imenu-flag): Updated custom tag
19944 (speedbar-dynamic-tags-function-list): New variable.
19945 (speedbar-tag-hierarchy-method): Updated doc & custom.
19946 (speedbar-indentation-width, speedbar-indentation-width) New
19947 variables.
19948 (speedbar-hide-button-brackets-flag): Customizable.
19949 (speedbar-vc-indicator): Doc update.
19950 (speedbar-ignored-path-expressions): Updated default value.
19951 (speedbar-supported-extension-expressions): Updated default value.
19952 (speedbar-syntax-table): Remove {} paren status.
19953 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
19954 as "+". Added overlay aliases.
19955 (speedbar-mode): Use `speedbar-mode-line-update' instead of
19956 `force-mode-line-update'.
19957 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
19958 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
19959 `mouse-set-point'
19960 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
19961 (speedbar-item-info-tag-helper): Revamped to handle a wider range
19962 of arbitrary text, and new helper functions.
19963 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
19964 filename finder.
19965 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
19966 (speedbar-directory-buttons): Update path search/expansion.
19967 (speedbar-make-tag-line): Pay attention to
19968 `speedbar-indentation-width'. Use more care w/ invisible
19969 properties.
19970 (speedbar-change-expand-button-char): Call
19971 `speedbar-insert-image-button-maybe'.
19972 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
19973 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
19974 (speedbar-trim-words-tag-hierarchy)
19975 (speedbar-simple-group-tag-hierarchy): New functions
19976 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
19977 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
19978 functions.
19979 (speedbar-mouse-set-point): New function
19980 (speedbar-power-click): Updated documentation.
19981 (speedbar-line-token, speedbar-goto-this-file): Handle more types
19982 of tag prefix text.
19983 (speedbar-expand-line, speedbar-contract-line): Make more robust
19984 to strange text.
19985 (speedbar-expand-line): Takes universal argument to flush the
19986 cache.
19987 (speedbar-flush-expand-line): New function.
19988 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
19989 Use new generator insertion method.
19990 (speedbar-fetch-dynamic-tags): New function.
19991 (speedbar-fetch-dynamic-imenu): Removed code now handled in
19992 `speedbar-fetch-dynamic-imenu'.
19993 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
19994 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
19995 "Revert Buffer" menu items.
19996 (speedbar-buffer-buttons-engine): Be smarter when creating a
19997 filename tag (for expansion purposes.).
19998 (speedbar-highlight-one-tag-line,
19999 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
20000 (speedbar-recenter): New functions.
20001 (defimage-speedbar): Image loading abstraction.
20002 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
20003 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
20004 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
20005 (speedbar-tag-type, speedbar-tag-mail): New images.
20006 (speedbar-expand-image-button-alist): New variable.
20007 (speedbar-insert-image-button-maybe): Insert an image over some
20008 buttons.
20009
20010 2000-05-13 Kenichi Handa <handa@etl.go.jp>
20011
20012 * international/mule-cmds.el (encode-coding-char): An ASCII
20013 character is always encodable.
20014
20015 * international/mule-conf.el: Add more information in descriptions
20016 of character sets.
20017
20018 * international/mule-diag.el (describe-char-after): New function.
20019 (describe-font-internal): Adjusted for the change of font-info.
20020 (describe-font): Likewise.
20021 (print-fontset): Rewritten for the new fontset implementation.
20022 (describe-fontset): Include fontset alias names in completion.
20023 (list-fontsets): Adjusted for the change of print-fontset.
20024
20025 * simple.el (what-cursor-position): If DETAIL is non-nil, call
20026 describe-char-after instead of displaying the detail in the echo
20027 area.
20028 (syntax-code-table): Format changed.
20029 (string-to-syntax): Adjusted for the above change.
20030
20031 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
20032
20033 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
20034
20035 2000-05-12 Dave Love <fx@gnu.org>
20036
20037 * calendar/todo-mode.el: Remove some compatibility stuff and CL
20038 dependence. Use line-{beginning,end}-position, not
20039 point-at{b,e}ol. Some doc fixes.
20040 (todo-position): New function. Fix callers of position to use it.
20041 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
20042
20043 2000-05-12 Gerd Moellmann <gerd@gnu.org>
20044
20045 * time.el (display-time-mail-icon): Use `:ascent center'.
20046
20047 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
20048 handling FTP security extensions.
20049
20050 2000-05-11 Dave Love <fx@gnu.org>
20051
20052 * calendar/todo-mode.el: New file.
20053
20054 2000-05-11 Gerd Moellmann <gerd@gnu.org>
20055
20056 * comint.el (comint-read-input-ring): Move reference to
20057 comint-input-ring-size outside of the save-excursion. It was
20058 causing the default value to be the only one ever seen.
20059
20060 * font-lock.el: Update copyright. Remove Simon Marshall's email
20061 address on request from him.
20062
20063 * subr.el (substitute-key-definition): Add comment describing
20064 the meaning of PREFIX.
20065
20066 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
20067
20068 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
20069
20070 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
20071 (add-minor-mode): Don't make the variable buffer-local and add a
20072 reference to define-minor-mode in the docstring.
20073
20074 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
20075 HEADER/FOOTER and fix bug with trailing empty directory.
20076 (cvs-append-to-ignore): Use vc-editable-p if available.
20077 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
20078 (vc-do-command): Tweak advice to handle the new VC.
20079
20080 * log-view.el (log-view-goto-rev): New function for the new VC.
20081 (log-view-minor-wrap): Use mark-active.
20082
20083 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
20084 (log-edit-changelog-full-paragraphs): New var.
20085 (log-edit-insert-changelog): Remove a lonely leading `* file'.
20086 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
20087 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
20088 (log-edit-changelog-ours-p, log-edit-changelog-entries)
20089 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
20090 Replace the `cvs' prefix with `log-edit'.
20091
20092 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
20093
20094 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
20095 (diff-font-lock-defaults): Explicitly turn off multiline.
20096 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
20097 (diff-ediff-patch): Fix call to ediff-patch-file.
20098 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
20099 Handle comments.
20100
20101 * frame.el (automatic-hscrolling): Typo.
20102
20103 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
20104
20105 2000-05-09 Sam Steingold <sds@goems.com>
20106
20107 * apropos.el (apropos-print): use `describe-face' instead of
20108 `customize-face-other-window'.
20109
20110 2000-05-09 Dave Love <fx@gnu.org>
20111
20112 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
20113
20114 * help.el (describe-variable): Have customize button pop the
20115 help-xref stack when invoked.
20116 (help-xref-symbol-regexp): Add `face'.
20117 (help-make-xrefs): Check for quoted face names and adapt regexp
20118 submatch numbers to cope.
20119 (help-xref-interned): Maybe insert face doc too. Separate
20120 sections with a line of hyphens.
20121
20122 * faces.el: Some doc fixes. Declare some functions obsolete.
20123 (describe-face): Add customize button. Return the help
20124 text. Fix prompt.
20125
20126 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
20127
20128 * term/internal.el (IT-character-translations): Fix last change.
20129
20130 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
20131
20132 * woman.el: New file
20133 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
20134
20135 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
20136
20137 * term/internal.el (IT-character-translations): Update ASCII
20138 simulations for greek-iso8859-7, add latin-iso8859-14 and
20139 latin-iso8859-15.
20140
20141 * international/mule-cmds.el (set-language-info-alist): Call
20142 define-prefix-command with 3 arguments, to make the map suitable
20143 for a menu.
20144
20145 2000-05-07 Dave Love <fx@gnu.org>
20146
20147 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
20148
20149 2000-05-05 Dave Love <fx@gnu.org>
20150
20151 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
20152 list in doc string. Don't quote keyword symbols.
20153 * emacs-lisp/cl.el: Likewise
20154 * emacs-lisp/cl-seq.el: Likewise
20155
20156 2000-05-05 Gerd Moellmann <gerd@gnu.org>
20157
20158 * abbrev.el (abbrev-mode): Make ARG optional.
20159
20160 2000-05-04 Gerd Moellmann <gerd@gnu.org>
20161
20162 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
20163
20164 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
20165
20166 * subr.el (substitute-key-definition): Clarify documentation.
20167
20168 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
20169
20170 * glasses.el (glasses-convert-to-unreadable): Use
20171 `glasses-separator' instead of the hard-wired "_".
20172 (glasses-mode): Call `glasses-make-unreadable' only in a single
20173 place.
20174
20175 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
20176
20177 * term/internal.el (cjk-codepages-alist): Add associations for
20178 Chinese and Korean codepages. Remove FIXME comment.
20179
20180 2000-05-03 Dave Love <fx@gnu.org>
20181
20182 * time.el (display-time-mail-face, display-time-use-mail-icon):
20183 New option.
20184 (display-time-mail-icon): New variable.
20185 (display-time-string-forms): Use the above. Fix the local-map.
20186
20187 2000-05-03 Gerd Moellmann <gerd@gnu.org>
20188
20189 * replace.el (query-replace-map): Add binding for `E'.
20190 (query-replace-help): Extend help text.
20191 (perform-replace): Allow editing the replacement string.
20192
20193 * make-mode.el (makefile-mode-abbrev-table): New variable.
20194 (makefile-mode): Set local abbrev table to
20195 makefile-mode-abbrev-table.
20196 (makefile-font-lock-keywords): Fontify includes and conditionals.
20197
20198 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
20199 set TOGGLE's value.
20200
20201 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
20202 mail-interactive-insert-alias.
20203 (mail-abbrev-complete-alias): New command.
20204 (mail-mode-map): Bind it to `M-TAB'.
20205
20206 2000-05-03 Kenichi Handa <handa@etl.go.jp>
20207
20208 * language/lao-util.el (lao-compose-region): New function.
20209
20210 2000-05-02 Gerd Moellmann <gerd@gnu.org>
20211
20212 * files.el (recover-session): Make directories as necessary
20213 if they don't exist yet.
20214
20215 * calendar/cal-french.el
20216 (french-calendar-multibyte-special-days-array)
20217 (french-calendar-special-days-array): Change French text.
20218 (calendar-french-date-string): Change output.
20219 (calendar-goto-french-date): Likewise.
20220
20221 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
20222
20223 * wid-edit.el (widget-default-active): Obey `:always-active'.
20224 (widget-documentation-string-value-create): Set `:always-active'.
20225
20226 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
20227
20228 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
20229 default prefix to `~/_emacs.d/auto-save.list/_s'.
20230 (normal-top-level): Create the directory for auto-save files, if
20231 it doesn't already exist (in the ms-dos case only).
20232
20233 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
20234
20235 * international/mule-cmds.el (set-language-environment): Don't
20236 concat an integer (dos-codepage), use format instead.
20237
20238 2000-05-02 Dave Love <fx@gnu.org>
20239
20240 * help.el (help-xref-on-pp): Check for constant symbols.
20241
20242 2000-04-29 Gerd Moellmann <gerd@gnu.org>
20243
20244 * startup.el (normal-top-level): Put a condition-case around
20245 the code loading subdirs.el.
20246
20247 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20248
20249 * ps-print.el: Upside-down and face background color printing,
20250 line number step, doc fix.
20251 (ps-print-version): New version number (5.2).
20252 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
20253 (ps-face-attribute-list, ps-plot-with-face): Code fix.
20254 (ps-spool-config): Var fix.
20255 (ps-printer-name-option): Const fix.
20256 (ps-print-upside-down, ps-use-face-background)
20257 (ps-line-number-step): New vars.
20258 (ps-window-system, ps-lp-system): New consts.
20259 (ps-face-background): New fun.
20260
20261 2000-04-28 Richard Stallman <rms@gnu.org>
20262
20263 * files.el (make-auto-save-file-name):
20264 Apply auto-save-file-name-transforms to visited file name
20265 before generating auto save file name.
20266 (auto-save-file-name-transforms): New variable.
20267
20268 * files.el (backup-enable-predicate):
20269 Correctly test for a file under a temporary directory.
20270
20271 2000-04-28 Gerd Moellmann <gerd@gnu.org>
20272
20273 * subr.el (add-minor-mode): Rewritten.
20274
20275 2000-04-28 Kenichi Handa <handa@etl.go.jp>
20276
20277 * mail/sendmail.el (sendmail-send-it): Set
20278 buffer-file-coding-system to the selected coding system for MIME
20279 header.
20280
20281 2000-04-27 Gerd Moellmann <gerd@gnu.org>
20282
20283 * dired.el (dired-move-to-filename-regexp): Allow format where
20284 YYYY is followed by two spaces.
20285
20286 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
20287 in the second character class of the regexp.
20288
20289 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
20290 mh-etc, too.
20291
20292 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
20293 nil.
20294
20295 * subr.el (add-minor-mode): Use `set' instead of `setq'.
20296
20297 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
20298 argument.
20299
20300 2000-04-27 Sen Nagata <sen@eccosys.com>
20301
20302 * emacs-lisp/crm.el (crm-completion-table): New variable.
20303 (crm-collection-fn, crm-test-completion)
20304 (completing-read-multiple): Use it.
20305
20306 2000-04-27 Dave Love <fx@gnu.org>
20307
20308 * help.el (locate-library): Use mapc.
20309 (help-manyarg-func-alist): Add call-process-region.
20310
20311 2000-04-26 Gerd Moellmann <gerd@gnu.org>
20312
20313 * subr.el (add-minor-mode): Make argument MAP optional.
20314
20315 * desktop.el (desktop-save): Save list of minor modes.
20316 (desktop-create-buffer): Restore minor modes.
20317 (desktop-minor-mode-table): New user-option.
20318
20319 * subr.el (add-minor-mode): New function.
20320
20321 * image.el (find-image): New function.
20322 (defimage): Rewritten to find image at load time.
20323
20324 * startup.el (normal-top-level-add-to-load-path): Handle
20325 case that the default directory is not in load-path.
20326
20327 * help.el: Old patch from Stefan Monnier.
20328 (help-xref-on-pp): New function.
20329 (describe-variable): Use it to display xrefs in a symbol's value.
20330
20331 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
20332
20333 * cus-edit.el (custom-face): Fix parenthesis.
20334
20335 2000-04-26 Kenichi Handa <handa@etl.go.jp>
20336
20337 * mail/rmail.el (rmail-expunge): When there are no deleted
20338 messages, do nothing.
20339
20340 2000-04-26 Dave Love <fx@gnu.org>
20341
20342 * international/mule-cmds.el (locale-translation-file-name):
20343 Defvar to nil.
20344 (set-locale-environment): Set it here (at runtime).
20345
20346 2000-04-25 Gerd Moellmann <gerd@gnu.org>
20347
20348 * replace.el (perform-replace): Add parameters START and END. Use
20349 them instead of the check for a region in Transient Mark mode.
20350 (query-replace-read-args): Return two more list elements for the
20351 start and end of the region in Transient Mark mode.
20352 (query-replace, query-replace-regexp, query-replace-regexp-eval)
20353 (map-query-replace-regexp, replace-string, replace-regexp): Add
20354 optional last arguments START and END and pass them to
20355 perform-replace.
20356
20357 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
20358 form with additional arguments for perform-replace.
20359
20360 * progmodes/etags.el (tags-query-replace): Add parameters START
20361 and END. Construct a form with additional arguments for
20362 perform-replace.
20363
20364 * simple.el (shell-command): Set default directory for "*Shell
20365 Command Output" buffer.
20366
20367 * language/european.el (iso-latin-4): Fix typo.
20368
20369 * emacs-lisp/crm.el: New file.
20370
20371 2000-04-24 Dave Love <fx@gnu.org>
20372
20373 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
20374 (Custom-reset-saved, Custom-reset-standard)
20375 (custom-group-value-create, custom-group-set, custom-group-save)
20376 (custom-group-reset-current, custom-group-reset-saved)
20377 (custom-group-reset-standard): Use mapc.
20378 (custom-buffer-create-internal): Disable undo when creating items.
20379 Use mapc.
20380 (custom-face): Avoid redundant lambda.
20381
20382 2000-04-24 Gerd Moellmann <gerd@gnu.org>
20383
20384 * startup.el (auto-save-list-file-prefix): Set default to
20385 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
20386
20387 2000-04-24 Sam Steingold <sds@gnu.org>
20388
20389 * time-stamp.el (time-stamp-string-preprocess): Always convert
20390 `field-result' to a string.
20391
20392 2000-04-24 Gerd Moellmann <gerd@gnu.org>
20393
20394 * frame.el (scrolling): New group.
20395 (automatic-hscrolling): New user-option.
20396
20397 * startup.el (command-line-x-option-alist): Add `-lsp' and
20398 `--line-spacing'.
20399
20400 2000-04-19 Dave Love <fx@gnu.org>
20401
20402 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
20403 (cl-mapc): Rename from mapc. Fix the funcall.
20404
20405 2000-04-19 Gerd Moellmann <gerd@gnu.org>
20406
20407 * simple.el (clone-indirect-buffer-other-window): New command.
20408 (clone-indirect-buffer): Add optional arg NORECROD.
20409 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
20410
20411 * help.el (resize-temp-buffer-window): Use count-screen-lines.
20412
20413 * window.el (count-screen-lines): New function.
20414 (shrink-window-if-larger-than-buffer): Use count-screen-lines
20415 instead of window-buffer-height.
20416
20417 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
20418 non-existing variable comint-input-sentinel.
20419 (inferior-lisp-args-to-list): Removed.
20420 (inferior-lisp): Use split-string instead of
20421 inferior-lisp-args-to-list.
20422
20423 * hexl.el (hexl-insert-hex-string): New command.
20424
20425 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
20426 instead of concat.
20427
20428 2000-04-18 Gerd Moellmann <gerd@gnu.org>
20429
20430 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
20431 at the start of an existing but empty folder.
20432
20433 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20434
20435 * ps-mule.el: Customization fix, doc fix.
20436 (ps-multibyte-buffer): Customization fix.
20437
20438 2000-04-17 Richard M. Stallman <rms@gnu.org>
20439
20440 * subr.el (read-passwd): Use read-char-exclusive.
20441
20442 2000-04-17 Gerd Moellmann <gerd@gnu.org>
20443
20444 * textmodes/texinfo.el (texinfo-insert-@email)
20445 (texinfo-insert-@emph, texinfo-insert-@quotation)
20446 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
20447 (texinfo-mode-map): Add key bindings for them.
20448
20449 * files.el (basic-save-buffer-2): Use a template with `$'
20450 instead of `#' for VMS.
20451
20452 * simple.el (clone-indirect-buffer): New function.
20453
20454 2000-04-16 Stephen Eglen <stephen@gnu.org>
20455
20456 * iswitchb.el (iswitchb-case): New function. If the user input
20457 contains any upper-case characters, the search is made
20458 case-sensitive.
20459
20460 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
20461
20462 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
20463 comment-end.
20464 (texinfo-font-lock-syntactic-keywords): New var.
20465 (texinfo-font-lock-keywords): Remove comment regexp.
20466 (texinfo-insert-block): New function.
20467 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
20468 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
20469 and font-lock-defaults. Use regexp-opt for outline-regexp.
20470 (texinfo-environments): New var.
20471 (texinfo-environment-regexp): Use regexp-opt and
20472 texinfo-environments.
20473
20474 * textmodes/ispell.el (ispell-menu-map-needed): Check that
20475 ispell-process is bound since this might be eval'd before ispell
20476 is loaded.
20477 (ispell-message): Use a tiny bit less magic and a bit more hard
20478 data to figure out what kind of sc-cite-regexp to use.
20479
20480 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
20481
20482 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
20483 (insert-cyclic-diary-entry): Unquote the lambda.
20484
20485 * gud.el (gud-jdb-build-source-files-list): Fix typo.
20486
20487 * files.el (backup-enable-predicate): Unquote the lambda.
20488
20489 * cus-edit.el (custom-face, face): Unquote the lambda.
20490
20491 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20492
20493 * ps-print.el: Check for line-beginning-position definition.
20494
20495 * ps-print.el: Fix counting lines in a region.
20496 (ps-print-version): New version number (5.1.5).
20497 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
20498 (ps-printing-region): Fun code fix.
20499
20500 2000-04-15 Gerd Moellmann <gerd@gnu.org>
20501
20502 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
20503 to file-directory-p.
20504
20505 2000-04-14 Gerd Moellmann <gerd@gnu.org>
20506
20507 * gud.el (gud-jdb-build-source-files-list): Check that directory
20508 exists before calling directory-files.
20509
20510 2000-04-13 Dave Love <fx@gnu.org>
20511
20512 * emacs-lisp/trace.el: Change maintainer. Use new backquote
20513 syntax.
20514
20515 * emacs-lisp/cl-specs.el: Remove when, unless.
20516
20517 * emacs-lisp/cl-extra.el: Don't quote keywords.
20518 (cl-old-mapc): New variable.
20519 (mapc): Use it.
20520 (cl-map-intervals): Use with-current-buffer. Don't check for
20521 next-property-change.
20522 (cl-map-overlays): Use with-current-buffer.
20523 (cl-expt): Remove.
20524 (copy-tree, remprop): Define unconditionally.
20525
20526 * emacs-lisp/cl-compat.el (keywordp): Remove.
20527
20528 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
20529 to use keywordp.
20530 (edebug-spec): Enable keywordp.
20531
20532 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
20533 string-lessp.
20534
20535 * cus-start.el: Use keywordp.
20536
20537 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
20538
20539 * diary-lib.el (include-other-diary-files): Fix the fix of
20540 2000-02-18 by doing a save-excursion.
20541
20542 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20543
20544 * ps-print.el: Customization fix, doc fix.
20545 (ps-print-version): New version number (5.1.4).
20546 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
20547 (ps-print-preprint): Adjust code.
20548 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
20549 (ps-print-prologue-header, ps-print-control-characters)
20550 (ps-spool-config): Customization fix.
20551
20552 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
20553
20554 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
20555 converted to the new menu-item format, names silightly changed,
20556 help strings added.
20557
20558 Support for spelling without async subprocesses:
20559
20560 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
20561 (ispell-session-buffer): New variables.
20562 (ispell-start-process, ispell-process-status,
20563 ispell-accept-output, ispell-send-string): New functions, for
20564 Ispell invocation when async subprocesses aren't supported.
20565 (ispell-word, ispell-pdict-save, ispell-command-loop,
20566 ispell-process-line, ispell-buffer-local-parsing): Replace calls
20567 to process-send-string with calls to ispell-send-string, and
20568 accept-process-output with ispell-accept-output.
20569 (ispell-init-process): Call ispell-process-status instead of
20570 process-status with.
20571 (ispell-init-process): Call ispell-start-process. Call
20572 ispell-accept-output and ispell-send-string. Don't call
20573 process-kill-without-query and kill-process if they are unbound.
20574 (ispell-async-processp): New function.
20575
20576 2000-04-12 Dave Love <fx@gnu.org>
20577
20578 * info.el: Add debug-ignored-errors.
20579 (Info-mode-menu): Add some items.
20580 (Info-directory): Add autoload cookie.
20581
20582 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
20583 Modify `truncate-lines'. Make `describe-language-environment'
20584 always visible and add help. Modify `describe-key' help. Invoke
20585 Info-directory from `info'. New entry `emacs-manual'.
20586
20587 2000-04-10 Gerd Moellmann <gerd@gnu.org>
20588
20589 * progmodes/ebrowse.el (ebrowse-tree-mode):
20590 Use propertized-buffer-identification.
20591 (ebrowse-update-member-buffer-mode-line): Likewise.
20592 (ebrowse--mode-strings): Removed.
20593 (ebrowse--mode-line-props): Removed.
20594
20595 * files.el (auto-mode-alist): Add `EBROWSE'.
20596
20597 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
20598 space before testing for end of buffer.
20599 (ebrowse-load): Removed.
20600 (ebrowse-revert-tree-buffer-from-file): Rewritten.
20601 (ebrowse-create-tree-buffer): Rewritten.
20602 (ebrowse-tree-mode): Read tree from buffer.
20603
20604 * progmodes/ebrowse-ffh.el: Removed.
20605
20606 2000-04-10 Kenichi Handa <handa@etl.go.jp>
20607
20608 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
20609
20610 2000-04-10 Gerd Moellmann <gerd@gnu.org>
20611
20612 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
20613 at the wrong place.
20614
20615 2000-04-09 Dave Love <fx@gnu.org>
20616
20617 * files.el (backup-enable-predicate):
20618 Use temporary-file-directory, small-temporary-file-directory.
20619 (make-backup-file-name-function, backup-directory-alist): New vars.
20620 (make-backup-file-name-1): New function.
20621 (make-backup-file-name): Use it.
20622 (find-backup-file-name): Likewise. Use format for clarity, not concat.
20623 (file-newest-backup): Use make-backup-file-name.
20624
20625 2000-04-09 Gerd Moellmann <gerd@gnu.org>
20626
20627 * progmodes/ebrowse-ffh.el: New file.
20628
20629 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
20630 Moved to ebrowse-ffh.el.
20631 (ebrowse-load): Add autoload.
20632
20633 * finder.el (finder-commentary): Add autoload cookie.
20634
20635 * mail/rfc2368.el: Correct author's email address.
20636
20637 * progmodes/ebrowse.el: New file.
20638
20639 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
20640 item help string.
20641 (easy-menu-do-add-item): Ditto.
20642 (easy-menu-define): Extend doc string.
20643
20644 * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
20645 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
20646 (jit-lock-function, jit-lock-stealth-fontify): Don't use
20647 with-buffer-unmodified.
20648
20649 2000-04-08 Dave Love <fx@gnu.org>
20650
20651 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
20652 unless, when.
20653
20654 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
20655
20656 * viper-util.el (viper-put-on-search-overlay): New subroutine.
20657 (viper-flash-search-pattern): No operation when using Emacs
20658 doesn't support face.
20659 Use `viper-put-on-search-overlay'.
20660
20661 2000-04-04 Gerd Moellmann <gerd@gnu.org>
20662
20663 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
20664 like C-r.
20665
20666 * progmodes/make-mode.el: Some doc fixes.
20667 (makefile-mode-abbrev-table): New variable.
20668 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
20669 (makefile-font-lock-keywords): Fontify includes and conditionals.
20670 (toplevel): Require `dabbrev' and `add-log' when compiling.
20671
20672 * replace.el (perform-replace): Don't move forward one char
20673 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
20674 to do that because it leaves point 1 position after the last
20675 replacement, after everything has been replaced.
20676
20677 * jit-lock.el (with-buffer-unmodified): New macro.
20678 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
20679 modified state.
20680 (jit-lock-function-1): Extracted from jit-lock-function; not
20681 preserving buffer's modified state.
20682 (jit-lock-function, jit-lock-stealth-fontify):
20683 Call jit-lock-function-1.
20684
20685 * mail/rfc2368.el: Remove supernumerary copyright line.
20686
20687 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
20688
20689 * glasses.el: Provide facilities for inserting space before left
20690 parentheses and uncapitalization of identifiers.
20691 (glasses-mode): Try to remove old overlays in all cases.
20692
20693 2000-04-03 Gerd Moellmann <gerd@gnu.org>
20694
20695 * progmodes/compile.el (compile-internal): Display the compilation
20696 buffer in a different frame, if it's already displayed there.
20697
20698 * mail/rfc2368.el: New file.
20699
20700 * simple.el (sendmail-user-agent-compose): Recognize a `body'
20701 header and insert its value as mail body.
20702
20703 * subr.el (member-ignore-case): New function.
20704
20705 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
20706 (dabbrev--find-expansion): Ignore buffers matching a regexp
20707 from dabbrev-ignored-regexps.
20708
20709 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
20710 to extensions handled by gzip.
20711
20712 2000-04-03 Richard M. Stallman <rms@gnu.org>
20713
20714 * files.el (insert-directory): List the total free space
20715 along with the used space.
20716
20717 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
20718 line is followed by one that matches CITATION-REGEXP, end the
20719 paragraph.
20720
20721 2000-04-03 Markus Rost <rost@delysid.gnu.org>
20722
20723 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
20724 (rmail-make-basic-summary-line): Use that option.
20725
20726 2000-04-03 Kenichi Handa <handa@etl.go.jp>
20727
20728 * international/mule-cmds.el (encoded-string-description):
20729 Rewritten. Try pretty description for ISO 2022 escape sequences
20730 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
20731 for hexadecimal format.
20732
20733 2000-04-01 Dave Love <fx@gnu.org>
20734
20735 * cpp.el: Change customization group to `c' from `C'.
20736
20737 * vcursor.el (vcursor-move): Use display-color-p.
20738
20739 * international/mule-util.el: Provide mule-utils.
20740 (string-to-sequence): Simplify and speed up.
20741
20742 * international/mule.el (make-coding-system): Purecopy doc-string.
20743
20744 * international/mule-cmds.el: Various menu changes.
20745 (describe-specified-language-support): Handle `Default'.
20746 (set-language-info): Purecopy `info'.
20747
20748 2000-03-31 Andrew Innes <andrewi@gnu.org>
20749
20750 * vc.el (vc-backend-diff): Return the correct status if we had to
20751 retry the rcsdiff command without the --brief option.
20752
20753 2000-03-31 Dave Love <fx@gnu.org>
20754
20755 * help.el (help-manyarg-func-alist): Correct several omissions.
20756
20757 * add-log.el: Don't require cl, fortran.
20758 (add-log-current-defun-function): Doc fix.
20759 (change-log-version-number-regexp-list): Remove SCCS part. Doc fix.
20760 (change-log-version-rcs): Function deleted.
20761 (change-log-version-number-search): Doc fix.
20762 Use vc-workfile-version. Avoid CL dolist.
20763 (add-change-log-entry): Just call add-log-current-defun to get
20764 defun. Simplify somewhat.
20765 (change-log-get-method-definition-1): Likewise.
20766 (add-log-current-defun): Return nil if calling
20767 add-log-current-defun-function does so. Move Fortran stuff to
20768 fortran.el. Return string without properties.
20769
20770 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
20771 and :alpha: char classes.
20772
20773 * mail/supercite.el: Defvar curline when compiling.
20774 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
20775 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
20776 rather than a-zA-Z0-9 to allow non-ASCII characters.
20777
20778 2000-03-31 Gerd Moellmann <gerd@gnu.org>
20779
20780 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
20781
20782 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20783 Re-enable new code.
20784
20785 * lpr.el (print-region-1): Use -d to specify printer name for
20786 systems `usg-unix-v*, `dgux', `hpux', `irix'.
20787
20788 2000-03-31 Dave Love <fx@gnu.org>
20789
20790 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
20791 Look for function definition in symbol's function value slot first
20792 instead of first consulting byte-compile-function-environment.
20793
20794 2000-03-31 Kenichi Handa <handa@etl.go.jp>
20795
20796 * language/european.el ("Polish"): New language environment.
20797 (setup-polish-environment): New function.
20798
20799 2000-03-30 Gerd Moellmann <gerd@gnu.org>
20800
20801 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20802 Disable new code.
20803
20804 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
20805 trying to `load' the symbol of an autoload instead of the file
20806 recorded in the autoload. Fix error messages.
20807
20808 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20809
20810 * ps-print.el: PostScript programming fix for ghostview, doc fix.
20811 (ps-print-version): New version number (5.1.3).
20812 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
20813 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
20814 (ps-generate-postscript-with-faces): Code fix.
20815 (ps-color-values): XEmacs compatibility.
20816 (ps-print-background-image, ps-print-background-text, ps-printer-name)
20817 (ps-default-fg, ps-default-bg): Adjust customization.
20818 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
20819 (ps-color-scale): Renaming old ps-color-value fun.
20820 (ps-print-headers): Replace ps-print-header group to avoid conflict
20821 with ps-print-header variable.
20822 (ps-print-miscellany): New group.
20823 (ps-format-color, ps-rgb-color): New funs.
20824 (ps-default-foreground): New var.
20825 (ps-printer-name-option): New const.
20826
20827 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
20828
20829 * net/net-utils.el:
20830 (network-connection-host, network-connection-service): New variables
20831 (network-connection-mode): New mode, derived from comint-mode
20832 (network-connection-mode-setup): New function, saves host and
20833 service information in local variables.
20834
20835 * lisp/locate.el:
20836 (locate-word-at-point): Added this function
20837 (locate): Default to using locate-word-at-point as input
20838 Run dired-mode-hook
20839
20840 2000-03-29 Dave Love <fx@gnu.org>
20841
20842 * calendar/appt.el: Doc fixes.
20843 (appt-check): Convert min-to-app to a string before passing to
20844 appt-disp-window-function or concat.
20845 (appt-delete-window): Remove test for frame-root-window.
20846 (appt-select-lowest-window, appt-convert-time): Simplify.
20847
20848 * emacs-lisp/bytecomp.el: Doc fixes.
20849 (byte-compile-file-form-autoload):
20850 Update byte-compile-function-environment.
20851
20852 2000-03-29 Andreas Schwab <schwab@suse.de>
20853
20854 * emacs-lisp/autoload.el: Also print defsubst doc string specially.
20855
20856 * dired.el (dired-insert-directory): If dired-free-space-program
20857 failed just delete its output.
20858
20859 2000-03-29 Dave Love <fx@gnu.org>
20860
20861 * international/iso-cvt.el: Move provide to end. Doc fixes.
20862 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
20863 (iso-iso2sgml, iso-sgml2iso): New functions.
20864 (iso-cvt-define-menu): Fix some entries and use backquote for
20865 clarity.
20866
20867 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
20868
20869 2000-03-28 Gerd Moellmann <gerd@gnu.org>
20870
20871 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
20872 ISO-DATE. If non-nil, return date in ISO 8601 format.
20873
20874 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
20875
20876 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
20877 if it ever becomes used.
20878 (log-edit-mode-hook): Default to vc-log-mode-hook.
20879 (log-edit-mode): Fix the docstring.
20880
20881 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
20882 the code.
20883
20884 2000-03-26 Dave Love <fx@gnu.org>
20885
20886 * net/browse-url.el (browse-url): Re-fix case of
20887 browse-url-browser-function being an alist.
20888 (browse-url): Add :link to defgroup.
20889
20890 * files.el: Doc fixes.
20891 (file-truename): Include `[' in wildcard characters.
20892 (automount-dir-prefix): Customize.
20893 (find-file-wildcards): Add :version.
20894 (find-file-noselect): Simplify a mapcar call.
20895
20896 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
20897 compatible with inf-lisp version.
20898 (eval-defun-1): Fix custom-declare-variable case.
20899
20900 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
20901
20902 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
20903
20904 2000-03-24 Gerd Moellmann <gerd@gnu.org>
20905
20906 * Makefile (COMPILE_FIRST): New macro.
20907 (compile-files): Compile files from COMPILE_FIRST first.
20908
20909 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
20910
20911 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
20912 matching open parenthesis in column 0 to defun-prompt-regexp
20913 only if open-paren-in-column-0-is-defun-start is set.
20914
20915 * sun-curs.el: Require CL at compile-time only.
20916
20917 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
20918 instead of copy-list which is a function from CL.
20919 (msb--choose-menu, msb--mode-menu-cond)
20920 (msb--create-buffer-menu-2): Use dolist instead of mapc.
20921 (msb--init-file-alist): Use mapcar instead of mapcan.
20922 (msb--aggregate-alist): Use mapcar instead of mapcan.
20923 Fix `(' in column 0 in doc string.
20924 (msb--add-separators): Use mapcar instead of mapcan.
20925
20926 * cus-dep.el: Require CL at compile-time only.
20927
20928 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
20929
20930 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
20931 (byte-compile-warnings): New warning `noruntime'.
20932 (byte-compile-constants, byte-compile-variables): Fix docstring.
20933 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
20934 execute `eval-whenc-compile's body.
20935 (byte-compile-unresolved-functions): Fix docstring.
20936 (byte-compile-eval): New function.
20937 (byte-compile-callargs-warn): Check if the function will be available
20938 at runtime (via property `byte-compile-noruntime').
20939 (byte-compile-print-syms): New function.
20940 (byte-compile-warn-about-unresolved-functions): Also warn about
20941 `noruntime' functions (and use `byte-compile-print-syms').
20942 (byte-compile-file): Capitalize the message.
20943
20944 2000-03-24 Gerd Moellmann <gerd@gnu.org>
20945
20946 * mail/rmail.el (rmail-confirm-expunge): New user-option.
20947 (rmail-expunge): Ask for confirmation depending on the setting
20948 of rmail-confirm-expunge.
20949
20950 2000-03-23 Gerd Moellmann <gerd@gnu.org>
20951
20952 * Makefile (bootstrap-clean): If $(emacs) exists, build
20953 loaddefs.el first. A loaddefs.el that's not up-to-date might
20954 cause a bootstrap failure because things don't autoload as expected.
20955
20956 2000-03-23 Dave Love <fx@gnu.org>
20957
20958 * net/browse-url.el: Restore previous use of
20959 browse-url-maybe-new-window.
20960
20961 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20962
20963 * ps-print.el: Skip banner page fix.
20964 (ps-print-version): New version number (5.1.2).
20965 (ps-begin-file, ps-end-file, ps-generate): Code fix.
20966
20967 2000-03-23 Dave Pearson <davep@davep.org>
20968
20969 * net/quickurl.el Changed the type of parameter passed to the
20970 function defined by `quickurl-format-function'. Before only the
20971 text of the URL was passed. Now the whole URL structure is passed
20972 and the function is responsible for extracting the parts it requires.
20973 Changed the default of `quickurl-format-function' accordingly.
20974 (quickurl-insert): Changed the `funcall' of
20975 `quickurl-format-function' to match the above change.
20976 (quickurl-list-insert): Changed the `url' case so that it makes
20977 use of `quickurl-format-function', previous to this the format was
20978 hard wired.
20979
20980 2000-03-22 Gerd Moellmann <gerd@gnu.org>
20981
20982 * startup.el: Change some spellings for the X Window System.
20983
20984 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
20985
20986 * progmodes/make-mode.el (makefile-warn-suspicious-lines):
20987 Clean up the code and the regexp and make sure the cursor is
20988 temporarily moved to the suspicious line while querying the user.
20989
20990 2000-03-22 Jason Rumney <jasonr@gnu.org>
20991
20992 * w32-fns.el (w32-charset-info-alist): Initialize.
20993
20994 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
20995
20996 * ps-print.el: N-up last page fix.
20997 (ps-print-version): New version number (5.1.1).
20998 (ps-end-file, ps-end-job, ps-generate): Code fix.
20999
21000 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
21001
21002 * files.el (find-file-run-dired): Update docstring.
21003 (find-directory-functions): New hook.
21004 (find-file-noselect): Run find-directory-functions rather than
21005 calling dired directly.
21006
21007 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
21008
21009 * pcvs.el: Add a minimal leading commentary.
21010 (cvs-make-cvs-buffer): Change the header part by removing the startup
21011 message and adding a `Module' entry. Also replace the FOOTER and
21012 HEADER special fileinfos with the new support in ewoc for updating
21013 its own footer and header.
21014 (cvs-update-header): Update to use the header/footer of the ewoc.
21015 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
21016 (cvs-is-within-p): New function.
21017 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
21018 to only examine some subset of the buffers.
21019
21020 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
21021 `format' instead of our own ad-hoc functions.
21022 Remove HEADER and FOOTER cases, now handled in the EWOC.
21023 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
21024
21025 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
21026 output to avoid scaring the user.
21027 (cvs-parse-table): Catch message for non-up-to-date commits.
21028
21029 * pcvs-defs.el (cvs-startup-message): Remove.
21030 (cvs-global-menu): New autoloaded menu.
21031
21032 * pcvs-util.el (cvs-string-fill): Remove.
21033
21034 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
21035 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
21036 PP part of it and also make it work for footers and headers.
21037 (ewoc-create): Drop POS and BUFFER arguments.
21038 Use the DLL's dummy node to store the end-of-footer position.
21039 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
21040 (ewoc-refresh): Remove unused `header' variable.
21041 (ewoc-(get|set)-hf): New functions.
21042
21043 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
21044 log-view-*-(message|file) and use easy-mmode-define-navigation.
21045 (log-view-message-re): Match SCCS format as well.
21046 And match the revision line rather than the dashed separator line.
21047 (log-view-mode): Use the new define-derived-mode.
21048 (log-view-current-tag): Fill in with an actual implementation.
21049
21050 * cvs-status.el (cvs-status-(prev|next)): Rename from
21051 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
21052 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
21053 to let the output "breathe" a little more (more readable).
21054 (cvs-status-mode): Use the new define-derived-mode.
21055
21056 * smerge-mode.el (smerge-auto-leave): New function and variable.
21057 (smerge-basic-map): Rename from smerge-basic-keymap.
21058 Change the bindings for smerge-diff-*.
21059 (smerge-*-map): Use easy-mmode-defmap.
21060 (smerge-(next|prev)): Use easy-mmode-define-navigation.
21061 (smerge-keep-*): Use smerge-auto-leave.
21062
21063 2000-03-21 Jason Rumney <jasonr@gnu.org>
21064
21065 * cus-edit.el (custom-button-face): Use 3D look for w32.
21066 (custom-button-pressed-face): Likewise.
21067
21068 2000-03-21 Gerd Moellmann <gerd@gnu.org>
21069
21070 * progmodes/etags.el (tags-case-fold-search): New user-option.
21071 (tags-loop-eval): New function. Bind case-fold-search around eval
21072 depending on the value of tags-case-fold-search.
21073 (tags-loop-continue): Use tags-loop-eval.
21074 (find-tag-in-order): Bind case-fold-search depending on the value
21075 of tags-case-fold-search.
21076
21077 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
21078
21079 * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
21080 (diff-end-of-hunk): Return the end position for use in
21081 `easy-mmode-define-navigation'.
21082 (diff-recenter): Remove.
21083 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
21084 of `easy-mmode-define-navigation'.
21085 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
21086 previous renaming) and fix to use new names.
21087 (diff-merge-strings): Use \n as separator: simpler, faster.
21088 (diff-mode): Use `define-derived-mode'.
21089
21090 * derived.el (define-derived-mode): Don't autoload anymore.
21091 Prefer the macro-only version provided by easy-mmode.el.
21092
21093 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
21094 `easy-mmode-define-derived-mode'. Use `combine-run-hooks'.
21095 (easy-mmode-define-navigation): New macro.
21096
21097 * subr.el (combine-run-hooks): New function.
21098
21099 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
21100
21101 * term/x-win.el: Fontsets related initialization is simplified.
21102
21103 * international/mule-diag.el (describe-font): Don't refer to
21104 global-fontset-alist, instead call font-list.
21105 (describe-fontset, list-fontsets, mule-diag): Likewise.
21106 (print-fontset): Adjusted for the change of fontset implementation.
21107
21108 * international/fontset.el (x-charset-registries): Variable removed,
21109 instead the corresponding data is stored in the default fontset.
21110 (register-alternate-fontnames): Function removed.
21111 (resolved-ascii-font): Variable removed.
21112 (x-compose-font-name): Ignore the second argument REDOCE.
21113 (x-complement-fontset-spec): Complement only an ASCII font and
21114 element for those charsets than can use that ASCII font.
21115 (generate-fontset-menu): Don't refer to global-fontset-alist,
21116 instead call fontset-list.
21117 (uninstantiated-fontset-alist): Variable removed.
21118 (x-style-funcs-alist): Likewise.
21119 (fontset-default-styles): Likewise.
21120 (x-modify-font-name): Function removed.
21121 (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
21122 (create-fontset-from-ascii-font): Docsting adjusted for the above
21123 change.
21124 (instantiate-fontset, resolve-fontset-name): Functions removed.
21125 (fontset-list): Now implemented by C code.
21126
21127 * faces.el (read-face-font): Fix TABLE arg to completing-read.
21128 (describe-face): Include `font' attribute in the description.
21129
21130 2000-03-21 Kenichi Handa <handa@etl.go.jp>
21131
21132 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
21133
21134 2000-03-20 Gerd Moellmann <gerd@gnu.org>
21135
21136 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
21137 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
21138 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
21139
21140 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
21141 about behavior of set-buffer-modified-p wrt redisplay.
21142
21143 2000-03-19 Richard M. Stallman <rms@gnu.org>
21144
21145 * view.el (view-mode-disable): Kill local binding of view-read-only.
21146
21147 2000-03-18 Gerd Moellmann <gerd@gnu.org>
21148
21149 * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
21150 is a string, convert it to a syntax cell using string-to-syntax.
21151
21152 * simple.el (syntax-code-table, syntax-flag-table): New variables.
21153 (string-to-syntax): New function.
21154
21155 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
21156 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
21157 try to use passive ftp mode.
21158
21159 2000-03-17 Gerd Moellmann <gerd@gnu.org>
21160
21161 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
21162
21163 * simple.el (append-to-buffer): Update point of windows after
21164 insertion.
21165
21166 * abbrev.el (inverse-add-abbrev): Identify word by first moving
21167 forward then moving backward. Reindent.
21168
21169 * frame.el (other-frame): Call x-focus-frame only if
21170 focus-follows-mouse is off.
21171
21172 2000-03-17 Dave Love <fx@gnu.org>
21173
21174 * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
21175
21176 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
21177
21178 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
21179 regexp for labels cannot span several lines.
21180
21181 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
21182 `(setq :<key> ':<key>)' to the macro expansion.
21183
21184 2000-03-16 Dave Love <fx@gnu.org>
21185
21186 * progmodes/f90.el (f90): Put custom group under `languages', not
21187 `fortran'.
21188 (f90-mode-hook): Customize.
21189 (f90-mode): Set add-log-current-defun-function.
21190 (f90-current-defun): New function.
21191
21192 2000-03-16 Gerd Moellmann <gerd@gnu.org>
21193
21194 * cus-edit.el (custom-variable-tag-face): Handle case that
21195 default face's height is not a number.
21196 (custom-face-tag-face, custom-group-tag-face-1)
21197 (custom-group-tag-face): Ditto.
21198 (custom-group-tag-face-1): Add :group.
21199
21200 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
21201
21202 2000-03-15 Gerd Moellmann <gerd@gnu.org>
21203
21204 * pcvs-defs.el (toplevel): Remove autoload cookie for form
21205 requiring easymenu.
21206
21207 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
21208
21209 * ps-print.el: PostScript user-defined prologue, PostScript error
21210 handler, doc fix.
21211 (ps-print-version): New version number (5.1).
21212 (ps-user-defined-prologue, ps-error-handler-message)
21213 (ps-print-prologue-0, ps-error-handler-alist): New vars.
21214 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
21215 (ps-insert-string): New function.
21216
21217 2000-03-15 Kenichi Handa <handa@etl.go.jp>
21218
21219 * international/ccl.el (ccl-compile-expression): Don't generate
21220 invalid self-assignment code.
21221
21222 2000-03-14 Dave Love <fx@gnu.org>
21223
21224 * subr.el (replace-regexp-in-string): Renamed from
21225 replace-regexps-in-string. Doc fix.
21226
21227 2000-03-12 Dave Love <fx@gnu.org>
21228
21229 * cus-edit.el: Doc fixes.
21230 (customize-set-variable, customize-save-variable): Rename args for doc.
21231 (custom-variable-tag-face, custom-face-tag-face)
21232 (custom-group-tag-face-1, custom-group-tag-face): Modify from
21233 style which user identify as hyperlink.
21234 (hook): Don't add undefined functions to the hook.
21235 (debug-ignored-errors): Transfer message from bindings.el.
21236
21237 2000-03-12 Gerd Moellmann <gerd@gnu.org>
21238
21239 * recentf.el (recentf-keep-non-readable-files-p):
21240 Remove double/nested definition.
21241
21242 2000-03-12 Dave Love <fx@gnu.org>
21243
21244 * facemenu.el (facemenu-get-face): Use display-color-p.
21245 * enriched.el (enriched-decode-foreground): Likewise.
21246 (enriched-decode-background): Likewise.
21247 * isearch.el (isearch-highlight): Likewise.
21248 * info-look.el (info-lookup): Likewise.
21249 * simple.el (completion-setup-function): Likewise.
21250
21251 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
21252 :options.
21253
21254 * bindings.el (mode-line-format): Fix line-number and
21255 column-number items. Add help-echo for the background.
21256 (mode-line-mule-info): Modify help-echo.
21257
21258 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
21259
21260 * files.el (load-file): Allow completion to .elc.
21261
21262 * man.el: Doc fixes.
21263 (Man-init-defvars): Use display-color-p to set fontification.
21264
21265 * play/hanoi.el (hanoi-internal): Don't use oddp.
21266
21267 2000-03-12 Gerd Moellmann <gerd@gnu.org>
21268
21269 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
21270
21271 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
21272
21273 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
21274
21275 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
21276 Fix comment.
21277
21278 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
21279
21280 * font-lock.el (font-lock-keywords): Fix the doc now that
21281 regexp-opt-depth is unnecessary.
21282 (save-buffer-state): Set an edebug spec.
21283 (font-lock-fontify-anchored-keywords): Properly handle the case when
21284 the matcher goes past the limit.
21285
21286 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
21287 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
21288
21289 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
21290 dll.el and cookie.el (from Elib) with heavy renaming and other
21291 massaging.
21292
21293 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
21294 Autoload the functions used.
21295 (easy-mmode-define-syntax): Fix CL typo.
21296 (easy-mmode-define-derived-mode): Improve the docstring generation.
21297
21298 2000-03-10 Gerd Moellmann <gerd@gnu.org>
21299
21300 * textmodes/texinfo.el (texinfo-version): Variable and function
21301 removed.
21302
21303 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
21304
21305 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
21306 allow more flexibility.
21307 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
21308 (easy-mmode-defmap, easy-mmode-defsyntax)
21309 (easy-mmode-define-derived-mode): New macros.
21310
21311 2000-03-09 Didier Verna <didier@xemacs.org>
21312
21313 * rect.el (replace-rectangle): New function.
21314
21315 2000-03-09 Dave Love <fx@gnu.org>
21316
21317 * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
21318 (fortran-comment-line-start-skip): Don't match cpp stuff.
21319 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
21320 (fortran-mode-map): Remove over-eager custom-menu-create for now.
21321 (fortran-mode): Don't set fortran-comment-line-start-skip,
21322 fortran-comment-line-start here. Set comment-start,
21323 add-log-current-defun.
21324 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
21325 (fortran-current-defun): New function.
21326
21327 2000-03-09 Gerd Moellmann <gerd@gnu.org>
21328
21329 * emacs-lisp/re-builder.el: New file.
21330
21331 * mouse.el (mouse-drag-region): Don't run up-event handler
21332 if hscroll has changed.
21333
21334 * octave-mod.el (octave-font-lock-keywords): To font-lock the
21335 builtin operators, use `font-lock-builtin-face' for Emacs and
21336 `font-lock-preprocessor-face' otherwise.
21337
21338 * font-lock.el (lisp-font-lock-keywords-1): Highlight
21339 `(defun (setf foo)' differently.
21340
21341 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
21342
21343 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
21344 (regexp-opt): Update comment and adapt the code the new meaning of
21345 the `paren' argument of regex-opt-group for shy-groups.
21346 (regexp-opt-depth): Handle shy groups as well as backslashed
21347 backslashes.
21348 (regexp-opt-group): Turn the leading comment into a docstring.
21349 Allow `paren' to be a string (the string to use to open a group).
21350 Remove open-presuf and close-presuf. Instead of checking for `all
21351 one-char' and then later on check for `several one-char', handle
21352 both cases close together. Also apply a more generic algorithm
21353 for suffixes (the mirror image of the algorithm used for
21354 prefixes). Use shy-groups. Use nreverse rather than reverse.
21355 (regexp-opt-try-suffix): Removed.
21356
21357 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
21358 from comint-mode-map, so we can just inherit from it. Also, move
21359 the initialization into the `defvar' since there's no docstring
21360 anyway and it's fairly short.
21361 (inferior-scheme-mode): Define it as derived-mode: the code is
21362 shorter and this way we inherit from comint-mode-map rather than
21363 copying it.
21364
21365 * subr.el (replace-regexps-in-string): Properly handle the case
21366 where we match an empty string.
21367
21368 * comint.el (comint-exec-1): Add the current-dir to the exec-path
21369 when the command has a directory component (such as "./testml").
21370 Also fix a typo in the comment.
21371
21372 2000-03-08 Gerd Moellmann <gerd@gnu.org>
21373
21374 * Makefile (compile-files): Compile files one by one because
21375 that's the only way to ensure a clean compilation environment for
21376 each individual file.
21377
21378 * frame.el (other-frame): Call x-focus-frame.
21379
21380 2000-03-07 Dave Love <fx@gnu.org>
21381
21382 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
21383 :require to defcustom.
21384
21385 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
21386
21387 * files.el (auto-mode-alist): Add configure.in.
21388
21389 * progmodes/autoconf.el: New file.
21390
21391 2000-03-07 Gerd Moellmann <gerd@gnu.org>
21392
21393 * mail/mh-e.el: Change maintainer to `none'.
21394
21395 * recentf.el (recentf-keep-non-readable-files-p): Quote args
21396 to remove-hook and add-hook.
21397
21398 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
21399
21400 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
21401 it as the default.
21402 (mail-send): Test mail-send-nonascii also for the new `mime' value.
21403 (sendmail-send-it): Conditionally add MIME headers specifying the
21404 used character set.
21405
21406 2000-03-07 Dave Love <fx@gnu.org>
21407
21408 * winner.el: Fix keywords, autoload cookies.
21409 Split eval-when-compile form to avoid compilation failure.
21410
21411 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
21412
21413 * international/mule.el: Modify comment about coding system
21414 property `coding-category'.
21415 (make-coding-system): New argument EOL-TYPE. Pay attention to
21416 coding-category property of PROPERTIES.
21417
21418 * international/mule-conf.el (coding-category-utf-8)
21419 (coding-category-utf-16-be, coding-category-utf-16-le): New coding
21420 categories. Include them in the argument for set-coding-priority.
21421
21422 * international/mule-cmds.el (reset-language-environment):
21423 Include coding-category-utf-8, coding-category-utf-16-be, and
21424 coding-category-utf-16-le in the argument for set-coding-priority.
21425 (reset-language-environment): Initialize coding-category-utf-8,
21426 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
21427
21428 2000-03-06 Karl Fogel <kfogel@red-bean.com>
21429
21430 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
21431 code abstracted out of `bookmark-jump-noselect'. Now tries info
21432 extensions as well as compression extensions.
21433 (bookmark-jump-noselect): Use above new func.
21434
21435 2000-03-03 Gerd Moellmann <gerd@gnu.org>
21436
21437 * strokes.el: Change maintainer's mail address.
21438
21439 2000-03-03 Kenichi Handa <handa@etl.go.jp>
21440
21441 * international/mule-diag.el (list-character-sets): Make help-echo
21442 string by substitute-command-keys.
21443 (list-character-sets): Likewise.
21444 (sort-listed-character-sets): Call help-setup-xref.
21445
21446 2000-03-02 Gerd Moellmann <gerd@gnu.org>
21447
21448 * time.el (display-time-mail-file): Add `none' to the list of choices.
21449
21450 2000-03-01 Dave Love <fx@gnu.org>
21451
21452 * help.el (help-xref-go-back): Don't try to set position.
21453
21454 * international/mule-diag.el (list-character-sets):
21455 Call help-setup-xref. Add help-echo to xrefs.
21456 (list-character-sets-1): Add help-echo to xrefs.
21457
21458 2000-03-02 Gerd Moellmann <gerd@gnu.org>
21459
21460 * frame.el (blink-cursor-mode): Switch cursor on when turning
21461 the mode off.
21462
21463 * add-log.el (add-log-current-defun): Add support for
21464 Autoconf mode.
21465
21466 * mail/rmail.el (rmail-quit-hook): New variable.
21467
21468 2000-03-01 Dave Love <fx@gnu.org>
21469
21470 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
21471
21472 * help.el (help-xref-button): Add help-echo arg.
21473 (describe-function-1, describe-variable, help-make-xrefs): Use it.
21474
21475 * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
21476
21477 * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
21478
21479 2000-03-01 Gerd Moellmann <gerd@gnu.org>
21480
21481 * image.el (defimage): Look for image files in load-path.
21482
21483 * frame.el (busy-cursor-delay-seconds): Change type to `number'.
21484
21485 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21486
21487 * recentf.el (recentf): Added version tag to the defgroup of recentf.
21488
21489 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21490
21491 * recentf.el (recentf-cleanup): Changed to remove excluded file too.
21492 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
21493 action to select/unselect a file.
21494 (recentf-edit-list): Code cleanup and improvement.
21495 (recentf-open-more-files-action): `recentf-open-more-files' button
21496 widget action to open a file.
21497 (recentf-open-more-files): No more use standard completion but widgets.
21498 (recentf-more-collection): Deleted.
21499 (recentf-more-history): Deleted.
21500 (recentf-setup-more-completion): Deleted.
21501
21502 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21503
21504 * recentf.el (recentf-mode): No more needs that Emacs is running
21505 under a window-system.
21506
21507 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21508
21509 * recentf.el (recentf-edit-list): New command to edit the recent
21510 list which allow the user to remove files.
21511 (recentf-edit-selected-items): New global variable, used by
21512 `recentf-edit-list' to hold the list of files to be removed from
21513 the recent list.
21514 (recentf-make-menu-items): Updated to display a "Edit list..."
21515 menu item. Minor code cleanup.
21516
21517 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21518
21519 * recentf.el (recentf-open-more-files): New command to open files
21520 that are not displayed in the menu.
21521 (recentf-more-collection): New global variable holding the set of
21522 permissible completions used by `recentf-open-more-files'.
21523 (recentf-more-history): New global variable holding the history list
21524 used by `recentf-open-more-files' completion.
21525 (recentf-setup-more-completion): New function to setup completion for
21526 `recentf-open-more-files'.
21527 (recentf-make-menu-items): Updated to display a "More..." menu item.
21528
21529 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21530
21531 * recentf.el (recentf-menu-action): Doc fixed.
21532
21533 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
21534
21535 * recentf.el (recentf-menu-filter): Doc updated.
21536 (recentf-update-menu-hook): Allow menu filters to force menu update.
21537 (recentf-make-menu-items): New menu filter handling.
21538 (recentf-make-menu-item): New helper function.
21539 (recentf-menu-elements): New menu handling function.
21540 (recentf-sort-ascending): Updated to new menu filter handling.
21541 (recentf-sort-descending): Updated to new menu filter handling.
21542 (recentf-sort-basenames-ascending): New menu filter function.
21543 (recentf-sort-basenames-descending): New menu filter function.
21544 (recentf-show-basenames): New menu filter function.
21545 (recentf-show-basenames-ascending): New menu filter function.
21546 (recentf-show-basenames-descending): New menu filter function.
21547
21548 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
21549
21550 * diary-lib.el (list-diary-entries): Don't try to go forward at
21551 the end of the buffer.
21552
21553 2000-02-29 Kenichi Handa <handa@etl.go.jp>
21554
21555 * international/mule-diag.el (list-character-sets):
21556 Completely rewritten.
21557 (sort-listed-character-sets): New function.
21558 (list-character-sets-1): Completely rewritten.
21559 (list-character-sets-2): New function.
21560 (non-iso-charset-alist): New variable.
21561 (decode-codepage-char): New function.
21562 (charset-history): New variable.
21563 (read-charset) (list-block-of-chars)
21564 (list-iso-charset-chars)
21565 (list-non-iso-charset-chars)
21566 (list-charset-chars): New functions.
21567 (mule-diag): Call list-character-sets-2, not list-character-sets-2.
21568 (dump-charsets): Likewise.
21569
21570 2000-02-29 Gerd Moellmann <gerd@gnu.org>
21571
21572 * dired-x.el (dired-filename-at-point): Add `@' to valid
21573 file name characters.
21574 (dired-filename-at-point): Handle ange-ftp file names.
21575
21576 * frame.el (frame-notice-user-settings): Use assq-delete-all
21577 instead of assoc-delete-all.
21578 (frame-notice-user-settings): Ditto.
21579
21580 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
21581 Don't copy alist.
21582
21583 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
21584
21585 * calculator.el (calculator-use-menu): New option.
21586 (calculator-initial-bindings): Changed some bindings to work as macros.
21587 (calculator-forced-input): Removed.
21588 (calculator-restart-other-mode): New variable.
21589 (calculator-mode-map): Set up menu.
21590
21591 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
21592
21593 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
21594
21595 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
21596
21597 * viper-cmd.el (viper-envelop-ESC-key): Add the option to
21598 translate all ESC key sequences.
21599 (viper-goto-mark-subr): Restore markers for files for which
21600 they were saved.
21601 * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
21602 * viper-util.el (viper-set-replace-overlay-glyphs)
21603 (viper-set-replace-overlay): Always check if the replacement
21604 overlay is live.
21605 * viper.el (viper-vi-state-mode-list): Add major modes.
21606 * ediff-wind.el: Minor comment changes.
21607 * ediff.el: Copyright notice date fix.
21608
21609 2000-02-27 Jason Rumney <jasonr@gnu.org>
21610
21611 * faces.el (face-font-family-alternatives): Add arial to helv.
21612 (mode-line, header-line, tool-bar): Same default as x for w32.
21613 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
21614 face-font-family-alternatives from working.
21615 * term/w32-win.el (mouse-set-font): Do not build fontset from
21616 chosen font.
21617
21618 2000-02-25 Sam Steingold <sds@goems.com>
21619
21620 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
21621 properly.
21622
21623 2000-02-25 Richard M. Stallman <rms@gnu.org>
21624
21625 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
21626
21627 2000-02-25 Gerd Moellmann <gerd@gnu.org>
21628
21629 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
21630
21631 * frame.el (busy-cursor-delay-seconds): New option.
21632
21633 2000-02-24 Gerd Moellmann <gerd@gnu.org>
21634
21635 * frame.el (show-cursor-in-non-selected-windows): New option.
21636
21637 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
21638
21639 * diary-lib.el (include-other-diary-files): Undo the selective
21640 display in any included file and don't kill it.
21641
21642 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
21643
21644 * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
21645 Menu items converted to (menu-item format, help strings added.
21646 [downcase, upcase]: Don't enable on MS-DOS.
21647 [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
21648 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
21649
21650 2000-02-23 Dave Love <fx@gnu.org>
21651
21652 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
21653 (backward-kill-word): Revert addition of * to interactive spec --
21654 it's a feature.
21655
21656 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
21657 (backward-kill-sentence, kill-sentence): Likewise.
21658
21659 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
21660 scratch buffer name.
21661 (gud-format-command): Use int-to-string in ?l case. Simplify slightly.
21662
21663 * term/w32-win.el (internal-face-interactive): Update prompt for
21664 new read-face-name.
21665
21666 * mail/footnote.el (footnote): Add :version to defgroup.
21667 (footnote-section-tag-regexp): Customize.
21668 (footnote-start-tag, footnote-end-tag): New option.
21669 (footnote-latin-regexp): New variable.
21670 (Footnote-latin): New function.
21671 (footnote-style-alist): Add element for latin style.
21672 (footnote-style): Moved.
21673 (Footnote-goto-footnote): Use eq to test arg.
21674
21675 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
21676
21677 * emacs-lisp/byte-opt.el: Change old backquote syntax.
21678 (byte-compile-trueconstp): Include keywords.
21679 (byte-optimize-quote, byte-optimize-lapcode):
21680 Use byte-compile-const-symbol-p.
21681 (byte-optimize-char-before): New optimization.
21682
21683 * emacs-lisp/bytecomp.el: Change old backquote syntax.
21684 (byte-compile-const-symbol-p): New function.
21685 (byte-compile-constp, byte-compile-out-toplevel)
21686 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
21687 Use it.
21688
21689 * subr.el (define-key-after): Default AFTER to t. Doc fix.
21690
21691 2000-02-23 Kenichi Handa <handa@etl.go.jp>
21692
21693 * international/encoded-kb.el: Be sure to update minor-mode-alist
21694 and minor-mode-map-alist.
21695 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
21696 codes SS2 and SS3 correctly.
21697 (encoded-kbd-self-insert-ccl): New function.
21698 (encoded-kbd-setup-keymap): New function.
21699 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
21700 by calling encoded-kbd-setup-keymap.
21701
21702 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
21703 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
21704
21705 2000-02-22 Dave Love <fx@gnu.org>
21706
21707 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
21708 (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
21709 (lisp-mode-syntax-table): Set up for #|...|# comments.
21710 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
21711 classes. Match `defface'.
21712 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
21713 (eval-defun-1): Fix for defcustom.
21714 (lisp-indent-region): Doc fix.
21715
21716 * subr.el (when, unless, split-string): Doc fix.
21717 (read-passwd): Move call of clear-this-command-keys to the right place.
21718 (replace-regexps-in-string): New function.
21719
21720 2000-02-22 Gerd Moellmann <gerd@gnu.org>
21721
21722 * help.el (describe-variable): Set syntax table to
21723 emacs-lisp-mode-syntax-table when moving forward over the
21724 symbol's name.
21725
21726 2000-02-22 Dave Love <fx@gnu.org>
21727
21728 * xt-mouse.el: Doc fixes.
21729 (xterm-mouse-position-function): New function, replacing advice of
21730 mouse-position.
21731 (xterm-mouse-mode): Use it. Don't turn on under a window system.
21732
21733 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
21734
21735 2000-02-21 Gerd Moellmann <gerd@gnu.org>
21736
21737 * format.el (format-annotate-single-property-change):
21738 Handle properties.with dotted-list values.
21739 (format-proper-list-p): New function.
21740
21741 * enriched.el (enriched-face-ans): Handle '(foreground-color
21742 . COLOR) and (background-color . COLOR).
21743
21744 2000-02-20 Dave Love <fx@gnu.org>
21745
21746 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
21747 and assignments to it.
21748 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
21749 current local map.
21750 (make-flyspell-overlay): Use it.
21751 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
21752
21753 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
21754 (lm-get-header-re): Defun, not defsubst.
21755 (lm-get-package-name): Defun, not defsubst. Simplify.
21756 (lm-version): Doc fix. Simplify.
21757 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
21758 (lm-crack-address, lm-last-modified-date, lm-commentary)
21759 (lm-verify, lm-synopsis): Simplify.
21760 (lm-report-bug): Require emacsbug. Use compose-mail.
21761
21762 2000-02-20 Gerd Moellmann <gerd@gnu.org>
21763
21764 * dired.el (dired-mode): Call propertized-buffer-identification
21765 to set mode-line-buffer-identification to something having
21766 the right text properties.
21767
21768 * bindings.el (propertized-buffer-identification): New function.
21769
21770 2000-02-20 Dave Love <fx@gnu.org>
21771
21772 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
21773 check for t-mouse too.
21774
21775 * cus-start.el: Make echo-keystrokes `number'.
21776
21777 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
21778
21779 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
21780 Don't call ring-empty-p unless tags-location-ring is bound.
21781 From Noah Friedman <friedman@splode.com>.
21782
21783 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
21784
21785 * progmodes/hideshow.el (hs-flag-region): No longer use
21786 `intangible' overlay property.
21787
21788 (hs-toggle-hiding): New command.
21789 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
21790
21791 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
21792 Fix omission bug: Run `hs-minor-mode-hook' for both activation
21793 and deactivation.
21794
21795 2000-02-18 Gerd Moellmann <gerd@gnu.org>
21796
21797 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
21798
21799 2000-02-17 Gerd Moellmann <gerd@gnu.org>
21800
21801 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
21802
21803 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
21804 of `*' to handle `(* ... *)' comments.
21805
21806 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
21807
21808 * faces.el (list-faces-display): Use display-mouse-p instead of
21809 window-system.
21810
21811 * menu-bar.el (global-map): Menu-bar items converted to the new
21812 format (menu-item..., rearranged for better CUA compliance, and
21813 their names changed for better clarity. Help strings added.
21814
21815 * international/mule-cmds.el (mule-menu-keymap)
21816 (describe-language-environment-map, set-coding-system-map)
21817 (setup-language-environment-map): Convert to new (menu-item...
21818 form, add help strings. Change names of menu items for better clarity.
21819 "Mule" menu-bar item removed (it's now in the "Options" submenu).
21820
21821 2000-02-17 Gerd Moellmann <gerd@gnu.org>
21822
21823 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
21824 within the code.
21825
21826 2000-02-16 Dave Love <fx@gnu.org>
21827
21828 * faces.el: Don't require custom. Add more specific :groups to
21829 various deffaces.
21830 (set-face-attribute): Purecopy args.
21831 (read-face-name): Default to name at point and use it in prompt.
21832 Remove colon from arg in all callers.
21833 (list-faces-display): Hyperlink to face descriptions and customize
21834 buffers.
21835
21836 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
21837
21838 * wid-edit.el (widget-match-inline): An atom never matches a list.
21839
21840 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21841
21842 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
21843 at ':' characters by call to split-string.
21844
21845 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21846
21847 * textmodes/bibtex.el: Added RCS version identification.
21848
21849 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21850
21851 * textmodes/bibtex.el: Some temporary comments removed.
21852 (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
21853 (bibtex-field-const): Allow capital letters.
21854 (bibtex-start-of-string): Deleted because unused.
21855
21856 * textmodes/bibtex.el: Unified some nomenclature. We no longer
21857 use the term 'reference' to describe a bibtex entry as a whole.
21858 Further, reference keys are no longer called 'labels'.
21859 (bibtex-keys): Renamed to bibtex-reference-keys.
21860 (bibtex-reformat-previous-labels): Renamed to
21861 bibtex-reformat-previous-reference-keys.
21862 (bibtex-reference-type): Renamed to bibtex-entry-type.
21863 (bibtex-reference-head): Renamed to bibtex-entry-head.
21864 (bibtex-reference-maybe-empty-head): Renamed to
21865 bibtex-entry-maybe-empty-head.
21866 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
21867 (bibtex-search-reference): Renamed to bibtex-search-entry.
21868 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
21869 bibtex-enclosing-entry-maybe-empty-head.
21870 (bibtex-entry-field-alist, bibtex-entry-head)
21871 (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
21872 (bibtex-map-entries, bibtex-search-entry)
21873 (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
21874 (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
21875 (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
21876 (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
21877 (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
21878 (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
21879 (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
21880
21881 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21882
21883 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
21884 comment.
21885 (bibtex-format-field-delimiters): New function, functionality
21886 extracted from bibtex-format-entry.
21887 (bibtex-autokey-get-yearfield-digits): New function, functionality
21888 extracted from bibtex-autokey-get-yearfield.
21889
21890 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
21891 entries in order to avoid stack overflow in the regexp matcher if
21892 field contents become large.
21893 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
21894 (bibtex-field-string-part-not-braced)
21895 (bibtex-field-string-part-no-inner-braces)
21896 (bibtex-field-string-part-1-inner-brace)
21897 (bibtex-field-string-part-2-inner-braces)
21898 (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
21899 (bibtex-field-string-quoted, bibtex-field-string)
21900 (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
21901 (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
21902 (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
21903 Deleted as parsing is now performed by the following functions.
21904 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
21905 (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
21906 (bibtex-parse-field-string, bibtex-search-forward-field-string)
21907 (bibtex-parse-association, bibtex-field-name-for-parsing)
21908 (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
21909 (bibtex-search-forward-field, bibtex-search-backward-field)
21910 (bibtex-start-of-field, bibtex-end-of-field)
21911 (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
21912 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
21913 (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
21914 (bibtex-parse-string, bibtex-search-forward-string)
21915 (bibtex-search-backward-string, bibtex-start-of-string)
21916 (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
21917 (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
21918 (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
21919 entries. Instead of reporting the results of the parsing by
21920 match-beginning or match-end, these functions return data structures
21921 that hold the corresponding positions.
21922 (bibtex-enclosing-field): Changed to also report field boundaries by
21923 return values rather than by match-beginning or match-end.
21924 The following functions have been adapted to use the new
21925 parsing functions.
21926 (bibtex-skip-to-valid-entry, bibtex-search-reference)
21927 (bibtex-enclosing-field, bibtex-format-entry)
21928 (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
21929 (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
21930 (bibtex-print-help-message, bibtex-end-of-entry)
21931 (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
21932 (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
21933 (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
21934 Use the new method for parsing.
21935 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
21936 (bibtex-map-entries, bibtex-flash-head)
21937 (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
21938 (bibtex-autokey-change, bibtex-autokey-get-namefield)
21939 (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
21940 (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
21941 (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
21942 (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
21943 (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
21944 order to make the new binding of case-fold-search immediately visible.
21945
21946 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21947
21948 * textmodes/bibtex.el: Copyright notice is up to date.
21949 Added constant 'bibtex-maintainer-salutation.
21950
21951 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
21952 than make-temp-name, use match-string-no-properties and eliminate
21953 a quadratic behavior when building bibtex-strings.
21954
21955 * bibtex.el (bibtex-reference-key): Accept string entries whose
21956 reference key contains upper case letters.
21957
21958 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21959
21960 * bibtex.el (bibtex-reference-head): Allow entries to start with
21961 a new line.
21962
21963 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21964
21965 * bibtex.el: Hiding of entry bodies is not longer provided by
21966 bibtex.el directly. Instead the hideshow package can be used.
21967 Added a special bibtex entry to hs-special-modes-alist.
21968 (bibtex-hs-forward-sexp): Added for hideshow.el.
21969
21970 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
21971
21972 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
21973 proceedings entry type (for cross referencing). Thanks to Wagner
21974 Toledo Correa for the suggestion.
21975
21976 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
21977
21978 2000-02-14 Kenichi Handa <handa@etl.go.jp>
21979
21980 * international/characters.el: Setup case table for Vietnamese.
21981
21982 2000-02-12 Gerd Moellmann <gerd@gnu.org>
21983
21984 * uniquify.el (toplevel): Require CL at compile time.
21985 (uniquify-push): Removed.
21986
21987 * shadowfile.el (shadow-when): Removed.
21988
21989 * tempo.el (tempo-dolist, tempo-mapc): Removed.
21990 (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
21991
21992 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
21993 regexp for paragraph-start.
21994
21995 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
21996 commas as well.
21997
21998 2000-02-10 Dave Love <fx@gnu.org>
21999
22000 * wid-edit.el: (widgets) [defgroup]: Remove url link.
22001 (widget-color-choice-list, widget-color-history, widget-mouse-help):
22002 Deleted.
22003 (widget-specify-field, widget-specify-button): Don't use
22004 widget-mouse-help as help-echo property.
22005 (default): Use #'ignore for :validate and :mouse-down-action.
22006 (checkbox): Add help-echo.
22007 (widget-sexp-validate): Rewritten to clarify error messages.
22008 (character): Use char-valid-p in :match function.
22009 (widget-color-complete): Use facemenu-color-alist.
22010 (widget-color-action): Use facemenu-read-color.
22011
22012 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
22013 set up `caar' &c that we now have.
22014
22015 2000-02-09 Ray Blaak <blaak@gnu.org>
22016
22017 * delphi.el: Make resourcestring a declaration region, like const
22018 and var.
22019
22020 2000-02-09 Dave Love <fx@gnu.org>
22021
22022 * bindings.el (mode-line-input-method-map): New variable.
22023 (mode-line-mule-info): Use it; fix last change.
22024 (mode-line-mode-menu): Move definition.
22025 (mode-line-mouse-sensitive-p): Deleted.
22026 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
22027 (make-mode-line-mouse-sensitive): Deleted. Body moved to top level.
22028
22029 * startup.el (command-line-1): Don't call
22030 make-mode-line-mouse-sensitive.
22031
22032 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
22033
22034 * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
22035 before rmail-toggle-header, because the former toggles headers.
22036
22037 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
22038
22039 * diff-mode.el (diff-kill-junk): New interactive function.
22040 (diff-reverse-direction): Use delete-and-extract-region.
22041 (diff-post-command-hook): Restrict the area so that the hook also works
22042 outside of any diff hunk. This is necessary for the minor-mode.
22043 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
22044 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
22045
22046 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
22047 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
22048 so that it can be used more easily in <foo>-mode-hook. Also make sure
22049 to avoid duplicate entries.
22050 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
22051 (font-lock-remove-keywords): Just as was done for `add', allow it to
22052 work even if font-lock-mode is nil. Also make sure we don't modify
22053 any pre-existing list by forcing a copy-sequence. Finally rename
22054 `major-mode' to `mode'.
22055 (font-lock-fontify-syntactic-anchored-keywords)
22056 (font-lock-fontify-anchored-keywords)
22057 (font-lock-fontify-keywords-region): Use line-end-position.
22058 Don't make `font-lock-multiline' local (it's now done in
22059 font-lock-set-defaults).
22060 (font-lock-set-defaults): Make `font-lock-multiline' local.
22061 Move the `font-lock-fontified' creation to inside the `unless'.
22062
22063 2000-02-06 Andrew Innes <andrewi@gnu.org>
22064
22065 * term/w32-win.el (x-handle-args): Comment out call to message,
22066 which occurs before window system is initialized.
22067
22068 * makefile.nt: Add support for recompiling lisp code.
22069
22070 2000-02-04 Dave Love <fx@gnu.org>
22071
22072 * bindings.el (mode-line-mule-info): Fix/extend last change.
22073
22074 * completion.el: Replace completion-dolist with dolist.
22075
22076 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
22077
22078 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
22079
22080 * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
22081 environment names before they go into the section regexp.
22082
22083 * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
22084 char class in regexp.
22085
22086 * textmodes/reftex-parse.el (reftex-with-special-syntax):
22087 Bind `case-fold-search' to nil.
22088
22089 * progmodes/idlwave.el (idlwave-template):
22090 Respect `idlwave-abbrev-change-case'.
22091 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
22092 (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
22093 (idlwave-while): Respect `idlwave-reserved-word-upcase'.
22094 (idlwave-rw-case): New function.
22095 (idlwave-statement-match): Fixed problem with assignment regexp.
22096 (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
22097 (idlwave-surround): New argument LENGTH to support padding of
22098 operators longer than 1 char.
22099
22100 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
22101 idlwave-shell-expression-overlay. Implemented printing of
22102 expressions on higher levels of the calling stack.
22103 (idlwave-shell-display-level-in-calling-stack): Restore stack level.
22104 (idlwave-retrieve-expression-from-level): New function.
22105 (idlwave-shell-last-calling-stack): Variable removed.
22106 (idlwave-shell-reset): Argument action reversed (`visible' to
22107 `hidden'). Also remove stop-line overlay.
22108 (idlwave-shell-calling-stack-routine): New variable.
22109 (idlwave-shell-parse-stack-and-display): Messages now display
22110 negative level numbers.
22111 (idlwave-shell-mode): Set `modeline-format'.
22112 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
22113 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
22114 (idlwave-shell-print-expression-function): New option.
22115
22116 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
22117 (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
22118 `tool-bar' instead of `toolbar'.
22119
22120 2000-02-02 Dave Love <fx@gnu.org>
22121
22122 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
22123 emacs-lisp-mode-hook. Don't check for defalias being defined.
22124
22125 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
22126 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
22127 Use the new builtins directly.
22128
22129 * whitespace.el (whitespace): Add :version to defgroup.
22130
22131 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
22132 Doc fix.
22133
22134 * thingatpt.el (sexp-at-point, symbol-at-point)
22135 (number-at-point, list-at-point): Add autoload cookie.
22136
22137 * recentf.el (recentf): Add :version to defgroup.
22138
22139 * quickurl.el (quickurl): Add :version to defgroup.
22140
22141 * elide-head.el (elide-head): Use point-marker more.
22142
22143 * bs.el (bs): Add :version to defgroup.
22144
22145 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
22146
22147 * progmodes/delphi.el (delphi): Add :version to defgroup.
22148
22149 2000-02-02 Gerd Moellmann <gerd@gnu.org>
22150
22151 * ange-ftp.el (ange-ftp-write-region): Handle case that
22152 succeeding process operation sets a different coding system.
22153
22154 * calculator.el: New file.
22155
22156 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
22157
22158 * frame.el (frames-on-display-list, framep-on-display): New functions.
22159 (display-mouse-p, display-popup-menus-p, display-graphic-p)
22160 (display-selections-p, display-screens, display-pixel-width)
22161 (display-pixel-height, display-mm-width, display-mm-height)
22162 (display-backing-store, display-save-under, display-planes)
22163 (display-color-cells, display-visual-class): New functions.
22164
22165 * term/tty-colors.el (tty-color-gray-shades): New function.
22166
22167 * faces.el (display-color-p): Use framep-on-display.
22168 (display-grayscale-p): New function.
22169
22170 2000-01-31 Dave Love <fx@gnu.org>
22171
22172 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
22173 (create-fontset-from-x-resource): Don't concat integers.
22174
22175 2000-01-31 Inge Frick <inge@nada.kth.se>
22176
22177 * view.el: Some changes in documentation. Removed some trailing
22178 whitespace. Changed some parameter names to agree with documentation.
22179 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
22180 window is not deleted. Modifies change 1998-04-26.
22181
22182 2000-01-31 Gerd Moellmann <gerd@gnu.org>
22183
22184 * windmove.el: New file.
22185
22186 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
22187 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
22188 progmodes/ebnf-yac.el: Update copyright and license info.
22189
22190 * jit-lock.el (jit-lock-function): Widen before calculating
22191 end position.
22192 (jit-lock-stealth-chunk-start): Rewritten.
22193
22194 * info.el (Info-title-face-alist): Removed.
22195 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
22196 (Info-fontify-node): Use these faces.
22197
22198 2000-01-30 Gerd Moellmann <gerd@gnu.org>
22199
22200 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
22201 (cl-macro-list1): Recognize `&allow-other-keys' instead of
22202 `&allow-other-keywords'.
22203
22204 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
22205 the list of directories scanned heuristically.
22206
22207 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
22208
22209 2000-01-30 Jason Rumney <jasonr@gnu.org>
22210
22211 * w32-fns.el: Define w32-tty-standard-colors.
22212
22213 * startup.el (command-line): Use w32-tty-standard-colors when in
22214 w32 console mode.
22215
22216 2000-01-30 Dave Love <fx@gnu.org>
22217
22218 * jka-compr.el (jka-compr-load): Fix up load-history.
22219
22220 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
22221
22222 * emacs-lisp/cl-macs.el: Revert previous change.
22223
22224 2000-01-29 Dave Love <fx@gnu.org>
22225
22226 * facemenu.el: Purecopy various strings.
22227
22228 * timezone.el (timezone-fix-time): Window against 69 for two-digit
22229 years. Deal with three-digit years.
22230
22231 * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
22232 Use defconst, purecopy.
22233 (help-back-label): Purecopy it.
22234
22235 2000-01-18 Gerd Moellmann <gerd@gnu.org>
22236
22237 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
22238 variable. If non-nil, order the buffer list according to the
22239 currently selected frame.
22240 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
22241 non-nil, pass the selected frame to function buffer-list.
22242
22243 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22244
22245 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
22246
22247 2000-01-28 Dave Love <fx@gnu.org>
22248
22249 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
22250
22251 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
22252 Don't use lisp-indent-hook property.
22253 (cl-abs): Remove.
22254
22255 * subr.el: Move out indent and edebug specs for when and unless.
22256
22257 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
22258 when, unless.
22259
22260 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
22261 unless, when.
22262
22263 2000-01-28 Gerd Moellmann <gerd@gnu.org>
22264
22265 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
22266 `collecting' as synonym for `collect'.
22267
22268 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
22269 for the case it contains spaces.
22270
22271 * simple.el (what-cursor-position): Change formatting of messages.
22272
22273 * frame.el (delete-other-frames): New function.
22274 (toplevel): Bind it to C-x 5 1.
22275
22276 * sort.el (sort-numeric-base): New option.
22277 (sort-numeric-fields): If number starts with `0' or `0[xX[',
22278 interpret it as octal or hexadecimal. Use sort-numeric-base
22279 as default base.
22280
22281 * progmodes/glasses.el: New file.
22282
22283 2000-01-27 Gerd Moellmann <gerd@gnu.org>
22284
22285 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
22286 userids differently.
22287
22288 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
22289 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
22290 progmodes/ebnf-yac.el: New files.
22291
22292 2000-01-26 Dave Love <fx@gnu.org>
22293
22294 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
22295 on a function with an empty body. [From Eric Ludlam.]
22296
22297 2000-01-25 Andre Spiegel <spiegel@gnu.org>
22298
22299 * vc.el (vc-version-diff): Make sure file name is expanded.
22300
22301 2000-01-25 Gerd Moellmann <gerd@gnu.org>
22302
22303 * scroll-bar.el (scroll-bar-timer): Variable removed.
22304 (scroll-bar-toolkit-scroll): Don't use a timer.
22305
22306 2000-01-25 Kenichi Handa <handa@etl.go.jp>
22307
22308 * language/thai-util.el (thai-composition-function):
22309 Delete superfluous `a'.
22310
22311 2000-01-24 Dave Love <fx@gnu.org>
22312
22313 * fortran.el (fortran-mode): Use beginning-of-defun-function,
22314 end-of-defun-function.
22315
22316 * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
22317
22318 2000-01-22 Jason Rumney <jasonr@gnu.org>
22319
22320 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
22321 conflicts with new face support.
22322
22323 2000-01-22 Richard M. Stallman <rms@gnu.org>
22324
22325 * replace.el (query-replace): Rename last arg to DELIMITED.
22326 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
22327 (query-replace-regexp): Likewise.
22328
22329 2000-01-20 Richard M. Stallman <rms@gnu.org>
22330
22331 * subr.el (with-syntax-table): Use make-symbol, not gensym.
22332
22333 * emacs-lisp/lisp.el (beginning-of-defun-function):
22334 Variable renamed from beginning-of-defun.
22335 Do not call make-variable-buffer-local.
22336 (beginning-of-defun-raw): Use new variable name; doc fix.
22337 (beginning-of-defun): Doc fix.
22338 (end-of-defun-function): Variable renamed from end-of-defun.
22339 Do not call make-variable-buffer-local.
22340 (end-of-defun): Use new variable name; doc fix.
22341
22342 * subr.el (dolist, dotimes): Copied from cl-macs.el
22343 and made to work.
22344
22345 * mail/undigest.el (rmail-digest-end-regexps):
22346 Variable replaces rmail-digest-end-regexp.
22347 Allows multiple regexps for detecting the end line.
22348 (undigestify-rmail-message): Corresponding changes.
22349
22350 2000-01-19 Dave Love <fx@gnu.org>
22351
22352 * files.el (user-init-file): Don't declare here -- is primitive.
22353
22354 * startup.el (command-line): Check for compiled user-init-file and
22355 set to uncompiled version if necessary.
22356
22357 2000-01-18 Gerd Moellmann <gerd@gnu.org>
22358
22359 * mail/undigest.el (rmail-digest-end-regexp): New user option.
22360 (undigestify-rmail-message): Use it.
22361
22362 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
22363
22364 2000-01-17 Gerd Moellmann <gerd@gnu.org>
22365
22366 * tmm.el (tmm-goto-completions): Adapt to prompt being part
22367 of mini-buffer.
22368
22369 2000-01-14 Gerd Moellmann <gerd@gnu.org>
22370
22371 * emacs-lisp/copyright.el (copyright-update): Removed the
22372 requirement for a trailing space from `copyright-regexp', to
22373 support copyrights with owner specified on a separate line..
22374
22375 * align.el: New file.
22376
22377 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
22378
22379 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
22380
22381 2000-01-13 Dave Love <fx@gnu.org>
22382
22383 * ph.el: Removed. (Obsoleted by EUDC.)
22384
22385 2000-01-13 Gerd Moellmann <gerd@gnu.org>
22386
22387 * net/eudc.el (toplevel): Remove autoloaded code installing
22388 menu with easymenu, because that causes build problems.
22389
22390 * frame.el (frame-notice-user-settings): New variable.
22391 (frame-notice-user-settings): Don't modify frame parameters
22392 if called a second time.
22393
22394 2000-01-13 Richard M. Stallman <rms@gnu.org>
22395
22396 * frame.el (frame-notice-user-settings):
22397 Notice default-frame-parameters even for non-window frames.
22398
22399 2000-01-13 Gerd Moellmann <gerd@gnu.org>
22400
22401 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
22402 for Emacs.
22403 (eudc-bob-can-display-inline-images): Extend for Emacs.
22404 (eudc-bob-toggle-inline-display): Ditto.
22405 (eudc-bob-display-jpeg): Ditto.
22406
22407 2000-01-12 Gerd Moellmann <gerd@gnu.org>
22408
22409 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
22410 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
22411 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
22412
22413 * add-log.el (add-change-log-entry): Fix error trying an
22414 `(insert nil)'.
22415
22416 * subdirs.el: Add `net' directory.
22417
22418 * net: New directory.
22419
22420 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
22421 eval-last-sexp. Don't bind debug-on-error here.
22422 (eval-last-sexp): New function. Bind debug-on-error if
22423 eval-expression-debug-on-error is non-nil.
22424 (eval-defun-2, eval-defun): Likewise.
22425
22426 * simple.el (eval-expression): Don't bind debug-on-error if
22427 eval-expression-debug-on-error is nil. Detect changed
22428 debug-on-error, and propagate new value to global binding, if
22429 eval-expression-debug-on-error is non-nil,
22430 (eval-expression-debug-on-error): Change doc string.
22431
22432 2000-01-11 Richard M. Stallman <rms@gnu.org>
22433
22434 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
22435
22436 * emacs-lisp/lisp-mode.el (with-syntax-table):
22437 Set up lisp-indent-function property.
22438
22439 * subr.el (with-syntax-table): Moved from simple.el.
22440
22441 * simple.el (with-syntax-table): Moved to subr.el.
22442
22443 2000-01-11 Gerd Moellmann <gerd@gnu.org>
22444
22445 * tmm.el (tmm-shortcut): Delete region after prompt instead
22446 of erasing buffer.
22447
22448 * textmodes/fill.el (fill-common-string-prefix): New function.
22449 (fill-context-prefix): Use the longest common prefix of first
22450 and second line fill prefix, if there is one.
22451
22452 2000-01-11 Richard M. Stallman <rms@gnu.org>
22453
22454 * array.el (array-mode): Don't use make-variable-buffer-local.
22455 Use make-local-variable for `truncate-lines'.
22456
22457 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
22458
22459 * add-log.el (add-log-current-defun): Handle user-defined
22460 add-log-current-function returning nil,
22461
22462 * add-log.el (add-change-log-entry): Insert version number
22463 if having found a current function
22464
22465 * add-log.el (add-log-current-defun):
22466 Call `add-log-current-defun-function'. Try matches at level 0 and
22467 level 1. Strip whitespace from defun found.
22468
22469 2000-01-10 John Wiegley <johnw@gnu.org>
22470
22471 * allout.el (isearch-done/outline-provisions): Added `edit'
22472 argument to correspond with the current definition of `isearch-done'.
22473
22474 2000-01-10 Dave Love <fx@gnu.org>
22475
22476 * elide-head.el (elide-head): Use point-marker, not point.
22477
22478 2000-01-10 Gerd Moellmann <gerd@gnu.org>
22479
22480 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
22481 before and after the year 2000.
22482
22483 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
22484 Add ispell- prefix.
22485
22486 2000-01-10 Ken Stevens <k.stevens@ieee.org>
22487
22488 * ispell.el: Only define dictionaries in menus when they exist.
22489 (version18p): New variable.
22490 (version20p): New variable.
22491 (xemacsp): New variable.
22492 (ispell-choices-win-default-height): Fix for XEmacs visibility.
22493 (ispell-dictionary-alist1): Added Brasileiro dictionary.
22494 (ispell-dictionary-alist6): Russian command lines no longer accept
22495 run-together words.
22496 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
22497 (ispell-dictionary-alist): Add koi8-r to customize definition.
22498 (check-ispell-version): Added documentation string. Return library
22499 path when called non-interactively.
22500 (ispell-menu-map-needed): Uses new variables.
22501 (ispell-library-path): New variable.
22502 (ispell-decode-string): XEmacs fix for bogus variable bindings.
22503 (ispell-word): Improved documentation string. Test for valid
22504 character mappings. Correctly check typed in word changes that can
22505 result in single words split into multiple words.
22506 Return replacement word.
22507 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
22508 replace in recursive query replace mode. Help message for
22509 recursive edit mode.
22510 (ispell-show-choices): Protect against bad framepop bindings.
22511 (ispell-help): Fix to work with XEmacs.
22512 (ispell-highlight-spelling-error): Use new variables.
22513 (ispell-overlay-window): Fix to work with XEmacs.
22514 (ispell-parse-output): Passed and returns location information
22515 tracking spelling corrections. Doesn't recheck same word on
22516 current line.
22517 (ispell-init-process): Protect against bogus XEmacs variable binding.
22518 Fix call to single argument in sleep-for. Use new variables.
22519 (ispell-region): Passed and returns location information tracking
22520 spelling corrections. Doesn't check same word on current line.
22521 Improved documentation string. Doesn't resend a line already
22522 checked to the ispell process - fixes bug in LaTeX parsing.
22523 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
22524 (ispell-skip-region): No longer skips <TT> in SGML.
22525 (ispell-process-line): Tracks location information with spelling
22526 corrections. Added documentation string. Accounts for words
22527 already accepted on this line. Don't allow query-replace on line
22528 starting with math characters. Doesn't resend a line already sent
22529 to ispell process. Fixes alignment error bug.
22530
22531 2000-01-10 Richard M. Stallman <rms@gnu.org>
22532
22533 * dired-x.el (dired-guess-shell-alist-default):
22534 Suggest xloadimage, which is free, not xv, which isn't.
22535
22536 * ange-ftp.el (ange-ftp-file-name-nondirectory):
22537 Don't ever include the host name or user name in the value.
22538
22539 2000-01-09 Gerd Moellmann <gerd@gnu.org>
22540
22541 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
22542 of a real newline.
22543
22544 2000-01-09 Stephen Eglen <stephen@gnu.org>
22545
22546 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
22547 for .png files.
22548
22549 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
22550
22551 * cus-edit.el (custom-hook-convert-widget): Fix comment.
22552
22553 2000-01-09 Gerd Moellmann <gerd@gnu.org>
22554
22555 * progmodes/cperl-mode.el: Replace ^F with ^L.
22556
22557 * sendmail.el (toplevel): Provide `sendmail' when compiling before
22558 `require'ing rmail and mailalias to prevent infinite recursion.
22559
22560 2000-01-08 Dave Love <fx@gnu.org>
22561
22562 * emacs-lisp/backquote.el: Remove inappropriate customization
22563 (allowing custom.el to use backquote).
22564
22565 2000-01-07 Dave Love <fx@gnu.org>
22566
22567 * add-log.el (add-log-debugging): Deleted.
22568 (add-change-log-entry): Treat a backup FILE-NAME as its parent
22569 file. Remove debugging code.
22570 (change-log-get-method-definition, change-log-name): Add doc.
22571 (change-log-sortable-date-at): New function.
22572 (change-log-merge): New command.
22573
22574 * time.el (display-time-string-forms): Make the Mail string active.
22575 (display-time-update): Provide help-echo for load average.
22576
22577 * bindings.el (make-mode-line-mouse2-map): New function.
22578 (mode-line-modified): Use it and simplify.
22579 (mode-line-mule-info): Provide help-echo info.
22580 (minor-mode-alist): Activate the strings.
22581 (make-mode-line-mouse-sensitive): Simplify for
22582 mode-line-buffer-identification.
22583
22584 2000-01-07 Gerd Moellmann <gerd@gnu.org>
22585
22586 * play/pong.el: New file.
22587
22588 2000-01-06 Dave Love <fx@gnu.org>
22589
22590 * array.el: Assorted cleanups for compiler warnings, doc strings,
22591 `array-' prefix for symbols.
22592
22593 2000-01-05 Dave Love <fx@gnu.org>
22594
22595 * textmodes/outline.el (outline-mode-menu-bar-map):
22596 Add outline-headers-as-kill.
22597 (outline-mode): Define imenu-generic-expression.
22598 (outline-headers-as-kill): New command.
22599
22600 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
22601 from paragraph-start.
22602 (paragraph-indent-minor-mode): New command.
22603
22604 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
22605 M-C-e, M-C-h, C-j, C-xnd, TAB.
22606 (fortran-mode): Set beginning-of-defun, end-of-defun.
22607 (fortran-column-ruler): Simplify.
22608 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
22609 (fortran-with-subprogram-narrowing): Likewise.
22610 (fortran-indent-subprogram): Call mark-defun.
22611 (fortran-check-for-matching-do): Change narrowing.
22612
22613 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
22614 (cl-lucid-hash-tag): Delete.
22615 (cl-hash-table-p): Correct test for native table.
22616 (cl-hash-table-count): Use hash-table-count.
22617
22618 * browse-url.el (browse-url): Fix case of
22619 browse-url-browser-function being an alist.
22620
22621 2000-01-05 Carsten Dominik <cd@gnu.org>
22622
22623 * textmodes/reftex-vars.el (reftex-parse-file-extension)
22624 (reftex-index-phrase-file-extension): New options.
22625
22626 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
22627 Use new option `reftex-index-phrase-file-extension'.
22628
22629 * textmodes/reftex.el (reftex-access-parse-file): Use new option
22630 `reftex-parse-file-extension'.
22631
22632 2000-01-05 Dave Love <fx@gnu.org>
22633
22634 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
22635 (beginning-of-defun-raw): Use it.
22636 (end-of-defun): New variable.
22637 (end-of-defun): Use it.
22638 (check-parens): New command.
22639
22640 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
22641
22642 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
22643 (hs-show-block): Don't use `mapcar' when not accumulating.
22644
22645 Fix buglet in local variables initialization.
22646
22647 2000-01-05 Andreas Schwab <schwab@suse.de>
22648
22649 * hscroll.el (hscroll): Doc fix.
22650
22651 2000-01-05 Carsten Dominik <cd@gnu.org>
22652
22653 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
22654 Require idlw-toolbar.
22655
22656 * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
22657 file idlw-rinfo.el.
22658 (idlwave-customize): Load must read file idlw-shell.el.
22659 (idlwave-create-customize-menu): Load must read file idlw-shell.el.
22660
22661 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
22662
22663 * progmodes/idlw-shell.el: Also provide idlwave-shell
22664 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
22665 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
22666
22667 * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
22668 both reftex-dcr and reftex-vcr.
22669
22670 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
22671
22672 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22673
22674 * ps-print.el: PostScript code now is in separate files, doc fix.
22675 (ps-print-version): New version number (5.0.3).
22676 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
22677 local.
22678 (ps-spool-config): Initialization fix.
22679 (ps-print-prologue-1, ps-print-prologue-2)
22680 (ps-print-duplex-feature): PostScript code moved to separated file.
22681 (ps-background-image): Little code reformating.
22682 (ps-begin-file, ps-begin-job): Fix code.
22683 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
22684 (ps-prologue-file): New fun.
22685
22686 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
22687
22688 * ps-vars.el: Eliminated.
22689
22690 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
22691 `;;;###autoload'.
22692
22693 * ps-print.el: ps-vars eliminated, doc fix.
22694 (ps-print-version): New version number (5.0.2).
22695 (ps-spool-config): Initialization fix.
22696 (ps-print-customize): New fun.
22697
22698 2000-01-04 Gerd Moellmann <gerd@gnu.org>
22699
22700 * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
22701
22702 2000-01-04 Dave Love <fx@gnu.org>
22703
22704 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
22705 menu items.
22706
22707 2000-01-03 Dave Love <fx@gnu.org>
22708
22709 * elide-head.el (elide-head) [defgroup]: Add :version.
22710
22711 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
22712 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
22713 Use `cl-hash-table-p', not `hash-table-p'.
22714 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
22715
22716 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22717
22718 * faces.el (face-read-integer, read-face-attribute)
22719 (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
22720
22721 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
22722
22723 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
22724 at comment end, and re-insert them after filling.
22725
22726 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22727
22728 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
22729 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
22730 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
22731
22732 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22733
22734 * term/x-win.el (xw-defined-colors): Call color-supported-p,
22735 the new name of face-color-supported-p.
22736
22737 * term/w32-win.el (xw-defined-colors): Likewise.
22738
22739 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
22740
22741 * simple.el (completion-setup-function): Count completion-size
22742 from minibuffer-prompt-end, not from point-min.
22743
22744 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
22745
22746 * faces.el (read-face-attribute, defined-colors, color-defined-p):
22747 Pass the frame to tty-color-* functions.
22748 (display-color-p, frame-set-background-mode): Pass the frame to
22749 tty-display-color-p.
22750
22751 * term/tty-colors.el (tty-defined-color-alist): Renamed from
22752 tty-color-alist.
22753 (tty-color-alist, tty-modify-color-alist): New functions.
22754 (tty-color-define, tty-color-clear, tty-color-approximate)
22755 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
22756 optional parameter FRAME.
22757
22758 2000-01-01 Gerd Moellmann <gerd@gnu.org>
22759
22760 * image.el (create-image, defimage): Don't assume image data is
22761 a string.
22762
22763 * image.el (defimage): Handle specifications containing :data
22764 instead of :file.
22765 (image-type-from-data): New function.
22766 (image-type-from-file-header): Use it.
22767 (create-image): Add parameter DATA-P.
22768
22769 See ChangeLog.8 for earlier changes.
22770
22771 ;; Local Variables:
22772 ;; coding: iso-2022-7bit
22773 ;; End:
22774
22775 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
22776 Copying and distribution of this file, with or without modification,
22777 are permitted provided the copyright notice and this notice are preserved.