(mark-paragraph): Clarify doc. Clarify
[emacs.git] / lisp / ChangeLog
blobd4e3d12b3f6cd3af31c06ee8ac374af2c0f2e7a6
1 2001-11-30  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
3         * textmodes/paragraphs.el (mark-paragraph): Clarify doc.  Clarify
4         error message.  Suggestion from Richard Stallman.
6 2001-11-29  Kai Grossjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8         * textmodes/paragraphs.el (mark-paragraph): Allow prefix arg.
10 2001-11-30  Andre Spiegel  <spiegel@gnu.org>
12         * vc-cvs.el (vc-cvs-parse-status): Store file state in property,
13         don't just return it.
15 2001-11-30  Eli Zaretskii  <eliz@is.elta.co.il>
17         * menu-bar.el (menu-bar-read-lispref, menu-bar-read-lispintro)
18         (menu-bar-read-emacs-man, search-emacs-glossary)
19         (emacs-index-search, elisp-index-search): New functions.
20         (apropso-documentation, apropos, apropos-value, apropos-variable)
21         (apropos-commands): Modify menu item names and help text.
22         (elisp-index-search, emacs-index-search, emacs-glossary):
23         New menu items.
24         (menu-bar-manuals-menu): Move the Ordering Manuals item to a
25         submenu.
26         (info-elisp, info-elintro): New menu items.
27         (apropos): Modify the menu item name.
29 2001-11-30  Stefan Monnier  <monnier@cs.yale.edu>
31         * emacs-lisp/lisp-mode.el (read-if): Add lisp-indent-function prop.
33         * textmodes/outline.el (outline-promote, outline-demote): Typo.
35         * man.el (man-follow-mouse): New function.
36         (Man-mode-map): Bind mouse-2 to it.
37         (Man-match-substring): Remove.  Replace with `match-string'.
38         (man): Use the `default-value' argument to `read-string'.
39         (Man-fontify-manpage): Add mouse-face to cross references.
41         * emacs-lisp/cl-macs.el (shiftf): Fix more.  Simplify.
43 2001-11-29  Stefan Monnier  <monnier@cs.yale.edu>
45         * emacs-lisp/crm.el (completing-read-multiple): Better preserve
46         the value of require-match in minibuffer-completion-confirm.
47         Use crm-local-completion-map.
49         * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
50         (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
51         (cl-make-type-test): Use char-valid-p for `character'.
53         * info.el (Info-complete-next-re, Info-complete-cache): New vars.
54         (Info-complete-menu-item): Rewrite.  Add the ability to search
55         several sequential nodes.  Add a simple caching mechanism.
56         (Info-goto-index): New function extracted from Info-index.
57         (Info-index): Use it.  Add completion to the interactive spec.
58         (Info-menu-update): Simplify call to `Info-complete-menu-item'.
60 2001-11-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
62         * COPYING: Removed.
64 2001-11-29  Dave Love  <fx@gnu.org>
66         * progmodes/fortran.el: Fontify rewind, backspace.  Doc fixes.
67         (fortran-window-create, fortran-window-create-momentarily):
68         Rewrite, moving error condition.
69         (fortran-beginning-do, fortran-beginning-if): Fix regexps.
70         (fortran-mode-syntax-table): Revert last change.
72         * international/mule.el: Doc fixes.
73         (map-charset-chars): New function.
74         (register-char-codings): Use it to cope with generic chars in
75         safe-chars.
77 2001-11-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
79         * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
81         * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
83         * play/studly.el (studlify-word, studlify-region)
84         (studlify-buffer): Fix doc-string.
85         (studlify-buffer): Add autoload cookie.
87 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
89         * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
90         (outline-up-heading-all): Remove.
91         (hide-sublevels): Move to end-of-heading before calling flag-region.
92         (outline-copy-overlay, outline-discard-overlays): Remove.
93         (outline-flag-region): Use `remove-overlays'.
94         Don't move to end-of-heading.
95         (outline-next-visible-heading, outline-back-to-heading)
96         (outline-on-heading-p): Use outline-invisible-p.
97         (outline-font-lock-level): Use outline-up-heading's new arg.
98         (outline-minor-mode): Simplify.
99         (outline-map-tree, outline-reveal-toggle-invisible): New funs.
100         (outline): Put a `reveal-toggle-invisible' property.
101         (outline-level-heading): New var.
102         (outline-insert-heading, outline-promote, outline-demote)
103         (outline-toggle-children): New commands.
105         * progmodes/hideif.el (hif-end-of-line): New function.
106         (hide-ifdef-mode): Set line-move-ignore-invisible.
107         (hide-ifdef-region-internal): New function.
108         (hide-ifdef-region): Use it.
109         (hif-defined): Return an integer.
110         (hif-infix-to-prefix): Remove.
111         (hif-tokenize): Parse from the buffer rather than from a string.
112         Correctly tokenize integers.  Use forward-comment.
113         (hif-expr): Use hif-or.
114         (hif-term): Use hif-and.
115         (hif-factor): Use hif-not.  Handle numbers properly.
116         Don't require parenthesis around `defined's argument.
117         (hif-and, hif-or, hif-not): New funs.
118         (hif-canonicalize): Pass a region to hif-tokenize.  Use hif-not.
119         (hif-hide-line): Don't hide the \n before the line.
120         (hif-possibly-hide): Correctly handle numeric evaluation results.
122         * progmodes/make-mode.el: Use line-(end|beginning)-position.
123         (makefile-mode): Set indent-line-function.
124         (makefile-browser-insert-continuation): Use with-current-buffer.
125         (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
127 2001-11-28  Karl Fogel  <kfogel@red-bean.com>
129         * isearch.el (isearch-yank-internal): New helper function.
130         (isearch-yank-char): New function.
131         (isearch-yank-word, isearch-yank-line): Rewrite to use
132         isearch-yank-internal.
134 2001-11-28  Eli Zaretskii  <eliz@is.elta.co.il>
136         * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
137         aren't supported.  Print a message to that effect if invoked.
139 2001-11-27  Stephen Eglen  <stephen@gnu.org>
141         * locate.el (locate): Put point at first matching file rather
142         than top of buffer.
144 2001-11-27  Stefan Monnier  <monnier@cs.yale.edu>
146         * reveal.el: New file.
148         * progmodes/hideif.el: Misc cleanup.
149         (hide-ifdef-mode-submap): Put the def in the defvar.
150         Use substitute-key-definition.
151         (hide-ifdef-mode): Use define-minor-mode.
152         (hif-outline-flag-region): Remove.
153         (hif-show-all): Define in terms of hif-show-ifdef-region.
154         (hif-after-revert-function): Rename from hif-before-revert-function.
155         (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
156         (hif-tokenize): Use with-syntax-table.
157         (hif-make-range): Use `else' also for `else-p'.
158         (hif-range-else-p): Remove.
159         (hif-find-range): Simplify.
160         (hif-hide-line): Don't bother preserving buffer-modified-p.
161         (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
162         Don't use selective-display and inhibit-read-only.
164         * subr.el (copy-overlay, remove-overlays): New funs.
166         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
168 2001-11-27  Sam Steingold  <sds@gnu.org>
170         * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
171         * lazy-lock.el, mouse-sel.el, mail/feedmail.el
172         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
173         * obsolete/c-mode.el, obsolete/cplus-md.el
174         * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
175         * term/sun-mouse.el, textmodes/artist.el:
176         Converted backquote to the new style.
177         * mouse.el, reposition.el: Likewise (in comments).
178         * expand.el: Likewise (in a string).
180 2001-11-27  Richard M. Stallman  <rms@gnu.org>
182         * cus-edit.el (custom-load-symbol): Don't always load locate-library.
184 2001-11-26  Richard M. Stallman  <rms@gnu.org>
186         * wid-edit.el (widget-toggle-value-create): On graphic terminal,
187         if :on-glyph or :off-glyph is a list, eval it and store it back.
188         (checkbox): Quote the values for :on-glyph and :off-glyph.
190         * cus-start.el (recursive-load-depth-limit): Delete item.
192 2001-11-26  Stefan Monnier  <monnier@cs.yale.edu>
194         * help-fns.el (describe-categories, help-describe-category-set): New.
195         describe-categories moved here from src/category.c.
197 2001-11-26  Sam Steingold  <sds@gnu.org>
199         * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
200         arguments to `insert' are strings.
202 2001-11-26  Richard M. Stallman  <rms@gnu.org>
204         * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
206 2001-11-26  Eli Zaretskii  <eliz@is.elta.co.il>
208         * loaddefs.el: Regenerated.
210         * international/mule-diag.el: Require help-fns instead of
211         help-funs.
213         * help-fns.el: Renamed from help-funs.el.
215         * startup.el (command-line-1): Don't try to call process-list if
216         it is not fboundp.
218 2001-11-26  Sam Steingold  <sds@gnu.org>
220         * frame.el (show-trailing-whitespace): Remove :set argument (the
221         value was essentially identical to the defalt).
223 2001-11-26  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
225         * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
227         * icomplete.el (icomplete-minibuffer-setup): Likewise.
229         * hilit-chg.el (hilit-chg-set): Likewise.
231         * speedbar.el (speedbar-mode): Likewise.
233         * calendar/calendar.el (calendar-mode): Likewise.
235         * play/yow.el (psychoanalyze-pinhead): Use insert instead of
236         insert-string.
238         * play/gamegrid.el (gamegrid-init-buffer): Likewise.
240         * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
242         * term/sun-mouse.el (sun-yank-selection): Likewise.
244         * textmodes/bib-mode.el (return-key-bib): Likewise.
246         * calendar/appt.el (appt-disp-window): Likewise.
248         * calendar/diary-lib.el (list-diary-entries): Likewise.
250         * array.el (array-reconfigure-rows): Likewise.
252         * filecache.el (file-cache-minibuffer-complete): Likewise.
254         * obsolete/cplus-md.el (fill-c++-comment): Likewise.
256         * strokes.el (strokes-prompt-user-save-strokes): Likewise.
258         * allout.el (outline-version, outline-open-topic)
259         (outline-rebullet-heading, outline-insert-listified)
260         (outline-latex-verbatim-quote-curr-line)
261         (outline-latexify-one-item, outlineify-sticky): Likewise.
263         * vc.el (vc-next-action-on-file): Likewise.
264         (vc-dired-mode): Remove make-local-hook.
266 2001-11-26  Andre Spiegel  <spiegel@gnu.org>
268         * vc.el (vc-find-version): New function.
269         (vc-version-other-window): Redefined in terms of the above.
271         * log-view.el (log-view-find-version): New function.
272         (log-view-mode-map): Bind it to `f'.
274 2001-11-26  Gerd Moellmann  <gerd@gnu.org>
276         * language/devan-util.el (dev-char-glyph): Escape `"' in
277         string literals.
278         (dev-glyph-glyph, dev-glyph-glyph-2)
279         (devanagari-compose-syllable-region): Likewise.
281 2001-11-26  Richard M. Stallman  <rms@gnu.org>
283         * window.el (save-selected-window): No error if saved window is dead.
285         * help-funs.el (describe-syntax): Put (interactive) after doc string.
287 2001-11-26  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
289         * international/quail.el (quail-help): Require help-mode in
290         top-level instead.
292         * iswitchb.el (iswitchb-exhibit): Use insert instead of
293         insert-string.
295         * icomplete.el (icomplete-exhibit): Likewise.
297 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
299         * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
300         (diff-hunk-kill): Simplify.
301         (diff-post-command-hook): Only apply to a single hunk.
302         (diff-hunk-text): Make `char-offset' non-optional.
303         (diff-find-text): Return a cons cell.
304         (diff-find-approx-text): New fun.
305         (diff-find-source-location): Use it.
306         (diff-apply-hunk, diff-test-hunk, diff-goto-source):
307         Adapt to new retval of diff-find-text.
309         * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
310         rather than integer- representation of dates.
312         * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
314         * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
315         (syntax-after): New fun.
317         * help-funs.el (describe-syntax): New fun.
319         * font-lock.el (font-lock-cache-state, font-lock-cache-position)
320         (font-lock-ppss-stats, font-lock-ppss): Remove.
321         (font-lock-fontify-syntactically-region): Remove tuning code.
322         (font-lock-compile-keywords): Fix off-by-one bug.
323         (font-lock-set-defaults): Don't set removed vars.
324         (c-keywords): Add `inline'.
325         (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
327         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
328         Set syntax-begin-function.
329         (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
330         (lisp-interaction-mode): Don't set local-abbrev-table any more.
331         (lisp-mode-auto-fill): Use syntax-ppss and obey
332         comment-auto-fill-only-comments.
333         (lisp-fill-paragraph): Use syntax-ppss.
335 2001-11-25  ShengHuo ZHU  <zsh@cs.rochester.edu>
337         * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
338         version of rmail-enable-mime.
339         (rmail-forward): Use it.
341 2001-11-25  Richard M. Stallman  <rms@gnu.org>
343         * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
345         * international/quail.el (quail-keyboard-layout-button):
346         Define button type.
347         (quail-keyboard-customize-button): Likewise.
348         (quail-help): Use those button types.  Require `help-mode'.
349         Avoid altering the argument `package'.
351         * help-mode.el (help-function, help-variable, help-face)
352         (help-coding-system, help-input-method, help-character-set):
353         Define each button type with its own explicit define-button-type.
355         * language/devan-util.el: Comment out parts of the file
356         which apparently are garbled.
358 2001-11-25  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
360         * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
361         insert-string.
363 2001-11-25  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
365         * play/snake.el (snake-mode): Remove make-local-hook.
367         * play/tetris.el (tetris-mode): Likewise.
369         * play/decipher.el (decipher-mode): Likewise.
371         * tmm.el (tmm-add-prompt): Likewise.
373 2001-11-25  Sam Steingold  <sds@gnu.org>
375         * menu-bar.el (menu-bar-apropos-menu): New variable.
376         Moved all `apropos' bindings to this menu.
377         (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
379 2001-11-24  KAWABATA, Taichi <batta@beige.ocn.ne.jp>
381         The following changes are for new indian languages support based
382         on Unicode charset and CDAC fonts.
384         * international/mule-conf.el: Change indian-1-column charset to
385         indian-glyph charset.
387         * international/characters.el: Adjusted for the change of
388         indian-1-column -> indian-glyph.
390         * international/fontset.el: Delete the setting for indian-1-column
391         and add the setting for indian-glyph in the default fontset.
393         * language/indian.el: Completely re-written.
395         * language/devanagari.el: Completely re-written.
397         * language/devan-util.el: Completely re-written.
399         * language/ind-util.el: New file.
401 2001-11-24  Richard M. Stallman  <rms@gnu.org>
403         * startup.el (command-line-1): Don't do startup screen
404         if a subprocess is running.  Call the startup screen buffer
405         "GNU Emacs".  Make a special mode-line-format for it.
407         * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
408         (browse-url-galeon): Use that variable.
410         * mail/supercite.el (sc-toggle-var): Don't use set-variable or
411         eval-expression.  Eval and set the variable simply.
413         * files.el (temporary-file-directory): Use defcustom.
414         (small-temporary-file-directory): Likewise.
415         (normal-backup-enable-predicate): Move down in file
416         after definition of temporary-file-directory.
418         * bindings.el (last-buffer, unbury-buffer): Doc fixes.
420 2001-11-24  Colin Walters  <walters@debian.org>
422         * calc/calc-ext.el (calc-init-extensions): Update the rest of the
423         autoload names to match files renamed on initial calc import.
425         * calc/calc.el (Commentary): Cleanup, and add logistic curve
426         fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
428 2001-11-23  Colin Walters  <walters@debian.org>
430         * Makefile.in (finder_setwins, setwins): Include Calc again.
432         * calc/calc-rules.el: Add header comment.
434 2001-11-23  Andre Spiegel  <spiegel@gnu.org>
436         * vc.el (with-vc-properties): Don't bind `filename' locally.
437         (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
438         to avoid name clashes.  Fix `lisp-indent-function' property for
439         both.
441 2001-11-23  Francesco Potorti`  <pot@gnu.org>
443         * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
445 2001-11-22  Colin Walters  <walters@debian.org>
447         * calc/calc-misc.el (report-calc-bug):
448         Use `reporter-prompt-for-summary-p'.
450         * calc/INSTALL, calc/Makefile: Remove.
452 2001-11-22  Miles Bader  <miles@gnu.org>
454         * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
455         (reb-match-2, reb-match-3): Add dark-background variants.
457 2001-11-22  Colin Walters  <walters@debian.org>
459         * calc/calc-misc.el (calc-info): Don't perform voodoo, just
460         (info "Calc").
461         (report-calc-bug): Use reporter.el.
463         * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
465 2001-11-21  Richard M. Stallman  <rms@gnu.org>
467         * which-func.el (which-function): Call imenu--make-index-alist
468         if necessary to get a list of functions.
469         (which-function-imenu-failed): New variable.
470         (which-func-update): Handle all visible windows.
471         (which-func-update-1): New subroutine broken out of which-func-update.
473         * files.el (temporary-file-directory, null-device)
474         (small-temporary-file-directory): Definitions moved up.
476         * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
477         (cperl-non-problems, cperl-praise): Doc fixes.
479         * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
480         (sh-mode-syntax-table): Function restored.
481         Variable set up for use by function sh-mode-syntax-table.
482         (sh-set-shell): Set the syntax table.
484         * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
486         * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
488         * international/encoded-kb.el: Don't alter minor-map-alist.
490 2001-11-20  Kai Grossjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
492         * files.el (auto-save-file-name-transforms): Put remote files in
493         temporary-file-directory rather than /tmp.
495 2001-11-21  Colin Walters  <walters@debian.org>
497         * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
498         of (function ...) wrapper.
500 2001-11-20  Stefan Monnier  <monnier@cs.yale.edu>
502         * derived.el (define-derived-mode): Create the abbrev-table
503         from inside the `defvar'.
505         * jit-lock.el (jit-lock-defer-time): New var.
506         (jit-lock-defer-timer, jit-lock-buffers): New vars.
507         (jit-lock-mode): Initialize them.  Cancel the timers more carefully.
508         (jit-lock-function): Defer fontification if requested.
509         (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
510         (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
511         text property.
512         (jit-lock-deferred-fontify): New fun.
514 2001-11-20  Richard M. Stallman  <rms@gnu.org>
516         * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
517         Set local-abbrev-table to lisp-mode-abbrev-table.
519         * emacs-lisp/re-builder.el (reb-mode):
520         Don't use define-derived-mode.  Call kill-all-local-variables.
522         * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
523         Don't use define-derived-mode.
525         * help-mode.el (help-mode): Undo 2001-10-07 change.
527         * replace.el (occur-mode): Undo 2001-5-20 change.
529 2001-11-20  Jason Rumney  <jasonr@gnu.org>
531         * w32-fns.el (w32-system-coding-system): Change to an alias for
532         locale-coding-system.
533         (set-w32-system-coding-system): Document the above change.
534         Set locale-coding-system instead.
536 2001-11-20  Richard M. Stallman  <rms@gnu.org>
538         * ruler-mode.el: Add pagination.
539         (ruler-mode-toggle-show-tab-stops): No need to
540         test `ruler-mode' variable.
542 2001-11-20  Eli Zaretskii  <eliz@is.elta.co.il>
544         * play/landmark.el: Mark lm-mode as special.
546         * play/gomoku.el: Mark gomoku-mode as special.
548 2001-11-20  Juanma Barranquero  <lektu@terra.es>
550         * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
551         (top-level): Bind it to C-c C-b.
552         (re-builder): Don't re-enter RE Builder Mode.
554         * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
556 2001-11-20  Stefan Monnier  <monnier@cs.yale.edu>
558         * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
559         `manual-program'.
561         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
562         to a line without a comment.
564 2001-11-20  Eli Zaretskii  <eliz@is.elta.co.il>
566         * dired.el (dired-listing-switches): Mention in the doc string
567         that some switches are not supported by ls-lisp.el
569 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
571         * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
572         (imenu--create-keymap-2): Remove.
573         (imenu--create-keymap-1): Simplify, remove third argument.
574         (imenu--generic-function): Use dolist.
575         (imenu-find-default): New function.
576         (imenu--completion-buffer): Use it.
577         (imenu--mouse-menu): Use popup-menu.
578         (imenu--menubar-select): Return t rather than calling imenu.
580         * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
581         New functions, extracted from fill-region-as-paragraph.
582         (fill-region-as-paragraph): Use them.
583         Use an end marker instead of eob.
584         Ignore whitespace-only fill-prefixes when indenting according to mode.
585         Simplify the loop that searches for spaces backwards.
587         * textmodes/picture.el (picture-vertical-step)
588         (picture-horizontal-step): Don't use defconst for variables.
590         * mail/mail-extr.el: Use backquote/dolist/mapc/when.  Docstring fixes.
591         (mail-extract-address-components): Downcase domain names.
592         (mail-extr-delete-char): Remove.  Use delete-char instead.
594         * emulation/pc-select.el: Doc string fixes.
595         (pc-selection-mode): Don't treat macos as a tty.
597         * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
599         * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
601         * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
602         (mouse-wheel-progessive-speed): New var.
603         (mwheel-scroll): Use it and handle float values.
605         * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
607         * iswitchb.el (iswitchb-mode): Use define-minor-mode.
608         (iswitchb): Fix the case where the result was selected with the mouse.
609         (iswitchb-completion-help): Use the normal *Completions* now that
610         mouse selection works.
611         (iswitchb-minibuffer-setup): Simplify.
613         * newcomment.el (comment-column, comment-style, comment-multi-line)
614         (comment-auto-fill-only-comments): Remove :group arg.
615         (comment-padding): Add :type.
616         (comment-indent-new-line): Ignore comment-auto-fill-only-comments
617         if called interactively.
619 2001-11-19  Colin Walters  <walters@verbum.org>
621         * calc/calc.el (toplevel): Add comment and version header.
622         (calc-init-base): Bump version to 2.02f, update date.
624 2001-11-19  Richard M. Stallman  <rms@gnu.org>
626         * net/browse-url.el: Support Mozilla and Galeon.
627         By default, find the installed browser whichever it is.
628         (browse-url-mozilla): New function.
629         (browse-url-mozilla-sentinel): New function.
630         (browse-url-galeon, browse-url-galeon-sentinel): New functions.
631         (browse-url-default-browser): New function.
632         (browse-url-process-environment): Use browse-url-browser-display.
633         (browse-url-browser-display): Renamed from browse-url-netscape-display.
634         (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
635         (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
636         (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
637         (browse-url-browser-function): New default, new options.
639 2001-11-19  Sam Steingold  <sds@gnu.org>
641         * bindings.el (last-buffer, unbury-buffer): New function.
642         (mode-line-unbury-buffer): Use `unbury-buffer'.
644 2001-11-18  Stephen Eglen  <stephen@gnu.org>
646         * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
647         control behaviour when no further completion is possible.
649 2001-11-19  Colin Walters  <walters@verbum.org>
651         * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
652         (math-showing-full-precision, math-with-extra-prec, math-working)
653         (calc-with-default-simplification)
654         (calc-with-trail-buffer): Use backtick.
655         (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
656         (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
657         (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
658         (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
659         (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
660         (Math-num-integerp, Math-bignum-test, Math-equal-int)
661         (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
662         (calc-record-compilation-date-macro): Deleted.  Callers updated.
663         (math-format-radix-digit): Move to calc-bin.el.
665         * calc/calc.el (calc-record-compilation-date): Remove.
666         (calc-bug-address): Update.
667         (calc-settings-file): Use `user-init-file'.
669         * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
670         Handle null `calc-settings-file'.
672         * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
673         * calc/calc-keypd.el (calc-keypad-mode): New.
674         (calc-do-keypad): Use it.
675         (calc-keypad-map): Move into `calc-keypad-mode'.
677         * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
678         to defalias argument.
680         * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
681         (calcFunc-floor): Ditto.
683         * calc-units.el (calcFunc-usimplify): Ditto.
685         * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
686         * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
687         * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
688         * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
689         * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
690         * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
691         * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
692         * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
693         * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
694         * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
695         * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
696         and move them before their first use.  Use `when', `unless'.
697         Remove trailing periods from error forms.  Add description and
698         headers suggested by Emacs Lisp coding conventions.
700 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
702         * newcomment.el (comment-indent):
703         Fix misindentation for comment-only lines.
704         (comment-indent-new-line): Only obey comment-multi-line if the
705         comment-ender is not the end-of-line.
707 2001-11-19  Richard M. Stallman  <rms@gnu.org>
709         * net/net-utils.el (network-connection-service-abbrev-alist):
710         New variable.
712         * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
713         Advance to start of 3rd sexp by moving fwd and backing over it.
714         At first three elements, act like defun.
716         * delsel.el (delete-selection-pre-hook): Handle and resignal
717         file-supersession errors to interact properly with userlock.el.
719 2001-11-18  Richard M. Stallman  <rms@gnu.org>
721         * progmodes/fortran.el (fortran-mode-syntax-table):
722         Specify punctuation syntax for backslash.
724         * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
725         All calls deleted.
727         * international/mule-util.el (string-to-sequence): Make it obsolete.
728         (string-to-list, string-to-vector): Implement them directly
729         using append and vconcat, not with string-to-sequence.
731         * startup.el (command-line): Set abbrevs-changed to nil after
732         reading the init file and the abbrevs file.
734         * isearch.el (isearch): Use magenta2 as bg for (background light)
736 2001-11-17  Richard M. Stallman  <rms@gnu.org>
738         * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
740         * simple.el (minibuffer-history-sexp-flag): Doc fix.
742 2001-11-17  Stefan Monnier  <monnier@cs.yale.edu>
744         * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
745         If set and if applicable, add a regexp to highlight defun-like
746         text inside comments and strings.
747         (font-lock-fontify-keywords-region): Pass that new arg.
748         (font-lock-set-defaults): Move the code to set `font-lock-keywords'
749         to the end and pass that new arg.
750         (c-font-lock-keywords-2): Fix regex for labels.
751         (font-lock-match-c++-style-declaration-item-and-skip-to-next):
752         Make it work when LIMIT is several lines further.
753         (c-font-lock-keywords-3, c++-font-lock-keywords-3)
754         (objc-font-lock-keywords-3, java-font-lock-keywords-3):
755         Use backquote and make the regexes for `int a, b, c;' work on
756         multiple lines.
758         * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
759         (font-lock-defaults-alist): Don't change it any more.
760         (reb-subexp-mode-map): Cleanup.
762         * custom.el (custom-current-group-alist): New var.
763         (custom-declare-group): Set it.
764         (custom-current-group): New fun.
765         (custom-declare-variable, custom-handle-all-keywords):
766         Use it as a default if no :group argument is specified.
768         * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
769         (standard-keyboard-coding-systems): New var.
770         (set-locale-environment): Use it to decide whether or not to call
771         set-keyboard-coding-system.
772         (locale-language-names): Use \"French\" for "fr".
774 2001-11-17  Richard M. Stallman  <rms@gnu.org>
776         * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
777         (add-to-list): Delete compatibility code.
778         (checkdoc-next-message-error): Doc fix.
780 2001-11-17  Stephen Eglen  <stephen@gnu.org>
782         * locate.el (locate): Show default locate pattern within the
783         prompt, but don't insert it into the minibuffer contents.
784         Catch the case when pattern is the empty string.
786 2001-11-17  Eli Zaretskii  <eliz@is.elta.co.il>
788         * language/european.el ("French"): New language environment.
790 2001-11-16  Richard M. Stallman  <rms@gnu.org>
792         * calendar/todo-mode.el (todo-save): Fix previous change.
794         * subr.el (functionp): Do use cdr-safe on object.
796 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
798         * bindings.el (mode-line-mode-name): Only put the help-echo property
799         if the local-map property was put as well.
800         (global-map): Bind switch-frame, delete-frame, iconify-frame
801         and make-frame-visible events.
803         * emacs-lisp/elp.el (elp-not-profilable): New var.
804         (elp-not-profilable-p): New function.
805         (elp-instrument-function): Use it.  Use backquotes and push.
807         * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
808         (byte-stack+-info, byte-compile-last-warned-form)
809         (byte-compile-last-logged-file): Don't defconst a variable.
810         (no-byte-compile): Declare.
811         (byte-compile-file): Don't boundp-check no-byte-compile any more.
812         (byte-compile-defvar): Leave defconst as is.
814         * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
815         (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
816         (edebug-current-offset, edebug-old-def-name, edebug-error-point)
817         (edebug-best-error): Don't defconst a variable.
818         (edebug-read-syntax-table): Use a char-table.
819         (edebug-lemacs-specific): Remove.
820         Toplevel: Eliminate check for Lucid Emacs.
822         * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
824         * rect.el (move-to-column-force): Mark obsolete.
825         (operate-on-rectangle, delete-extract-rectangle-line)
826         (insert-rectangle, delete-whitespace-rectangle-line)
827         (open-rectangle-line, clear-rectangle-line): Use move-to-column.
828         (string-rectangle-history): New var.
829         (string-rectangle, string-insert-rectangle): Use it.
830         (delete-rectangle-line): Fix pos/column mixup and simplify.
832         * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
833         (normal-top-level, command-line, command-line-1): Simplify.
835         * tar-mode.el (tar-mode): Use define-derived-mode.
837         * view.el (view-mode-enable): Don't use make-local-hook.
839         * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
841 2001-11-16  Richard M. Stallman  <rms@gnu.org>
843         * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
844         if it doesn't make sense as anything else.
845         Don't recognize a "telephone number" at the beginning of the name.
846         (mail-extr-leading-garbage): Match non-word characters only.
848 2001-11-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
850         * startup.el (command-line-processed): Doc fix.
852         * apropos.el (apropos-next-label-button): Doc fix.
854 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
856         * comint.el (comint-mode): Simplify.
857         (make-comint-in-buffer): Run `comint-mode' only if necessary.
859         * subr.el (eval-after-load): Make it work with features as well.
861         * log-view.el (log-view-mode): Don't mark the buffer unmodified.
863         * international/mule-cmds.el (describe-input-method): Setup xref.
864         (set-language-environment): Use functionp.
865         (locale-language-names, locale-charset-language-names)
866         (locale-preferred-coding-systems): Defconst and purecopy.
868         * language/european.el (mac-roman): Add mime-charset property.
870 2001-11-15  Richard M. Stallman  <rms@gnu.org>
872         * emacs-lisp/cl.el (values, values-list, multiple-value-list)
873         (multiple-value-apply, nth-value): Use defsubst rather than defalias
874         to get better doc strings.
876 2001-11-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
878         * derived.el: Fix autoload cookie.
880 2001-11-15  Richard M. Stallman  <rms@gnu.org>
882         * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
884 2001-11-15  Stefan Monnier  <monnier@cs.yale.edu>
886         * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
888 2001-11-15  Richard M. Stallman  <rms@gnu.org>
890         * dired.el (dired-undo): Display a message to explain
891         that this does not undo file system changes.
893 2001-11-15  David Kastrup  <David.Kastrup@t-online.de>
895         * mouse-drag.el (mouse-drag-throw): Push back non-drag events
896         into `unread-command-events' instead of trying keymap
897         lookups ourselves.  This makes mouse-clicks do the right
898         thing even when keymaps of overlays are involved.
899         (mouse-drag-drag): Likewise.
901 2001-11-15  Andreas Schwab  <schwab@suse.de>
903         * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
904         characters and append anchor to pattern added to auto-mode-alist.
906 2001-11-15  Stefan Monnier  <monnier@cs.yale.edu>
908         * server.el (server-process-filter): Run pore/post-comment-hook
909         before/after visiting the file.
911         * info-look.el (makefile-mode): Add info for automake.
912         (autoconf-mode): Fix the name of the index for automake.
914         * international/latin-9.el: Give pilcrow punctuation syntax.
916 2001-11-15  Andre Spiegel  <spiegel@gnu.org>
918         * vc.el: Documentation fixes.
920 2001-11-14  Stefan Monnier  <monnier@cs.yale.edu>
922         * smerge-mode.el (smerge-match-conflict): Fix typo.
923         (smerge-diff): Be careful to read match-data early enough.
925 2001-11-14  Colin Walters  <walters@verbum.org>
927         * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
928         (calcFunc-subst): Use `defalias' instead of `fset' and
929         `symbol-function'.
931         * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
932         (calcFunc-ceil, calcFunc-round): Ditto.
934         * calc/calc-bin.el (calcFunc-clip): Ditto.
936         * calc/calc-ext.el (calcFunc-evalv): Ditto.
938         * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
940         * calc/calc-misc.el (math-fixnump, math-fixnatnump)
941         (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
943         * calc/calc-units.el (calcFunc-unsimplify): Ditto.
945         * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
946         * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
947         * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
948         * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
949         * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
950         * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
951         * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
952         * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
953         * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
954         * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
955         * calcsel2.el: Style cleanup; don't put closing parens on their
956         own line, add "foo.el ends here" to each file, and update
957         copyright date.
959         * README: Update maintainer.
961 2001-11-13  Alan Shutko  <ats@acm.org>
963         * compile.el (recompile): Use compilation-arguments if set, so as
964         to be able to M-x recompile the exact command which created a
965         compilation-mode buffer.
967 2001-11-13  Richard M. Stallman  <rms@gnu.org>
969         * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
971 2001-11-13  Gerd Moellmann  <gerd@gnu.org>
973         * mouse.el (mouse-drag-region): Don't run the up-event
974         handler if window start changed due to the down-mouse event.
976 2001-11-13  Richard M. Stallman  <rms@gnu.org>
978         * mouse.el (mouse-show-mark): Either move point to the mark
979         or use highlighting, never both.
980         (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
982 2001-11-13  Simon Josefsson  <jas@extundo.com>
984         * mail/smtpmail.el (top-level): Change maintainer to Simon
985         Josefsson, cleanup the smtpmail.el header.
987         * mail/smtpmail.el (top-level): Don't require cl or base64.
988         (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
989         (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
990         Defsubst instead of defmacro.
991         (smtpmail-intersection): Return value in reverse order.
992         (smtpmail-open-stream): Use stringp instead of string-to-list.
993         (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
994         separated from smtpmail-via-smtp.
996         * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
997         rfc2104.  Require base64 and cl.
998         (smtpmail-smtp-service): Doc fix.  :type fix.
999         (smtpmail-debug-info): Doc fix.
1000         (smtpmail-debug-verb, smtpmail-auth-credentials)
1001         (smtpmail-starttls-credentials, smtpmail-auth-supported):
1002         New variables.
1003         (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
1004         mail-utils (it is autoloaded).
1005         (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
1006         (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
1007         (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
1008         (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
1009         (smtpmail-via-smtp): Support AUTH.
1010         (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
1012 2001-11-13  Richard M. Stallman  <rms@gnu.org>
1014         * ebuff-menu.el (electric-buffer-update-highlight): New function.
1015         (electric-buffer-overlay): New variable.
1016         (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
1017         (electric-buffer-list): Likewise.
1019 2001-11-13  Per Starback  <starback@ling.uu.se>
1021         * isearch.el (isearch-whitespace-chars): Doc fix.
1022         (isearch-mode): Handle negative search-slow-window-lines correctly.
1024 2001-11-13  Stefan Monnier  <monnier@cs.yale.edu>
1026         * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
1028         * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
1029         From Emmanuel Briot <briot@act-europe.fr>.
1031 2001-11-13  Colin Walters  <walters@debian.org>
1033         * calc/calc.el (calc-unread-command): Use `unread-command-events'.
1035         * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
1036         "~/.emacs"; use `read-file-name'.
1038         * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
1039         * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
1040         * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
1041         * calc/calc.el: Use `frame-width' instead of `screen-width',
1042         `frame-height' instead of `screen-height', and,
1043         `executing-kbd-macro' instead of `executing-macro'.
1045         * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
1046         correct number of arguments.
1048         * calc/calc-aent.el (calc-do-alg-entry):
1049         Use `blink-paren-function' instead of `blink-paren-hook'.
1051 2001-11-12  Richard M. Stallman  <rms@gnu.org>
1053         * calendar/todo-mode.el (todo-save): Add save-excursion
1054         and save-restriction.
1056         * server.el (server-edit, server-done): Doc fix.
1058         * simple.el (clone-indirect-buffer): Error if major mode symbol
1059         has a no-clone-indirect property.
1060         (clone-buffer): Check for obvious errors before reading clone name.
1062         * info.el (Info-mode): Add a no-clone-indirect property.
1064 2001-11-12  Sam Steingold  <sds@gnu.org>
1066         * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
1067         set-buffer-modified-p to nil after `vc-exec-after'.
1068         * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
1069         (log-view-mode): Make read-only.
1070         (log-view-current-file): Do final `expand-file-name' in the
1071         current `default-directory'.
1072         (log-view-current-tag): Take an optional `where' arg.
1073         (log-view-diff): New user command.
1075 2001-11-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1077         * progmodes/cpp.el (cpp-choose-face): Fix typo.
1079 2001-11-12  Sam Steingold  <sds@gnu.org>
1081         * emacs-lisp/cl-indent.el (toplevel): Indent properly
1082         `generic-flet', `generic-labels', `with-accessors',
1083         `with-condition-restarts'.
1085 2001-11-12  Richard M. Stallman  <rms@gnu.org>
1087         * dired.el: Many trivial doc fixes.
1088         (dired-get-file-for-visit): New function.
1089         (dired-find-alternate-file, dired-mouse-find-file-other-window):
1090         (dired-view-file, dired-find-file-other-window, dired-display-file):
1091         (dired-find-file): Use dired-get-file-for-visit.
1093 2001-11-12  Alex Schroeder  <kensanata@yahoo.com>
1095         * sql.el (sql-mode): Doc change.
1097         * sql.el (sql-mode-syntax-table): The backslash is no longer an
1098         escape character.
1100 2001-11-12  Colin Walters  <walters@debian.org>
1102         * calc/calc-keypd.el (toplevel): Bind mouse buttons.
1103         (calc-do-keypad): Don't attempt to use nonexistent global
1104         mouse-map, use calc-keypad-map.
1105         (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
1106         (calc-keypad-left-click): Don't use mouse-map; update to new event
1107         interface.
1108         (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
1109         (calc-keypad-press): Use `unread-command-events' instead of
1110         `unread-command-char'.
1112         * calc/calc-ext.el (calc-init-extensions): Update autoload names
1113         to match files renamed on initial calc import.
1115 2001-11-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1117         * textmodes/flyspell.el (flyspell-default-dictionary):
1118         Fix previous change.
1120 2001-11-12  Richard M. Stallman  <rms@gnu.org>
1122         * textmodes/flyspell.el (flyspell-default-dictionary):
1123         Fix custom type.
1125 2001-11-11  Richard M. Stallman  <rms@gnu.org>
1127         * calendar/solar.el (solar-sunrise-and-sunset):
1128         Exchange the two extreme values of day-length.
1130         * progmodes/sh-script.el (sh-must-be-shell-mode):
1131         Allow modes derived from sh-mode.
1133         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
1134         Turn off error in some re-search-forward calls.
1136         * replace.el (query-replace-skip-read-only): New variable.
1137         (perform-replace): If that variable is non-nil, ignore matches
1138         that have a read-only property.
1140         * derived.el (define-derived-mode): Doc fix.
1142         * server.el (server-buffer-done): Test of server-existing-buffer
1143         was backwards.
1144         (server-existing-buffer): Doc fix.
1146         * textmodes/flyspell.el (flyspell-default-dictionary):
1147         Allow nil as value, and make nil the default.
1149 2001-11-11  Eli Zaretskii  <eliz@is.elta.co.il>
1151         * subdirs.el: Regenerated.
1153         * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
1154         it is not fboundp.
1155         (clipboard-yank): Ditto.
1157 2001-11-11  Colin Walters  <walters@verbum.org>
1159         The following changes are based on patches from
1160         Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
1161         <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
1163         * calc/calc.el (toplevel): Require calc-macs.
1164         (calc-minibuffer-size): New.
1165         (calcDigit-nondigit): Use it instead of `buffer-size'.
1166         (calcDigit-backspace): Likewise.
1167         (calcDigit-nondigit): Use `minibuffer-contents' instead of
1168         `buffer-string'.
1169         (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
1170         `point-min'.
1171         (calcDigit-key): Use `calc-minibuffer-contains' instead of a
1172         `save-excursion'.
1174         * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
1175         simple `setq' form.
1177         * calc/calc-ext.el: (toplevel): Require calc.
1178         (calc-fancy-prefix-map): New.
1179         (calc-fancy-prefix): Use it.
1180         (calc-fancy-prefix-other-key): New.
1182         * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
1183         (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
1184         (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
1185         (calcAlg-enter): Likewise.
1186         (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
1188 2001-11-10  Richard M. Stallman  <rms@gnu.org>
1190         * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
1191         (quietly-read-abbrev-file): Doc fix.
1193         * startup.el (command-line): Read standard abbrev
1194         file (abbrev-file-name), if it exists.
1196         * files.el (save-abbrevs): Default value is t.
1198         * progmodes/compile.el (compile-goto-error): Fix previous change
1199         in the case where subsequent errors have not been parsed yet
1200         because they are in a different source file.
1202 2001-11-10  Peter Kleiweg  <kleiweg@let.rug.nl>
1204         * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
1205         Merge two regular expressions into one.
1206         (ps-mode): Make local bindings for `comment-start' and
1207         `comment-start-skip'.
1208         (ps-mode-looking-at-nested): Simplify an if-else construct;
1209         use `set-match-data' to set the result.
1211 2001-11-10  Richard M. Stallman  <rms@gnu.org>
1213         * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
1214         Function deleted.
1215         (flyspell-correct-word): Old definition deleted.
1216         (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
1217         All references renamed too.
1219 2001-11-10  Gerd Moellmann  <gerd@gnu.org>
1221         * Makefile.in (finder_setwins, setwins): Exclude Calc.
1223 2001-11-09  Per Abrahamsen  <abraham@dina.kvl.dk>
1225         * wid-edit.el (checklist): Removed `:menu-tag'.
1226         (radio-button-choice): Ditto.
1227         (editable-list): Ditto.
1229 2001-11-09  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1231         * play/gomoku.el: Move definitions of constants to the beginning
1232         of file, before their use.
1234 2001-11-09  Richard M. Stallman  <rms@gnu.org>
1236         * textmodes/flyspell.el: Use the keymap property
1237         instead of local-map, and don't use a minor-mode map.
1238         (flyspell-mode-map): Variable deleted.
1239         Don't mess with minor-mode-map-alist.
1240         (calling add-minor-mode): Specify nil for keymap.
1241         And always use add-minor-mode, now that it exists.
1242         (flyspell-overlay-keymap-property-name): Set it to `keymap'.
1243         (flyspell-mode-on): Don't locally bind flyspell-mouse-map
1244         or flyspell-local-mouse-map.
1245         (make-flyspell-overlay): Use flyspell-mouse-map directly.
1246         (flyspell-mode): Doc fix.
1247         (flyspell-mode-on): Don't call make-local-hook.
1249 2001-11-09  Sam Steingold  <sds@gnu.org>
1251         * emacs-lisp/debug.el (debugger-make-xrefs):
1252         Add buttons to all symbols.
1254 2001-11-09  Andre Spiegel  <spiegel@gnu.org>
1256         * vc.el: Add John David Smith to credits.
1258         Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
1260         * vc-hooks.el (vc-error-occured): Backquotified.
1261         (vc-file-prop-obarray): Use prime length for better efficiency.
1263         * vc.el (vc-clear-context): Fill obarray with 0, not nil.
1265 2001-11-09  Eli Zaretskii  <eliz@is.elta.co.il>
1267         * info.el (Info-file-list-for-emacs): Add entries for Calc.
1269 2001-11-09  Miles Bader  <miles@gnu.org>
1271         * subr.el (functionp): Don't consider macros as functions.
1273 2001-11-08  Miles Bader  <miles@gnu.org>
1275         * subr.el (functionp): Make work correctly for macros and unbound
1276         symbols.
1278         * comint.el (comint-send-input): Fix description of
1279         `comint-process-echoes' in the doc-string.
1281 2001-11-08  Eli Zaretskii  <eliz@is.elta.co.il>
1283         * international/mule.el (make-translation-table): Doc fix.
1284         Suggested by Alex Schroeder <alex@gnu.org>.
1286 2001-11-07  Richard M. Stallman  <rms@gnu.org>
1288         * info.el (Info-fontify-node): Highlight every third menu item.
1290 2001-11-07  Per Abrahamsen  <abraham@dina.kvl.dk>
1292         * cus-edit.el (custom-face-value-create): Don't ignore the
1293         `customized-face' attribute when finding the current face spec.
1295 2001-11-07  Stefan Monnier  <monnier@cs.yale.edu>
1297         * subr.el (with-local-quit): New macro.
1298         (make-syntax-table): Always inherit.
1299         (functionp): Be more careful when `object' is a symbol.
1301         * dabbrev.el (dabbrev-completion): Use "*Completions*".
1303 2001-11-07  Paul Eggert  <eggert@twinsun.com>
1305         * dired.el (dired-move-to-filename-regexp):
1306         Do not distinguish between ASCII letters and non-ASCII characters.
1307         Don't allow comma except in the form "month day, year".
1308         Don't allow space between month name and comma.
1309         Clean up the code that checks for trailing period, comma, and space.
1310         Remove now-obsolete comments, and add more commentary about
1311         Japanese dates.
1312         Always gobble up trailing spaces, instead of doing it only sometimes.
1314 2001-11-07  Miles Bader  <miles@gnu.org>
1316         * paren.el (show-paren-match-face): Add dark-background variant.
1318 2001-11-06  Stefan Monnier  <monnier@cs.yale.edu>
1320         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
1321         (lisp-mode-variables): Don't set paragraph-{start,separate}.
1322         Don't disable adaptive-fill-mode.
1323         (lisp-fill-paragraph): Use tab-width rather than 8.
1324         Prevent filling the first line of docstrings.
1326 2001-11-06  Richard M. Stallman  <rms@gnu.org>
1328         * play/gomoku.el (gomoku): Doc fix.
1330         * jka-compr.el (jka-compr-partial-uncompress):
1331         Support an alternative of not using dd.
1332         (jka-compr-dd-program): Use defcustom to define this.
1333         (jka-compr-load-suffixes): Use defcustom.
1334         (jka-compr-mode-alist-additions): Use defcustom.
1336 2001-11-06  Stefan Monnier  <monnier@cs.yale.edu>
1338         * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
1339         Also work when LIMIT is further than the end of line.
1341 2001-11-06  Eli Zaretskii  <eliz@is.elta.co.il>
1343         * international/quail.el (quail-update-leim-list-file): Print the
1344         offending file name if some of its quail-define-package forms is broken.
1346 2001-11-05  Richard M. Stallman  <rms@gnu.org>
1348         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
1349         of the evaluated form.
1351 2001-11-05  Paul Eggert  <eggert@twinsun.com>
1353         * ls-lisp.el (ls-lisp-time-to-seconds): New function.
1354         (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
1355         stamps always line up by default.  Also, it uses a slightly
1356         different window to determine whether files are "recent".
1358 2001-11-05  Andrew Innes  <andrewi@gnu.org>
1360         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
1361         Don't attempt to remake autoloads before nuking .elc files.
1363 2001-11-04  Richard M. Stallman  <rms@gnu.org>
1365         * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
1366         previous-single-property-change or next-single-char-property-change
1367         returns nil.
1369         * international/mule-cmds.el (set-locale-environment):
1370         Make it interactive; make arg optional.
1372         * international/mule-diag.el (help-funs): Require help-funs.
1374 2001-11-04  Eli Zaretskii  <eliz@is.elta.co.il>
1376         * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
1378 2001-11-04  Miles Bader  <miles@gnu.org>
1380         * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
1381         shadow of the splash image grey on a dark background instead of black.
1383 2001-11-03  Stefan Monnier  <monnier@cs.yale.edu>
1385         * term.el (all faces): Don't (copy-face 'default <foo>).
1387         * term/xterm.el (function-key-map):
1388         Add entry for `ESC [ 3 ~' -> <delete>
1389         Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
1390         Use inheritance so that .emacs and terminfo take precedence.
1392 2001-11-03  Eli Zaretskii  <eliz@is.elta.co.il>
1394         * tooltip.el (tooltip-delay): Decrease to 0.7.
1395         (tooltip-hide-delay): Enlarge to 10.
1397 2001-11-03  Richard M. Stallman  <rms@gnu.org>
1399         * startup.el (fancy-splash-tail): Explain how to recover
1400         from a crash, if there was a crash.
1401         (command-line-1): Reorganize display of startup screen,
1402         to simplify the logic.  Use a temp buffer for it.
1404 2001-11-03  Eli Zaretskii  <eliz@is.elta.co.il>
1406         * frame.el (set-background-color, set-foreground-color):
1407         Call face-set-after-frame-default, to propagate the new colors to
1408         the frame's parameters alist.
1410         * calendar/timeclock.el (timeclock-out): Signal an error if
1411         timeclock-last-event is nil.
1413 2001-11-02  Stefan Monnier  <monnier@cs.yale.edu>
1415         * textmodes/fill.el (fill-context-prefix): Fix braino.
1417         * international/quail.el (quail-help):
1418         Use `help-buffer' and move `help-setup-xref' to beginning.
1420         * international/mule-cmds.el (describe-language-environment):
1421         Use `help-buffer' and move `help-setup-xref' to beginning.
1423         * international/mule-diag.el (list-character-sets)
1424         (sort-listed-character-sets, describe-character-set)
1425         (describe-coding-system, describe-fontset, list-fontsets):
1426         Use `help-buffer' and move `help-setup-xref' to beginning.
1427         (describe-char-after): Use `internal-describe-syntax-value'.
1429 2001-11-02  Richard M. Stallman  <rms@gnu.org>
1431         * mouse.el (popup-menu): If the user refuses to select
1432         from a menu, don't try to invoke the menu.
1434 2001-11-02  Miles Bader  <miles@gnu.org>
1436         * help-mode.el (help-xref): New button type.
1437         (help-function, help-variable, help-face, help-coding-system)
1438         (help-input-method, help-character-set, help-type, help-symbol)
1439         (help-back, help-info, help-customize-variable, help-customize-face)
1440         (help-function-def, help-variable-def): Use it as a supertype.
1441         Remove `action' property.
1443         * international/mule-diag.el (describe-character-set)
1444         (describe-coding-system): Pass correct args to `help-xref-button'.
1445         (sort-listed-character-sets): New button type.
1446         (list-character-sets): Use it.
1447         (list-charset-chars): New button type.
1448         (list-character-sets-1): Use it.
1450 2001-11-01  Stefan Monnier  <monnier@rum.cs.yale.edu>
1452         * indent.el (tab-always-indent, indent-for-tab-command):
1453         Remove redundant `never' setting.
1455         * fill.el (fill-region-as-paragraph): Don't forget to skip
1456         over current whitespace before looking for a preceding space.
1458 2001-11-01  Richard M. Stallman  <rms@gnu.org>
1460         * files.el (file-newest-backup): Don't pass backup file name
1461         thru file-name-sans-versions, because it never has version numbers.
1463         * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
1464         to avoid ambiguous nested loops.
1466         * files.el (find-file-noselect): Offer to change buffer-read-only
1467         only when the file's read-only status has changed from before
1468         as well as disagreeing with the buffer's current status.
1469         (buffer-file-read-only): New var, local in all buffers.
1471         * buff-menu.el (buffer-menu): Doc fix.
1472         (buffer-menu-other-window): Doc fix.
1473         (list-buffers, list-buffers-noselect): Doc fix.
1475 2001-11-01  Gerd Moellmann  <gerd@gnu.org>
1477         * startup.el (command-line): If the terminal Emacs is running on
1478         has erase char set to ^H, use the Backspace key for deleting
1479         backward, and the Delete key for deleting forward.
1481 2001-11-01  Miles Bader  <miles@gnu.org>
1483         * button.el (define-button-type): Make sure every user-defined
1484         button type has a supertype.
1486 2001-10-31  Jason Rumney  <jasonr@gnu.org>
1488         * international/mule-cmds.el (locale-language-names): Add chs and
1489         cht as aliases for Chinese-GB and Chinese-BIG5.
1491 2001-10-31  Richard M. Stallman  <rms@gnu.org>
1493         * bindings.el (mode-line-frame-identification): Add doc string.
1494         (mode-line-position, mode-line-modes): New variables.
1495         (mode-line-format): Use mode-line-position for the part
1496         that displays the position-in-buffer info.
1497         Use mode-line-modes for the part that displays major and minor modes.
1499 2001-10-31  Sam Steingold  <sds@gnu.org>
1501         * emacs-lisp/debug.el (debugger-make-xrefs): New function.
1502         (debugger-setup-buffer): Call it.
1503         (debugger-mode-map): Bind RET and mouse-2.
1505 2001-10-31  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1507         * startup.el: Document command line option --no-window-system
1508         instead of --no-windows.
1510 2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
1512         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
1514         * font-lock.el (java-font-lock-syntactic-face-function): New fun.
1515         (font-lock-defaults-alist): Use it.
1516         From David Ponce <david.ponce@wanadoo.fr>
1518         * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
1519         output of `char-after'.
1521         * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
1523         * simple.el (reindent-then-newline-and-indent): Insert the newline
1524         before indenting the first line.
1525         (undo-get-state, undo-revert-to-state): New funs.
1526         (shell-command): Don't kill the buffer even if empty.
1527         (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
1528         (transpose-subr-end2): Remove.
1529         (transpose-subr): Add `special' arg and simplify.
1530         (transpose-subr-1): Rewrite.
1531         (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
1532         (rfc822-goto-eoh): Simplify.
1534 2001-10-30  Richard M. Stallman  <rms@gnu.org>
1536         * enriched.el (enriched-face-ans): FIx previous change.
1538 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
1540         * international/iso-acc.el (iso-accents-compose): Remove a
1541         superfluous setq.
1543 2001-10-30  Eli Zaretskii  <eliz@is.elta.co.il>
1545         * buff-menu.el (list-buffers-noselect): If the buffer's name
1546         starts with a blank, but it visits a file, do show it (for files
1547         whose names start with a blank).
1549 2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
1551         * textmodes/fill.el (sentence-end-double-space)
1552         (sentence-end-without-period): Move to paragraphs.el.
1553         (fill-indent-according-to-mode): Change default to t.
1554         (fill-context-prefix): Simplify control-flow and use a more
1555         sophisticated merge that unifies both previous checks.
1556         (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
1557         (fill-nobreak-predicate): Make it into a defcustom'd hook.
1558         (fill-nobreak-p): New fun.
1559         (fill-region-as-paragraph): Use it.
1560         Handle `fill-indent-according-to-mode' slightly differently.
1561         (fill-individual-paragraphs-prefix): Simplify the control-flow.
1562         (fill-individual-paragraphs-citation): Fix.
1564         * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
1565         (paragraph-start): Change default to the `text-mode' value.
1566         (sentence-end-double-space, sentence-end-without-period):
1567         Move from fill.el.
1568         (forward-paragraph): Use `parstart' and `parsep' for temp variables
1569         rather than rebinding `paragraph-start' and `paragraph-separate'.
1571         * indent.el (indent-line-function): Change default to indent-relative.
1572         (tab-always-indent): Add an `never' setting.
1573         (indent-according-to-mode): Handle `indent-relative' and
1574         `indent-relative-maybe' specially.
1575         (indent-for-tab-command): Rename `prefix-arg' to `arg'.
1576         Handle the `never' case for `tab-always-indent'.
1577         Don't call indent-according-to-mode for indent-relative' and
1578         `indent-relative-maybe'.
1579         (insert-tab): Rename `prefix-arg' to `arg'.
1580         (indent-region): Indent the first line as well.
1581         (indent-relative): Don't mark the buffer modified if the indentation
1582         is unchanged.
1584         * textmodes/text-mode.el (paragraph-indent-minor-mode):
1585         Don't set paragraph-separate.  Set paragraph-start more carefully.
1586         Set indent-line-function.
1587         (paragraph-indent-text-mode): Use it and define-derived-mode.
1588         (text-mode-map): Remove the \t binding.
1589         (text-mode): Simplify now that the default is more favorable.
1591 2001-10-29  Stefan Monnier  <monnier@cs.yale.edu>
1593         * emacs-lisp/find-func.el (find-function-search-for-symbol):
1594         If the regexp doesn't match, use a looser one.
1595         (find-variable-noselect): Add `file' argument.
1597         * pcvs.el (cvs-mode-commit-hook): New hook.
1598         (cvs-mode-commit): Run it.
1600         * log-edit.el (log-edit): Run hook after `log-edit-files'.
1602         * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
1603         (edebug-instrument-function): Use `find-function-noselect'.
1605 2001-10-29  Richard M. Stallman  <rms@gnu.org>
1607         * term.el (term-if-emacs19): Macro deleted.
1608         Callers changed to use progn instead.
1610         * frame.el (blink-cursor-mode): Doc fix.
1612         * files.el (find-backup-file-name): Use make-backup-file-name.
1614         * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
1615         window-live-p.
1616         (edebug-set-conditional-breakpoint): Unconditionally use
1617         the former Emacs >=19 definition.
1618         (edebug-mark): Define unconditionally.
1619         (edebug-eval-expression): Always call read-from-minibuffer
1620         and specify history list.
1621         (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
1622         edebug-set-conditional-breakpoint.
1623         (edebug-emacs-version-specific): Function deleted;
1624         do the job at top level.
1625         (edebug-emacs-19-specific): Function deleted, this is the default.
1627 2001-10-29  Sam Steingold  <sds@gnu.org>
1629         * w32-fns.el (convert-standard-filename): Handle cygwin-specific
1630         "/cygdrive/LETTER/" pathnames.
1632 2001-10-29  Eli Zaretskii  <eliz@is.elta.co.il>
1634         * faces.el (invert-face): Check for 'unspecified, not for nil,
1635         when testing whether face colors are not specified.
1636         From David.Kastrup@t-online.de (David Kastrup).
1637         (read-face-name): Doc fix.
1638         (make-face-bold, make-face-unbold, make-face-italic)
1639         (make-face-unitalic, make-face-bold-italic, invert-face):
1640         Remove trailing blank from the prompt passed to read-face-name.
1642 2001-10-29  Sam Steingold  <sds@gnu.org>
1644         * emacs-lisp/bytecomp.el (byte-recompile-directory):
1645         Report numbers of files skipped and failed too.
1646         (byte-compile-file): Return 'no-byte-compile for skipped files.
1648 2001-10-29  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
1650         * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
1651         and `M p'.
1653 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
1655         * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
1656         as is on unread-command-events instead of `(SECOND-CHAR)'.
1658 2001-10-29  Andre Spiegel  <spiegel@gnu.org>
1660         * vc.el: Mention vc-*-switches in backend API documentation.
1661         (vc-annotate): Adapt doc string to recent change.
1663 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
1665         * enriched.el (enriched-face-ans): Handle face attributes
1666         of the form `(FACE1 FACE2 ...)'.
1668         * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
1670 2001-10-29  Alex Schroeder  <kensanata@yahoo.com>
1672         * progmodes/sql.el (sql-mysql): Doc change by RMS.
1674         * progmodes/sql.el (sql-db2): Doc change.
1675         (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
1676         (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
1678 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
1680         * env.el (substitute-env-vars): Don't quote argument to `rx';
1681         it's a macro.
1683 2001-10-28  Per Abrahamsen  <abraham@dina.kvl.dk>
1685         * cus-start.el (recursive-load-depth-limit): Added.
1687 2001-10-28  Richard M. Stallman  <rms@gnu.org>
1689         * textmodes/ispell.el (version18p, version20p): Vars deleted.
1690         All uses removed--assume Emacs version is >= 20.
1692         * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
1693         by really checking that it is not version 18.
1695         * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
1697 2001-10-28  Miles Bader  <miles@gnu.org>
1699         * faces.el (face-attribute): Add INHERIT argument, consider face
1700         inheritance if it's non-nil.
1701         (face-attribute-merged-with): New function.
1702         (face-attribute-specified-or): New macro.
1703         (face-foreground, face-background, face-stipple): Add INHERIT
1704         argument.  Use `face-attribute-specified-or'.
1706 2001-10-28  Stefan Monnier  <monnier@cs.yale.edu>
1708         * font-lock.el: Require `syntax'.
1709         (font-lock-defaults-alist): Don't define keywords for lisp languages.
1710         Use `c-font-lock-syntactic-face-function' for c languages.
1711         (font-lock-mode): Don't unset vars when turning the mode off.
1712         (font-lock-default-fontify-buffer): Don't unset vars at the end.
1713         (font-lock-extra-managed-props): New var.
1714         (font-lock-default-unfontify-region): Use it.
1715         (font-lock-apply-syntactic-highlight): Flush the syntax cache.
1716         Don't eval the value when there's no match.
1717         (font-lock-ppss-stats): New var.
1718         (font-lock-ppss): New fun.
1719         (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
1720         (font-lock-apply-highlight): Allow `highlight' to set several props.
1721         (font-lock-set-defaults): Use dolist.
1722         (font-lock-unset-defaults): Remove.
1723         (font-lock-match-c-style-declaration-item-and-skip-to-next):
1724         Try to recognize prototypes using `foo P_ ((args))'.
1725         ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
1726         (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
1727         (c-font-lock-syntactic-face-function): New function.
1728         (font-lock-match-c++-style-declaration-item-and-skip-to-next)
1729         (c++-keywords): Use a more sophisticated regexp to handle
1730         shallowly nested templates.
1732 2001-10-27  Stefan Monnier  <monnier@cs.yale.edu>
1734         * textmodes/sgml-mode.el (sgml-empty-tags): New var.
1735         (sgml-tag): Use it.  Cleanup with `cond'.
1736         (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
1737         Mark the overlays and only delete those that are marked.
1738         (sgml-skip-close-p): Remove.
1739         (sgml-value): Replace sgml-skip-close-p with its definition.
1740         (html-tag-alist): Use sgml-xml a bit more.
1741         (html-mode): Set sgml-empty-tags.
1743         * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
1744         (texinfo-update-node, texinfo-sequential-node-update):
1745         Don't bind the obsolete `auto-fill-hook'.
1746         (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
1747         Use `set-buffer' rather than `switch-to-buffer'.
1748         (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
1749         Use `set-buffer' rather than `switch-to-buffer'.
1751         * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
1752         text-mode-syntax-table.
1753         (mail-mode): Use define-derived-mode.
1754         Fix ordering of alternatives in adaptive-fill-regexp.
1755         (mail-mode-map): Don't rely on keymap's internal representation.
1757 2001-10-27  Sam Steingold  <sds@gnu.org>
1759         * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
1760         (sgml-xml-guess): Extracted from `html-mode' and generalized.
1761         (sgml-mode-common): Call it.
1762         (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
1763         (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
1764         (html-horizontal-rule, html-image, html-ordered-list):
1765         (html-unordered-list, html-list-item, html-paragraph):
1766         (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
1767         `html-xhtml'.
1769 2001-10-26  Masayuki Ataka  <ataka@milk.freemail.ne.jp>
1771         * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
1772         (ifnothtml): New alias.
1774 2001-10-27  Stefan Monnier  <monnier@cs.yale.edu>
1776         * textmodes/text-mode.el (text-mode): Use define-derived-mode.
1777         (toggle-text-mode-auto-fill): Use derived-mode-p.
1779 2001-10-27  Gerd Moellmann  <gerd.moellmann@t-online.de>
1781         * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
1782         `mdtm'.  From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
1784 2001-10-26  Eli Zaretskii  <eliz@is.elta.co.il>
1786         * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
1787         Add make-obsolete cookies, to follow faces.el.
1789         These changes avoid warnings from the byte compiler in faces.el:
1791         * faces.el (internal-get-face): Use facep instead of the obsolete
1792         internal-find-face.
1793         (internal-frob-font-weight, internal-frob-font-slant):
1794         New defaliases for obsolete functions.
1795         (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
1796         (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
1797         (x-make-font-bold-italic): Use internal-frob-font-weight and
1798         internal-frob-font-slant aliases instead of the obsolete
1799         x-frob-... functions.
1801 2001-10-26  Sam Steingold  <sds@gnu.org>
1803         * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
1804         DOCTYPE; set `mode-name' based on it.
1805         (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
1806         (sgml-tag): Close empty tags in XHTML.
1808 2001-10-26  Jason Rumney  <jasonr@gnu.org>
1810         * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
1811         when UNICODE is not defined.
1813 2001-10-26  Sam Steingold  <sds@gnu.org>
1815         * font-lock.el (c-font-lock-keywords-2): Do not require labels to
1816         be alone on the line.
1818 2001-10-26  Eli Zaretskii  <eliz@is.elta.co.il>
1820         * button.el (button): Special face definition for MS-DOS terminals.
1822 2001-10-26  Sam Steingold  <sds@gnu.org>
1824         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
1825         Protect the /= test by checking that the args are non-nil.
1826         (sh-font-lock-close-heredoc): Check eof for being non-nil.
1828 2001-10-26  Tomas Abrahamsson  <tab@lysator.liu.se>
1830         * textmodes/artist.el (artist-version): 1.2.4.
1831         (artist-butlast-fn): New variable.
1832         (artist-butlast): New function.
1833         (artist-ellipse-mirror-quadrant): Use it.
1834         (artist-mouse-draw-poly): Use nil for `point-list'.
1835         (artist-mouse-draw-poly): Check for point-list being nil.
1837 2001-10-26  Peter Kleiweg  <kleiweg@let.rug.nl>
1839         * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
1840         lambda expression.
1841         (ps-mode-menu-main): Submenu with options on/off was replaced with
1842         a toggle button.
1843         (ps-mode, ps-run-mode): Define with `define-derived-mode'
1844         (ps-mode): Autoload cookie added on same line as comment
1845         (ps-mode-tabkey, ps-mode-backward-delete-char):
1846         (ps-mode-r-balance): Replace `delete-horizontal-space' and
1847         `indent-to' with `indent-line-to'
1848         (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
1849         instead of `eval'.
1850         (ps-mode-print-region): Use `with-temp-buffer'.
1851         (ps-run-start): Use of `mapconcat'.  Use `apply' instead of `eval'.
1852         (numerous places): Add back-tick and tick around names in
1853         docstrings, fix punctuation in docstrings, remove trailing spaces.
1855 2001-10-25  Stefan Monnier  <monnier@cs.yale.edu>
1857         * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
1858         (sgml-font-lock-keywords-2): Use `eval'.  Moved from sgml-mode-common.
1859         (sgml-font-lock-syntactic-keywords): New var.
1860         (sgml-mode-common): Drop the two args.
1861         Don't make buffer-local variables that aren't used.
1862         Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
1863         Don't set `before-string' props from sgml-display-text.
1864         (sgml-mode): Use define-derived-mode.
1865         (sgml-tags-invisible): Use sgml-display-text.
1866         (sgml-quote): New command.
1867         (html-tag-alist): Add args for `span'.
1868         (html-mode): Use define-derived-mode.
1869         Set sgml-display-text and sgml-tag-face-alist.
1871 2001-10-25  Sam Steingold  <sds@gnu.org>
1873         * add-log.el (add-log-always-start-new-record): New user option.
1874         (add-change-log-entry): Use it.
1876 2001-10-25  Richard M. Stallman  <rms@gnu.org>
1878         * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
1879         bind case-fold-search if FROM is not all lower case.
1881 2001-10-25  Gerd Moellmann  <gerd@gnu.org>
1883         * startup.el (normal-top-level): Check for frame-initial-frame
1884         only if it's really used.
1886         * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
1888         * progmodes/compile.el (compilation-parse-errors-filename-function):
1889         New variable.
1890         (compilation-parse-errors): Use it.
1892 2001-10-25  Stefan Monnier  <monnier@cs.yale.edu>
1894         * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
1895         interactively so that C-u M-C-x still does edebug.
1896         (checkdoc-sentencespace-region-engine): Don't force a double-space
1897         after `.' if it doesn't look like an end-of-sentence.
1898         (debug-ignored-errors): Add `disambiguate ...'.
1900 2001-10-24  Stefan Monnier  <monnier@cs.yale.edu>
1902         * textmodes/texinfo.el (texinfo-environments)
1903         (texinfo-environment-regexp): Hoist.
1904         (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
1905         Only highlight the menu name in menu items.
1906         Setup `@foo ... @end foo' as text clones.
1907         (texinfo-clone-environment): New function.
1908         (texinfo-mode): Simplify auto-fill-inhibit-regexp.
1909         (texinfo-insert-block): Simplify.
1910         (texinfo-insert-quote): Insert a plain " if preceded by \ or if
1911         the command is repeated.
1912         (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
1913         (texinfo-insert-@end): Simplify.
1915         * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
1916         (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
1917         (texinfo-subsubsection-level-regexp)
1918         (texinfo-update-menu-same-level-regexps)
1919         (texinfo-update-menu-higher-regexps)
1920         (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
1922         * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
1923         (derived-mode-p): Autoload.
1925         * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
1926         New vars and functions.
1927         (text-clone-maintain, text-clone-create): New functions.
1929 2001-10-25  Miles Bader  <miles@gnu.org>
1931         * facemenu.el (facemenu-add-new-face): Fix variable names.
1933 2001-10-24  Richard M. Stallman  <rms@gnu.org>
1935         * facemenu.el (facemenu-unlisted-faces): Improve doc strings
1936         of t and nil values.
1937         (facemenu-set-face): Handle START and END interactively.
1938         (facemenu-set-foreground): Don't use a face; specify color directly.
1939         (facemenu-set-background): Likewise.
1940         (facemenu-set-face-from-menu): Doc fix.
1941         (facemenu-active-faces): Use face-attribute-vector
1942         to handle bare attributes not in faces.
1943         (facemenu-get-face): Don't handle face names fg:... and bg:...
1944         specially.
1945         (facemenu-add-new-face): New argument MENU.
1946         New way to handle adding colors to the color menus.
1948         * env.el (substitute-env-vars): Quote the arg to rx.
1950 2001-10-24  Sam Steingold  <sds@gnu.org>
1952         * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
1953         Control" and "SGML" groups.
1955 2001-10-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
1957         * progmodes/cc-engine.el (c-beginning-of-member-init-list):
1958         Better handling of C++ template args to avoid confusion with `<'
1959         and `>' used as operators in member init expressions.
1961 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
1963         * replace.el (perform-replace): Move START and END parameters
1964         to the end of the argument list and make them optional.
1966         * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
1967         perform-replace.
1969         * international/fontset.el (x-must-resolve-font-name): New function.
1970         (x-complement-fontset-spec): Use it.
1972 2001-10-23  Stefan Monnier  <monnier@cs.yale.edu>
1974         * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
1976         * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
1977         Turn caadr into caar of cdr.
1979 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
1981         * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
1982         of mouse-{1,2} since dragging is on the down event.
1984         * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
1986         * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
1987         if ARG is nil.
1989         * desktop.el (desktop-last-buffer): New variable.
1990         (desktop-create-buffer): Set it.
1991         (desktop-read): Bind it and switch to that buffer.
1993 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
1995         * progmodes/compile.el (compilation-set-window-height):
1996         Select old window only if it's still live.
1998 2001-10-22  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2000         * help-mode.el (help-buffer): Remove debugging code.
2001         From Stefan Monnier <monnier@cs.yale.edu>.
2003 2001-10-22  Eli Zaretskii  <eliz@is.elta.co.il>
2005         * files.el (file-name-sans-extension, file-name-extension):
2006         Don't count the leading dots in file names as signaling an extension.
2008 2001-10-22  Andre Spiegel  <spiegel@gnu.org>
2010         * vc.el (vc-diff-switches): Doc rewritten.
2012 2001-10-22  Eli Zaretskii  <eliz@is.elta.co.il>
2014         * tooltip.el (tooltip-set-param): Doc fix.
2016         * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
2017         127 to sgml-maybe-name-self.
2018         (sgml-name-8bit-mode): Doc fix.
2019         (sgml-char-names-table): New variable.
2020         (sgml-name-char): Support non-ASCII and mule-unicode-*
2021         characters.  Doc fix.
2022         (sgml-maybe-name-self): Convert unibyte characters to multibyte.
2024         * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
2025         doc string the effect of `left' and `top' parameters in
2026         tooltip-frame-parameters, the default values, and the units.
2027         (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
2028         (tooltip-show): Mention in the doc string the `top' and `left'
2029         parameters in tooltip-frame-parameters, and x-max-tooltip-size.
2031 2001-10-22  Andre Spiegel  <spiegel@gnu.org>
2033         Add autoscaling support for vc-annotate.
2034         From J.D. Smith <jdsmith@alum.mit.edu>.
2036         * vc.el (vc-annotate-display-default): Accept colormap scaling
2037         ratio (now deprecated).
2038         (vc-annotate-display-autoscale): Added.
2039         (vc-annotate-add-menu): New autoscaling menu options "Span to
2040         Oldest" and "Span Oldest->Newest".  Easymenu support added for
2041         toggle menus driven by customize variable `vc-annotate-display-mode'.
2042         (vc-annotate-display-select): Added.
2043         (vc-annotate): Changed temp-buffer-show-function to
2044         `vc-annotate-display-select'.
2045         (vc-annotate-display): Removed arguments BUFFER and BACKEND.
2046         Added argument OFFSET.  Instead of backend function, calls now
2047         generic `vc-annotate-difference'.
2048         (vc-annotate-difference): Added as generic function instead of
2049         backend-specific function.  No longer takes argument POINT, but
2050         instead accepts a time OFFSET.
2051         (vc-default-annotate-current-time): Added.
2053         * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
2054         version in vc.el, with
2055         (vc-cvs-annotate-current-time): Added, as override of default.
2056         (vc-cvs-annotate-time) Added. Taken mostly from the (now removed)
2057         `vc-cvs-annotate-difference'.
2059 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
2061         * saveplace.el (save-place): Require `saveplace'.
2063         * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
2064         Use `sexp' for :value-type instead of `face'.
2066 2001-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
2068         * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
2069         regexps due to 5-digit message IDs.
2071 2001-10-21  Jason Rumney  <jasonr@gnu.org>
2073         * term/w32-win.el (redisplay-dont-pause): Don't set.
2075 2001-10-21  Miles Bader  <miles@gnu.org>
2077         * help-funs.el (help-manyarg-func-alist): Variable removed.
2079 2001-10-21  Miles Bader  <miles@gnu.org>
2081         * help-funs.el (help-manyarg-func-alist): Remove entries for
2082         `insert', `insert-and-inherit', `insert-before-markers',
2083         `insert-before-markers-and-inherit', `message', `message-box',
2084         `message-or-box', `propertize', `format', `encode-time', `append',
2085         `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
2086         `insert-string', `ml-if', `ml-provide-prefix-argument', and
2087         `ml-prefix-argument-loop'.
2089 2001-10-21  Andre Spiegel  <spiegel@gnu.org>
2091         * vc.el (vc-diff-internal, vc-coding-system-for-diff)
2092         (vc-default-diff-tree): New functions.
2093         (vc-version-diff): Use them.  As a result, coding systems are now
2094         set up properly for all sorts of diffs, and tree diffs can now
2095         also be done locally.
2096         (vc-diff): With a prefix argument, don't require that it's called
2097         from a buffer under version control.
2098         (diff-switches): Remove duplicate definition.
2100         * vc-cvs.el (vc-cvs-diff-tree): New function.
2102 2001-10-21  Miles Bader  <miles@gnu.org>
2104         * help-funs.el (help-manyarg-func-alist): Remove entries for
2105         `list', `vector', `make-byte-code', `call-process',
2106         `call-process-region', `string', `+', `-', `*', `/', `max', `min',
2107         `logand', `logior', and `logxor'.
2109         * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
2110         image bits to compensate.  Use `make-string' instead of
2111         `make-bool-vector' (XBM apparently wants byte-aligned rows).
2113 2001-10-20  Kim F. Storm  <storm@cua.dk>
2115         * simple.el (kill-ring-save): Don't show extent of copied region
2116         if using transient-mark-mode and region is fully visible.
2118 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
2120         * (Version 21.1 released.)
2122 2001-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
2124         * files.el (auto-mode-alist): Associate .indent.pro with
2125         Fundamental mode.  Suggested by Samuel Padgett <spadgett1@nc.rr.com>.
2127 2001-10-18  Sam Steingold  <sds@gnu.org>
2129         Put the *Compile-Log* buffer in `compilation-mode'.
2130         * emacs-lisp/bytecomp.el (byte-goto-log-buffer): New function.
2131         (byte-compile-log-1, byte-compile-log-file)
2132         (displaying-byte-compile-warnings): Use it
2134 2001-10-18  Stefan Monnier  <monnier@cs.yale.edu>
2136         * mail/smtpmail.el (smtpmail-via-smtp): Use mail-envelope-from if set.
2138         * xml.el (xml-parse-tag): Use eq on char-after's return value.
2140 2001-10-18  Gerd Moellmann  <gerd@gnu.org>
2142         * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
2144         * obsolete/hilit19.el (hilit-lookup-face-create):
2145         Call set-face-font only if display-graphic-p.
2146         (toplevel): Remove references to window-system.
2148 2001-10-18  Miles Bader  <miles@gnu.org>
2150         * simple.el (what-line): Avoid problems with field properties.
2152 2001-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
2154         * wid-edit.el (widget-field-face, widget-single-line-field-face):
2155         Define special colors for a tty.
2157 2001-10-17  Francesco Potorti`  <pot@gnu.org>
2159         * comint.el (comint-password-prompt-regexp): Make it less
2160         restrictive, letting comint recognise OpenSSH2 passphrase prompts.
2162 2001-10-17  John Wiegley  <johnw@gnu.org>
2164         * eshell/em-unix.el (eshell/cat): Do a quick test if something is
2165         a regular file, before checking if it is a directory or symlink.
2166         This avoids a call to eshell-file-attributes, which can be
2167         expensive in some situations.
2169         * eshell/em-ls.el (eshell-ls-dired-initial-args): Added an extra
2170         customization variable, to differentiate ls-in-dired from regular
2171         uses of ls.
2173 2001-10-17  Miles Bader  <miles@gnu.org>
2175         * custom.el (defface): Mention `:inherit' in doc-string.
2177 2001-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
2179         * paren.el: Update the Commentary with installation instructions.
2181 2001-10-15  Dave Love  <fx@gnu.org>
2183         * international/mule.el (set-auto-coding): Fix regexps for local
2184         variables section not to eat newlines.
2186 2001-10-15  Miles Bader  <miles@gnu.org>
2188         * simple.el (display-message-or-buffer): Pass the correct buffer
2189         to `display-buffer'.
2191 2001-10-14  Stefan Monnier  <monnier@cs.yale.edu>
2193         * progmodes/executable.el (executable-binary-suffixes): Make varalias.
2194         (executable-find): Use exec-suffixes.
2195         (executable-set-magic): Don't use make-local-hook.
2197         * bindings.el (exec-suffixes): Initialize to a system-dependent value.
2199 2001-10-14  Eli Zaretskii  <eliz@is.elta.co.il>
2201         * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
2202         Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
2203         Add .so to the Unix and GNU branch.
2205         * international/latin-1.el:
2206         * international/latin-2.el:
2207         * international/latin-3.el:
2208         * international/latin-4.el:
2209         * international/latin-5.el:
2210         * international/latin-8.el:
2211         * international/latin-9.el: Add no-byte-compile: t, since
2212         Makefile.in instructs make-docfile to look at .el files.
2214 2001-10-14  Miles Bader  <miles@gnu.org>
2216         * button.el (define-button-type): Allow supertype property to be
2217         specified with a keyword `:supertype' too.
2218         (button-put, make-text-button): Allow button type property to be
2219         specified using the keyword `:type' too.
2220         (button-type): New function.
2221         (button): Add `button-category-symbol' property.
2223 2001-10-13  Stefan Monnier  <monnier@cs.yale.edu>
2225         * bindings.el (esc-map): Revert `j' and `C-j' bindings to
2226         indent-new-comment-line from comment-indent-new-line.
2228         * textmodes/refill.el (refill-mode):
2229         Bind DEL to backward-delete-char-untabify.
2230         Set backward-delete-char-untabify-method to `hungry'.
2232         * textmodes/bib-mode.el (bib-mode):
2233         * play/gomoku.el (gomoku-mode):
2234         * textmodes/page-ext.el (pages-directory-mode):
2235         * textmodes/scribe.el (scribe-mode): Use define-derived-mode.
2237         * textmodes/two-column.el (2C-mode): Don't use make-local-hook.
2239         * emacs-lisp/syntax.el (syntax-ppss): Autoload.
2241         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
2242         Handle here-docs differently.
2243         (sh-font-lock-heredoc): Remove.
2244         (sh-here-doc-open-re, sh-here-doc-markers, sh-here-doc-re): New vars.
2245         (sh-font-lock-here-doc, sh-font-lock-close-heredoc)
2246         (sh-font-lock-open-heredoc): New functions.
2247         (sh-mode): Don't copy sh-font-lock-syntactic-keywords any more.
2248         (sh-font-lock-keywords-1): Use regexp-opt.
2249         (sh-in-comment-or-string): Use syntax-ppss.
2250         (sh-case, sh-for, sh-indexed-loop, sh-function, sh-if, sh-repeat)
2251         (sh-select, sh-tmp-file): Add explicit terminating \n.
2253         * net/ange-ftp.el (ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
2254         Use with-current-buffer.
2255         (ange-ftp-cd): New arg `noerror' to prevent signalling an error.
2256         (ange-ftp-send-cmd): If a `cd' is used (because of a space in the
2257         filename), catch any error that occurs in `ange-ftp-cd'.
2258         If an error happened, don't bother sending `cmd' at all.
2259         Fix a parenthesis typo.
2260         (ange-ftp-write-region): Don't blindly use binary if the remote host
2261         is unix-like.
2263         * play/pong.el (pong-init): Don't use make-local-hook.
2265 2001-10-13  Michael Kifer  <kifer@cs.sunysb.edu>
2267         * viper-ex.el (ex-edit): Make checks for modified buffer/file.
2268         (viper-get-ex-address-subr): More precise addr for the $ marker
2270 2001-10-13  Eli Zaretskii  <eliz@is.elta.co.il>
2272         * version.el (emacs-version): Bump to 21.1.50.
2274 2001-10-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2276         * mail/mailalias.el (mail-directory-stream): Do not double
2277         variables in the lambda-list.
2279         * play/gomoku.el (gomoku-init-display): Ditto.
2281         * play/landmark.el (lm-init-display): Ditto.
2283         * delim-col.el (delimit-columns-rectangle-max): Ditto.
2284         (delimit-columns-rectangle-line): Ditto.
2286 2001-10-12  Stefan Monnier  <monnier@cs.yale.edu>
2288         * newcomment.el (comment-region-internal): Don't rebind
2289         invisibility_spec now that the C routines handle it correctly.
2291         * help-funs.el (locate-library): Use load-suffixes and abbrev filename.
2293         * frame.el (special-display-popup-frame): Obey new specs `same-window'
2294         and `same-frame'.
2296         * menu-bar.el (minibuffer-local-*map): Take inheritance into account.
2298         * simple.el (minibuffer-local*-map): Remove redundant bindings.
2300         * bindings.el (minibuffer-local-map): Also bind next, C-n, C-s, prior,
2301         C-p and C-r.  Remove redundant bindings from inheriting maps.
2303         * progmodes/cperl-mode.el: Merged in changes from v4.32.
2304          After 4.23 and: After 4.24:
2305         (cperl-contract-levels): Restore position.
2306         (cperl-beautify-level): Likewise.
2307         (cperl-beautify-regexp): Likewise.
2308         (cperl-commentify): Rudimental support for length=1 runs
2309         (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
2310          After 4.25:
2311         (cperl-commentify): Was recognizing length=2 "strings" as length=1.
2312         (imenu-example--create-perl-index): Was not enforcing
2313         syntaxification-to-the-end.
2314         (cperl-invert-if-unless): Allow `for', `foreach'.
2315         (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
2316         Mark qw(), m()x as indentable.
2317         (cperl-init-faces): Highlight `sysopen' too.
2318         Highlight $var in `for my $var' too.
2319         (cperl-invert-if-unless): Was leaving whitespace at end.
2320         (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
2321         (cperl-calculate-indent): Remove old commented out code.
2322         Support (primitive) indentation of qw(), m()x.
2323          After 4.26:
2324         (cperl-problems): Mention `fill-paragraph' on comment. \"" and
2325         q [] with intervening newlines.
2326         (cperl-autoindent-on-semi): New customization variable.
2327         (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
2328         (cperl-tips): Mention how to make CPerl the default mode.
2329         (cperl-mode): Support `outline-minor-mode'.  From Mark A. Hershberger.
2330         (cperl-outline-level): New function.
2331         (cperl-highlight-variables-indiscriminately): New customization var.
2332         (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
2333         From Sean Kamath <kamath@pogo.wv.tek.com>.
2334         (cperl-after-block-p): Support CHECK and INIT.
2335         (cperl-init-faces, cperl-short-docs): Likewise and "our".
2336         From Doug MacEachern <dougm@covalent.net>.
2337          After 4.27:
2338         (cperl-find-pods-heres): Recognize \"" as a string.
2339         Mark whitespace between q and [] as `syntax-type' => `prestring'.
2340         Allow whitespace between << and "FOO".
2341         (cperl-problems): Remove \"" and q [] with intervening newlines.
2342         Mention multiple <<EOF as unsupported.
2343         (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
2344         (cperl-indent-parens-as-block): New configuration variable.
2345         (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
2346         Use `cperl-indent-parens-as-block'.
2347         (cperl-find-pods-heres): Test for =cut without empty line instead of
2348         complaining about no =cut.
2349         (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
2350         (cperl-find-pods-heres): Likewise.
2351         (cperl-electric-pod): Change `forward-sexp' to `forward-word':
2352         POD could've been marked as comment already.
2353         (cperl-unwind-to-safe): Unwind before start of POD too.
2354          After 4.28:
2355         (cperl-forward-re): Throw an error at proper moment REx unfinished.
2356          After 4.29:
2357         (x-color-defined-p): Make an extra case to peacify the warning.
2358         Toplevel: `defvar' to peacify the warnings.
2359         (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
2360         No -nw-compile time warnings now.
2361         (cperl-find-tags): TAGS file had too short substring-to-search.
2362         Be less verbose in non-interactive mode
2363         (imenu-example--create-perl-index): Set index-marker after name
2364         (cperl-outline-regexp): New variable.
2365         (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
2366         (cperl-mode): Made use `cperl-outline-regexp'.
2367          After 4.30:
2368         (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
2369         (cperl-outline-level): Make start-of-file same level as `package'.
2370          After 4.31:
2371         (cperl-electric-pod): `head1' and `over' electric only if empty.
2372         (cperl-unreadable-ok): New variable.
2373         (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
2374         on an unreadable file.
2375         (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
2376         on an unreadable directory.
2378         * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
2379         Consider the text between two errors as belonging to the first error.
2380         (compilation-goto-locus): Use pop-to-buffer rather than
2381         switch-to-buffer-other-frame.
2383         * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
2384         (awk-font-lock-syntactic-keywords): New var.
2385         (awk-mode): Use it.
2387         * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
2389         * faces.el (describe-face): Call help-setup-xref earlier.
2391         * jka-compr.el (jka-compr-load-suffixes): New var.
2392         (jka-compr-install): Add its content to load-suffixes.
2393         (jka-compr-uninstall): Remove its content from load-suffixes.
2395 2001-10-12  Sam Steingold  <sds@gnu.org>
2397         * bindings.el (completion-ignored-extensions): CL-related
2398         extensions are platform-independent.
2400         * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
2401         asynchronous multiple file copying.
2403 2001-10-12  Gerd Moellmann  <gerd@gnu.org>
2405         * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
2406         Turn error for repeated variables into warning.
2408         * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
2409         New function checking that lambda-list consists of non-constant
2410         symbols, that &rest and &optional are followed by variable names,
2411         that &rest VAR is the last element, and that variables aren't doubled.
2412         (byte-compile-lambda): Use it.
2414 2001-10-12  Eli Barzilay <eli@barzilay.org>
2416         * calculator.el (calculator-eng-display): Don't call concat
2417         with an integer argument.
2419 2001-10-12  Miles Bader  <miles@gnu.org>
2421         * help-mode.el (help-customize-face): New button-type.
2423         * faces.el (list-faces-display): Fix args to `help-xref-button'.
2424         (describe-face): Fix args to `help-xref-button'.
2425         Don't switch to help-buffer around call to `help-setup-xref'.
2426         Use `help-buffer' instead of hard-wired "*Help*".
2427         Require `help-mode'.
2429 2001-10-11  Stefan Monnier  <monnier@cs.yale.edu>
2431         * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
2433         * help-mode.el (help-buffer): New function.
2434         Returns the buffer-name to use for help output.
2435         Change all the code to use it instead of hard-coding *Help*.
2436         (help-mode-map): Put back the mouse-2 binding.
2437         (help-xref-stack): Change the format and make buffer-local.
2438         (help-xref-stack-item): Make buffer-local.
2439         (help-setup-xref): Do the `push' here rather than in help-do-xref.
2440         (help-xref-interned): Display the face doc as well.
2441         (help-follow-mouse): Re-introduce.
2442         (help-xref-go-back): Adapt to the new use of help-xref-stack.
2443         (help-do-xref): Don't `push' any more.
2444         (help-follow): Also follow face names.
2446         * help-funs.el (describe-function-1): Remove unused `parens' arg.
2447         Don't call help-setup-xref anymore and remove its `interactive-p' arg.
2448         Autoload and cleanup.
2449         (describe-function): Call help-setup-xref.
2450         (describe-variable): Call help-setup-xref earlier.
2452         * help.el (describe-bindings-internal): New fun moved from keymap.c.
2453         (view-lossage): Call help-setup-xref correctly and earlier.
2454         (describe-bindings): Call help-setup-xref earlier.
2455         (describe-key): Call help-setup-xref.  Fix call to describe-function-1.
2456         (describe-mode): Don't autoload.  Call help-setup-xref earlier.
2458 2001-10-11  Gerd Moellmann  <gerd@gnu.org>
2460         * master.el (master-mode): Use define-minor-mode instead of
2461         easy-mmode-define-minor-mode.  Add autload cookie.
2462         (Commentary): Remove the line showing how to autoload master-mode,
2463         since it's always autoloaded.
2465         * master.el: New file.
2467 2001-10-11  Dave Love  <fx@gnu.org>
2469         * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
2470         <byte-constref-ops>: Consider byte-constant2 and clarify the code.
2471         <const-C varset-X const-C>: Fix car/cdr typo.
2473 2001-10-11  Gerd Moellmann  <gerd@gnu.org>
2475         * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
2476         New function extracted from byte-compile-log-1.
2477         (byte-compile-log-1): Change output to be more in line with
2478         the output of other GNU tools.
2479         (byte-compile-warn): Emit `warning' instead of `**' for warnings.
2480         (byte-compile-report-error): Downcase error message.
2481         Use `error' instead of `!!' for error messages.
2482         (byte-compile-print-syms): Treat non-interactive case specially.
2483         (displaying-byte-compile-warnings): Use backquote.
2484         (byte-compile-from-buffer): Bind byte-compile-last-line.
2485         (batch-byte-compile): Remove `Done' message.
2487 2001-10-11  Stefan Monnier  <monnier@cs.yale.edu>
2489         * emacs-lisp/copyright.el (copyright): Add final \n.
2491 2001-10-11  Miles Bader  <miles@gnu.org>
2493         * diff.el (diff): Display default values in prompts as
2494         `(default ...)', not `(...)'.
2496         * info.el (Info-follow-reference): Likewise.
2498 2001-10-10  Stefan Monnier  <monnier@cs.yale.edu>
2500         * emacs-lisp/autoload.el (doc-string-elt): Remove.
2502         * newcomment.el (comment-indent): Be a little more robust in case
2503         comment-indent-function does funny things.
2504         (comment-normalize-vars): Autoload.
2505         (comment-region-internal): Fiddle with the visibility spec.
2506         (comment-valid-prefix): New function.
2507         (comment-indent-new-line): Use it.  Ignore adaptive-fill-prefixes
2508         that would turn comment-text into non-comment-text.
2510         * emacs-lisp/syntax.el: New file.
2512         * progmodes/tcl.el: Change maintainer to FSF and remove loads of
2513         compatibility cruft.
2514         (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
2515         (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
2516         (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
2517         tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
2518         tcl-submit-bug-report.
2519         (tcl-mode-syntax-table): Leave \f alone.
2520         (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
2521         tcl-end-of-defun, tcl-submit-bug-report.
2522         (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
2523         (tcl-add-emacs-menu): Remove.
2524         (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
2525         (tcl-keyword-list): Add `chain'.
2526         (tcl-font-lock-syntactic-keywords): New variable.
2527         (tcl-pps-has-arg-6): Remove.
2528         (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
2529         (tcl-internal-mark-defun): Remove.
2530         (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
2531         (tcl-mode): Use define-derived-mode.  Simplify.
2532         Set comment-indent-function.
2533         (tcl-indent-command): Use line-beginning-position and comment-indent.
2534         (tcl-calculate-indent): Renamed from calculate-tcl-indent.
2535         (tcl-indent-line): Use tcl-calculate-indent.
2536         (tcl-indent-exp): Renamed from indent-tcl-exp.  Use new names.
2537         (tcl-add-log-defun): Renamed from add-log-tcl-defun.  Use match-string.
2538         (tcl-filter): Use with-current-buffer, simplify.
2539         (inferior-tcl-mode): Use define-derived-mode.
2540         (tcl-hairy-in-comment): Renamed tcl-in-comment.
2541         (tcl-simple-in-comment, tcl-in-comment): Removed.
2542         (tcl-files-alist): New function.
2543         (tcl-help-snarf-commands): Use it and return the result directly
2544         rather than through a global variable.
2545         (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
2546         (tcl-help-on-word): Provide the default value to completing-read.
2547         (tcl-hilit): Remove.
2548         (tcl-hashify-buffer, tcl-popup-menu): Simplify.
2549         (tcl-comment-indent): New function.
2550         (tcl-submit-bug-report): Remove.
2551         (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
2552         (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
2553         (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
2555 2001-10-10  Miles Bader  <miles@gnu.org>
2557         * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
2558         (Info-fontify-node): Don't fontify the node if it's already been done.
2560 2001-10-10  Gerd Moellmann  <gerd@gnu.org>
2562         * international/iso-transl.el (iso-transl-e-caret)
2563         (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
2564         Fix duplicates.  From Dave Love <d.love@dl.ac.uk>.
2566         * simple.el (end-of-buffer): Fix code scrolling specially
2567         for the buffer end.
2569         * startup.el (command-line-1): Bind tab-width to 8.
2571 2001-10-10  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2573         * emulation/tpu-edt.el: Use defalias instead of fset for
2574         user-visible commands.  From Rob Riepel
2575         <riepel@Networking.Stanford.EDU>.
2577 2001-10-09  Gerd Moellmann  <gerd@gnu.org>
2579         * ruler-mode.el: New file.
2581 2001-10-09  Miles Bader  <miles@gnu.org>
2583         * apropos.el (button): New require.
2585         * help-funs.el: New file, contents mostly from `help.el'.
2586         (describe-variable): Use `condition-case' instead of `ignore-errors'.
2588         * help-mode.el: New file, contents mostly from `help.el'.
2590         * help.el: Don't require `view' when compiling.
2591         (help-with-tutorial, describe-function, describe-function-1)
2592         (variable-at-point, describe-variable, locate-library):
2593         Functions moved into `help-funs.el'.
2594         (help-manyarg-func-alist): Variable moved into `help-funs.el'.
2595         (help-mode, help-mode-setup, help-mode-finish, help-button-action)
2596         (help-setup-xref, help-xref-following, help-make-xrefs)
2597         (help-xref-button, help-insert-xref-button, help-xref-interned)
2598         (help-xref-go-back, help-go-back, help-do-xref, help-follow)
2599         (help-xref-on-pp): Functions moved into `help-mode.el'
2600         (help-mode-map, help-xref-stack, help-xref-stack-item)
2601         (help-highlight-p, help-highlight-face, help-back-label)
2602         (help-xref-symbol-regexp, help-xref-mule-regexp)
2603         (help-xref-info-regexp): Variables moved into `help-mode.el'.
2604         (help-symbol, help-back, help-info, help-customize-variable)
2605         (help-function-def, help-variable-def):
2606         Button-types moved into `help-mode.el'.
2607         (load-symbol-file-load-history, symbol-file):
2608         Functions moved into `subr.el'.
2609         (symbol-file-load-history-loaded): Variable moved into `subr.el'.
2610         (view-lossage): Call `help-setup-xref' instead of doing it manually.
2612         * subr.el (symbol-file-load-history-loaded)
2613         (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
2615         * loadup.el ("button"): Load removed.
2617         * button.el (define-button-type): Respect any `supertype' property.
2618         (button-type-subtype-p, button-has-type-p): New functions.
2620         * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
2621         dollar-signs.
2623         * comint.el (comint-insert-previous-argument): New function.
2624         (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
2625         (comint-insert-previous-argument-last-start-pos)
2626         (comint-insert-previous-argument-last-index): New variables.
2628         * apropos.el (apropos-next-label-button): Use the presence of a
2629         `apropos-label' property to detect label buttons.
2631 2001-10-08  Miles Bader  <miles@gnu.org>
2633         * button.el (next-button, previous-button): Remove N and WRAP
2634         parameters.  Don't pay attention to `skip' properties.
2635         (forward-button): Implement wrapping, iterating, and skipping here
2636         instead.
2637         (button-activate): USE-MOUSE-ACTION is optional.
2638         (button-nop): Function removed.
2639         (default-button): Use `ignore' as default button action.
2641         * apropos.el (apropos-next-label-button): Update arguments to
2642         `next-button'.
2643         (apropos-symbol): Add `skip' property.
2644         (apropos-function, apropos-macro, apropos-command)
2645         (apropos-variable, apropos-face, apropos-group, apropos-widget)
2646         (apropos-plist): New button types.
2647         (apropos-label-properties): Variable removed.
2648         (apropos-print): Pass button-type to apropos-print-doc, rather
2649         than help function and label text.
2650         (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
2651         Get button label from TYPE.
2653 2001-10-07  Stefan Monnier  <monnier@cs.yale.edu>
2655         * help.el (help-mode): Use define-derived-mode.
2656         (describe-mode): Add optional `buffer' arg.
2657         Use it instead of going through help-xref-mode.
2658         Avoid doubling the word `minor' when prettifying.
2659         (describe-function-1): List the corresponding key bindings.
2660         (describe-variable): Say if the var is automatically buffer-local.
2661         If the source is `loaddefs.el', look for the real source.
2662         (help-xref-mode): Remove.
2664         * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
2665         the file says no-byte-compile.
2667 2001-10-08  Miles Bader  <miles@gnu.org>
2669         * button.el (next-button, previous-button): Respect `skip' property.
2671 2001-10-07  Miles Bader  <miles@gnu.org>
2673         * woman.el (woman-mode-map): Copy button-buffer-map instead of
2674         making a new keymap.  Don't bind mouse-2.  Bind M-mouse-2 to
2675         `woman-follow-word' instead of `woman-mouse-2'.
2676         (woman-follow-word): Renamed from `woman-mouse-2'.
2677         Follow current unconditionally, since this function is now only
2678         bound to M-mouse-2.  Use accessor functions.
2679         (WoMan-highlight-references): Use `make-text-button'.
2680         (woman-xref): New button type.
2682         * loadup.el ("faces"): Move load before loading "loaddefs.el".
2683         ("button"): New load, just before "help" (which uses it).
2685         * help.el (help-mode-map): Make button-buffer-map our parent.
2686         Don't bind mouse events or tab/backtab.
2687         (help-function, help-variable, help-face, help-coding-system)
2688         (help-input-method, help-character-set, help-back, help-info)
2689         (help-customize-variable,  help-function-def, help-variable-def):
2690         New button types.
2691         (help-button-action): New function.
2692         (describe-function-1): Pass help button-types to
2693         `help-xref-button' rather than help function and help-echo string.
2694         Don't put multiple help-function args in a list to pass them to
2695         help-xref-button, just pass them as multiple arguments.
2696         Use `help-insert-xref-button' to make [back]-button, rather than
2697         `help-xref-button'.
2698         (help-xref-button): Take a button-type TYPE as a parameter rather
2699         than a function.  Remove HELP-ECHO parameter.  Remove DATA parameter
2700         and add a &rest parameter ARGS to serve the same purpose.
2701         Use `make-text-button' to add the button.
2702         (help-insert-xref-button): Use `insert-text-button' to add the button.
2703         (help-follow-mouse, help-next-ref, help-previous-ref):
2704         Functions removed.
2705         (help-do-xref): New function.
2706         (help-follow): Use `push-button' and `help-do-xref' to do most of
2707         the work.
2709         * apropos.el (apropos-symbol, apropos-label): New button types.
2710         (apropos-symbol-button-display-help)
2711         (apropos-label-button-display-help, apropos-next-label-button):
2712         New functions.
2713         (apropos-mode-map): Make button-buffer-map our parent.
2714         Don't bind mouse events.
2715         (apropos-print, apropos-print-doc): Create buttons instead of text
2716         properties.
2717         (apropos-mouse-follow): Function removed.
2718         (apropos-follow): Use buttons.
2720         * button.el: New file.
2722 2001-10-07  Gerd Moellmann  <gerd@gnu.org>
2724         * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
2725         Remove.
2727 2001-10-05  Richard M. Stallman  <rms@gnu.org>
2729         * add-log.el (add-change-log-entry): Skip copyright notice
2730         and copying permission notice at start of file, if any.
2731         Make use of terms "entry" and "item" accord with Emacs manual.
2732         Simplify the logic for moving point while entering or creating
2733         an entry and then an item.
2734         (add-change-log-entry-other-window): Doc fix.
2736 2001-10-06  Miles Bader  <miles@gnu.org>
2738         * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
2739         removed; they apparently don't work with faces.
2741 2001-10-05  Sam Steingold  <sds@gnu.org>
2743         * textmodes/sgml-mode.el (html-xhtml): New user option.
2744         (html-tag-alist, html-horizontal-rule, html-image, html-line)
2745         (html-ordered-list, html-unordered-list, html-list-item)
2746         (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
2747         (sgml-skip-close-p): New function.
2748         (sgml-value): Use it.
2750 2001-10-05  Sam Steingold  <sds@gnu.org>
2752         * calendar/diary-lib.el (diary-entry-compare): When times are
2753         identical, compare the entries lexicographically.
2755 2001-10-06  Miles Bader  <miles@gnu.org>
2757         * rfn-eshadow.el (rfn-eshadow-update-overlay):
2758         Use `minibuffer-prompt-end'.
2760         * simple.el (previous-matching-history-element): Fix misplaced
2761         parentheses.
2763 2001-10-05  Miles Bader  <miles@gnu.org>
2765         * rfn-eshadow.el: New file.
2767 2001-10-05  Miles Bader  <miles@gnu.org>
2769         * cus-face.el (custom-face-attributes): Make sure each attribute
2770         has a valid default value.  Remove hacks that mapped `nil' to
2771         `off' and used nil to mean `unspecified'.  Remove `unspecified'
2772         choices from all attributes (unspecified is handled by the parent
2773         checklist).
2774         * cus-edit.el (custom-face-edit-convert-widget)
2775         (custom-face-edit-deactivate, custom-face-edit-activate)
2776         (custom-face-edit-delete, custom-face-edit-attribute-tag):
2777         New functions.
2778         (custom-face-edit): Specify a custom :convert-widget.
2779         (custom-pre-filter-face-spec, custom-post-filter-face-spec):
2780         Don't pass in default filters that map between `nil' and `off' and
2781         `unspecified' and `nil'.
2783 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
2785         * progmodes/compile.el (compilation-buffer-name): New function.
2786         (compile-internal): Use it to determine the name of the
2787         compilation buffer.
2789 2001-10-05  Miles Bader  <miles@gnu.org>
2791         * progmodes/compile.el (grep-use-null-device): New variable.
2792         (grep-command): Mention `grep-use-null-device'.
2793         (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
2794         Make computation of `grep-command' respect `grep-use-null-device'.
2795         (grep): Respect `grep-use-null-device'.
2796         Call `grep-compute-defaults' even if grep-command is set, if
2797         grep-use-null-device is still tentative.
2799         * subr.el (call-process-shell-command): New function.
2801 2001-10-05  Miles Bader  <miles@gnu.org>
2803         * simple.el (previous-matching-history-element)
2804         (next-history-element, next-complete-history-element): Use
2805         `minibuffer-' functions instead of calling `field-' functions directly.
2806         (minibuffer-prompt-end, minibuffer-contents):
2807         (minibuffer-contents-no-properties, delete-minibuffer-contents):
2808         Functions removed (now subrs).
2809         (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
2811         * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
2812         (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
2813         instead of calling `field-' functions directly.
2814         (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
2816 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
2818         * files.el (find-file-noselect): If file's read-only status has
2819         changed on disk, ask if buffer's read-only status should be
2820         changed, unless NOWARN is set.
2822         * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
2823         alias for define-setf-method.
2825         * bindings.el: Remove no-byte-compile from file local variables
2826         to enable bootstrapping.
2828 2001-10-04  Andrew Innes  <andrewi@gnu.org>
2830         * faces.el (face-font-registry-alternatives) [windows-nt]:
2831         Make gb2312 an alias for gb2312.1980.
2833 2001-10-04  Stefan Monnier  <monnier@cs.yale.edu>
2835         * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
2836         (uniquify-reverse-components): Remove.
2838         * emacs-lisp/bytecomp.el (byte-recompile-directory):
2839         Make sure the file is readable.
2840         (byte-compile-file): Don't compile if `no-byte-compile' is set.
2841         (byte-compile-defvar): Update to reflect the change in Fdefvar.
2842         (batch-byte-recompile-directory): Pass arg=0.
2844         * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
2845         (perl-calculate-indent): Use it.
2846         (perl-backward-to-noncomment): Use forward-comment.
2848         * derived.el (define-derived-mode, derived-mode-make-docstring):
2849         Allow `parent' to be nil.
2851         * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
2852         Use define-derived-mode.
2853         (nroff-mode-map, nroff-mode-syntax-table): Massage.
2855         * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
2857         * emacs-lisp/lselect.el: Use facep iso find-face.
2859         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2860         Use regexp-opt.
2861         (doc-string-elt): Set symbols' prop.  Copied from autoload.el.
2862         (lisp-font-lock-syntactic-face-function): New function.
2863         (lisp-mode-variables): Use it.  Make arg optional.
2864         (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
2865         (lisp-mode): Don't pass an arg to lisp-mode-variables.
2866         Set comment-start-skip.
2868         * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
2870         * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
2871         (ignore-errors): Don't bother using a `err' symbol.
2873         * emacs-lisp/autoload.el (autoload-ensure-default-file)
2874         (autoload-insert-section-header, autoload-before-p)
2875         (autoload-remove-section): New functions.
2876         (generate-file-autoloads): Use them.
2877         (update-file-autoloads): Use them.  Return FILE if there's no cookie.
2878         Make sure the autoload file is properly formatted when creating it.
2879         (update-autoloads-from-directories): Use them as well.
2880         Only update autoloads for files whose timestamp has changed.
2881         Add a dummy entry to remember the files which had no autoload cookies.
2883         * timer.el (timer-relative-time): Fix computation for negative `micro'.
2885         * subr.el (define-key-after): Allow `key' to be longer than 1.
2886         (make-local-hook): Make obsolete.
2887         (add-hook, remove-hook): Don't use make-local-hook any more.
2888         (make-syntax-table): Inherit all chars from s-s-t.
2890 2001-10-04  Gerd Moellmann  <gerd@gnu.org>
2892         This is a fix for a report saying that resuming a search with C-s
2893         C-s doesn't use the case-fold-search setting of the previous
2894         search (C-s ... M-c ... then C-s C-s).
2896         * isearch.el (isearch-last-case-fold-search): New variable.
2897         (isearch-mode): Remember value of isearch-case-fold-search
2898         in isearch-last-case-fold-search.
2899         (isearch-done): Quote value of isearch-case-fold-search.
2900         (isearch-repeat): When resuming a search, restore
2901         isearch-case-fold-search from isearch-last-case-fold-search.
2903         Added to NEWS.
2905         * startup.el (inhibit-startup-buffer-menu): New user-option.
2906         (command-line-1): If inhibit-startup-buffer-menu is set, don't
2907         display the buffer menu.  From Simon Josefsson <jas@extundo.com>.
2909         This allows upto 99999 messages in the summary without screwing up
2910         the summary sorting.  Previously 9999 was the maximum.  Added to NEWS.
2912         * mail/rmailsum.el (rmail-make-summary-line)
2913         (rmail-make-summary-line-1, rmail-summary-next-same-subject)
2914         (rmail-summary-goto-msg, rmail-summary-goto-msg):
2915         Allow 5-digit message ids instead of 4.
2917         This adds expansion of environment variables in the value
2918         specified with M-x setenv.  Added to NEWS.
2920         * env.el (substitute-env-vars): New function.
2921         (setenv): Add parameter SUBSTITUTE-ENV-VARS.  If set, substitute
2922         environment variables in VALUE.  Return VALUE.
2924 2001-10-04  Gerd Moellmann  <gerd@gnu.org>
2926         * Branch for 21.1.
2928 2001-10-03  Stefan Monnier  <monnier@cs.yale.edu>
2930         * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
2932 2001-10-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2934         * emulation/tpu-edt.el: Make messages match original TPU/edt
2935         editor.  From riepel@Stanford.EDU (Rob Riepel).
2937 2001-10-03  Eli Zaretskii  <eliz@is.elta.co.il>
2939         * rect.el: Update maintainer's email address.
2941 2001-10-02  Andreas Schwab  <schwab@suse.de>
2943         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
2944         and Extended Passive Mode, resp.
2946 2001-10-01  Eli Zaretskii  <eliz@is.elta.co.il>
2948         These changes add support for Calendar-related items in the
2949         menu bar on tty's as well:
2951         * calendar/calendar.el (calendar-mode-map): Require cal-menu
2952         unconditionally.
2953         (calendar-mode): Set up activate-menubar-hook unconditionally.
2955         * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
2956         calls x-popup-menu only if popup menus are supported.
2957         (calendar-mouse-insert-hebrew-diary-entry)
2958         (calendar-mouse-insert-islamic-diary-entry)
2959         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
2960         (calendar-mouse-view-other-diary-entries)
2961         (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
2962         (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
2963         Call cal-menu-x-popup-menu instead of x-popup-menu.
2965 2001-10-01  Gerd Moellmann  <gerd@gnu.org>
2967         * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
2969         * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
2971         * emacs-lisp/rx.el: New file.
2973 2001-10-01  Eli Zaretskii  <eliz@is.elta.co.il>
2975         * help.el (help-for-help): Doc fix.  From Pavel@Janik.cz (Pavel Janik).
2977 2001-09-30  Eli Zaretskii  <eliz@is.elta.co.il>
2979         * frame.el (select-frame-by-name, other-frame): Doc fix.
2981 2001-09-29  Eli Zaretskii  <eliz@is.elta.co.il>
2983         * play/snake.el (snake-score-file): Use temporary-file-directory
2984         instead of a literal "/tmp".  Suggested by Robert
2985         <robert@chezmarshall.freeserve.co.uk>.
2987         * play/tetris.el (tetris-score-file): Ditto.
2989 2001-09-28  Eli Zaretskii  <eliz@is.elta.co.il>
2991         * apropos.el (apropos-print): Make the directions inserted at the
2992         beginning of the *Apropos* buffer more clear.
2994 2001-09-27  Michael Kifer  <kifer@cs.sunysb.edu>
2996         * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
2997         Added comments.
2999 2001-09-27  Stefan Monnier  <monnier@cs.yale.edu>
3001         * newcomment.el (comment-normalize-vars): Use " \t" rather than
3002         "\\s-" when defining comment-end-skip.
3004 2001-09-27  Gerd Moellmann  <gerd@gnu.org>
3006         * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
3007         Call get-buffer-window first second arg `visible'.
3009         * international/mule-diag.el (list-input-methods-1):
3010         Output something that's independent of Emacs' version.
3012         * tar-mode.el (tar-mode-write-file): Don't signal an error by
3013         calling byte-to-position with a nil tar-header-offset.
3015 2001-09-27  Simon Josefsson  <jas@extundo.com>
3017         * mail/sendmail.el (send-mail-function): Doc fix.
3018         (mail-do-fcc): Error if header-end is not a marker.
3019         (mail-do-fcc): Add a comment.
3020         (mail-reply-to): Doc fix.
3021         (mail-signature): Make ATPOINT optional.
3022         (mail-yank-original): Use cond instead of nestled if.
3024 2001-09-26  Stefan Monnier  <monnier@cs.yale.edu>
3026         * info.el (Info-on-current-buffer): Default arg to "Top".
3028 2001-09-25  Eli Barzilay  <eli@barzilay.org>
3030         * calculator.el (calculator-copy-displayer): New user-option.
3031         (calculator-displayer-prev, calculator-displayer-next):
3032         Renamed from calculator-displayed-{left,right}.
3033         (calculator, calculator-standard-displayer)
3034         (calculator-num-to-string, calculator-update-display)
3035         (calculator-copy, calculator-put-value): Bug and display fixes.
3037 2001-09-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3039         * ebnf2ps.el: Eliminate make-local-hook calls.  Doc fix.
3040         (ebnf-version): New version (3.6.1).
3042         * ebnf-bnf.el: Fix character range regexp.  Doc fix.
3043         (ebnf-bnf-non-terminal-chars): New internal const.
3044         (ebnf-bnf-lex): Fix code.
3046         * ebnf-iso.el: Fix character range regexp.  Doc fix.
3047         (ebnf-iso-non-terminal-chars): New internal const.
3048         (ebnf-iso-lex): Fix code.
3050         * ebnf-yac.el: Fix character range regexp.  Doc fix.
3051         (ebnf-yac-skip-chars): New internal const.
3052         (ebnf-yac-skip-code): Fix code.
3054 2001-09-24  Stefan Monnier  <monnier@cs.yale.edu>
3056         * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
3058         * pcvs-parse.el (cvs-parse-commit): Expand the file name before
3059         passing it to VC.
3061         * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
3062         case where the file is relative.
3064 2001-09-24  Gerd Moellmann  <gerd@gnu.org>
3066         * xml.el (xml-parse-attlist): Quotes around attributes must be the
3067         same on each side.  Make sure we properly handle simple quotes.
3068         From Daiki Ueno <ueno@unixuser.org>.
3070 2001-09-23  Eli Zaretskii  <eliz@is.elta.co.il>
3072         * mail/sendmail.el (mail-mode): Doc fix.  From Simon Josefsson
3073         <jas@extundo.com>.
3075         * menu-bar.el (top-level): Minor fixes for text of help-echo in
3076         some items of the Options menu.
3078 2001-09-22  Stefan Monnier  <monnier@cs.yale.edu>
3080         * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
3082         * vc-hooks.el (vc-delete-automatic-version-backups):
3083         Don't fail if the directory doesn't exist.
3085         * diff-mode.el (diff-default-read-only): New var.
3086         (diff-mode): Use it.
3088 2001-09-22  Eli Zaretskii  <eliz@is.elta.co.il>
3090         * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
3091         Use make-keymap instead of copy-keymap, since copying the global
3092         keymap messes up the menu bar.
3094         * info.el (Info-goto-node, Info-menu): Doc fix.  Suggested by
3095         Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
3097 2001-09-21  Eli Zaretskii  <eliz@is.elta.co.il>
3099         * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
3101         * dired-aux.el (dired-insert-subdir): Pass switches to
3102         dired-build-subdir-alist.
3104 2001-09-21  Stephen Gildea  <gildea@stop.mail-abuse.org>
3106         * time-stamp.el (time-stamp-string-preprocess): Fix bug that
3107         caused %#a and %#b to be mis-formatted.
3109 2001-09-20  Eli Zaretskii  <eliz@is.elta.co.il>
3111         * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
3112         ccmode, emacs-mime, and eudc manuals.
3114 2001-09-19  Sam Steingold  <sds@gnu.org>
3116         w32 find cannot be used with `grep-find'.
3117         * progmodes/compile.el (find-program): New variable.
3118         (grep-compute-defaults): Use it to set `grep-find-command'.
3120 2001-09-19  Gerd Moellmann  <gerd@gnu.org>
3122         * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
3124 2001-09-19  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3126         * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
3127         programming.  Doc fix.
3128         (ebnf-version): New version (3.6).
3129         (ebnf-eps-begin): Data fix.
3130         (ebnf-begin-file): Code fix.
3132         * ebnf-bnf.el: Doc fix.
3133         (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
3135         * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
3137 2001-09-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3139         * ps-print.el: Better face mapping for black/white PostScript printers.
3140         Check if mark is active when printing a region.  Doc fix.
3141         (ps-print-version): New version number (6.5.5).
3142         (ps-print-color-p): Customization fix.
3143         (ps-black-white-faces): New option.
3144         (ps-black-white-faces-alist): New internal var.
3145         (ps-count-lines-preprint, ps-print-preprint-region): New funs.
3146         (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
3147         (ps-nb-pages-region): Interactive fix.
3148         (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
3149         (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
3151 2001-09-18  Eli Zaretskii  <eliz@is.elta.co.il>
3153         * dired.el (dired-move-to-filename-regexp): Allow one digit in the
3154         numeric month value, and allow the Kanji character after the it to
3155         be missing (happens with ls-lisp's output on Japanese versions of
3156         MS-Windows).
3158 2001-09-18  Miles Bader  <miles@gnu.org>
3160         * diff-mode.el (diff-mode): Don't make the buffer read-only if
3161         it's empty (and thus probably a new patch file about to be edited).
3163 2001-09-17  Gerd Moellmann  <gerd@gnu.org>
3165         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3166         Check for '(' in column 0 of doc string.
3168         * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
3169         of `nth' so that using a vector as bounding-box works.
3170         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3172 2001-09-17  Andre Spiegel  <spiegel@gnu.org>
3174         * vc.el (vc-annotate): Use current workfile version explicitly as
3175         a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
3177 2001-09-16  Eli Zaretskii  <eliz@is.elta.co.il>
3179         * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
3180         convert-standard-filename doesn't guarantee that the .el extension
3181         is preserved.
3183         * dos-fns.el (convert-standard-filename): Replace invalid
3184         characters only after converting dash/underscore to a period.
3185         (original-make-auto-save-file-name): New.
3186         (make-auto-save-file-name): New function, overrides the definition
3187         on files.el and calls the original function via
3188         original-make-auto-save-file-name.
3190         * mail/rmail.el (top-level): Require mule-utils when compiling.
3191         (rmail-decode-babyl-format): Use detect-coding-with-priority
3192         instead of detect-coding-region, to favor detection of emacs-mule
3193         encoded Babyl files written by rmailout.el etc.  Suggested by
3194         Kenichi Handa <handa@etl.go.jp>.
3196 2001-09-14  Eli Zaretskii  <eliz@is.elta.co.il>
3198         * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
3199         Use `equal', not `=', since the device number can be a cons cell.
3201 2001-09-14  Gerd Moellmann  <gerd@gnu.org>
3203         * simple.el: Comment out change of 2001-09-13.
3205 2001-09-13  Milan Zamazal  <pdm@zamazal.org>
3207         * progmodes/compile.el (grep-compute-defaults): Don't set
3208         grep-command/grep-find-command when it is already non-nil.
3209         (grep-command): Make it a user option.
3210         (grep-find-command): Likewise.
3212 2001-09-13  Michael Kifer  <kifer@cs.sunysb.edu>
3214         * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
3215         inhibit quit.
3217 2001-09-13  Eli Zaretskii  <eliz@is.elta.co.il>
3219         * files.el (make-auto-save-file-name): If long file names are not
3220         supported on MS-DOS, truncate the file name to DOS 8+3 limits before
3221         generating an auto-save file name from it.
3223 2001-09-13  Gerd Moellmann  <gerd@gnu.org>
3225         * ps-print.el (ps-print-region, ps-print-region-with-faces)
3226         (ps-nb-pages-region): Signal an error if called interactively
3227         and the mark is not active.
3229         * simple.el (minibuffer-prompt-modification)
3230         (minibuffer-prompt-insertion): New functions.
3231         (minibuffer-prompt-properties): Use `modification-hooks' and
3232         `insert-in-front-hooks'.
3234 2001-09-12  Richard M. Stallman  <rms@gnu.org>
3236         * textmodes/outline.el (outline-regexp): Doc fix.
3237         Initialize it in the defcustom, the usual way.
3239 2001-09-12  Gerd Moellmann  <gerd@gnu.org>
3241         * ediff-mult.el (ediff-get-meta-info): Take into account that data
3242         from `ediff-meta-info' properties need not be an overlay.
3243         From David Ponce <dponce@voila.fr>.
3245         * isearch.el (isearch-intersects-p): Fix end checks.
3247 2001-09-11  Eli Zaretskii  <a34785@is.elta.co.il>
3249         * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
3250         `t' branch of `cond', since Irix 6.1 and up is a special case of
3251         the standard dbx interface.
3253 2001-09-11  Miles Bader  <miles@gnu.org>
3255         * comint.el (comint-send-input): When waiting for echoed input,
3256         don't save the expected end position in `echo-end', so that things
3257         work properly even if the buffer is modified elsewhere at the same
3258         time [this happens if `comint-truncate-buffer' is used].
3260 2001-09-11  Gerd Moellmann  <gerd@gnu.org>
3262         * textmodes/outline.el (outline-mode): Use `^' and a shy group
3263         when constructing imenu-generic-expression from outline-regexp.
3265 2001-09-10  Eli Zaretskii  <eliz@is.elta.co.il>
3267         * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
3268         `equal' instead of `=', since they can be cons cells.  From Nils
3269         Goesche <cartan@cartan.de>.
3271 2001-09-10  Andre Spiegel  <spiegel@gnu.org>
3273         * vc.el (vc-annotate): Rewrote doc string.
3275 2001-09-10  Eli Zaretskii  <eliz@is.elta.co.il>
3277         * time-stamp.el: Update Stephen Gildea's email address.
3279 2001-09-10  Gerd Moellmann  <gerd@gnu.org>
3281         * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
3282         enable-multibyte-characters = nil.  From Hallvard B Furuseth
3283         <h.b.furuseth@usit.uio.no>.
3285 2001-09-09  Michael Kifer  <kifer@cs.sunysb.edu>
3287         * ediff-init.el (ediff-highest-priority): Bug fix.
3289         * viper-cmd.el (viper-special-read-and-insert-char): New function
3290         that reads a character and uses the current input method or
3291         iso-accents when appropriate.
3293         * viper.el and all others: Corrections to the comment blocks at
3294         the top.
3296 2001-09-09  Eli Zaretskii  <eliz@is.elta.co.il>
3298         * info.el (Info-goto-node): Doc fix.
3300 2001-09-07  Gerd Moellmann  <gerd@gnu.org>
3302         * isearch.el (isearch-intersects-p): New function.
3303         (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
3304         use isearch-intersects-p, and clean up.
3306 2001-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
3308         * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
3309         and "german8", for the new German orthography dictionaries,
3310         (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
3311         the entries, to keep the line length balanced for loaddefs.el.
3313 2001-09-07  Dr Francis J. Wright  <F.J.Wright@qmw.ac.uk>
3315         * comint.el (comint-send-input): Handle comint-process-echoes
3316         differently.
3318 2001-09-07  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3320         * locate.el (locate-insert-header): Remove unnecessary whitespace.
3322 2001-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
3324         * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
3326 2001-09-07  Gerd Moellmann  <gerd@gnu.org>
3328         * server.el (server-switch-buffer):
3329         * textmodes/refer.el (refer-find-entry-internal):
3330         * term/sup-mouse.el (sup-pos-to-window):
3331         * term/bg-mouse.el (bg-window-from-x-y):
3332         * emacs-lisp/edebug.el (edebug-window-live-p):
3333         Use get-window-with-predicate.
3335         * window.el (get-window-with-predicate): Renamed from some-window.
3336         (some-window): Make it an alias.
3338 2001-09-06  Gerd Moellmann  <gerd@gnu.org>
3340         * simple.el (undo): Remove positions from buffer-undo-list up to
3341         the next undo boundary only.
3343 2001-09-06  Eli Zaretskii  <eliz@is.elta.co.il>
3345         * makefile.nt (install): Don't copy sc.el.  Reported by Richard
3346         Kim <ryk@dspwiz.com>
3348         * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
3349         the message "Creating customization items...done".
3351 2001-09-05  Gerd Moellmann  <gerd@gnu.org>
3353         * font-lock.el (toplevel): Require `jit-lock' only if
3354         font-lock-support-mode is set to jit-lock-mode.
3356 2001-09-05  Eli Zaretskii  <eliz@is.elta.co.il>
3358         * international/quail.el (quail-use-package, quail-inactivate)
3359         (quail-activate): Mention the hooks these functions run in their
3360         doc strings.
3362 2001-09-05  Edward M. Reingold <reingold@iit.edu>
3364         * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
3365         of file in header of menu.
3367 2001-09-04  Gerd Moellmann  <gerd@gnu.org>
3369         * env.el (setenv): Interactively, if VARIABLE has a current value,
3370         add that to the front of the history, as the doc string says.
3372         * comint.el (comint-send-input): Change help-echo.
3373         From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
3375         * bookmark.el (bookmark-write-file): Bind print-length and
3376         print-level to nil.  From Tom Capey <tomc@edina.co.uk>.
3378         * obsolete/uncompress.el: Moved there from lisp/.
3380         * comint.el (comint-insert-clicked-input): Goto point-max before
3381         deleting previous input.  From "Dr Francis J. Wright"
3382         <F.J.Wright@qmw.ac.uk>.
3384         * simple.el (backward-word): Doc fix.
3386 2001-09-03  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
3388         * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
3389         * uncompress.el, uniquify.el, vc.el, view.el, window.el
3390         * w32-fns.el: Add Keywords header.
3392 2001-09-04  Eli Zaretskii  <eliz@is.elta.co.il>
3394         * menu-bar.el: Fix separators in the Edit menu.  Bring "Fill" near
3395         "Text Properties".  Suggested by Simon Marshall
3396         <Simon.Marshall@midas-kapiti.com>.
3398 2001-09-04  Andrew Choi  <akochoi@cse.cuhk.edu.hk>
3400         * term/mac-win.el (mac-drag-n-drop): Decode file name by
3401         consulting the value of file-name-coding-system.
3403 2001-09-03  Stefan Monnier  <monnier@cs.yale.edu>
3405         * help.el (describe-function-1): Save precomputed `file-name' rather
3406         than recomputing it (incorrectly) with `symbol-file'.
3408 2001-09-03  Gerd Moellmann  <gerd@gnu.org>
3410         * international/isearch-x.el (isearch-exit-recursive-edit):
3411         Take three parameters, since it's used as an after-change-function.
3413         * emacs-lisp/backquote.el (backquote-backquote-symbol)
3414         (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
3415         from doc strings.
3417 2001-09-02  Milan Zamazal  <pdm@zamazal.org>
3419         * progmodes/glasses.el (glasses-convert-to-unreadable):
3420         Consider underscores as in `glasses-make-readable'.
3422 2001-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
3424         * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
3425         MS-DOS, since cpp might not be available.
3427         * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
3428         Mention "yank" in the help-echo text.
3429         Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3431 2001-09-01  Stefan Monnier  <monnier@cs.yale.edu>
3433         * newcomment.el (comment-indent): Insert spaces more carefully.
3435 2001-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
3437         * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
3438         exists.  From Andy Petrusenco <andy@int.spb.ru>.
3440         * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
3441         display-popup-menus-p returns nil.  Suggested by Andy Petrusenco
3442         <andy@int.spb.ru>.
3444 2001-08-31  Gerd Moellmann  <gerd@gnu.org>
3446         * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
3447         Instead of running mouse-yank-at-click, see what the event is
3448         bound to outside Isearch and run that.
3450 2001-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
3452         * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
3453         Fix the menu entry to mention transient-mark-mode.
3455 2001-08-30  Gerd Moellmann  <gerd@gnu.org>
3457         * simple.el (eval-expression-print-level): Fix last change.
3459         * bindings.el (mode-line-coding-system-map): New variable.
3460         (mode-line-mule-info): Give the "%Z" a local-map keymap.
3462         * simple.el (eval-expression-print-level): Change the type
3463         of the defcustom to allow nil.
3465         * emacs-lisp/find-gc.el: Moved here from lisp/.
3467         * international/quail.el (quail-completion-1):
3468         Reverse the ((CHAR . DEFN) ...) list before processing it.
3469         From Kenichi Handa <handa@etl.go.jp>.
3471         * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
3472         * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
3474 2001-08-30  Eli Zaretskii  <eliz@is.elta.co.il>
3476         * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
3477         aren't supported.  This avoids the annoying gray strip drawn by
3478         the Windows version instead of the missing tool bar.
3480 2001-08-29  Gerd Moellmann  <gerd@gnu.org>
3482         * menu-bar.el (menu-bar-options-menu): Make option text, messages
3483         and tooltips more consistent.  From "Marshall, Simon"
3484         <Simon.Marshall@midas-kapiti.com>.
3486         * startup.el (fancy-splash-screens): Temporarily set
3487         minor-mode-map-alist to nil while displaying splash screens.
3489 2001-08-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3491         * buff-menu.el: Add Keywords header.
3492         Doc fix (C-x C-b is bound to list-buffers).
3494         * dired-x.el: Add keyword files to get listed in finder.
3495         Remove confusing notes about GNU Emacs 19.
3497         * dired.el, dired-aux.el: Add Keywords header.
3499 2001-08-28  Andre Spiegel  <spiegel@gnu.org>
3501         * vc.el (vc-revert-file): Call the backend even if the FILE's
3502         contents can be reverted locally; pass new arg CONTENTS-DONE
3503         down to the backend.
3505         * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
3506         optional arg CONTENTS-DONE.
3508 2001-08-28  Andrew Innes  <andrewi@gnu.org>
3510         * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
3512 2001-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
3514         * makefile.nt (install): Copy more *.el files.
3516 2001-08-28  Gerd Moellmann  <gerd@gnu.org>
3518         * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
3519         instead of `w' which is already in use.
3521         * gs.el (gs-load-image): Use sleep-for.
3522         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3524 2001-08-28  Miles Bader  <miles@gnu.org>
3526         * replace.el (query-replace-regexp-eval): Return args from
3527         `interactive' form in correct order.
3529 2001-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
3531         * mouse.el (mouse-buffer-menu): If the buffer menu is split by
3532         major modes, don't create panes for modes for which
3533         mouse-buffer-menu-alist returns an empty alist.
3535 2001-08-28  Thien-Thi Nguyen  <ttn@gnu.org>
3537         * progmodes/hideshow.el: Update first-line description.
3538         Sync comments w/ maintainer version 5.31.
3540         (hs-isearch-open): Default value now `code'.
3541         Fix docstring to use "code blocks" vs "comment blocks",
3542         as opposed to "block" vs "comment".
3543         (hs-flag-region): Accept `hs-isearch-open' value
3544         of `block' as synonymous w/ `code'.
3545         (hs-hide-block-at-point): For code blocks, pass `code'
3546         to `hs-flag-region' instead of `block'.
3548 2001-08-28  Miles Bader  <miles@gnu.org>
3550         * comint.el (comint-next-prompt): Don't loop infinitely if
3551         {next,previous}-single-char-property-change returns its input
3552         position when the search fails.
3554 2001-08-27  Miles Bader  <miles@gnu.org>
3556         * comint.el (comint-get-old-input-default): Don't signal an error
3557         if point is not on an input field; instead, return the current
3558         line (using `comint-bol' to skip any prompt, in case we're not
3559         using fields at all).
3561         * man.el (Man-mode-line-format): Variable removed.
3562         (Man-mode): Change `mode-line-buffer-identification' instead of
3563         `mode-line-format'.
3565 2001-08-27  Gerd Moellmann  <gerd@gnu.org>
3567         * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
3568         From Simon Josefsson <jas@extundo.com>.
3570 2001-08-26  Eli Zaretskii  <eliz@is.elta.co.il>
3572         * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
3573         messages.  From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3575         * emacs-lisp/levents.el: Specify FSF as Maintainer.  From Pavel
3576         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3578         * emacs-lisp/lselect.el: Ditto.
3580         * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
3581         Remove periods from the end of error message strings.
3582         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3584         * progmodes/antlr-mode.el: Add Keywords header.  From Pavel
3585         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3587         * net/telnet.el: Ditto.
3589 2001-08-26  Gerd Moellmann  <gerd@gnu.org>
3591         * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
3592         KEYMAP to the call to define-minor-mode.
3594 2001-08-24  Eli Zaretskii  <eliz@is.elta.co.il>
3596         * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
3597         Replace some of the undefined characters with emulations of bidi
3598         formatting characters and Niqud as per SI 1311-1.
3599         (IT-unicode-translations): Ditto.
3600         (IT-display-table-setup, IT-setup-unicode-display):
3601         Fill characters without translations with dos-unsupported-char-glyph.
3603 2001-08-24  Simon Josefsson  <jas@extundo.com>
3605         * hl-line.el (hl-line-mode): Don't be a global mode.
3606         (global-hl-line-mode): New function.
3608 2001-08-24  Gerd Moellmann  <gerd@gnu.org>
3610         * gs.el (gs-load-image): Wait for GHOSTVIEW window property
3611         being reset by Ghostscript.  Don't kill the gs process.
3612         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
3614 2001-08-24  Andrew Choi  <akochoi@cse.cuhk.edu.hk>
3616         * term/mac-win.el: Require scroll-bar.
3618 2001-08-23  Stefan Monnier  <monnier@cs.yale.edu>
3620         * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
3622 2001-08-23  Eli Zaretskii  <eliz@is.elta.co.il>
3624         * hexl.el (hexl-insert-multibyte-char) New function.
3625         (hexl-quoted-insert, hexl-self-insert-command)
3626         (hexl-insert-hex-char, hexl-insert-decimal-char)
3627         (hexl-insert-octal-char): Call it instead of hexl-insert-char.
3628         Fix the doc strings accordingly.
3629         (hexl-insert-char): Reject characters whose code is above 255.
3630         Doc fix.
3631         (hexl-mode-map): Copy the global keymap instead of creating a
3632         sparse keymap, and bind all self-inserting characters to
3633         hexl-self-insert-command.
3635 2001-08-22  Stefan Monnier  <monnier@cs.yale.edu>
3637         * wid-edit.el (text): Re-order docstring correctly.
3639         * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
3641         * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
3643 2001-08-22  Eli Zaretskii  <eliz@is.elta.co.il>
3645         * simple.el (line-number-mode): Mention the variable
3646         line-number-display-limit-width in the doc string.
3648 2001-08-22  Gerd Moellmann  <gerd@gnu.org>
3650         * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
3651         Temporarily select EVENT's window for switching buffers.
3652         (mode-line-bury-buffer): New function.
3653         (mode-line-buffer-identification-keymap): Use it instead of
3654         bury-buffer.  Bind down-mouse events to prevent global down-mouse
3655         events from shining through.
3657 2001-08-21  Stefan Monnier  <monnier@cs.yale.edu>
3659         * newcomment.el (comment-beginning): Make sure the comment-start
3660         we found isn't a comment-end (in cases where confusion is possible).
3662 2001-08-22  Miles Bader  <miles@gnu.org>
3664         * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
3665         before writing it, so that hard-links don't see new version.
3667 2001-08-21  Gerd Moellmann  <gerd@gnu.org>
3669         * gs.el (gs-set-ghostview-colors-window-prop):
3670         Call x-change-window-property with 3rd arg FRAME.
3671         (gs-load-image): Wait for a previous Ghostscript process
3672         to complete before starting a new one.
3674         * image.el (image-type-regexps): Make sure that the TIFF
3675         pattern is only matched at the beginning of a string.
3676         From Markus Rost <rost@math.ohio-state.edu>.
3678         * international/swedish.el: Pre-Mule file removed.  From Jonas
3679         Oberg <jonas@gnu.org>.
3681 2001-08-20  Rajesh Vaidheeswarran  <rv@gnu.org>
3683         * whitespace.el (whitespace-abort-on-error): Add custom variable
3684         to whitespace to abort a write-file if whitespace is detected in file.
3686         * whitespace.el (whitespace-write-file-hook): Hook to be called
3687         when writing a file. If `whitespace-abort-on-error' is set, the
3688         write will abort on detecting whitespaces.
3689         If `whitespace-auto-cleanup' is set, the file will be cleaned
3690         automatically prior to writing.
3692         * whitespace.el (whitespace-buffer-search): Let's not insert bogus
3693         whitespaces in the error output!
3695         * whitespace.el (whitespace-check-indent-whitespace): Defaults to
3696         `indent-tabs-mode', since the latter notes user preferences on
3697         TABs anyway.
3699         * whitespace.el (whitespace-version): 3.1. All of the above issues
3700         were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
3702 2001-08-20  Gerd Moellmann  <gerd@gnu.org>
3704         * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
3705         some spaces from a message.  From Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>.
3707         * whitespace.el (whitespace-global-mode): Add autoload cookie.
3709 2001-08-20  Alex Schroeder  <alex@gnu.org>
3711         * sql.el (sql-db2): Doc change.
3713 2001-08-20  Alex Schroeder  <alex@gnu.org>
3715         * sql.el (sql-postgres): Add the database at the end of the
3716         parameters instead of at the beginning.
3717         (sql-postgres-options): Doc change.
3719 2001-08-17  Gerd Moellmann  <gerd@gnu.org>
3721         * custom.el (defcustom): Doc fix.
3723 2001-08-16  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3725         * ps-mule.el (find-composition): Check if (char-after POS)
3726         returns a valid character.
3728 2001-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
3730         * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
3731         original-point for extra CR characters that are added/removed when
3732         the buffer is written/read whose EOL type is -dos.
3734 2001-08-16  Miles Bader  <miles@gnu.org>
3736         * simple.el (line-move): Undo previous change.
3738         * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
3739         property to input-terminating `boundary' overlays to avoid
3740         line-move wierdness.
3742 2001-08-16  Gerd Moellmann  <gerd@gnu.org>
3744         * lazy-lock.el (lazy-lock-fontify-region): Widen the current
3745         buffer in a save-restriction.  Under one test case with Ediff,
3746         window-scroll-functions are run with a window start that's
3747         temporarily outside of the restriction.
3749 2001-08-16  Robert J. Chassell <bug-texinfo@gnu.org>
3751         * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
3752         (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
3753         (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
3754         (texinfo-update-menu-region-beginning)
3755         (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
3756         command, @ifnottex, to regexps, so it is found.
3758 2001-08-16  Andrew Innes  <andrewi@gnu.org>
3760         * makefile.nt (DONTCOMPILE): Omit bindings.el.
3761         (DONTCOMPILE): Omit sc.el.
3763         * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
3764         (DONTCOMPILE): Omit sc.el.
3766 2001-08-16  Gerd Moellmann  <gerd@gnu.org>
3768         * replace.el (occur): Bind inhibit-read-only to t.
3770 2001-08-16  Miles Bader  <miles@gnu.org>
3772         * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
3773         calling `constrain-to-field', to avoid problems with comint prompts.
3775 2001-08-15  Gerd Moellmann  <gerd@gnu.org>
3777         * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
3778         (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
3780         * ediff-mult.el (ediff-get-meta-info): Fix the condition
3781         of a while-loop.
3783         * Makefile.in (DONTCOMPILE): Remove sc.el.
3785         * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
3786         Don't include term/.
3788         * mail/sc.el:  Moved to obsolete/.
3790 2001-08-14  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3792         * ps-print.el: Change error function arguments to follow Emacs
3793         message convention.  Doc fix.
3794         (ps-print-version): New version number (6.5.4).
3795         (coding-system-for-write): Change declaration position to avoid
3796         XEmacs compilation gripes.
3797         (coding-system-for-read, buffer-file-coding-system):
3798         Declarations to avoid XEmacs compilation gripes.
3800         * ps-mule.el: Doc fix.
3801         (ps-mule-encode-header-string): If STRING is not a string, replace
3802         STRING by empty string.
3804 2001-08-14  Eli Zaretskii  <eliz@is.elta.co.il>
3806         * frame.el (show-trailing-whitespace): Doc fix.
3808 2001-08-13  Eli Zaretskii  <eliz@is.elta.co.il>
3810         * desktop.el (desktop-save): Insert the coding: tag before
3811         desktop-header.
3813 2001-08-13  Gerd Moellmann  <gerd@gnu.org>
3815         * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
3816         its path from $els.
3818         * image.el (image-jpeg-p): Fix call of substring.
3820 2001-08-10  Gerd Moellmann  <gerd@gnu.org>
3822         * play/animate.el (animate-string): Doc fix.  Use a buffer
3823         name with stars in it.
3824         (animate-sequence): New function.
3825         From Richard Stallman <rms@gnu.org>.
3827         * frame.el (select-frame-set-input-focus): New function
3828         extracted from other-frame.
3829         (other-frame): Use it.
3830         (next-multiframe-window, previous-multiframe-window): Use it.
3832         * isearch.el (isearch-other-meta-char): Don't switch to the
3833         buffer of a window clicked on, when the current buffer is
3834         in Isearch mode.
3836         * image.el (image-jpeg-p): Test for APPn markers in the range
3837         #xe0..#xef.
3839 2001-08-09  Gerd Moellmann  <gerd@gnu.org>
3841         * desktop.el (desktop-save): Don't use concat to form a file
3842         name, use expand-file-name.
3844         * mouse.el (mouse-delete-window): Do nothing if frame has just
3845         one window.
3847         * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
3848         for the minor mode name.
3850         * view.el (toplevel): Use mode-line-minor-mode-keymap for the
3851         minor mode name.
3853         * time.el (display-time-string-forms): Use make-mode-line-mouse-map
3854         instead of make-mode-line-mouse2-map.
3856         * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
3857         the minor mode name.
3859         * emacs-lisp/easy-mmode.el (define-minor-mode):
3860         Use  mode-line-minor-mode-keymap for the minor mode name.
3862         * calendar/calendar.el (calendar-mode-line-format):
3863         Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
3865         * bindings.el (make-mode-line-mouse-map): Renamed from
3866         make-mode-line-mouse2-map.  Take additional arg MOUSE.
3867         (mode-line-modified): Use mouse-3 instead of mouse-2.
3868         (mode-line-buffer-identification-keymap): Bind keys differently.
3869         (propertized-buffer-identification): Adapt help-echo to new bindings.
3871         * bindings.el (mode-line-format): Specify help-echo for line
3872         number, column number and buffer-percent part of the mode-line.
3874         * image.el (image-type-regexps): Allow whitespace at the start
3875         of the image data for XPM, XBM and Postscript, which are
3876         text files.
3877         (image-jpeg-p): Correct calculation of next field offset.
3879 2001-08-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3881         * battery.el: Fix typo.
3883 2001-08-08  Gerd Moellmann  <gerd@gnu.org>
3885         * image.el (image-type-regexps): Allow predicates.  Change the way
3886         JPEG images are recognized.
3887         (image-jpeg-p): New function.
3888         (image-type-from-data): Handle predicates in image-type-regexps.
3890         * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
3891         #:, #x, #o, and similar constructs.
3893 2001-08-07  Gerd Moellmann  <gerd@gnu.org>
3895         * vc.el (vc-transfer-file): Fix malformed autoload cookie.
3897         * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
3898         instead of `progn'.
3900         * tar-mode.el (tar-extract): Avoid generating a new buffer
3901         for each file visited.  From Markus Rost <rost@math.ohio-state.edu>.
3903         * textmodes/paragraphs.el (forward-sentence): Avoid building
3904         a regexp from sentence-end.  From Kenichi Handa <handa@etl.go.jp>.
3906         * progmodes/executable.el (executable-set-magic):
3907         If executable-find returns a quoted file name, unquote it before
3908         inserting it.
3910         * image.el (image-type-regexps): For JPEG files, use a regexp
3911         derived from the JFIF spec.
3913         * image.el (image-type-regexps): Use `\`' instead of `^' in
3914         most regular expressions.
3916 2001-08-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3918         * play/animate.el: Re-insert a reference to re-inserted function.
3920 2001-08-06  Gerd Moellmann  <gerd@gnu.org>
3922         * help.el (describe-function-1): Use find-function-search-for-symbol
3923         instead of find-function-noselect because the latter follows aliases.
3925         * play/animate.el (animate-birthday-present): Re-insert.
3927         * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
3928         Handle old-style menu definitions.
3930 2001-08-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3932         * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
3933         * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
3935         * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
3936         * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
3937         * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
3939 2001-08-05  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3941         * textmodes/tildify.el: Milan Zamazal has new address.
3943 2001-08-03  Gerd Moellmann  <gerd@gnu.org>
3945         * custom.el (custom-set-variables): Don't test `custom-requests'
3946         properties, check the third element of the options passed to
3947         custom-set-variables instead.
3949         * info.el (info-insert-file-contents): Use info-file-exists-p
3950         instead of file-exists-p.
3952         * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
3953         the mode-line face is restored.  Fix several bugs.
3955         * replace.el (perform-replace): Doc fix.
3957 2001-08-02  Francesco Potorti`  <pot@gnu.org>
3959         * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
3960         (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
3961         (uniquify-fix-item-base, uniquify-fix-item-filename)
3962         (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
3963         Callers changed.
3964         (uniquify-set-proposed): Changed to work with a vector item.
3965         (uniquify-rationalize-file-buffer-names): Use a list of arrays for
3966         the fix list, and a list of strings for the non-file buffer
3967         names.  Both changes reduce consing.
3968         (uniquify-rationalize-a-list): Local variable renaming.
3969         (uniquify-rationalize-conflicting-sublist): Use member instead of
3970         assoc.
3971         (uniquify-rename-buffer): Use unless instead of if not.
3973 2001-08-02  Gerd Moellmann  <gerd@gnu.org>
3975         * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
3977         * custom.el (custom-set-variables): Set options with :require
3978         clauses last.
3980         * custom.el (defcustom): Doc fix.
3982         * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
3984 2001-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
3986         * man.el (man): Mention Man-switches in the doc string.
3987         (Man-switches): Mention -a in the doc string.
3989         * textmodes/ispell.el (ispell-alternate-dictionary):
3990         Add /usr/share/lib/dict/words, for Irix.
3992         * bindings.el: Bind shifted and control-shifted kp-* keys to the
3993         corresponding non-kp keys.  Suggested by Stephen Gildea
3994         <gildea@stop.mail-abuse.org>.
3996 2001-08-01  Francesco Potorti`  <pot@gnu.org>
3998         * uniquify.el: These changes correct a corner case that the old
3999         code managed correctly.
4000         (uniquify-fix-item-proposed): Renamed from
4001         uniquify-fix-item-min-proposed.
4002         (uniquify-set-proposed): New function.
4003         (uniquify-rationalize-file-buffer-names): Code reshuffled for
4004         clarity and speed.
4005         (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
4006         This is equivalent to what the old code did.
4007         (uniquify-rationalize-a-list): Never recompute the proposed
4008         name.  Sort the conflicting sublist before rationalising it: this
4009         is equivalent to what the old code did, but one directory element
4010         at a time, and only when necessary.
4011         (uniquify-rationalize-conflicting-sublist): Recompute here the
4012         proposed name.
4014 2001-08-01  Gerd Moellmann  <gerd@gnu.org>
4016         * play/animate.el: Add Keywords and Maintainer.  Remove a
4017         reference to a removed function.
4019         * play/animate.el (animate-string): Handle case that the string is
4020         longer than the window is wide.
4022 2001-07-31  Gerd Moellmann  <gerd@gnu.org>
4024         * desktop.el (desktop-save): Bind coding-system-for-write to
4025         `emacs-mule' for write-region.
4027         * delsel.el (delete-selection-pre-hook): Don't set this-command
4028         to `ignore' if the region is empty.
4030         * international/mule.el (set-keyboard-coding-system):
4031         Set keyboard-coding-system.
4033         * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
4034         before accessing it.
4036 2001-07-30  Andreas Schwab  <schwab@suse.de>
4038         * menu-bar.el (toggle-highlight-paren-mode):
4039         Use `(show-paren-mode)' as body.
4041 2001-07-30  Andre Spiegel  <spiegel@gnu.org>
4043         * vc.el (vc-checkout-hook): New hook.
4044         (vc-checkout): Run it.
4046 2001-07-30  Eli Zaretskii  <eliz@is.elta.co.il>
4048         * progmodes/make-mode.el (makefile-macroassign-regex):
4049         Recognize the ?= operator.  From Jonathan Kamens <jik@curl.com>.
4051 2001-07-30  Gerd Moellmann  <gerd@gnu.org>
4053         * vc.el (vc-switch-backend): Fix autoload cookie.
4055         * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
4056         the desktop file.
4058 2001-07-30  Simon Josefsson  <jas@extundo.com>
4060         * mail/mail-utils.el (mail-strip-quoted-names): Replace text
4061         literally.  Reported by Sean Rima <sean@**Delete**.tcob1.net>.
4063 2001-07-27  Gerd Moellmann  <gerd@gnu.org>
4065         * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
4066         (last-sexp-toggle-display): Renamed from last-sexp-print.
4067         (last-sexp-toggle-display, eval-last-sexp-1):
4068         Use last-sexp-setup-props.
4070         * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
4071         New user-options.
4072         (mouse-wheel-change-button): New function.
4073         (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
4074         (mwheel-scroll): Ditto.
4076 2001-07-26  Gerd Moellmann  <gerd@gnu.org>
4078         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
4079         `...', compare with unabbreviated printed representation instead.
4080         (last-sexp-print): Bind print-length and print-level to nil.
4082         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
4083         before assigning text properties.  Make properties rear-nonsticky.
4085         * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
4086         (eval-last-sexp-1): Give printed text a `keymap' property and bind
4087         <mouse-2> and <RET> in that map to a function printing the
4088         unabbreviated value.
4090         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
4091         is a buffer, put a text property `printed-value' on the printed
4092         representation, with the Lisp object printed as value.
4094 2001-07-25  Eli Zaretskii  <eliz@is.elta.co.il>
4096         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
4097         Mention the effect of eval-expression-print-length and
4098         eval-expression-print-level in the doc strings.  Suggested by
4099         Kevin Gallagher <kevingal@onramp.net>.
4101 2001-07-25  Gerd Moellmann  <gerd@gnu.org>
4103         * xt-mouse.el (xterm-mouse-event): Recognize control sequences
4104         for buttons > 3.
4105         (xterm-mouse-translate): Handle the case that we don't get a
4106         down-event.
4108         * emacs-lisp/find-func.el (find-function-regexp):
4109         Add easy-mmode-define-global-mode to the regexp.  Allow newlines
4110         in front of the function name.
4112         * isearch.el (isearch-other-meta-char): Fix last change.
4114         * isearch.el (isearch-other-meta-char): Don't modify mode-line and
4115         similar events for which fake prefix keys are generated.  It's no
4116         longer necessary since read_key_sequence doesn't modify these
4117         events for internal purposes anymore.
4119         * files.el (auto-mode-alist): Use nroff-mode for files ending
4120         in `.9'.  From Assar Westerlund  <assar@stacken.kth.se>.
4122 2001-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
4124         * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
4125         tool-bar-lines parameter, behave as if its value were zero.
4126         (mouse-avoidance-set-pointer-shape): Don't do anything if
4127         x-pointer-shape is not boundp.
4129 2001-07-23  Francesco Potorti`  <pot@gnu.org>
4131         * uniquify.el: Overall speedup changes when using many buffers.
4132         (uniquify-fix-item-base, uniquify-fix-item-filename)
4133         (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
4134         (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
4135         place in the item, but was never used.
4136         (uniquify-fix-item-min-proposed): New defalias: the fourth place
4137         in the item is now used as cache for the proposed name.
4138         (uniquify-rationalize-file-buffer-names): Move computation made on
4139         newbuffile out of the loop, in the newbuffile-nd local var.
4140         Use dolist (cosmetic change).  Compute the proposed name for the most
4141         common case and cache it in the fourth place in the item.
4142         (uniquify-rationalize-file-buffer-names): Used to return a a list
4143         of buffer whose name was changed, but that return value was never used.
4144         (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
4145         the cached proposed name, does much less consing and is quicker.
4146         (uniquify-filename-lessp): Deleted.
4147         (uniquify-rationalize-a-list): Use dolist (cosmetic change).
4148         Do not bind locally the uniquify-possibly-resolvable flag.  Use the
4149         cached proposed name is possible.
4150         (uniquify-get-proposed-name): Arguments changed, callers changed.
4151         (uniquify-rationalize-conflicting-sublist): Explicitely reset the
4152         uniquify-possibly-resolvable flag, which is no more bound locally.
4153         (uniquify-rename-buffer): Do not set the old unrationalised-buffer
4154         flag, which does not exist any more.
4156 2001-07-23  Eli Zaretskii  <eliz@is.elta.co.il>
4158         * term/internal.el (IT-unicode-translations): Fix the appearance of
4159         "6`".
4161         * progmodes/compile.el (compile-internal): If EMACS is already
4162         defined in the environment, don't override its value.
4164 2001-07-23  Gerd Moellmann  <gerd@gnu.org>
4166         * play/fortune.el: Undo change of 2001-07-13.
4167         Fix autoload cookies.  Add types to defcustoms.
4168         (fortune) <defgroup>: Add :link.
4169         (fortune-from-region): Use eq, not eql.
4170         From Dave Love <fx@gnu.org>.
4172         * play/animate.el (animate-birthday-present): Function removed.
4174         * play/animate.el: New file.
4176 2001-07-22  Eli Zaretskii  <eliz@is.elta.co.il>
4178         * startup.el (normal-top-level-add-subdirs-to-load-path):
4179         On Windows, put into normal-top-level-add-subdirs-inode-list the
4180         canonicalized names of the directories instead of inode numbers.
4182 2001-07-21  Michael Kifer  <kifer@cs.sunysb.edu>
4184         * ediff-util.el: Copyright years.
4185         (ediff-choose-syntax-table): New function.
4186         (ediff-setup): Use ediff-choose-syntax-table.
4187         (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
4188         vc-state is available.
4189         (ediff-make-temp-file): Use ediff-coding-system-for-write.
4191         * ediff-init.el (ediff-with-syntax-table): New macro, uses
4192         with-syntax-table.
4193         (ediff-coding-system-for-read): From ediff-diff.el
4194         (ediff-coding-system-for-write): New variable.
4195         (ediff-highest-priority): Fixed the bug having to do with disappearing
4196         overlays.
4197         (ediff-file-remote-p): Use file-remote-p, if available.
4198         (ediff-listable-file): New function.
4199         (ediff-file-attributes): Use ediff-listable-file.
4201         * ediff-mult.el (ediff-meta-insert-file-info1):
4202         Use ediff-listable-file.
4204         * ediff-ptch.el (ediff-prompt-for-patch-file):
4205         Use ediff-coding-system-for-read.
4206         (ediff-patch-file-internal): Use ediff-coding-system-for-write.
4208         * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
4209         (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
4211         * ediff.el: Date of last update, copyright years.
4213         * ediff-wind (ediff-setup-control-frame): Nill->nil.
4215         * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
4216         of Scott Bronson.
4217         (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
4218         (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
4219         Deleted functions.
4220         (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
4221         ex-token-list.
4222         (viper-get-ex-address-subr): Convert registers to char data type.
4224         * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
4225         (viper-memq-char): Use viper-int-to-char.
4226         (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
4227         vc-locking-state.
4228         (viper-read-key): Use viper-read-key-sequence.
4230         * viper.el (viper-major-mode-modifier-list):
4231         Added inferior-emacs-lisp-mode.
4232         (this-major-mode-requires-vi-state): New function that uses simple
4233         heuristics to decide if vi state is appropriate.
4234         (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
4235         (viper-non-hook-settings): Don't advise read-key-sequence.
4236         (viper-read-key-sequence): New function that replaces the
4237         previously used advice to read-key-sequence.
4239         * viper-cmd.el (viper-test-com-defun,viper-exec-change)
4240         (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
4241         (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
4242         (viper-open-line-at-point,viper-substitute,viper-overwrite)
4243         (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
4244         Got rid of the negative character hack.
4245         (viper-escape-to-state,viper-replace-state-exit-cmd):
4246         Use viper-read-key-sequence.
4247         (viper-envelop-ESC-key): No need for ad-get-orig-definition.
4248         (viper-minibuffer-standard-hook,viper-read-string-with-history):
4249         Don't override existing minibuffer-setup-hook.
4250         (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
4251         Convert registers to char data type.
4252         (viper-autoindent): Use viper-indent-line.
4254         * viper-keym.el: Use viper-exec-key-in-emacs.
4256 2001-07-20  Stefan Monnier  <monnier@cs.yale.edu>
4258         * server.el (server-visit-files): Fix variable name typo.
4260 2001-07-20  Gerd Moellmann  <gerd@gnu.org>
4262         * simple.el (delete-trailing-whitespace): Save match data
4263         around looking-at.  From Markus Rost <rost@math.ohio-state.edu>.
4265 2001-07-19  Stefan Monnier  <monnier@cs.yale.edu>
4267         * progmodes/compile.el (compilation-parse-errors): `linenum' might
4268         return a this-error using the alternative format (a pair of markers).
4270 2001-07-19  Gerd Moellmann  <gerd@gnu.org>
4272         * font-lock.el (c++-keywords): Add Standard C++ operator names.
4274         * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
4275         From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
4277 2001-07-17  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4279         * international/iso-transl.el: Fix typo in the header of the file.
4281         * textmodes/picture.el (picture): Doc fix.
4283         * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
4284         follow coding conventions in generated files.
4286 2001-07-17  Eli Zaretskii  <eliz@is.elta.co.il>
4288         * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
4289         (tool-bar-add-item): Don't call image-related primitives if the
4290         display doesn't support images.
4292         * frame.el (display-images-p): New function.
4294 2001-07-17  Gerd Moellmann  <gerd@gnu.org>
4296         * server.el (server-visit-files): Handle the case the specified
4297         column number is <= 0.
4299 2001-07-17  Jan Nieuwenhuizen  <jan@netland.nl>
4301         * startup.el (command-line-1): Add support for +LINE:COLUMN
4302         command line argument.
4304 2000-07-17  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
4306         * server.el (server-process-filter, server-visit-files):
4307         Add support for +LINE:COLUMN style emacsclient calls.
4309 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4311         * emacs-lisp/easy-mmode.el: Add Keywords header.
4313         * play/pong.el: Author has new address.
4315         * play/landmark.el: Author is no more reachable.
4317         * play/handwrite.el: Author is no more reachable.
4319 2001-07-17  Stefan Monnier  <monnier@cs.yale.edu>
4321         * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
4322         (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
4323         Complete bindings for F<1..12> keys.
4324         (global-map): Remove `undo' binding (already in the default).
4325         Replace `t<n>' bindings with `f<n>' bindings.
4327 2001-07-16  Stefan Monnier  <monnier@cs.yale.edu>
4329         * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
4330         (tcl-mode): Use tcl-add-log-defun.
4331         (tcl-indent-line): Use tcl-calculate-indent.
4332         (tcl-calculate-indent): Renamed from calculate-tcl-indent.
4333         (tcl-indent-exp): Renamed from indent-tcl-exp.
4334         (tcl-add-log-defun): Renamed from add-log-tcl-defun.
4335         (tcl-indent-for-comment): Call comment-indent-function properly
4336         and handle the case where it returns nil.
4338 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
4340         * calendar/cal-islam.el (calendar-goto-islamic-date):
4341         Remove autoload cookie.
4343         * calendar/calendar.el (calendar-goto-islamic-date):
4344         Add call to autoload.
4346 2001-07-16  Stefan Monnier  <monnier@cs.yale.edu>
4348         * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
4349         Don't change compile-auto-highlight globally.
4350         Don't bother with `font-lock-defaults' property since XEmacs
4351         also understands the `font-lock-defaults' variable.
4352         Use make-local-variable rather than make-variable-buffer-local.
4353         Don't `defconst' comment-indent-function: keep the default.
4354         Call easy-menu-add unconditionally.
4355         (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
4356         (ada-create-menu): Use :included for Emacs as well.
4358         * vc.el (vc-do-command): Autoload.
4360         * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
4362 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4364         * ps-print.el: Fix Author: header.
4366 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
4368         * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
4369         mouse-1 etc., bind them to `ignore'.
4371         * eshell/esh-mode.el (eshell-send-invisible): Renamed from
4372         send-invisible, which is already defined in Comint.
4373         (eshell-watch-for-password-prompt): Use it.
4375 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4377         * which-func.el (which-func-mode): Doc fix.
4379         * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
4380         * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
4381         * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
4382         * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
4383         * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
4384         * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
4385         * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
4386         * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
4387         * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
4388         * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
4389         * emulation/edt-mapper.el, emulation/edt-pc.el,
4390         * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
4391         * emulation/tpu-edt.el, emulation/tpu-extras.el,
4392         * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
4393         * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
4394         * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
4395         * international/isearch-x.el, international/iso-cvt.el,
4396         * international/ogonek.el, international/quail.el,
4397         * international/utf-8.el, jit-lock.el, language/devan-util.el,
4398         * language/devanagari.el, language/ethio-util.el,
4399         * language/ethiopic.el, language/european.el, language/indian.el,
4400         * language/romanian.el, language/tibet-util.el, language/tibetan.el,
4401         * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
4402         * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
4403         * mouse-sel.el, net/browse-url.el, net/net-utils.el,
4404         * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
4405         * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
4406         * progmodes/autoconf.el, progmodes/cmacexp.el,
4407         * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
4408         * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
4409         * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
4410         * progmodes/ebnf2ps.el, progmodes/executable.el,
4411         * progmodes/fortran.el, progmodes/idlw-shell.el,
4412         * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
4413         * progmodes/m4-mode.el, progmodes/mantemp.el,
4414         * progmodes/meta-mode.el, progmodes/octave-inf.el,
4415         * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
4416         * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
4417         * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
4418         * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
4419         * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
4420         * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
4421         * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
4422         * textmodes/texinfo.el, textmodes/texnfo-upd.el,
4423         * textmodes/two-column.el, time-stamp.el, timezone.el,
4424         * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
4425         * which-func.el, whitespace.el, wid-browse.el, widget.el,
4426         * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
4427         conventions.
4429 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
4431         * simple.el (set-variable): Require 'cus-edit' instead of
4432         `wid-edit', so that the Custom widgets get defined.
4434 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4436         * allout.el: A fix to follow coding conventions.
4438         * find-lisp.el: A fix to follow coding conventions.
4440         * term/w32-win.el: A fix to follow coding conventions.
4442         * textmodes/sgml-mode.el: A fix to follow coding conventions.
4444         * term/xterm.el: A fix to follow coding conventions.
4446         * term/news.el: A fix to follow coding conventions.
4448         * emulation/vi.el: A fix to follow coding conventions, Maintainer:
4449         header line fixed.
4451         * sun-curs.el: Fix Maintainer: header line.
4453         * emacs-lisp/easymenu.el: Address of the author added.
4455 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
4457         * dired.el (dired-insert-set-properties): Fix invalid mouse-face
4458         property.
4460 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4462         * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
4463         * play/gamegrid.el, play/handwrite.el, play/landmark.el,
4464         * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
4465         Some fixes to follow coding conventions.
4467 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
4469         * which-func.el (which-func-mode): Doc fix.
4471 2001-07-15  Stefan Monnier  <monnier@cs.yale.edu>
4473         * net/rcompile.el (remote-compile): Use make-local-variable.
4475         * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
4477         * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
4479         * mail/reporter.el (reporter-submit-bug-report):
4480         Don't abuse make-variable-buffer-local.  Fix call to add-hook.
4482 2001-07-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4484         * calendar/cal-china.el, calendar/cal-coptic.el,
4485         * calendar/cal-dst.el, calendar/cal-french.el,
4486         * calendar/cal-hebrew.el, calendar/cal-islam.el,
4487         * calendar/cal-iso.el, calendar/cal-julian.el,
4488         * calendar/cal-mayan.el, calendar/cal-persia.el,
4489         * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
4490         * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
4491         * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
4492         * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
4493         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
4494         * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
4495         * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
4496         * progmodes/ada-prj.el, progmodes/ada-stmt.el,
4497         * progmodes/ada-xref.el, progmodes/cc-align.el,
4498         * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
4499         * progmodes/cc-defs.el, progmodes/cc-engine.el,
4500         * progmodes/cc-langs.el, progmodes/cc-menus.el,
4501         * progmodes/cc-styles.el, progmodes/cc-vars.el,
4502         * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
4503         * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
4504         * textmodes/reftex-index.el, textmodes/reftex-parse.el,
4505         * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
4506         * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
4507         * textmodes/reftex.el: Some fixes to follow coding
4508         conventions in Eshell files with known maintainers.
4510         * emulation/viper.el: A fix to follow coding conventions.
4512         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
4513         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
4514         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
4515         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
4516         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
4517         * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
4518         * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
4519         * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
4520         * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
4521         * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
4522         conventions in Eshell files.
4524         * composite.el, diff.el, emacs-lisp/levents.el,
4525         * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
4526         * emulation/pc-mode.el, emulation/viper-cmd.el,
4527         * emulation/viper-ex.el, emulation/viper-init.el,
4528         * emulation/viper-keym.el, emulation/viper-macs.el,
4529         * emulation/viper-mous.el, emulation/viper-util.el,
4530         * emulation/viper.el, forms-pass.el, international/ccl.el,
4531         * international/characters.el, international/encoded-kb.el,
4532         * international/fontset.el, international/ja-dic-cnv.el,
4533         * international/ja-dic-utl.el, international/kinsoku.el,
4534         * international/kkc.el, international/mule-cmds.el,
4535         * international/mule-diag.el, international/mule-util.el,
4536         * international/mule.el, international/titdic-cnv.el,
4537         * language/china-util.el, language/chinese.el,
4538         * language/cyril-util.el, language/cyrillic.el, language/english.el,
4539         * language/greek.el, language/hebrew.el, language/japan-util.el,
4540         * language/japanese.el, language/korea-util.el, language/korean.el,
4541         * language/lao-util.el, language/lao.el, language/misc-lang.el,
4542         * language/slovak.el, language/thai-util.el, language/thai.el,
4543         * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
4544         * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
4545         * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
4546         * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
4547         * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
4548         * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
4549         * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
4550         * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
4551         * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
4552         * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
4553         to follow coding conventions in files without maintainer or in files
4554         with clear maintainer (but without Maintainer header stating so).
4556         * emacs-lisp/elp.el: A fix to follow coding conventions.
4558         * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
4559         * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
4560         * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
4561         * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
4562         * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
4563         * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
4564         * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
4565         * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
4566         * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
4567         * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
4568         * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
4569         * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
4570         conventions in files from Gnus.
4572         * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
4573         * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
4574         * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
4575         * echistory.el, electric.el, emacs-lisp/authors.el,
4576         * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
4577         * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
4578         * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
4579         * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
4580         * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
4581         * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
4582         * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
4583         * international/codepage.el, international/iso-ascii.el,
4584         * international/iso-insert.el, international/iso-transl.el,
4585         * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
4586         * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
4587         * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
4588         * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
4589         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
4590         * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
4591         * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
4592         * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
4593         * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
4594         * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
4595         * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
4596         * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
4597         * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
4598         * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
4599         * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
4600         * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
4601         * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
4602         * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
4603         * textmodes/tex-mode.el, textmodes/text-mode.el,
4604         * textmodes/underline.el, thingatpt.el, time.el, timer.el,
4605         * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
4606         * vt100-led.el, window.el: Some fixes to follow coding conventions in
4607         files maintained by FSF.
4609 2001-07-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4611         * arc-mode.el: A fix to follow coding conventions.
4613         * bindings.el: Ditto.
4615         * cdl.el: Ditto.
4617         * comint.el: Ditto.
4619         * cus-start.el: Ditto.
4621         * shell.el: Ditto.
4623         * skeleton.el: Ditto.
4625 2001-07-13  Stefan Monnier  <monnier@cs.yale.edu>
4627         * info.el (Info-build-node-completions):
4628         Make Info-current-file-completions buffer local.
4630 2001-07-13  Gerd Moellmann  <gerd@gnu.org>
4632         * which-func.el (which-func-mode, which-func-ff-hook)
4633         (which-function-mode): Remove references to which-func-mode-global.
4635         * calendar/cal-islam.el (calendar-goto-islamic-date):
4636         Add autoload cookie.
4638         * play/fortune.el: Add types to defcustoms.
4640 2001-07-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4642         * language/czech.el: A fix to follow coding conventions.
4644 2001-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
4646         * speedbar.el (speedbar-supported-extension-expressions): Add .g
4647         to the extension list, for antlr-mode.  From Christoph Wedler
4648         <Christoph.Wedler@sap.com>.
4650 2001-07-11  Stefan Monnier  <monnier@cs.yale.edu>
4652         * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
4653         (vc-dired-mode-map): Fix the madness.
4655         * vc-hooks.el (vc-mode): Dummy function for doc purposes.
4656         (vc-prefix-map): Moved back from vc.el.
4658 2001-07-11  Gerd Moellmann  <gerd@gnu.org>
4660         * mail/mail-extr.el (mail-extr-all-top-level-domains):
4661         Increase the size of the obarray.
4662         (mail-extr-all-top-level-domains): Add more toplevel domains,
4663         add more long names.
4664         From: Per Starback <starback@ling.uu.se>.
4666 2001-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
4668         * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
4669         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
4671         * progmodes/ada-mode.el: Ditto.
4673         * progmodes/ada-xref.el: Ditto.
4675 2001-07-11  Miles Bader  <miles@gnu.org>
4677         * finder.el (finder-insert-at-column): Also move to the next line
4678         if exactly at COLUMN.
4680 2001-07-10  Gerd Moellmann  <gerd@gnu.org>
4682         * help.el (describe-function-1): When printing FUNCTION's
4683         documentation, don't assume FUNCTION is a symbol.
4685         * startup.el (normal-top-level): Don't operate on the initial
4686         frame if we failed to create one.
4688 2001-07-10  Martin Stjernholm  <bug-cc-mode@gnu.org>
4690         * cc-cmds.el (c-indent-exp): Keep the indentation of the block
4691         itself, i.e. only indent the contents in it.
4693 2001-07-10  Markus Rost  <rost@math.ohio-state.edu>
4695         * mail/rmail.el (rmail-show-message): Show beginning of message in
4696         all windows containing it.
4698 2001-07-10  Eli Zaretskii  <eliz@is.elta.co.il>
4700         * term/tty-colors.el: Fix the header line and copyright years.
4702 2001-07-09  Gerd Moellmann  <gerd@gnu.org>
4704         * emacs-lisp/advice.el (ad-make-advised-definition): If the
4705         original definition has an interactive form, but is Elp
4706         instrumented, use the interactive form of the function called by
4707         elp-wrapper.
4709         * winner.el (winner-equal): Make it a defun.  Don't compare Winner
4710         configurations with compare-window-configuration; they aren't
4711         window configurations.
4713         * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
4714         from the server for the format we expect.  Don't use it if it
4715         doesn't look like what the Internet draft for FTP extensions specifies.
4717         * toolbar/*.pbm: Cleaned up.
4718         From Luis Fernandes <elf@ee.ryerson.ca>.
4720 2001-07-09  Martin Stjernholm  <bug-cc-mode@gnu.org>
4722         * cc-cmds.el: Extended the kludge to interoperate with the
4723         delsel and pending-del packages wrt to the new function
4724         `c-electric-delete-forward'.
4726 2001-07-08  Stefan Monnier  <monnier@cs.yale.edu>
4728         * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
4729         to delay the call to <mode> for global minor modes.
4730         (easy-mmode-define-navigation): Only recenter if interactive.
4732 2001-07-06  Gerd Moellmann  <gerd@gnu.org>
4734         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
4735         to lisp-indent-line.
4737         * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
4738         from the server.  Call encode-time only when we are sure that we
4739         got a 213 response.
4741 2001-07-06  Simon Josefsson  <jas@extundo.com>
4743         * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
4744         (mail-envelope-from): New user option.
4745         (sendmail-send-it): Use it.
4747 2001-07-06  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
4749         * ps-print.el: Use locale dependant date to print date in header.
4750         Doc fix.
4751         (ps-print-version): New version number (6.5.3).
4752         (ps-right-header, ps-right-footer): Initialization and doc fix.
4753         (ps-time-stamp-locale-default): New fun.
4755 2001-07-06  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
4757         * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
4758         field problem with MIME-mode.
4760         * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
4762 2001-07-06  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
4764         * mail/rmail.el (rmail-reply): Don't forget to narrow header in
4765         MIME-mode.
4767 2001-07-06  Eli Zaretskii  <eliz@is.elta.co.il>
4769         * bindings.el (mode-line-mule-info): Don't show the tip with
4770         buffer-file-coding-system if that is nil.
4772 2001-07-05  Gerd Moellmann  <gerd@gnu.org>
4774         * calendar/todo-mode.el (todo-top-priorities): Use delete-region
4775         instead of kill-line.
4777         * play/pong.el: Fix first line.  From Pavel Jan\e,Bm\e(Bk
4778         <Pavel@Janik.cz>.
4780         * battery.el (battery-update): Add help-echo.  From Pavel Jan\e,Bm\e(Bk
4781         <Pavel@Janik.cz>.
4783 2001-07-04  Gerd Moellmann  <gerd@gnu.org>
4785         * font-lock.el (c-font-lock-keywords-3): When matching something
4786         like `struct X Y', finish with point after Y.
4788 2001-07-04  Simon Josefsson  <jas@extundo.com>
4790         * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
4791         in caller buffer.
4793 2001-07-03  Eli Zaretskii  <eliz@is.elta.co.il>
4795         * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
4796         instead of string-match to find the basename of the file.
4797         From Pascal Obry <p.obry@wanadoo.fr>.
4799         * net/browse-url.el (browse-url-default-windows-browser):
4800         Support the MS-DOS port when it runs on Windows.
4801         (browse-url-browser-function) [ms-dos]: Default to
4802         browse-url-default-windows-browser.
4804         * help.el (locate-library): Enable code that looks for compressed
4805         libraries if auto-compression-mode is on.
4807 2001-07-02  Stefan Monnier  <monnier@cs.yale.edu>
4809         * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
4811 2001-07-02  Gerd Moellmann  <gerd@gnu.org>
4813         * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
4815 2001-07-02  Eli Zaretskii  <eliz@is.elta.co.il>
4817         * allout.el: Fix the header line, so that finder.el recognizes it.
4818         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
4820         * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
4821         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
4823 2001-06-29  Eli Zaretskii  <eliz@is.elta.co.il>
4825         * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
4827         * ps-bdf.el (bdf-directory-list): Use the value relative to
4828         installation-directory for MS-Windows as well.
4830 2001-06-29  Richard M. Stallman  <rms@gnu.org>
4832         * wid-edit.el (widget-color-sample-face-get):
4833         Return ((foreground-color . COLOR)) instead of constructing a face.
4835 2001-06-29  Eli Zaretskii  <eliz@is.elta.co.il>
4837         * faces.el (region): Change the background color for the
4838         light-background color display to lightgoldenrod2, to make it
4839         visible on some laptops.
4841 2001-06-28  Richard M. Stallman  <rms@gnu.org>
4843         * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
4844         (rmail-msg-restore-non-pruned-header): Likewise.
4845         If point was in the old pruned header, put it at the top.
4846         (rmail-msg-prune-header): If point was at the top, keep it there.
4848         * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
4849         (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
4851 2001-06-28  Stefan Monnier  <monnier@cs.yale.edu>
4853         * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
4855 2001-06-28  Karl Fogel  <kfogel@red-bean.com>
4857         * saveplace.el: Update maintainer email address.
4859 2001-06-27  Francesco Potorti`  <pot@gnu.org>
4861         * uniquify.el: (uniquify-rationalize-file-buffer-names):
4862           Undo previous change.
4864 2001-06-27  Francesco Potorti`  <pot@gnu.org>
4866         * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
4867         preliminary quick reordering.  Can speed things up dramatically.
4869 2001-06-26  Richard M. Stallman  <rms@gnu.org>
4871         * dired.el (dired-get-filename): A file name starting with ~
4872         is not absolute in this context.
4874         * which-func.el (which-func-maxout): Increase default to 500000.
4875         (which-function-mode): This is now the "real" name of the function.
4876         (which-func-mode): Now an alias.
4877         (which-func-mode-global): Name deleted.
4879         * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
4880         button-2, when binding hs-mouse-toggle-hiding.
4882 2001-06-26  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
4884         * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
4885         (rmail-msg-prune-header): Likewise.
4886         (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
4887         and `rmail-msg-prune-header'.
4889 2001-06-25  Stefan Monnier  <monnier@cs.yale.edu>
4891         * textmodes/fill.el (fill-region-as-paragraph): Don't look further
4892         back than LINEBEG.
4894 2001-06-25  Eli Zaretskii  <eliz@is.elta.co.il>
4896         * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
4897         window where they clicked the mouse has a header line, adjust
4898         vertical movement by one.
4900 2001-06-25  Milan Zamazal  <pdm@zamazal.org>
4902         * progmodes/glasses.el (glasses-make-readable): Consider underscores
4903         too when separating a parenthesis.
4905 2001-06-24  Eli Zaretskii  <eliz@is.elta.co.il>
4907         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
4908         (bookmark-bmenu-hide-filenames): Add help-echo to
4909         mouse-highlighted text.
4910         (bookmark-bmenu-show-filenames): Remove help-echo property from
4911         the whitespace.
4913 2001-06-23  Eli Zaretskii  <eliz@is.elta.co.il>
4915         * files.el (auto-mode-alist): Add configure.ac (autoconf).
4916         From Karl Eichwalder <ke@suse.de>.
4918 2001-06-23  Richard M. Stallman  <rms@gnu.org>
4920         * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
4922         * progmodes/cc-styles.el (c-set-style): Don't specify initial
4923         contents for completing-read.
4925 2001-06-22  Richard M. Stallman  <rms@gnu.org>
4927         * menu-bar.el (menu-bar-make-toggle): Construct the
4928         function's doc string from HELP, not DOC, and make it accurate by
4929         adding "Toggle whether to " at the front and downcasing the initial.
4930         Change the HELP arg in some calls to make it fit this usage.
4932         * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
4933         Undo previous change.
4935 2001-06-22  Eli Zaretskii  <eliz@is.elta.co.il>
4937         * indent.el (indent-relative-maybe, indent-relative): Doc fix.
4939         * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
4941 2001-06-21  Eli Zaretskii  <eliz@is.elta.co.il>
4943         * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
4945         * dabbrev.el (dabbrev--select-buffers): Fix last change.
4947 2001-06-20  Richard M. Stallman  <rms@gnu.org>
4949         * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
4950         broken out from dabbrev--find-expansion.  Handle minibuffer
4951         specially here.
4952         (dabbrev--find-expansion): Simplify code in various ways.
4953         Don't treat minibuffers specially.
4954         Call dabbrev--make-friend-buffer-list.
4955         (dabbrev--select-buffers): Don't treat minibuffers specially.  Simplify.
4956         (dabbrev--scanning-message): Do nothing when minibuffer is current.
4958 2001-06-19  John Wiegley  <johnw@gnu.org>
4960         * eshell/eshell.el: Don't load in esh-util if it's already loaded.
4961         Also, added a comment describing how to greatly speedup Eshell
4962         loadup time, by concatenating together all of Eshell's .elc files.
4964 2001-06-19  John Wiegley  <johnw@gnu.org>
4966         * eshell/esh-mode.el: Disabled a test that often yields false failures.
4968 2001-06-19  Eli Zaretskii  <eliz@is.elta.co.il>
4970         * woman.el (WoMan-highlight-references): Add help-echo to
4971         mouse-highlighted text.
4973 2001-06-18  Stefan Monnier  <monnier@cs.yale.edu>
4975         * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
4977 2001-06-18  Gerd Moellmann  <gerd@gnu.org>
4979         * international/quail.el (quail-start-conversion):
4980         Reset quail-translating to nil.
4982         * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
4983         bound.  Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
4985 2001-06-18  Eli Zaretskii  <eliz@is.elta.co.il>
4987         * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
4988         mouse-highlighted text.
4990         * dired.el (dired-mark-pop-up): Fix last change.
4992 2001-06-17  Eli Zaretskii  <eliz@is.elta.co.il>
4994         * calendar/calendar.el (generate-calendar-month): Add help-echo to
4995         mouse-highlighted text.
4997         * net/quickurl.el (quickurl-url-file): Run through
4998         convert-standard-filename.
4999         (quickurl-list-populate-buffer): Add help-echo to
5000         mouse-highlighted text.
5001         (top-level): Update Dave's URL.
5003         * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
5004         mouse-highlighted text.
5006         * textmodes/page-ext.el (pages-copy-header-and-position):
5007         Add help-echo to mouse-highlighted text.
5009         * tar-mode.el (tar-header-block-summarize): Add help-echo to
5010         mouse-highlighted text.
5012         * replace.el (occur): Add help-echo to mouse-highlighted text.
5014         * progmodes/sh-script.el (sh-mark-line): Add help-echo to
5015         mouse-highlighted text.
5017         * progmodes/cpp.el (cpp-make-button): Add help-echo to
5018         mouse-highlighted text.
5020         * progmodes/compile.el (compile-reinitialize-errors):
5021         Add help-echo to mouse-highlighted messages.
5022         (compilation-forget-errors): Remove help-echo property as well.
5024         * play/landmark.el (lm-plot-square, lm-init-display):
5025         Add help-echo to mouse-highlighted text.
5027         * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
5028         Add help-echo to mouse-highlighted text.
5030         * dired.el (dired-insert-set-properties): Add help-echo to
5031         mouse-highlighted text.
5032         (dired-mark-pop-up): Remove help-echo property from the file name.
5034         * comint.el (comint-send-input): Add help-echo to
5035         mouse-highlighted text.
5037         * buff-menu.el (list-buffers-noselect): Add help-echo to
5038         mouse-highlighted text.
5040         * arc-mode.el (archive-summarize-files): Add help-echo to
5041         mouse-highlighted text.
5043         * ffap.el (ffap-machine-p): Always return nil if
5044         open-network-stream is not fboundp.
5046 2001-06-17  Stefan Monnier  <monnier@cs.yale.edu>
5048         * textmodes/sgml-mode.el: Move `provide' to the end.  Update copyright.
5049         (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
5050         Bind the latin-1 charset-char to sgml-maybe-name-self rather than
5051         incorrectly binding chars between 128 and 256 to it.
5052         (sgml-maybe-name-self): Handle latin-1 chars properly.
5053         (sgml-tags-invisible): Bind buffer-file-name to nil.
5054         Use unwind-protect and restore-buffer-modified-p.
5055         (sgml-point-entered): Use buffer-substring-no-properties.
5056         (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
5057         (html-mode): Don't force `imenu-sort-function'.
5059 2001-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
5061         * tar-mode.el: Fix the copyright notice.
5063         * font-lock.el (font-lock-comment-face): For tty's with dark
5064         background, use "red1", since "lightred" is not one of the colors
5065         recognized by tty-colors.el.
5067         * tar-mode.el (tar-extract): Call generate-new-buffer-name to
5068         create a buffer for extracted file, in case there's more than one
5069         file by that name in an archive, possibly in different
5070         directories.  From Kevin Rodgers <kevinr@ihs.com>.
5072         * format.el (format-alist): Doc fix.  Suggested by Alex Schroeder
5073         <alex@gnu.org>.
5075 2001-06-15  Miles Bader  <miles@gnu.org>
5077         * textmodes/texinfmt.el (texinfo-format-syntax-table):
5078         Revert previous change.
5080 2001-06-14  Richard M. Stallman  <rms@gnu.org>
5082         * replace.el (keep-lines-read-args): Return just a regexp.
5083         Provide nil for the region args.
5084         (keep-lines, flush-lines, how-many):
5085         Calculate the defaults for the region here, when args are nil.
5087 2001-06-14  Eli Zaretskii  <eliz@is.elta.co.il>
5089         * rot13.el (rot13-other-window): Some more doc fix.
5091 2001-06-14  Per Starback  <starback@ling.uu.se>
5093         * replace.el (case-replace, query-replace-from-history-variable)
5094         (query-replace-to-history-variable, keep-lines-read-args)
5095         (occur-revert-function, query-replace-help): Dox fix.
5097 2001-06-14  Eli Zaretskii  <eliz@is.elta.co.il>
5099         * rot13.el (rot13-other-window): Doc fix.
5101 2001-06-14  Miles Bader  <miles@gnu.org>
5103         * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
5104         of " and \ to "." (punctuation).
5105         * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
5107 2001-06-13  Richard M. Stallman  <rms@gnu.org>
5109         * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
5111         * simple.el (shell-command-on-region): Never kill the
5112         *Shell Command Output* buffer.
5114 2001-06-13  Stefan Monnier  <monnier@cs.yale.edu>
5116         * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
5118 2001-06-10  Stefan Monnier  <monnier@cs.yale.edu>
5120         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
5121         New var, to recognize ${ $' and PODs.
5122         (perl-font-lock-syntactic-face-function): New function.
5123         (perl-mode): Use them.
5124         (perl-continuation-line-p): New function, from perl-calculate-indent.
5125         (perl-calculate-indent): Use it, to properly handle continuation
5126         lines of continuation lines.
5128 2001-06-10  Eli Zaretskii  <eliz@is.elta.co.il>
5130         * server.el (server-process, server-buffer-clients): Doc fix.
5131         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5133 2001-06-09  John Wiegley  <johnw@gnu.org>
5135         * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
5136         test if the last command was Lisp or not.
5137         (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
5138         B x C".
5140 2001-06-08  Eli Zaretskii  <eliz@is.elta.co.il>
5142         * dos-w32.el (grep-regexp-alist): Remove definition, since the
5143         general one on compile.el supports drive letters.
5145 2001-06-08  Carsten Dominik  <dominik@strw.leidenuniv.nl>
5147         * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
5148         key description.
5150         * textmodes/reftex-sel.el (reftex-select-jump): New command.
5152         * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
5153         (reftex-toc-jump): New command.
5155         * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
5156         to parse international characters as well.
5158         * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
5159         `reftex-fancyref-fref', `reftex-fancyref-Fref'.
5161         * textmodes/reftex-vars.el: Protect single backslash in docstrings.
5163         * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
5164         TAB to the key separators.
5166 2001-06-07  Eli Zaretskii  <eliz@is.elta.co.il>
5168         * international/mule.el (auto-coding-alist): Remove redundant
5169         up-cased versions of the extensions (auto-coding-alist-lookup is
5170         case-insensitive where needed).  Recognize .gz, .Z, .bz, .bz2, and
5171         .gpg files as binary.  Suggested by Karl Berry <karl@gnu.org>.
5173 2001-06-05  Eli Zaretskii  <eliz@is.elta.co.il>
5175         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
5177 2001-06-01  Richard M. Stallman  <rms@gnu.org>
5179         * help.el (describe-variable): Put value on same line
5180         with preceding text, if it is short enough to look good that way.
5182 2001-06-01  Eli Zaretskii  <eliz@is.elta.co.il>
5184         * term/internal.el (IT-unicode-translations): New variable.
5185         (IT-setup-unicode-display): New function.
5187 2001-06-01  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5189         * ps-print.el: Handle before-string and after-string overlay properties
5190         in ps-print-*-with-faces commands.  Doc fix.
5191         (ps-print-version): New version number (6.5.2).
5192         (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
5193         for XEmacs.
5194         (ps-prefix-quote): Doc fix.
5195         (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
5196         (ps-basic-plot-str, ps-plot-string): New funs.
5198 2001-05-31  Stefan Monnier  <monnier@cs.yale.edu>
5200         * progmodes/etags.el (tags-compression-info-list): Fix docstring
5201         and :type spec.
5203 2001-05-31  Gerd Moellmann  <gerd@gnu.org>
5205         * international/mule-cmds.el (inactivate-input-method):
5206         Set input-method-function to nil.
5208         * xml.el (xml-parse-tag): The document may contain invalid characters.
5209         From ShengHuo ZHU  <zsh@cs.rochester.edu>
5211 2001-05-31  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
5213         * mail/rmailsum.el (rmail-message-subject-p): Don't call
5214         `rmail-summary-line-decoder' if the message does not have
5215         a Subject: field.
5217         * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
5219         * mail/rmail.el (rmail-insert-mime-resent-message-function):
5220         New variable.
5221         (rmail-resend): Modify to work in `rmail-view-buffer'; call
5222         `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
5223         is non-nil.
5225 2001-05-30  Stefan Monnier  <monnier@rum.cs.yale.edu>
5227         * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
5229 2001-05-29  Sam Steingold  <sds@gnu.org>
5231         * faces.el (face-valid-attribute-values): Bind `valid' directly
5232         instead of using `setq'.
5234         * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
5235         Use `tex-shell-buf'.
5236         (tex-shell-proc): Use `tex-shell-running'.
5237         (tex-shell-buf-no-error): New function.
5238         (tex-send-tex-command): Use it.
5239         (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
5240         (tex-kill-job): Check the process before calling `quit-process'.
5242 2001-05-29  Gerd Moellmann  <gerd@gnu.org>
5244         * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
5245         UTF-8 sequences.
5247 2001-05-28  Miles Bader  <miles@gnu.org>
5249         * comint.el (comint-carriage-motion): Renamed from
5250         `comint-cr-magic'.  Operate on the buffer instead of the string
5251         (for use as a comint post-output filter, instead of as a
5252         pre-output filter).  Handle backspaces too.  Add to the
5253         `comint-output-filter-functions' hook instead of
5254         `comint-preoutput-filter-functions'.
5256 2001-05-28  Gerd Moellmann  <gerd@gnu.org>
5258         * language/japan-util.el (japanese-hankaku): Prefer the charset
5259         `jisx0201' when the optional argument `ascii-only' is not specified.
5260         (japanese-hankaku-region): Ditto.
5261         From Katsumi Yamaoka <yamaoka@jpl.org>
5263 2001-05-28  Stefan Monnier  <monnier@cs.yale.edu>
5265         * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
5266         (outline-invisible-p): New function.
5267         (hide-leaves): Save excursion.
5268         (hide-other): Stop looping when reaching bobp.
5270 2001-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
5272         * cus-edit.el (custom-file): Fix last change.
5274 2001-05-27  Stefan Monnier  <monnier@cs.yale.edu>
5276         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
5277         same definition in byte-compile-function-environment as `autoload'
5278         would put in `symbol-function'.
5280         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
5281         patch to correct the error message as well.
5283 2001-05-27  Eli Zaretskii  <eliz@is.elta.co.il>
5285         * cus-edit.el (custom-file): Don't assume we were invoked with -q
5286         unless ~/.emacs exists.
5288         * novice.el (enable-command): If user-init-file is nil or does not
5289         exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
5291 2001-05-25  Stefan Monnier  <monnier@cs.yale.edu>
5293         * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
5294         (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
5295         Allow spaces around macro arguments.
5296         (tex-mode-map): Inherit from text-mode-map, but rebind \t to
5297         indent-for-tab-command.
5298         (latex-mode-map, plain-tex-mode-map): New keymaps.
5299         Inherit from tex-mode-map.
5300         (tex-common-initialization): Don't setup the keymap any more
5301         since it's now done right by define-derived-mode.
5302         (latex-mode): Set skeleton-end-hook to nil.
5303         (latex-skeleton-end-hook): Remove.
5304         (tex-latex-block, latex-insert-item): Simplify.
5305         (latex-syntax-after): Use following-char rather than char-after.
5306         (tex-discount-args-cmds, tex-count-words): New functions.
5308         * textmodes/tildify.el (tildify-ignored-environments-alist):
5309         Recognize \verb* as well.
5311         * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
5312         (perl-comment-indent): Simplify to let newcomment.el do its job.
5313         (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
5314         (perl-mark-function): Cleanup the namespace.
5315         (perl-calculate-indent): Don't be fooled by nested functions.
5317         * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
5319         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5320         Fix the arg of `load'.  From Dave Love <fx@gnu.org>.
5322 2001-05-25  Andrew Choi  <akochoi@i-cable.com>
5324         * international/titdic-cnv.el (ctlau-gb-converter): `\' should
5325         actually be `\\'.
5326         (ctlau-b5-converter): Likewise.
5328 2001-05-24  Andrew Choi  <akochoi@i-cable.com>
5330         * international/titdic-cnv.el (quail-misc-package-ext-info):
5331         Change CTLauB.el to CTLau-b5.el.
5333 2001-05-23  Stefan Monnier  <monnier@cs.yale.edu>
5335         * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
5336         rather than beginning-of-line to avoid problems with fields.
5337         (gud-perldb-massage-args): Use unless and push.
5338         (gud-chdir-before-run): New var.
5339         (gud-common-init): Use it.
5341 2001-05-24  Andrew Choi  <akochoi@i-cable.com>
5343         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5344         delete entries for chinese-ctlau and chinese-ctlaub.
5345         (quail-misc-package-ext-info): Add entries for chinese-ctlau and
5346         chinese-ctlaub.
5347         (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
5348         New functions.
5350 2001-05-22  Gerd Moellmann  <gerd@gnu.org>
5352         * cus-edit.el (custom-comment-show): Remove debug code.
5354         * language/japan-util.el (japanese-symbol-table): Fix handling of
5355         Japanese long tone sign.  From Kenichi Handa <handa@etl.go.jp>.
5357 2001-05-21  Stefan Monnier  <monnier@cs.yale.edu>
5359         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
5360         Renamed by removing the silly `-flag' suffix.
5361         (diff-mode, diff-minor-mode, diff-find-source-location): Update.
5363 2001-05-20  Stefan Monnier  <monnier@cs.yale.edu>
5365         * replace.el (keep-lines-read-args): Use `copy-marker'.
5366         (how-many): Save excursion properly.
5367         (occur-mode): Use define-derived-mode.
5368         (perform-replace): Use with-current-buffer.
5370 2001-05-20  Richard M. Stallman  <rms@gnu.org>
5372         * play/landmark.el (lm): Use "p" not "P" for interactive spec.
5374         * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
5376         * info.el (Info-read-subfile): Widen before finding the
5377         desired node in the subfile.
5379         * startup.el (command-line-1): When >2 files visited,
5380         leave the last one visible, and make that the selected window.
5382 2001-05-20  Gerd Moellmann  <gerd@gnu.org>
5384         * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
5386 2001-05-20  Eli Zaretskii  <eliz@is.elta.co.il>
5388         * international/ccl.el (define-ccl-program): Fix a typo.
5389         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5391         * international/mule.el (decode-char): Fix a typo.  From Pavel
5392         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5394         * textmodes/artist.el (artist-mode): Fix a typo.  From Pavel
5395         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5397         * frame.el (automatic-hscrolling): Fix a typo.  From Pavel
5398         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5400 2001-05-18  Sam Steingold  <sds@gnu.org>
5402         * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
5403         and [RET] to `cvs-mode-find-file'.
5405 2001-05-18  John Wiegley  <johnw@gnu.org>
5407         * eshell/esh-ext.el (eshell-explicit-command-char): A new
5408         configuration variable, which determines the initial character
5409         that forces use of an external version of a command.  The default
5410         is *, but may be set to \, for example.
5412         * eshell/esh-ext.el (eshell-explicit-command):
5413         Use `eshell-explicit-command-char' instead of ?*.
5415         * eshell/esh-cmd.el (eshell/which):
5416         Use `eshell-explicit-command-char' instead of ?*.
5418         * eshell/em-cmpl.el (eshell-completion-command-name)
5419         (eshell-complete-commands-list): Use `eshell-explicit-command-char'
5420         instead of ?*.
5422 2001-05-18  Gerd Moellmann  <gerd@gnu.org>
5424         * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
5425         subst-char-in-string.
5426         (ange-ftp-after-parse-ls-hook): New variable.
5427         (ange-ftp-ls): Run that hook.
5428         From Peter Milliken <Peter.Milliken@GTECH.COM>.
5430         * tmm.el (tmm-get-keymap): Fix handling of :filter.
5431         (tmm-add-prompt): Bind buffer-read-only to nil when inserting
5432         text into *Completions*.
5434         * net/goto-addr.el (goto-address-at-point): Deal with URLs
5435         part of which look like email addresses.
5437 2001-05-18  Andrew Innes  <andrewi@gnu.org>
5439         * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
5440         Use . instead of absolute path for lisp dir, to avoid bug in W2K
5441         cmd.exe's handling of FOR loops.
5442         (autoloads): Set find-file-suppress-same-file-warnings to t to
5443         avoid slew of spurious messages.
5445 2001-05-18  Simon Josefsson  <simon@josefsson.org>
5447         * mail/smtpmail.el (maybe-append-domain): Renamed to
5448         `smtpmail-maybe-append-domain'.
5449         (smtpmail-via-smtp): Use the new name.
5451         * net/browse-url.el (browse-url-browser-function): Add kde.
5452         (browse-url-kde-program, browse-url-kde-args): New variables.
5453         (browse-url-kde): New function.
5455 2001-05-18  Miles Bader  <miles@gnu.org>
5457         * simple.el (delete-horizontal-space, just-one-space):
5458         Use `constrain-to-field' instead of `field-end'/`field-beginning',
5459         because it's more efficient for large files.
5461 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
5463         * mail/rmail.el (rmail-require-mime-maybe): New function.
5464         (rmail): Use it.
5465         (rmail-mode): Handle the case of finding Rmail files.
5467         * emacs-lisp/elp.el (elp-instrument-function): Handle advised
5468         functions.
5470 2001-05-17  Stefan Monnier  <monnier@cs.yale.edu>
5472         * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
5473         text-property after moving to the beginning of line and regardless
5474         of the value of font-lock-multiline.
5476 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
5478         * startup.el (fancy-splash-screens): Ignore events on the mode-line.
5480         * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
5481         last coding system used before calling set-buffer-modified-p
5482         because that function changes last-coding-system.
5484 2001-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
5486         * files.el (switch-to-buffer-other-window)
5487         (switch-to-buffer-other-frame): Add an xref to display-buffer in
5488         the doc string.
5490 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
5492         * language/slovak.el, language/czech.el: New maintainer.
5494 2001-05-16  Sam Steingold  <sds@gnu.org>
5496         * emacs-lisp/cl-indent.el (toplevel): Indent the :method
5497         sub-form of `defgeneric' correctly.
5499 2001-05-16  Gerd Moellmann  <gerd@gnu.org>
5501         * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
5502         of `c'.
5504         * textmodes/outline.el (outline-font-lock-level): Remove the
5505         condition-case, test what outline-level returns instead, to
5506         ease debugging.
5508         * international/mule.el (auto-coding-regexp-alist): New user-option.
5509         (auto-coding-from-file-contents): New function.
5510         (set-auto-coding): Use it to determine a coding system.
5512 2001-05-15  Gerd Moellmann  <gerd@gnu.org>
5514         * mouse.el (mouse-delete-other-windows): Doc fix.
5516         * emacs-lisp/lisp-mode.el (lisp-mode):
5517         Make font-lock-keywords-case-fold-search a buffer-local variable with
5518         make-local-variable before setting it.
5520 2001-05-14  Eli Zaretskii  <eliz@is.elta.co.il>
5522         * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
5523         prefixes.
5525 2001-05-14  Gerd Moellmann  <gerd@gnu.org>
5527         * hexl.el (hexl-current-address): Print a message when called
5528         interactively.
5530 2001-05-11  Stefan Monnier  <monnier@cs.yale.edu>
5532         * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
5534         * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
5536         * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
5538 2001-05-11  Gerd Moellmann  <gerd@gnu.org>
5540         * startup.el (command-line): If parameters have been changed in
5541         the init files which influence font selection, clear the face
5542         cache so that faces get realized with the new parameters.
5544         * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
5546 2001-05-10  Stefan Monnier  <monnier@cs.yale.edu>
5548         * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
5550 2001-05-10  Eli Zaretskii  <eliz@is.elta.co.il>
5552         * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
5553         unibyte.  Suggested by Kenichi Handa <handa@etl.go.jp>.
5555 2001-05-10  Gerd Moellmann  <gerd@gnu.org>
5557         * net/browse-url.el (browse-url-filename-alist): Allow UNC file
5558         names for MS-Windows and MS-DOS.  From Dan Holmsand <dan@eyebee.com>.
5560 2001-05-09  John Wiegley  <johnw@gnu.org>
5562         * eshell/esh-util.el (eshell-convert-numeric-arguments):
5563         Annotated the documentation string to tell users about
5564         `eshell-no-numeric-conversions'.
5566         * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
5567         conversions if a Lisp function has the property
5568         `eshell-no-numeric-conversions' set to a non-nil value.
5570         * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
5571         eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
5572         property `eshell-no-numeric-conversions' on the following
5573         functions (which all deal with filesystem entities, and never Lisp
5574         numerical values): eshell/cd, eshell/pushd, eshell/popd,
5575         eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
5576         eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
5577         eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
5578         eshell/which, eshell/addpath.
5580 2001-05-09  John Wiegley  <johnw@gnu.org>
5582         * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
5583         encountered as an argument, don't convert it right away, but tag
5584         the first character of the string with the text properties
5585         `number', which signifies to `eshell-lisp-command' that the
5586         argument should be passed through `string-to-number' if it is
5587         actually used in the call to a Lisp function.
5589         * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
5590         function, convert any string arguments that have been tagged as
5591         "numbers", by calling string-to-number.
5593         * eshell/esh-util.el (eshell-number-regexp): Now that number
5594         conversions only happen for Lisp function calls, the number regexp
5595         should now match all integer and floating point forms.
5597         * eshell/esh-proc.el: Disable `eshell-stop-process' and
5598         `eshell-continue-process', since they are both nonfunctional at
5599         the moment.
5600         (eshell-proc-initialize): Don't bind keys for
5601         `eshell-stop-process' or `eshell-continue-process'.
5603         * eshell/em-unix.el (eshell-shuffle-files):
5604         Apply `directory-file-name' before calling `file-name-directory'.
5606         * eshell/em-hist.el (eshell-add-to-history): Reference to
5607         `eshell-history-ring' needed to be `eshell-history-index'.
5609         * calendar/timeclock.el (timeclock-find-discrep):
5610         Initialize `elapsed' to 0.
5611         (timeclock-find-discrep): Set `timeclock-last-event-workday' if
5612         it's still nil.
5614 2001-05-09  Stefan Monnier  <monnier@cs.yale.edu>
5616         * arc-mode.el (archive-int-to-mode): Construct the string directly.
5617         (archive-mode): Use capitalize.
5618         (archive-unique-fname): Use make-temp-file.
5620 2001-05-09  Gerd Moellmann  <gerd@gnu.org>
5622         * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
5624 2001-05-09  Eli Zaretskii  <eliz@is.elta.co.il>
5626         * tar-mode.el (tar-extract): Pay attention to the value of
5627         coding-system-for-read, if it is non-nil.
5629         * calendar/holidays.el (holidays): Add an autoload cookie.
5630         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
5632 2001-05-08  John Wiegley  <johnw@gnu.org>
5634         * calendar/timeclock.el (timeclock-workday-remaining):
5635         Changed logic for determining how much time is remaining.
5636         (timeclock-workday-elapsed): Don't accept a "relative" argument
5637         for the current day's elapsed time.  What could that have meant?
5638         (timeclock-workday-elapsed-string): No "relative" argument anymore.
5639         (timeclock-when-to-leave): Changed logic, similarly to what was
5640         done for `timeclock-workday-remaining'.
5641         (timeclock-find-discrep): Removed "today-only" argument, which had
5642         no meaning.  Fixed some more math problems.  The function now
5643         returns a three member list: (TOTAL-TIME-DISCREPANCY
5644         TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
5646 2001-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
5648         * w32-fns.el (convert-standard-filename): Start replacing slashes
5649         from the beginning of the file name, not from where the last
5650         invalid character was.  From "Andrew Maguire (SWW)"
5651         <Andrew.Maguire@Smallworld.co.uk>
5653 2001-05-07  MORIOKA Tomohiko  <tomo@m17n.org>
5655         The following changes are to provide infrastructure for handling
5656         MIME messages to rmail.  They don't affect the original behaviour
5657         if rmail-enable-mime is nil.
5659         * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
5660         (rmail-search-mime-message-function)
5661         (rmail-search-mime-header-function): New variables.
5662         (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
5663         (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
5664         `rmail-view-buffer' is hidden.
5665         (rmail-toggle-header): Likewise.  If rmail-enable-mime is non-nil,
5666         call rmai-show-mime-function.
5667         (rmail-display-labels): If rmail-enable-mime is non-nil, update
5668         mode-line-process of rmail-view-buffer.
5669         (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
5670         (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
5671         buffer.
5672         (rmail-next-message, rmail-next-undeleted-message): Be sure to
5673         set-buffer to the Rmail buffer.
5674         (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
5675         rmail-search-mime-header-function.
5676         (rmail-search-message): New function.
5677         (rmail-search): Call rmail-search-message to check if a message
5678         matches REGEXP, lastly update point after calling
5679         rmail-show-message.
5680         (rmail-undelete-previous-message, rmail-expunge-confirmed)
5681         (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
5682         (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
5683         header region, refer to rmail-msgref-vector while setting the
5684         current buffer to rmail-buffer temporarily.
5685         (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
5686         If rmail-enable-mime is non-nil, call
5687         rmail-insert-mime-forwarded-message-function instead of inserting
5688         forwarded message by itself.
5690         * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
5691         Rmail buffer.
5692         (rmail-set-label, rmail-next-labeled-message): Likewise.
5694         * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
5695         set-buffer to the Rmail buffer.
5696         (rmail-output-to-rmail-file): Likewise.
5697         (rmail-output): Likewise.
5699         * mail/rmailsum.el (rmail-message-subject-p): Process the result
5700         of mail-fetch-field by rmail-summary-line-decoder.
5701         (rmail-new-summary): Be sure to go to the Rmail buffer.
5702         If rmail-enable-mime is non-nil, set rmail-summary-buffer of
5703         rmail-view-buffer to nil.
5704         (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
5705         rmail-view-buffer.
5706         (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
5707         rmail-buffer.
5708         (rmail-summary-scroll-msg-down): Likewise.
5709         (rmail-summary-beginning-of-message): Likewise.
5710         (rmail-summary-wipe): Likewise.
5711         (rmail-summary-toggle-header): Use save-window-excursion, not
5712         save-excursion.  Update point in rmail-view-buffer, not in
5713         rmail-buffer.
5714         (rmail-summary-reply): Before calling rmail-reply, set buffer to
5715         rmail-view-buffer, not rmail-buffer.
5717 2001-05-07  Gerd Moellmann  <gerd@gnu.org>
5719         * cus-edit.el (custom-file): Signal an error if user-init-file is
5720         nil (running -q).
5722         * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
5724         * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
5725         Add :version.
5727         * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
5728         New option.
5729         (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
5730         only if smtpmail-warn-about-unknown-extensions is set.
5732         * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
5733         instead of rmail-sort-by-keywords.
5735         * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
5736         rmail-sort-by-keywords.
5738         * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
5739         rmail-summary-sort-by-keywords.  Doc fix.
5740         (rmail-summary-mode): Doc fix.
5742         * mail/rmail.el (rmail-edit): New Custom group.
5744         * mail/rmailedit.el (rmail-edit-mode): Doc fix.
5745         (rmail-edit-mode-hook): New user-option.
5747 2001-05-05  Richard M. Stallman  <rms@gnu.org>
5749         * help.el (help-xref-symbol-regexp): Recognize "source of"
5750         and friends, meaning make a link to the source file.
5751         (help-make-xrefs): Handle "source of" and friends
5752         by constructing a link that visits the source file.
5754         * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
5756 2001-05-04  Stefan Monnier  <monnier@cs.yale.edu>
5758         * progmodes/cperl-mode.el (cperl-font-lock-keywords)
5759         (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
5760         Renamed from perl-font-lock-keywords to avoid clashes.
5761         (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
5762         (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
5763         Updated correspondingly.
5765         * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
5766         Typo `nonexistant' -> `nonexistent'.
5768 2001-05-04  Martin Stjernholm  <bug-cc-mode@gnu.org>
5770         * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
5771         Split `c-electric-delete' into two functions where
5772         `c-electric-delete-forward' always deletes forward and
5773         `c-electric-delete' only contains the code necessary for XEmacs to
5774         choose between backward and forward deletion.
5776         * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
5777         get the electric behavior on that key too.
5778         (c-fill-paragraph): Fixed bogus direct use of
5779         c-comment-prefix-regexp, which caused an error when it's a list.
5781 2001-05-03  Eli Zaretskii  <eliz@is.elta.co.il>
5783         * dired-aux.el (dired-diff): Doc fix.
5785         * dired.el (dired-diff): Likewise.
5787 2001-05-03  Eli Zaretskii  <eliz@is.elta.co.il>
5789         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
5791 2001-05-02  Stefan Monnier  <monnier@cs.yale.edu>
5793         * vc.el (vc-next-action-on-file): Only force buffer+file to writable
5794         if both the buffer and the file are read-only.
5796         * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
5797         rather than font-lock-string-face.
5798         (sh-get-indent-info): Treat heredocs like strings.
5800 2001-05-02  Gerd Moellmann  <gerd@gnu.org>
5802         * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
5803         a newline following `}'.
5804         (texinfo-format-email): New function.
5805         (toplevel): Use texinfo-format-email for @email.
5806         (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
5807         Add `display'.
5808         (texinfo-sort-region): Goto point-min before sorting.
5809         (texinfo-set): Remove leading white space from value.
5810         From yagi@is.titech.ac.jp.
5812         * replace.el (query-replace-regexp-eval): Doc fix.
5814 2001-05-01  Stefan Monnier  <monnier@cs.yale.edu>
5816         * diff-mode.el (diff-nonexistant-face): New face.
5817         (diff-font-lock-keywords): Use it.
5819 2001-04-30  Eli Zaretskii  <eliz@is.elta.co.il>
5821         * font-lock.el (font-lock-mode): Doc fix.
5823         * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
5824         (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
5826 2001-04-30  Gerd Moellmann  <gerd@gnu.org>
5828         * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
5829         backslash at the start of the here-document delimiter.
5830         (sh-font-lock-syntactic-keywords): Likewise.
5832         * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
5834 2001-04-29  Eli Zaretskii  <eliz@is.elta.co.il>
5836         * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
5837         (tty-color-translate, tty-color-by-index, tty-color-values)
5838         (tty-color-desc): Doc fix.
5840 2001-04-27  Eli Zaretskii  <eliz@is.elta.co.il>
5842         * dired-aux.el (dired-do-create-files, dired-do-copy)
5843         (dired-do-symlink, dired-do-hardlink, dired-do-rename):
5844         Mention dired-dwim-target in the doc string.
5846 2001-04-28  Miles Bader  <miles@gnu.org>
5848         * dabbrev.el (dabbrev--ignore-buffer-p): New function.
5849         (dabbrev--find-expansion): Use it.
5850         (dabbrev--select-buffers): Don't select ignored buffers.
5852 2001-04-27  Gerd Moellmann  <gerd@gnu.org>
5854         * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
5856 2001-04-26  Richard M. Stallman  <rms@gnu.org>
5858         * dabbrev.el: Add doc strings for some functions.
5859         (dabbrev--eliminate-newlines): New variable.
5860         (dabbrev--substitute-expansion): Convert newlines to spaces
5861         if dabbrev--eliminate-newlines is set.
5862         If abbrev and expansion are both all-lower-case,
5863         leave dabbrev--last-case-pattern nil.
5865 2001-04-26  Gerd Moellmann  <gerd@gnu.org>
5867         * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
5868         if necessary, like in rmail-show-message.
5870 2001-04-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5872         * ps-print.el: Color specified by number is forced to be float number.
5873         (ps-print-version): New version number (6.5.1.1).
5874         (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
5875         initialization.
5876         (ps-prefix-quote): New internal var.
5877         (ps-print-quote): New fun.
5878         (ps-setup, ps-output-frame-properties, ps-float-format)
5879         (ps-format-color): Code fix.
5880         (ps-plot-region): Eliminate redundant foreground color text setting.
5882 2001-04-26  Eli Zaretskii  <eliz@is.elta.co.il>
5884         * dabbrev.el (dabbrev--select-buffers): Add a doc string.
5886 2001-04-25  Gerd Moellmann  <gerd@gnu.org>
5888         * faces.el (tty-handle-reverse-video): Don't set inverse-video.
5890 2001-04-25  Eli Zaretskii  <eliz@is.elta.co.il>
5892         * info.el (Info-additional-directory-list): Doc fix.
5894         * find-lisp.el (find-lisp-find-dired-filter)
5895         (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
5896         Add autoload cookies.  From Richard Y. Kim <ryk@dspwiz.com>.
5898 2001-04-25  Stefan Monnier  <monnier@cs.yale.edu>
5900         * progmodes/make-mode.el (makefile-font-lock-keywords):
5901         Rationalize the rules for includes and conditionals and use the
5902         keyword face for them.
5904         * faces.el (modify-face): Add compatibility for non-interactive use.
5906 2001-04-24  John Wiegley  <johnw@gnu.org>
5908         * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
5909         fix from last night, since it wasn't finding eshell/cd.
5911 2001-04-24  Gerd Moellmann  <gerd@gnu.org>
5913         * rect.el (string-rectangle): Revert to 20.x behaviour.
5914         (replace-rectangle): Make it an alias for string-rectangle.
5915         (string-insert-rectangle): New function.
5917 2001-04-23  John Wiegley  <johnw@gnu.org>
5919         * eshell/em-unix.el (eshell/diff): Fixed problems that were
5920         occurring with Emacs 21's diff.el/compile.el interaction layer.
5922 2001-04-23  Colin Walters  <walters@cis.ohio-state.edu>
5924         * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
5925         case where the function was defined in a file, but not part of an
5926         eshell module.
5928 2001-04-23  John Wiegley  <johnw@gnu.org>
5930         * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
5931         code to work around a redisplay problem I've been having.
5933 2001-04-23  John Wiegley  <johnw@gnu.org>
5935         * calendar/timeclock.el (timeclock-day-required): If the time
5936         required for a particular day is not set, use `timeclock-workday'.
5937         (timeclock-find-discrep): Added some sample code in a comment.
5939         * eshell/eshell.el (eshell-command): Made a few changes so that
5940         `eshell-command' could be called programmatically.
5942         * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
5944         * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
5946 2001-04-23  John Wiegley  <johnw@gnu.org>
5948         * calendar/timeclock.el: Updated copyright.
5949         (timeclock-generate-report): Don't report the daily or two-week
5950         total, if no time has been worked in that period.
5951         (timeclock-find-discrep): Moved call to `file-readable-p'; removed
5952         final computational form, which was unnecessary; corrected a
5953         parsing problem when timeclock-relative was nil.
5955 2001-04-23  Kahlil Hodgson <kahlil@discus.anu.edu.au>
5957         * calendar/timeclock.el (timeclock-modeline-display): Check if
5958         `list-entry' is null.
5959         (timeclock-use-display-time): The first argument to `set-variable'
5960         must be a symbol.
5962 2001-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
5964         * calendar/calendar.el (diary-entry-marker)
5965         (calendar-today-marker, calendar-holiday-marker):
5966         Use display-color-p instead of window-system.
5967         (calendar-mode-map, calendar-mode): Use display-popup-menus-p
5968         instead of window-system.
5969         (calendar-hide-window): Use display-multi-frame-p instead of
5970         window-system.
5972         * calendar/cal-x.el (calendar-two-frame-setup)
5973         (calendar-only-one-frame-setup, calendar-one-frame-setup):
5974         Use display-multi-frame-p instead of window-system.
5976 2001-04-23  Gerd Moellmann  <gerd@gnu.org>
5978         * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
5980         * textmodes/ispell.el, emacs-lisp/checkdoc.el,
5981         * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
5983 2001-04-23  Alex Schroeder  <alex@gnu.org>
5985         * goto-addr.el: Instead of defining line-beginning-position and
5986         line-end-position a defalias is used for point-at-bol and point-at-eol.
5988 2001-04-23  Alex Schroeder  <alex@gnu.org>
5990         * goto-addr.el: Added XEmacs compatibility code.
5991         (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
5993 2001-04-22  Eli Zaretskii  <eliz@is.elta.co.il>
5995         * textmodes/paragraphs.el (sentence-end): Doc fix.
5997 2001-04-20  Alex Schroeder  <alex@gnu.org>
5999         * sql.el (sql-escape-newlines-and-send): New function.
6000         (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
6002 2001-04-20  Alex Schroeder  <alex@gnu.org>
6004         * sql.el (sql-db2-program): New option.
6005         (sql-db2-options): New option.
6006         (sql-db2): New function.
6008 2001-04-20  Alex Schroeder  <alex@gnu.org>
6010         * sql.el (sql-mode-menu): Added highlighting entries.
6011         (sql-highlight-oracle-keywords): New function.
6012         (sql-highlight-postgres-keywords): New function.
6013         (sql-highlight-ansi-keywords): New function.
6015 2001-04-20  Alex Schroeder  <alex@gnu.org>
6017         * sql.el (sql-help): Doc change.
6019 2001-04-19  Karl Fogel  <kfogel@collab.net>
6021         * saveplace.el (save-place-alist-to-file): Removed no-effect code
6022         that inserted file content only to delete it immediately.
6023         Probably a cut-and-paste bug.  Thanks to Juanma Barranquero
6024         <lektu@uol.com.br> for the patch.
6026 2001-04-19  Stefan Monnier  <monnier@cs.yale.edu>
6028         * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
6030 2001-04-18  Gerd Moellmann  <gerd@gnu.org>
6032         * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
6033         for defmethod.
6035         * comint.el (comint-cr-magic): New function.
6036         (toplevel): Add it to comint-preoutput-filter-functions.
6038 2001-04-18  Andrew Innes  <andrewi@gnu.org>
6040         * makefile.w32-in (EMACSLOADPATH): Define.
6041         (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
6042         (recompile): Remove stuff to set EMACSLOADPATH.
6044 2001-04-18  Gerd Moellmann  <gerd@gnu.org>
6046         * language/slovak.el ("Slovak"): Add tutorial entry.
6048         * net/browse-url.el (browse-url-new-window-flag): Renamed from
6049         browse-url-new-window-p.
6051 2001-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
6053         * info.el (Info-menu-update): When there are no menus and/or no
6054         cross references in the node, make the respective items of the
6055         Info menu-bar menu inactive.
6057 2001-04-17  Gerd Moellmann  <gerd@gnu.org>
6059         * indent.el (indent-for-tab-command): Call indent-line-function
6060         with no argument if PREFIX-ARG is non-nil.
6062         * frame.el (delete-other-frames): Handle minibuffer-only frames.
6064 2001-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
6066         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
6067         an async subprocess if start-process is unavailable.  Suggested by
6068         Tim Van Holder <tim.van.holder@pandora.be>.
6070 2001-04-15  Eli Zaretskii  <eliz@is.elta.co.il>
6072         * info.el (Info-additional-directory-list): Doc fix.  Suggested by
6073         Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
6075 2001-04-14  Eli Zaretskii  <eliz@is.elta.co.il>
6077         * info.el (Info-file-list-for-emacs): Add an entry for the "info"
6078         manual.
6080 2001-04-13  Stefan Monnier  <monnier@cs.yale.edu>
6082         * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
6083         (cvs-menu): Add a few entries.
6085         * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
6086         (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
6087         lock file appears to be reachable from Emacs.
6088         (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
6089         (cvs-mode-find-file): Look for cvs-header-face rather than
6090         cvs-dirname-face (which doesn't exist).
6091         (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
6093         * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
6095 2001-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
6097         * emulation/pc-select.el (pc-selection-mode): Don't turn on
6098         normal-erase-is-backspace on a tty.  Instead, bind some keys such
6099         as [delete] directly, like pc-select.el did before
6100         normal-erase-is-backspace was invented.
6102 2001-04-12  Eli Zaretskii  <eliz@is.elta.co.il>
6104         * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
6106 2001-04-11  John Wiegley  <johnw@gnu.org>
6108         * eshell/em-ls.el (eshell-ls-insert-directory):
6109         Set font-lock-defaults to nil, to prevent fontification in dired
6110         buffers, if Eshell's ls is being used.
6112 2001-04-11  John Wiegley  <johnw@gnu.org>
6114         * calendar/timeclock.el (timeclock-completing-read): New function.
6115         (timeclock-ask-for-project, timeclock-ask-for-reason):
6116         Call `timeclock-completing-read'.
6118         * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
6119         required where `member' was being used.
6121 2001-04-11  Colin Walters  <walters@cis.ohio-state.edu>
6123         * eshell/em-hist.el (eshell-previous-matching-input):
6124         Don't display "History item" if the the minibuffer is active.
6126 2001-04-11  Gerd Moellmann  <gerd@gnu.org>
6128         * startup.el (command-line): Output a newline after printing
6129         an error from loading the window system's init file.
6131 2001-04-11  Eli Zaretskii  <eliz@is.elta.co.il>
6133         * textmodes/texinfo.el (texinfo-font-lock-keywords):
6134         Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
6135         @inforef.  Add an OVERRIDE of `keep' to highlight specs of
6136         keywords whose arguments routinely include @@.
6138 2001-04-10  Gerd Moellmann  <gerd@gnu.org>
6140         * emacs-lisp/advice.el (ad-make-advised-definition):
6141         Construct advice for subrs differently.
6143         * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
6144         regexp in parentheses when building the regexp for searching backwards.
6146         * simple.el (completion-list-mode-finish): New function.
6147         (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
6149         * language/european.el ("Polish"): Change sample text.
6150         From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
6152         * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
6153         parameter.
6155         * faces.el (menu): Doc fix.
6157 2001-04-10  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
6159         * ps-print.el: Footer implementation.  Doc fix.
6160         (ps-print-version): New version number (6.5.1).
6161         (ps-header-frame-alist): New customization var for header frame
6162         properties.
6163         (ps-line-number-color): New customization var for line number color.
6164         (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
6165         (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
6166         (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
6167         (ps-right-footer): New customization vars for footers.
6168         (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
6169         footers.
6170         (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
6171         (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
6172         Code fix.
6173         (ps-prologue-file): Indentation fix.
6174         (ps-print-quote): Fun eliminated.
6175         (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
6176         (ps-output-frame-properties): New fun.
6177         (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
6178         (ps-skip-newline): Replace defun by defsubst.
6180 2001-04-10  Colin Walters <walters@cis.ohio-state.edu>
6182         * eshell/eshell.el (eshell-command): Needed a "%s" format
6183         specifier, in case the buffer contains percent characters.
6185 2001-04-10  John Wiegley  <johnw@gnu.org>
6187         * calendar/timeclock.el (timeclock-generate-report): Added a
6188         missing insert of the project name.
6190 2001-04-09  Gerd Moellmann  <gerd@gnu.org>
6192         * obsolete/profile.el: Moved from emacs-lisp/.
6194         * Makefile.in (nonobsolete_setwins): New macro.
6195         (finder-data): Use it instead of `setwins'.
6196         From: Dave Love <fx@gnu.org>.
6198         * server.el (server-visit-files): Set server-existing-buffer correctly.
6199         (server-visit-files): Run server-visit-hook after going to
6200         line 1 so that the hook can set point as it sees fit.
6202         * bindings.el (mode-line-modified): Unify help messages.
6204 2001-04-07  Eli Zaretskii  <eliz@is.elta.co.il>
6206         * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
6207         All callers changed.
6209 2001-04-06  Eli Zaretskii  <eliz@is.elta.co.il>
6211         * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
6212         long file names aren't supported, truncate the file names in
6213         quail-misc-package-ext-info to 8+3 before matching them against
6214         FILENAME.
6216         * dos-fns.el (dos-truncate-to-8+3): New function.
6218         * progmodes/compile.el (grep-compute-defaults): Use null-device
6219         instead of literal /dev/null. Reported by Jens Schmidt
6220         <schmidt@mathematik.uni-kl.de>.
6222         * simple.el (normal-erase-is-backspace-mode): Doc fix.
6224 2001-04-06  Stefan Monnier  <monnier@cs.yale.edu>
6226         * textmodes/sgml-mode.el: Add unknown maintainer.
6227         (sgml-tag): Pass `str' explicitly through skeleton-transformation.
6228         (html-mode-map): Use set-keymap-parent.
6230 2001-04-06  Dave Love  <fx@gnu.org>
6232         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6233         Remove redundant string-to-list.
6235 2001-04-05  Stefan Monnier  <monnier@cs.yale.edu>
6237         * composite.el (reference-point-alist): Doc fix.
6239 2001-04-05  Sam Steingold  <sds@gnu.org>
6241         * font-lock.el (font-lock-keywords-case-fold-search):
6242         Make buffer-local.  This fixes a very annoying bug when loading a Lisp
6243         file made font-lock case-insensitive.
6245 2001-04-05  Gerd Moellmann  <gerd@gnu.org>
6247         * faces.el (defface menu): Doc fix.
6249         * wid-edit.el (widget-color-sample-face-get): Don't make
6250         faces for undefined colors.
6252         * version.el (emacs-version): Include LessTif/Motif version info.
6254 2001-04-04  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
6256         * ps-mule.el: Eliminate cl package dependence.
6257         (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
6258         if they aren't defined yet.
6259         (ps-mule-encode-header-string, ps-mule-header-string-charsets):
6260         Eliminate cl package dependence.
6262 2001-04-04  Stefan Monnier  <monnier@cs.yale.edu>
6264         * progmodes/cc-cmds.el (c-outline-level):
6265         Bind buffer-invisibility-spec.  Originally from Dave Love, but
6266         got lost when incorporating version 5.26.
6268 2001-04-04  Eli Zaretskii  <eliz@is.elta.co.il>
6270         * emulation/pc-select.el (pc-selection-mode):
6271         Call normal-erase-is-backspace-mode instead of binding
6272         keys individually.
6274         * cus-load.el (normal-erase-is-backspace): Use it instead of
6275         delete-key-deletes-forward.
6277         * startup.el (command-line): Use normal-erase-is-backspace and
6278         normal-erase-is-backspace-mode.
6280         * simple.el (normal-erase-is-backspace): Rename from
6281         delete-key-deletes-forward.  Doc fix.
6282         (normal-erase-is-backspace-mode): Rename from
6283         delete-key-deletes-forward-mode.  Doc fix.
6284         Run normal-erase-is-backspace-hook.
6286         * dired.el (dired-move-to-filename-regexp): Support file sizes in
6287         ``human-readable'' format produced by GNU `ls'.
6288         (dired-move-to-filename-regexp): Recognize ISO format dates.
6289         From Paul Eggert <eggert@twinsun.com>.
6291 2001-04-04  Gerd Moellmann  <gerd@gnu.org>
6293         * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
6294         New functions.
6295         (lm-verify): Check keywords.
6296         From Eric M. Ludlam <eric@siege-engine.com>.
6298 2001-04-03  Eric M. Ludlam  <eric@siege-engine.com>
6300         * speedbar.el (speedbar-insert-image-button-maybe): Check for
6301         `xemacs' feature instead of for the function `set-extent-property'.
6303 2001-04-03  Stefan Monnier  <monnier@cs.yale.edu>
6305         * mail/mh-utils.el (mh-folder-hist): New var.
6306         (mh-prompt-for-folder): Use it and pass `default' to completing-read.
6308 2001-04-03  Eli Zaretskii  <eliz@is.elta.co.il>
6310         * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
6311         region, position point on the first or last 16-byte group.
6312         (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
6313         and hexl-end-of-buffer.  Bind End and Home to hexl-end-of-line and
6314         hexl-beginning-of-line.
6316 2001-04-03  Gerd Moellmann  <gerd@gnu.org>
6318         * icomplete.el (icomplete-mode): Treat an argument like other
6319         modes do.
6321         * startup.el (fancy-splash-head): Use splash8.xpm for color
6322         depth 8.
6324         * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
6325         Add an antry for ``converts''.
6327         * language/slovak.el ("Slovak"): Add documentation string.
6328         From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
6330         * language/czech.el ("Czech"): Add documentation string.
6331         From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
6333         * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
6334         to `isci24-mule.bdf'.  From: Kenichi Handa <handa@etl.go.jp>.
6336 2001-04-02  Stefan Monnier  <monnier@cs.yale.edu>
6338         * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
6339         (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
6340         (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
6341         Use `defsubst' rather than a macro to ease debugging.
6342         (mail-extr-last): Remove (use `last' instead).
6343         (mail-extract-address-components): Properly reset the syntax-table
6344         after parsing an address.  Use `last' rather than mail-extr-last.
6345         Make sure the end marker stays at the very end.
6347 2001-04-02  Eli Zaretskii  <eliz@is.elta.co.il>
6349         * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
6350         last change.
6352 2001-04-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
6354         * ps-print.el: Line and paragraph spacing feature.  Region to cut
6355         out when printing.  Doc fix.
6356         (ps-print-version): New version number (6.5).
6357         (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
6358         New vars.  Line and paragraph spacing feature.
6359         (ps-begin-cut-regexp, ps-end-cut-regexp): New vars.  Region to cut
6360         out when printing.
6361         (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
6362         (ps-get-font-size, ps-begin-job, ps-continue-line)
6363         (ps-plot-region): Code fix.
6364         (ps-print-prologue-2): Var eliminated.
6365         (ps-line-spacing-internal, ps-paragraph-spacing-internal):
6366         New internal vars.
6367         (ps-get-size): New fun.
6368         (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
6369         (ps-next-line): Replace defun by defsubst.
6370         (ps-mule-plot-string): Autoload doc fix.
6372         * ps-bdf.el: XEmacs compatibility.  Doc fix.
6373         (installation-directory, coding-system-for-read): Declare vars if
6374         it's not declared yet.
6375         (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
6377         * ps-mule.el: XEmacs compatibility.  Doc fix.
6378         (leading-code-private-22): Declare var if it's not declared yet.
6379         (charset-bytes, charset-dimension, charset-id, charset-width)
6380         (find-charset-region, split-char, char-width, chars-in-region)
6381         (forward-point, decompose-composite-char, encode-coding-string)
6382         (coding-system-p, ccl-execute-on-string, define-ccl-program):
6383         Define funs if not defined yet.
6384         (encode-composition-rule, find-composition): Define funs if not
6385         loaded yet.
6386         (ps-mule-prologue): PostScript code fix.
6388 2001-04-02  Kenichi Handa  <handa@etl.go.jp>
6390         * ps-mule.el (ps-mule-generate-font): New arg HEADER-P.  If it is
6391         non-nil, generate font for the header strings.
6392         (ps-mule-prepare-font): Likewise.
6393         (ps-mule-generate-glyphs): Likewise.
6394         (ps-mule-string-encoding): Likewise.
6395         (ps-mule-header-charsets): New variable.
6396         (ps-mule-encode-header-string): New function.
6397         (ps-mule-header-string-charsets): New function.
6398         (ps-mule-begin-job): Check charsets in the header strings.  If there
6399         are non-ASCII and non-Latin1 charsets, prepare fonts for them.
6401         * ps-print.el (ps-generate-header-line): Encode the header string by
6402         ps-mule-encode-header-string.
6403         (ps-mule-encode-header-string): Declare autoload.
6405 2001-04-02  Gerd Moellmann  <gerd@gnu.org>
6407         * frame.el (cursor-in-non-selected-windows):
6408         Replaces show-cursor-in-non-selected-windows.
6410 2001-03-31  Kenichi Handa  <handa@etl.go.jp>
6412         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6413         Delete entries for "chinese-py" and "chinese-ziranma".
6414         (quail-misc-package-ext-info): New variable.
6415         (tsang-quick-converter): New function.
6416         (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
6417         (quick-cns-converter, py-converter, ziranma-converter)
6418         (miscdic-convert, batch-miscdic-convert): New functions.
6420 2001-03-30  Kenichi Handa  <handa@etl.go.jp>
6422         * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
6423         eight-bit-control chars.
6425         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6426         Reduce making temporary vector (suggested by Dave Love).
6428 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
6430         * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
6431         string as well.
6433 2001-03-30  Andreas Schwab  <schwab@suse.de>
6435         * files.el (backup-directory-alist): Fix typo.
6437 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
6439         * time-stamp.el (time-stamp-format): Doc fix.  From Paul Eggert
6440         <eggert@twinsun.com>.
6442 2001-03-30  Dave Love  <fx@gnu.org>
6444         * progmodes/fortran.el (fortran-comment-region): Fix typo.
6446 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
6448         * simple.el (transient-mark-mode): Mention C-g in the doc string.
6450 2001-03-30  Miles Bader  <miles@gnu.org>
6452         * subr.el (interactive-form): Fix paren typo.
6454 2001-03-29  Eli Zaretskii  <eliz@is.elta.co.il>
6456         * emacs-lisp/profile.el: Say that it's obsolete in the header
6457         line, so that finder.el puts that into its data-base.
6458         Suggested by Alex Schroeder <alex@gnu.org>.
6460 2001-03-29  Paul Eggert  <eggert@twinsun.com>
6462         * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
6463         LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
6465 2001-03-29  Stefan Monnier  <monnier@cs.yale.edu>
6467         * generic.el (generic-mode-set-comments): Use "" rather than nil
6468         for comment-end.
6470 2001-03-29  Gerd Moellmann  <gerd@gnu.org>
6472         * emacs-lisp/advice.el (ad-make-advised-definition):
6473         Call interactive-form to obtain the interactive spec of subrs.
6475         * subr.el (interactive-form): New function.
6477 2001-03-29  Andre Spiegel  <spiegel@gnu.org>
6479         * vc-sccs.el (vc-sccs-register): Use relative file names.
6481 2001-03-28  Gerd Moellmann  <gerd@gnu.org>
6483         * bookmark.el (bookmark-get-bookmark): Handle case that
6484         BOOKMARK is not a string.
6486         * image.el (image-type-regexps): Change type for PS files
6487         to `postscript'.
6489         * subr.el (read-passwd): Clear command history after each
6490         character entered.  From: Stephen Gildea
6491         <gildea@stop.mail-abuse.org>.
6493 2001-03-27  Kenichi Handa  <handa@etl.go.jp>
6495         * international/kkc.el (kkc-save-init-file): Locally bind
6496         print-length to nil.
6498 2001-03-26  Gerd Moellmann  <gerd@gnu.org>
6500         * textmodes/flyspell.el: Some doc fixes.
6501         (flyspell-maybe-correct-transposition)
6502         (flyspell-maybe-correct-doubling): Use a temporary buffer
6504         * textmodes/ispell.el (ispell-parse-output): Doc fix.
6506         * emacs-lisp/byte-opt.el (byte-optimize-while)
6507         (byte-optimize-form-code-walker): Diagnose too few arguments
6508         for `if' and `while'.
6510 2001-03-26  Kenichi Handa  <handa@etl.go.jp>
6512         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
6513         Prepend `\' to "\<quail-translation-docstring>".
6515 2001-03-26  Gerd Moellmann  <gerd@gnu.org>
6517         * autorevert.el (global-auto-revert-non-file-buffers):
6518         Remove duplicate defcustom.
6520 2001-03-26  Miles Bader  <miles@gnu.org>
6522         * international/latin1-disp.el (latin1-char-displayable-p):
6523         Add leading "-" for X font pattern.
6525 2001-03-26  Kenichi Handa  <handa@etl.go.jp>
6527         * international/mule-diag.el (describe-coding-system):
6528         For raw-text and emacs-mule, don't add anymore text about what
6529         charsets they can encode.
6531 2001-03-25  Eli Zaretskii  <eliz@is.elta.co.il>
6533         * help.el (view-lossage): Mention open-dribble-file in the doc
6534         string.  Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
6536 2001-03-23  Stefan Monnier  <monnier@cs.yale.edu>
6538         * skeleton.el (skeleton-internal-list): Fix bogus logic.
6539         (skeleton-pair-insert-maybe): Don't pair after a backslash.
6541 2001-03-23  Kenichi Handa  <handa@etl.go.jp>
6543         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
6544         Call ccl-execute-on-string directly so that CCL program handling
6545         multibyte sequence can work correctly.
6546         (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
6547         property of the coding system.
6549 2001-03-23  Stefan Monnier  <monnier@cs.yale.edu>
6551         * textmodes/fill.el (fill-individual-paragraphs-prefix):
6552         Fix transcription typo.
6554 2001-03-22  Rajesh Vaidheeswarran  <rv@gnu.org>
6556         * whitespace.el: Add buffer local variables to toggle testing of
6557         whitespaces in buffers without affecting the default values.
6558         Bump version to 3.0 to account for a few other changes.
6559         (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
6560         (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
6561         (whitespace-toggle-spacetab-check): New functions.
6563 2001-03-21  Stefan Monnier  <monnier@cs.yale.edu>
6565         * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
6567 2001-03-21  Gerd Moellmann  <gerd@gnu.org>
6569         * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
6570         bs-cycle-configuration-name.  From Juanma Barranquero
6571         <lektu@uol.com.br>.
6573         * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
6574         and cc-vars.el.
6576         * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
6577         headers.  Always invoke sendmail with option -t.
6579 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6581         * Release of cc-mode 5.28.
6583 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6585         * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
6586         Removed the hardcoded switch to "java" style in Java mode.
6587         It's instead taken care of by the default value for c-default-style.
6589 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6591         * cc-align.el (c-lineup-math): Fix bug where lineup was
6592         triggered by equal signs in string literals.
6594 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6596         * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
6597         limit detection when at the ends of the buffer.
6599         * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
6600         "for" statement clause in case 7F; a better one is done
6601         earlier in case 7D anyway.
6603 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6605         * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
6606         somewhat more and did a small optimization.
6608 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6610         * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
6611         Use the limit argument only to limit the syntactic context
6612         search, not to limit the actual movement.
6614         * cc-cmds.el (c-beginning-of-statement): Move by sentence
6615         inside multiline strings, just like in comments.  Also various
6616         fixes to the paragraph and comment prefix recognition, block
6617         comment ender handling etc.
6619 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6621         * cc-cmds.el (c-fill-paragraph): Take more care to preserve
6622         the relative position of the point.
6624         * cc-cmds.el (c-electric-continued-statement): New function to
6625         use as abbrev hook to reindent for keywords such as "else"
6626         that continues an earlier statement.
6628         * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
6629         like classes.
6631         * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
6632         (pike-mode): Populate the default abbrev tables to reindent for
6633         keywords such as "else" that can continue earlier statements.
6634         Abbrev mode is therefore turned on by default now.  (Note that
6635         this doesn't apply to idl-mode, since IDL afaik doesn't have
6636         statements at all.)
6638 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6640         * cc-engine.el (c-inside-bracelist-p): Fix for handling
6641         bracelists where the declaration contains template arguments.
6643 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6645         * cc-cmds.el (c-comment-indent):
6646         Use `c-get-syntactic-indentation' to correctly calculate the
6647         syntactic indentation.  Fixes bug with lineup functions that
6648         return vectors.
6650         * cc-engine.el (c-get-syntactic-indentation): Split the
6651         indentation sum calculation from `c-indent-line' to a separate
6652         function.
6654 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6656         * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
6657         Fixed places where it was assumed that preprocessor directives
6658         have to start in column zero.
6660         * cc-engine.el (c-beginning-of-member-init-list): Handle C++
6661         template arguments after a class identifier properly.
6663         * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
6664         lists for `new Foo[]' constructs in Java as expressions and
6665         not top level definition brace lists on the top level, so that
6666         they'll get indented consistently with the same type of
6667         expression in a normal block.
6669 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6671         * cc-cmds.el (c-fill-paragraph): The kludge that checks
6672         whether the adaptive filling package fails to keep the comment
6673         prefix is now kludged further to check for filladapt-mode
6674         which doesn't have that problem. This is really icky, but it's
6675         the only way that works with the current misfeatures/bugs in
6676         both adaptive-fill-mode and filladapt-mode.
6678         * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
6679         around point is recognized more robust.
6681 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6683         * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
6684         (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
6685         (c-lit-type): Fixed all internal variables used dynamically so
6686         that they are always bound.
6688         * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
6689         errors:
6691         (c-indent-region): Fixed reporting of syntactic errors so that
6692         the region is fully reindented even when an error occurs.
6693         The last syntactic error is printed afterwards.  Also cleanup up a
6694         whole lot of code that tried to optimize indentation of whole
6695         sexps but in reality accomplishes nothing.
6697         (c-indent-sexp): Use c-indent-region.
6699         (c-parsing-error): Changed this variable to hold the message
6700         for any syntactic error that is discovered.
6702         (c-parse-state): Search backward from point instead of the bod
6703         position when the latter is invalid.  This makes CC Mode
6704         recover faster when there are unbalanced close braces.
6706         (c-backward-to-start-of-if): Use c-parsing-error to report
6707         dangling "else" clauses instead of throwing an error, and fall
6708         back to a reasonable position.
6710         (c-indent-line): Added argument to avoid reporting syntactic errors.
6712         (c-show-syntactic-information): Don't report any syntactic errors.
6714 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6716         * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
6717         paragraph recognition when moving by sentence in literals.
6719         * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
6720         start regexp for javadoc to recognize javadoc markup in general instead
6721         of a specific set of keywords, to be more future-safe.
6723         (c-Pike-pikedoc-paragraph-start)
6724         (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
6725         pikedoc markup.
6727         * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
6729         (pike-mode): Initialize paragraph settings pikedoc recognition.
6731         * cc-vars.el (c-default-style): Made a nicer Customize widget.
6733         (c-comment-prefix-regexp): Made it possible to use an
6734         association list on this to specify mode specific regexps.
6735         The default value now use a special regexp in Pike mode to
6736         recognize pikedoc markup.
6738         (c-current-comment-prefix): New variable containing the actual
6739         regexp from c-comment-prefix-regexp for the current buffer.
6741 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6743         * cc-cmds.el (c-electric-brace): Fixed check for special brace
6744         lists: We can't look at the syntax, since a brace list can get
6745         recognized as a plain statement-cont.
6747         * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
6748         special brace list opener broken over two lines got recognized
6749         as a statement on the second line.  Case 9A changed.
6751 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6753         * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
6754         adjustment after line is reindented.
6756 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6758         * cc-defs.el (c-point): Added optional argument for position
6759         to use instead of the current point.
6761         * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
6762         the in-expression block symbols when the construct starts at
6763         boi, to avoid the extra level of indentation in that case.
6764         Cases 4, 16A and 17E affected.
6766 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6768         * cc-cmds.el: Use `indent-according-to-mode' instead of direct
6769         calls to `c-indent-line', to adhere better to Emacs conventions.
6771         * cc-engine.el (c-indent-line): Use the syntax already bound
6772         to `c-syntactic-context', if there is any.
6774 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6776         * cc-engine.el (c-get-offset): Fixed bug where the indentation
6777         wasn't added up correctly when a lineup function returned nil.
6779 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6781         * cc-engine.el (c-collect-line-comments): Fixed bug where
6782         empty lines were ignored when collecting line comments backwards.
6784 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6786         * cc-align.el (c-lineup-dont-change): Return an absolute
6787         indentation column to work correctly in the case when several
6788         syntactic elements are processed for the same line.
6790         * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
6791         (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
6792         (c-set-offset): Added absolute indentation column settings by
6793         using the vector type.
6795 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6797         * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
6798         Implemented two new cleanups `space-before-funcall' and
6799         `compact-empty-funcall'.
6801 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6803         * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
6804         helping building regexps.
6806         * cc-engine.el (c-on-identifier): New function for detecting
6807         identifiers.  It takes keywords into account.
6809         * cc-langs.el, cc-mode.el: Added regexps for complete keyword
6810         lists.  `c-keywords' is set to a regexp matching all keywords
6811         in the current language.
6813 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6815         * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
6816         list of characters to skip backwards over at the beginning of
6817         a statement, since it can precede string literals in Pike.
6819 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6821         * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
6822         recognition when standing on the last line in a C++ comment
6823         with nothing but whitespace after the prefix.
6825         * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
6826         given no limit argument.
6828 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6830         * cc-engine.el (c-inside-bracelist-p): Fixed brace list
6831         recognition for the `[]= operator symbol in Pike.
6833 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6835         * cc-bytecomp.el (cc-eval-when-compile): New macro that works
6836         around a bug in `eval-when-compile' in the byte compiler.
6838         * cc-engine.el (c-forward-token-1): Fixed bug with return
6839         value when count is zero and there's no token start within the limit.
6841         (c-guess-basic-syntax): Don't add 'comment-intro to lines with
6842         "prefix comments", i.e. comments which are followed by code on
6843         the same line.
6845         * cc-mode-19.el: Fixes so that checks that must be done at
6846         compile time also are done then.
6848 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6850         * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
6851         time and at runtime, and only when it's needed.
6853 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6855         Major cleanup for less error prone and more warning free
6856         compilation, including some fixes for bugs due to different
6857         compilation orders. Thanks to Martin Buchholz for providing
6858         the basis for all this.
6860         * cc-bytecomp.el: New file that provides some byte compilation
6861         features: It ensures that files always are loaded from the
6862         current source directory during compilation, and it provides a
6863         set of macros to turn off specific compiler warnings for
6864         specific symbols.  (It's not CC Mode specific in any way.)
6866         Fixed a nearly acyclic dependency tree (both runtime and
6867         compile-time) between all files.
6869         * cc-defs.el: Separated all macros before the inline functions,
6870         to ensure correct compilation.
6872         * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
6873         cc-defs.el to cc-engine.el and made it a function instead.
6875         * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
6876         about char-after.
6878         * cc-vars.el: Cope even when there isn't a custom package
6879         containing defcustom available.
6881         * cc-make.el: Removed since it's no longer necessary.
6883         README: Updated installation instructions.
6885 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6887         * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
6888         improve the modularity: Moved all mode init stuff from
6889         cc-langs.el to cc-mode.el, including the keymap
6890         initialization; cc-langs now only contains the various
6891         variables for configuring the language syntax.
6893         * cc-engine.el, cc-styles.el (c-evaluate-offset)
6894         (c-get-offset): Moved from cc-styles to cc-engine since file
6895         dependency analysis suggests they belong there (which also
6896         makes more sense).  Thanks to Martin Buchholz for doing the analysis.
6898 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6900         * cc-cmds.el (c-fn-region-is-active-p): New function that
6901         wraps the corresponding macro, for use in places that aren't
6902         compiled.  Thanks to Martin Buchholz for pointing out this.
6904         * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
6906         * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
6907         add things to the bug report.
6909 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6911         * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
6912         returned prefix could contain a newline when the search for a
6913         good prefix line failed.
6915 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6917         * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
6918         (c-toggle-auto-hungry-state): Made the argument optional, as
6919         the documentation says it is.
6921 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
6923         * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
6924         multiline string syntax, #"...", as a cpp macro.
6926 2001-03-21  Paul Eggert  <eggert@twinsun.com>
6928         * international/mule-cmds.el (set-locale-environment):
6929         Set system-messages-locale and system-time-locale, but only if the
6930         caller specifies a non-nil locale name.
6932 2001-03-20  Gerd Moellmann  <gerd@gnu.org>
6934         * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
6935         problems for the interpreter.  From: John Wiegley  <johnw@gnu.org>
6937 2001-03-20  Gerd Moellmann  <gerd@gnu.org>
6939         * follow.el (follow-avoid-tail-recenter): Doc fix.
6941         * custom.el (custom-set-variables): Avoid reversing the list
6942         of args needlessly.
6944         * startup.el (fancy-splash-head): Don't change the colors of the
6945         XPM image on a dark background.
6947         * comint.el (comint-exec-1): Set columns of the terminal to
6948         window-width instead of frame-width.
6950         * info.el (Info-scroll-down): Add missing WINDOW arg for
6951         pos-visible-in-window-p.
6953         * ehelp.el (electric-help-mode-hook): Add defcustom.
6955         * mail/sendmail.el (mail-mode): Activate case-folding in
6956         font-lock-defaults.
6958 2001-03-19  Stefan Monnier  <monnier@cs.yale.edu>
6960         * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
6961         (completion-ignored-extensions): Remove duplicate ".class".
6963 2001-03-19  Andreas Schwab  <schwab@suse.de>
6965         * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
6966         From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
6968 2001-03-19  Gerd Moellmann  <gerd@gnu.org>
6970         * language/european.el ("Latin-5", "Latin-4"): Use postfix input
6971         methods since there are not prefix input methods.
6973 2001-03-19  Kenichi Handa  <handa@etl.go.jp>
6975         * international/mule-cmds.el (read-input-method-name):
6976         Locally bind enable-recursive-minibuffers to t.
6978 2001-03-18  Stefan Monnier  <monnier@cs.yale.edu>
6980         * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
6982 2001-03-17  Michael Kifer  <kifer@cs.sunysb.edu>
6984         * ediff-util.el: Copyright years.
6985         (ediff-choose-syntax-table): New function.
6986         (ediff-setup): Use ediff-choose-syntax-table.
6988         * ediff-init.el (ediff-with-syntax-table): New macro, uses
6989         with-syntax-table.
6991         * ediff.el: Date of last update, copyright years.
6993         * ediff-wind (ediff-setup-control-frame): Nill->nil.
6995         * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
6996         of Scott Bronson.
6997         (ex-cmd-assoc,ex-cmd-one-letr): New functions.
6998         (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
6999         Deleted functions.
7000         (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
7001         ex-token-list.
7003         * viper-util.el: Spaces, indentation.
7005         * viper.el: Changed version, modification time.
7007 2001-03-16  John Wiegley  <johnw@gnu.org>
7009         * calendar/timeclock.el (timeclock-workday-remaining):
7010         Check whether `discrep' is non-null before using it.
7012 2001-03-16  John Wiegley  <johnw@gnu.org>
7014         * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
7015         first-time checkins.
7016         (timeclock-log-data): Fixed problem with reading timelog log file.
7017         Resulting data in the "day list" was incorrect.
7018         (timeclock-find-discrep): Check if `timeclock-file' is readable
7019         before opening it.
7020         (timeclock-time-less-p): New function.
7021         (timeclock-day-base): New function.
7022         (timeclock-geometric-mean): New function.
7023         (timeclock-generate-report): Generate a summary report based on
7024         the contents of the log file.  This uses `timeclock-log-data', and
7025         is an example of writing a timelog manipulation function.
7026         (timeclock-visit-timelog): A quick command for opening the timelog
7027         file.
7028         (timeclock-log-data): Bound the variable event.
7030 2001-03-16  Kenichi Handa  <handa@etl.go.jp>
7032         * international/mule-cmds.el (select-safe-coding-system):
7033         Fix typo: symbol-name -> symbol-value.
7035         * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
7036         before substitute-in-file-name to handle double slashes in FILE
7037         correctly.
7039 2001-03-15  Gerd Moellmann  <gerd@gnu.org>
7041         * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
7042         for Slovak.  From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
7044 2001-03-14  Gerd Moellmann  <gerd@gnu.org>
7046         * bindings.el (features): Add `md5' and `overlay' to the list.
7048         * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
7049         bound before using it.  It's not bound when configured without X,
7050         for instance.
7052 2001-03-13  Thien-Thi Nguyen  <ttn@gnu.org>
7054         * progmodes/hideshow.el: Update copyright.
7055         (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
7056         (hs-minor-mode-hook): Include `:version' in defcustom form.
7058 2001-03-13  Gerd Moellmann  <gerd@gnu.org>
7060         * help.el (string-key-binding): Don't call event-start on
7061         a non-list.
7063 2001-03-13  Eli Zaretskii  <eliz@is.elta.co.il>
7065         * startup.el (fancy-splash-tail, command-line-1): Fix the
7066         copyright year.
7068 2001-03-13  Kenichi Handa  <handa@etl.go.jp>
7070         * term.el: These changes are based on a patch sent from Yong Lu
7071         <lyongu@yahoo.com>.
7072         (term-set-escape-char): Bind M-x to execute-extended-command in
7073         term-raw-escape-map.
7074         (term-move-columns): Don't try to move to negagive column.
7075         (term-emulate-terminal): Insert a string before deleting a text to
7076         overwrite.
7078 2001-03-12  Gerd Moellmann  <gerd@gnu.org>
7080         * play/life.el (life): Rearrange code so that all calls to
7081         life-display-generation are in a catch-form.
7083         * progmodes/etags.el (tags-loop-continue): Don't change point in a
7084         file that isn't interesting.  In an interesting file, push the old
7085         value of point on the mark ring.
7087         * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
7088         New function.
7089         (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
7090         Use it.
7092         * emacs-lisp/autoload.el (generate-file-autoloads):
7093         Remove warning about line lengths.
7095 2001-03-12  Philippe Waroquiers  <wao@gull.tact.cfmu.eurocontrol.be>
7097         * progmodes/etags.el (tags-compression-info-list): New variable.
7098         (find-tag-in-order): Use it to deal with compressed source files.
7099         (tag-file-name-match-p): New function.
7100         (etags-recognize-tags-table): Use it for better match of file names.
7102 2001-03-12  Kenichi Handa  <handa@etl.go.jp>
7104         * international/mule-cmds.el (register-input-method): Doc fix.
7106         * international/quail.el (quail-translate-key): Fix condition to
7107         check if there's another breaking point in the current key.
7109 2001-03-11  Eli Zaretskii  <eliz@is.elta.co.il>
7111         * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
7112         Babyl header to the newly-created output file, bind
7113         coding-system-for-write to either rmail-file-coding-system or
7114         emacs-mule-unix.
7116 2001-03-11  Stefan Monnier  <monnier@cs.yale.edu>
7118         * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
7119         Fix the name and regexp used for subsubsections.
7121 2001-03-10  Dave Love  <fx@gnu.org>
7123         * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
7124         and save-buffer if buffer-file-name non-nil.  From rms.
7126 2001-03-10  Andre Spiegel  <spiegel@gnu.org>
7128         * vc.el (vc-do-command): If the destination buffer is already
7129         current, don't set it up and don't erase it.  Updated doc string
7130         to reflect that.
7131         (vc-version-diff): When doing a single file diff, don't switch to the
7132         *vc-diff* buffer before the command.  This is to preserve local
7133         variable bindings that might affect the diff command.
7134         (vc-print-log): Don't switch to the *vc* buffer before the
7135         command, so that local variable bindings are preserved.
7137         * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
7138         not the current buffer.
7139         (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
7141         * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
7142         make output go to buffer *vc*, not the current buffer.
7144 2001-03-09  Stefan Monnier  <monnier@cs.yale.edu>
7146         * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
7147         so ^, $, *, ? and + are interpreted correctly.
7149 2001-03-09  Gerd Moellmann  <gerd@gnu.org>
7151         * help.el (string-key-binding): Renamed from
7152         mode-line-key-binding.  Handle any event on a string.
7153         Check for `keymap' properties as well as `local-map' properties.
7155         * comint.el (comint-insert-clicked-input): Use the last key
7156         from this-command-keys to lookup the global key definition.
7158 2001-03-09  Kenichi Handa  <handa@etl.go.jp>
7160         * international/characters.el: Add category `j' for
7161         katakana-jisx0201.   Fix syntaxes of katakana-jisx0201.
7163         * international/mule-conf.el (no-conversion): Fix docstring.
7164         (raw-text): Fix docstring.
7166 2001-03-08  Gerd Moellmann  <gerd@gnu.org>
7168         * simple.el (choose-completion-string): When not leaving the
7169         minibuffer, raise the minibuffer frame when minibuffer-auto-raise
7170         is set.
7172         * window.el (shrink-window-if-larger-than-buffer): Handle frame
7173         parameter `(minibuffer . t)'.
7175 2001-03-07  Stefan Monnier  <monnier@cs.yale.edu>
7177         * progmodes/sh-script.el (sh-st-symbol): New symbol.
7178         (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
7179         (sh-mode): Remove `make-local-variable' for unused var
7180         `font-lock-unfontify-region-function'.
7182 2001-03-07  Richard M. Stallman  <rms@gnu.org>
7184         * info.el (Info-scroll-down): Fix previous change.
7186         * mail/rmail.el (rmail-toggle-header): Use a window which
7187         is showing the Rmail buffer, rather than the selected window.
7189 2001-03-07  Dave Love  <fx@gnu.org>
7191         * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
7192         now, to avoid problems with binding imenu directly to a mouse event.
7194 2001-03-07  Gerd Moellmann  <gerd@gnu.org>
7196         * info.el (Info-scroll-down): Call pos-visible-in-window-p with
7197         second arg t.
7199 2001-03-07  Stefan Monnier  <monnier@cs.yale.edu>
7201         * log-edit.el (log-edit-common-indent): New var.
7202         (log-edit-set-common-indentation): Renamed from
7203         log-edit-delete-common-indentation.  Use the new var.
7204         (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
7206         * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
7207         (cvs-mode-add-change-log-entry-other-window):
7208         Don't presume change-log-default-name is defined.
7210         * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
7212         * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
7213         the "tree" operation as well.
7215         * pcvs-parse.el (cvs-parse-table): Add another ignored message.
7217         * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
7218         to match paragraph-start.
7220         * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
7221         comment-start-skip and set comment-end-skip as well.
7222         (sgml-comment-indent): Fix for new value of comment-start-skip.
7223         (html-autoview-mode): Don't bother using make-local-hook.
7225 2001-03-07  Gerd Moellmann  <gerd@gnu.org>
7227         * cus-edit.el (custom-save-delete): Move in front of local
7228         variables, otherwise long Custom entries would make them ineffective.
7230         * uniquify.el: Set maintainer to FSF.
7232 2001-03-07  Eli Zaretskii  <eliz@is.elta.co.il>
7234         * dired-aux.el (dired-do-shell-command): Doc fix.
7236 2001-03-06  Stefan Monnier  <monnier@cs.yale.edu>
7238         * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
7240         * which-func.el (which-func-modes): Add cperl-mode.
7241         (which-func-mode-global): Use define-minor-mode.
7243         * info-look.el: Docstring fixes and dead code eliminated.
7244         (cperl-mode): Add support.
7245         (emacs-lisp-mode): List all entries from elisp manual, whether
7246         or not they are currently (f)bound or not.  Update regexp.
7248         * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
7250         * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
7251         so that C-h m shows the correct information.
7252         Use make-local-variable rather than make-variable-buffer-local.
7253         (cperl-info-buffer, cperl-setup-tmp-buf):
7254         Use make-local-variable rather than make-variable-buffer-local.
7255         (cperl-msb-fix, cperl-get-help-defer):
7256         Check major-mode for `cperl-mode' as well.
7258         * progmodes/cperl-mode.el: Updated to author version 4.23.
7259         (cperl-electric-pod): SYNOPSIS was misspelled.
7260         (cperl-find-pods-heres): @if ? a : b was considered a REx.
7261         (cperl-after-expr-p): Make true after __END__.
7263 2001-03-06  Gerd Moellmann  <gerd@gnu.org>
7265         * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
7266         bookmark-completion-ignore-case is t.
7268         * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
7269         switch, like xterm, and concat resource strings, with a newline
7270         between them.
7272 2001-03-06  Eli Zaretskii  <eliz@is.elta.co.il>
7274         * international/codepage.el (cp770-decode-table)
7275         (cp773-decode-table, cp774-decode-table): New variables.
7277         * man.el (Man-hyphenated-reference-regexp): New variable.
7278         (Man-build-references-alist): Use it to search for referenced
7279         manpages.  If hyphenated is non-nil, record a concatenated word in
7280         Man-refpages-alist only if it matches Man-reference-regexp.
7281         Update word's length when it is concatenated.  Reverse the list,
7282         to get the first manpage at the head.
7283         (Man-possibly-hyphenated-word): New function.
7284         (Man-follow-manual-reference): Use it instead of current-word to
7285         find a manpage at point, in a way that accounts for hyphenated
7286         references.
7288 2001-03-06  Alex Schroeder  <alex@gnu.org>
7290         * sql.el (sql-interbase): New function.
7291         (sql-interbase-program): New option.
7292         (sql-interbase-options): New option.
7293         And some typos fixed: "customise" to "customize".
7295 2001-03-06  Dave Love  <fx@gnu.org>
7297         * textmodes/flyspell.el (flyspell-region):
7298         Set up flyspell-local-mouse-map.
7300 2001-03-05  Richard M. Stallman  <rms@gnu.org>
7302         * mail/rmail.el (rmail-retry-failure):
7303         Don't call rmail-beginning-of-message.
7304         Don't discard From: field.  Do discard Received: field.
7305         Use unwind-protect to re-prune.
7306         (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
7308 2001-03-06  Kenichi Handa  <handa@etl.go.jp>
7310         * international/quail.el (quail-title): Add autoload cookie.
7312 2001-03-05  Dave Love  <fx@gnu.org>
7314         * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
7315         new defs.
7317 2001-03-05  Kenichi Handa  <handa@etl.go.jp>
7319         * language/ethio-util.el (ethio-toggle-space):
7320         Update current-input-method-title if necessary.
7321         (ethio-toggle-punctuation): Likewise.
7323         * international/quail.el (quail-title): Fix for the case that a
7324         title of an input method is specified by a list of the same form
7325         as used in mode-line-format.
7327         * international/mule-cmds.el (activate-input-method):
7328         If current-input-method-title is set by activating INPUT-METHOD,
7329         respect that value.
7331 2001-03-05  Gerd Moellmann  <gerd@gnu.org>
7333         * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
7335 2001-03-05  Alex Schroeder  <alex@gnu.org>
7337         * sql.el (sql-sybase): Fix typo (was: query user about server two
7338         times instead of server and database).
7340         * sql.el (sql-sybase): Doc change.
7341         (sql-mysql): Doc change.
7342         (sql-postgres): Doc change.
7344 2001-03-05  Kenichi Handa  <handa@etl.go.jp>
7346         * international/mule-conf.el (emacs-mule, raw-text):
7347         Docstring modified.
7349 2001-03-04  Eli Zaretskii  <eliz@is.elta.co.il>
7351         * term/internal.el: Update copyright notice.
7353         * term/pc-win.el: Update copyright notice.
7355 2001-03-02  Dave Love  <fx@gnu.org>
7357         * files.el (insert-file-contents-literally):
7358         Bind inhibit-file-name-handlers and inhibit-file-name-operation,
7359         not jka-compr-compression-info-list.
7361 2001-03-02  Stefan Monnier  <monnier@cs.yale.edu>
7363         * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
7364         spaces in default comment-start-skip settings rather than \s-.
7366 2001-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
7368         * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
7369         default-frame-alist as well.
7371 2001-03-01  Dave Love  <fx@gnu.org>
7373         * textmodes/reftex.el (defvar): Wrap some defvars in
7374         eval-when-compile.  From Markus Rost <rost@math.ohio-state.edu>.
7376         * subr.el (event-basic-type): Doc fix.
7378         * international/quail.el: Doc fixes.
7380         * international/utf-8.el: Doc fixes.
7382         * international/mule-cmds.el: Doc fixes.
7383         (leim-list-header): Fix header text.
7385         * international/mule.el (coding-system-category): Doc fix.
7387         * international/ccl.el (ccl-compile): Doc fix.
7389 2001-03-01  Stefan Monnier  <monnier@cs.yale.edu>
7391         * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
7392         rather than (before|after)-change-functions.
7394 2001-03-01  Gerd Moellmann  <gerd@gnu.org>
7396         * ediff-util.el (ediff-scroll-horizontally): Arrange for
7397         scroll-left and scroll-right being called interactively so that
7398         they set the window's min_hscroll.
7400 2001-03-01  Eli Zaretskii  <eliz@is.elta.co.il>
7402         * info.el (info-insert-file-contents-1): Accept an additional
7403         argument `lfn': if it is non-nil, concatenate `filename' and
7404         `suffix'; otherwise use the complicated MS-DOS code.
7405         All callers changed.
7406         (info-insert-file-contents, Info-find-node): If the MS-DOS port
7407         can access long file names, try the long file-name version of
7408         `info-insert-file-contents-1', then the short file-name version.
7410 2001-02-28  TAKAHASHI Naoto  <ntakahas@m17n.org>
7412         * language/ethio-util.el (setup-ethiopic-environment-internal):
7413         Change bindings of functions keys to conform to "Emacs Lisp Coding
7414         Convention".
7416         * language/ethiopic.el ("Ethiopic"): Add documentation.
7418 2001-02-28  Kenichi Handa  <handa@etl.go.jp>
7420         * international/utf-8.el (mule-utf-8): Set coding-category
7421         property to coding-category-utf-8.
7423 2001-02-27  Richard M. Stallman  <rms@gnu.org>
7425         * lpr.el (lpr-page-header-switches, print-region-1):
7426         Undo 2000-07-06 change.
7427         (lpr-add-switches): Default to t on gnu/linux.
7429 2001-02-27  Gerd Moellmann  <gerd@gnu.org>
7431         * bs.el (bs-attributes-list): Doc fix.
7433 2001-02-26  Gerd Moellmann  <gerd@gnu.org>
7435         * help.el (describe-project): Display the file THE-GNU-PROJECT.
7437         * help.el (view-order-manuals): Use goto-address.
7439         * startup.el (command-line-1): Add info about ordering manuals
7440         to the not so fancy splash screens.
7442 2001-02-26  Andre Spiegel  <spiegel@gnu.org>
7444         * vc.el (vc-default-workfile-unchanged-p)
7445         (vc-default-latest-on-branch-p): Add missing BACKEND argument.
7447 2001-02-26  Gerd Moellmann  <gerd@gnu.org>
7449         * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
7450         fontify in the right buffer.
7452         * allout.el (outline-flag-region): Move macro in front of first
7453         use to avoid a run-time error.
7455 2001-02-24  Andrew Innes  <andrewi@gnu.org>
7457         * makefile.w32-in: Fix copyright notice.
7459 2001-02-24  Kenichi Handa  <handa@etl.go.jp>
7461         * international/utf-8.el (mule-utf-8): Set correct value for
7462         valid-codes property.
7464         * international/fontset.el (x-complement-fontset-spec): In the
7465         case that we use ASCII font for the other charsets, use only
7466         family and registry part of it.
7468 2001-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
7470         * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
7471         (shrink-window-if-larger-than-buffer): Doc fix.
7473 2001-02-23  Stefan Monnier  <monnier@cs.yale.edu>
7475         * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
7476         predicate passed to completing-read.
7478 2001-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
7480         * startup.el (command-line): Fix last change.
7482 2001-02-23  Jason Rumney  <jasonr@gnu.org>
7484         * startup.el (tool-bar-originally-present): New variable.
7485         (command-line): Set it if the tool-bar is switched on at startup.
7487         * frame.el (frame-notice-user-settings): Only adjust frame height
7488         for no tool-bar case if tool-bar was originally switched on.
7489         From E. Jay Berkenbilt.
7491 2001-02-22  Stefan Monnier  <monnier@cs.yale.edu>
7493         * server.el (server-switch-buffer): Only switch window if the
7494         current one is dedicated.
7496         * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
7497         rather than using (match-beginning 0) when searching for break point.
7499 2001-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
7501         * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
7502         @ follows an accent command such as @'.  Support optional braces
7503         in commands that insert accents, like makeinfo does.
7505 2001-02-22  Gerd Moellmann  <gerd@gnu.org>
7507         * startup.el (fancy-splash-text): Add a line for ordering
7508         manuals.  Reverse order of splash screens shown.
7509         (use-fancy-splash-screens-p): Adapt to the text line added.
7511         * menu-bar.el (menu-bar-help-menu): Add an item for ordering
7512         manuals from the FSF.
7514         * help.el (view-order-manuals): New function.
7515         (toplevel): Bind C-h C-m to this function.
7517 2001-02-21  Stefan Monnier  <monnier@cs.yale.edu>
7519         * newcomment.el (comment-forward): Skip the comment-start before
7520         searching for the comment-end.
7522 2001-02-21  Dave Love  <fx@gnu.org>
7524         * custom.el (custom-initialize-changed, defcustom): Doc fix.
7526         * international/mule-cmds.el, international/mule.el: Doc fixes.
7528 2001-02-21  Gerd Moellmann  <gerd@gnu.org>
7530         * startup.el (fancy-splash-screens): Use display-hourglass
7531         instead of display-busy-cursor.
7533         * frame.el (display-hourglass): Renamed from busy-cursor.
7534         (hourglass-delay): Renamed from busy-cursor-delay-seconds.
7535         (show-cursor-in-non-selected-windows): Doc fix.
7537 2001-02-20  Dave Love  <fx@gnu.org>
7539         * international/utf-8.el: Doc and commentary fixes.
7541 2001-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
7543         * ehelp.el (with-electric-help): Doc fix.
7545 2001-02-20  Gerd Moellmann  <gerd@gnu.org>
7547         * msb.el (msb-mode): Call the update-buffers function explicitly
7548         with a FORCE argument.
7550         * menu-bar.el (menu-bar-update-buffers): Add optional parameter
7551         FORCE.  If set, update the menu even if frame-or-buffer-changed-p
7552         returns nil.
7554 2001-02-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
7556         * ps-print.el: Timestamp package replacement.  Some enhancements.
7557         Some XEmacs compatibility.  Doc fix.
7558         (ps-print-version): New version number (6.4).
7559         (ps-printer-name): Initialization fix.
7560         (ps-zebra-stripe-follow): Funcionality enhancement.
7561         (ps-prologue-file): Code enhancement.
7562         (ps-right-header): Timestamp package replacement.
7563         (ps-setup, ps-face-bold-p, ps-face-italic-p)
7564         (ps-get-page-dimensions)
7565         (ps-generate-header, ps-begin-file, ps-begin-job)
7566         (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
7567         (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
7568         (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
7569         (coding-system-for-write): Var declaration (XEmacs compatibility).
7571 2001-02-20  Miles Bader  <miles@gnu.org>
7573         * image-file.el (image-file-name-extensions): Add "tif".
7575 2001-02-19  Gerd Moellmann  <gerd@gnu.org>
7577         * wid-edit.el (widget-button-click): Save the selected window
7578         around the code handling clicks on buttons.
7580 2001-02-18  Dave Love  <fx@gnu.org>
7582         * imenu.el (imenu--generic-function): Use mapc to iterate over
7583         syntax characters.
7585 2001-02-17  Richard M. Stallman  <rms@gnu.org>
7587         * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
7589         * uniquify.el (uniquify-buffer-name-style): Doc fix.
7591 2001-02-16  Gerd Moellmann  <gerd@gnu.org>
7593         * mouse.el (mouse-save-then-kill): If the distance from the new
7594         point to the mark is equal to the distance of point from the new
7595         point, move point instead of the mark.
7597 2001-02-16  Dave Love  <fx@gnu.org>
7599         * textmodes/flyspell.el (flyspell-get-word): Return string without
7600         properties.
7602 2001-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
7604         * generic.el (generic-find-file-regexp): Doc fix.
7605         (generic-ignore-files-regexp): New defcustom.
7606         (generic-mode-find-file-hook): If the file's name matches the
7607         regexp in `generic-ignore-files-regexp', don't enter
7608         default-generic-mode.  Doc fix.
7610 2001-02-16  Gerd Moellmann  <gerd@gnu.org>
7612         * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
7613         Add autoload cookies.
7615         * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
7616         of cal-tex-24.
7618 2001-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
7620         * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
7622         * progmodes/compile.el (grep-regexp-alist): Remove the blank from
7623         the character class after the (optional) drive, to support file
7624         names with embedded blanks.
7626 2001-02-15  Sam Steingold  <sds@gnu.org>
7628         * textmodes/tex-mode.el (tex-shell-running):
7629         Check the process buffer too.
7631 2001-02-15  Dave Love  <fx@gnu.org>
7633         * battery.el (battery-status-function): Fix doc, :type.
7635         * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
7637 2001-02-15  Gerd Moellmann  <gerd@gnu.org>
7639         * subr.el (read-passwd): Clear Lisp memory holding password.
7641 2001-02-15  Miles Bader  <miles@gnu.org>
7643         * info.el (Info-copy-current-node-name): New function.
7644         (Info-mode-menu): Add it to the menu.
7646 2001-02-14  Richard M. Stallman  <rms@theobromine.ai.mit.edu>
7648         * international/mule-cmds.el (toggle-input-method): Doc fix.
7650 2001-02-13  Stefan Monnier  <monnier@cs.yale.edu>
7652         * replace.el (occur): Stop at end of buffer.
7654 2001-02-13  Eli Zaretskii  <eliz@is.elta.co.il>
7656         * international/mule-cmds.el (set-input-method): Another doc fix.
7658 2001-02-13  David M. Koppelman <koppel@ee.lsu.edu>
7660         * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
7662 2001-02-13  Miles Bader  <miles@gnu.org>
7664         * faces.el (set-face-background, set-face-foreground)
7665         (set-face-stipple): Treat a value of nil as being `unspecified'.
7667 2001-02-12  Dave Love  <d.love@dl.ac.uk>
7669         * international/latin1-disp.el:  Doc fixes.
7670         (latin1-display) <defgroup>: Add :link.
7671         (latin1-display) <function>: Set variable latin1-display.
7673 2001-02-12  Eli Zaretskii  <eliz@is.elta.co.il>
7675         * international/mule-cmds.el (set-input-method): Doc fix.
7677 2001-02-12  Eric M. Ludlam  <zappo@choochoo.ultranet.com>
7679         * speedbar.el (speedbar-frame-parameters): No toolbar lines.
7680         (speedbar-line-file): Return nil if not a file.
7681         (speedbar-buffers-line-path): Return file for tags, and dir for files.
7683 2001-02-12  Michael Kifer  <kifer@cs.sunysb.edu>
7685         * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
7686         for remote files.
7687         (ediff-coding-system-for-read): Replaced the no-conversion default
7688         with raw-text.
7690         * ediff-init.el: Removed :version from defcustom vars.
7692         * ediff-util.el (ediff-compute-custom-diffs-maybe):
7693         Better handling of the diff mode.
7695         * ediff.texi: Added ediff-coding-system-for-read.
7697         * viper.texi: Fix typos.
7699 2001-02-11  Dave Love  <fx@gnu.org>
7701         * shadowfile.el: Doc fixes.
7702         (shadow) <defgroup>: Add :link.
7703         (shadowfile-unload-hook): New function.
7704         (shadow-initialize): Use defalias, not fset.
7705         (shadow-define-cluster, shadow-define-literal-group)
7706         (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
7708         * international/mule.el: Doc and message fixes.
7710         * international/ccl.el (define-ccl-program): Doc fix.
7712 2001-02-11  Kenichi Handa  <handa@etl.go.jp>
7714         * faces.el (mode-line): Set :line-width property to -1.
7716 2001-02-10  Richard M. Stallman  <rms@gnu.org>
7718         * complete.el (partial-completion-mode): Doc fix.
7720         * simple.el (delete-key-deletes-forward-mode):
7721         Change `let' to `let*' to fix gross bug in last change.
7723         * repeat.el (repeat): Don't let execute-kbd-macro alter
7724         real-last-command.
7726 2001-02-10  Eli Zaretskii  <eliz@is.elta.co.il>
7728         * simple.el (eval-expression): Doc fix.
7730 2001-02-09  Dave Love  <fx@gnu.org>
7732         * imenu.el (imenu-generic-expression): Doc fix.
7734         * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
7735         From Juanma Barranquero.
7737         * emacs-lisp/authors.el (authors): Expand `root' before running find.
7739 2001-02-09  Kenichi Handa  <handa@etl.go.jp>
7741         * faces.el (set-face-attribute): Describe the case of a negative
7742         value specified for :line-width.
7744 2001-02-08  Stefan Monnier  <monnier@cs.yale.edu>
7746         * which-func.el (which-func-mode): Invert which-func-mode-global.
7747         From Juanma Barranquero <lektu@uol.com.br>.
7749 2001-02-08  Dave Love  <fx@gnu.org>
7751         * wid-edit.el (widget-plist-convert-widget): Replace binding of
7752         widget-plist-value-type.
7753         (widget-alist-convert-widget): Replace binding of
7754         widget-alist-value-type.
7756         * textmodes/paragraphs.el (sentence-end): Doc fix.
7758         * eshell/em-rebind.el (eshell-cannot-leave-input-list):
7759         Remove `backward-line'.
7761         * play/pong.el (pong-blank-color, pong-bat-color)
7762         (pong-ball-color, pong-border-color, pong-left-key)
7763         (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
7764         (pong-pause-key, pong-resume-key, pong-timer-delay):
7765         * mail/mh-comp.el (mh-compose-letter-function):
7766         * eshell/esh-mode.el (eshell-skip-prompt-function):
7767         * emulation/viper-ex.el (ex-unix-type-shell-options):
7768         * recentf.el (recentf-menu-filter):
7769         * ps-print.el (ps-print-region-function):
7770         * lpr.el (print-region-function):
7771         * forms.el (forms-mode-hooks):
7772         * dirtrack.el (dirtrack-directory-change-hook):
7773         * cus-start.el (temp-buffer-show-function, display-buffer-function):
7774         * textmodes/spell.el (spell-filter):
7775         * textmodes/fill.el (adaptive-fill-function):
7776         * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
7777         * progmodes/etags.el (find-tag-default-function):
7778         * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
7779         * progmodes/ada-mode.el (ada-popup-key): Fix :type.
7781 2001-02-07  Eli Zaretskii  <eliz@is.elta.co.il>
7783         * emulation/viper-init.el (viper-fast-keyseq-timeout)
7784         (viper-translate-all-ESC-keysequences): Doc fix.  From Jim
7785         Meyering <jim@meyering.net>.
7787         * loadup.el: Revert last change.
7789 2001-02-07  Kenichi Handa  <handa@etl.go.jp>
7791         * international/mule.el (transform-make-coding-system-args):
7792         Make it work also for coding systems not using CCL.
7794 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
7796         * simple.el (previous-matching-history-element)
7797         (next-matching-history-element): Doc fix.
7799         * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
7800         specific part.
7802 2001-02-06  Dave Love  <fx@gnu.org>
7804         * add-log.el (add-log-current-defun-function)
7805         (add-log-buffer-file-name-function, add-log-file-name-function):
7806         Fix :type.
7807         (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
7809 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
7811         * info.el (info-initialize): Remove the test for system-type when
7812         invocation-directory is non-nil.
7814         * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
7815         of `font-lock-defaults' to `backward-paragraph' rather than nil.
7817 2001-02-06  Andrew Innes  <andrewi@gnu.org>
7819         * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
7820         absolute.
7822 2001-02-06  David M. Koppelman <koppel@ee.lsu.edu>
7824         * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
7825         buffers.  When hi-lock turned on rather than only checking current
7826         buffer for regexps, all buffers are checked. Moved activation of
7827         font-lock to hi-lock-refontify. When font-lock turned off rather
7828         than removing added highlighting just in current buffer, remove it
7829         in all buffers.  Changed edit menu text from "Automatic
7830         Highlighting" to "Regexp Highlighting" Documentation for
7831         highlighting phrases, minor documentation changes.
7832         (hi-lock-set-file-patterns): Execute only if there are new or
7833         existing file patterns.
7834         (hi-lock-refontify): Assume font-lock-fontify-buffer will first
7835         unfontify and, if a support mode is active, will not refontify the
7836         whole buffer.  If necessary, turn on font lock. (Removed
7837         font-lock-unfontify and font-lock support-mode-specific calls,
7838         such as lazy-lock-fontify-window.)
7839         (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
7840         patterns are found. Not useful now since find-file-hook is removed
7841         if hi-lock is off, but may be needed for per-buffer hi-lock activation.
7842         (hi-lock-face-phrase-buffer): New function.  Also added related
7843         menu item and keybinding.
7844         (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
7845         (hi-lock-process-phrase): New function.
7846         (hi-lock-line-face-buffer): Doc fixes.
7847         (hi-lock-face-buffer): Doc fixes.
7848         (hi-lock-unface-buffer): Doc fixes.
7850 2001-02-06  Gerd Moellmann  <gerd@gnu.org>
7852         * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
7853         dabbrev-ignored-regexps.
7855 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
7857         * simple.el (kill-line): Doc fix.
7859 2001-02-05  Dave Love  <fx@gnu.org>
7861         * loadup.el: Revert last two changes -- bootstrapping works with
7862         regenerated loaddefs.
7864 2001-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
7866         * isearch.el (isearch-forward): Doc fix.
7868         * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
7869         of font-lock-defaults to backward-paragraph.
7871 2001-02-05  Gerd Moellmann  <gerd@gnu.org>
7873         * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
7874         X-Complaints-To, NNTP-Posting-Date, and User-Agent.
7876 2001-02-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
7878         * ebnf2ps.el: Eliminate time-stamp functions.
7879         (ebnf-version): New version (3.5).
7880         (ebnf-eps-finish-and-write): Replace time-stamp functions by
7881         format-time-string.
7883 2001-02-05  Gerd Moellmann  <gerd@gnu.org>
7885         * simple.el (next-line): Goto end-of-line before inserting a newline.
7887 2001-02-05  Miles Bader  <miles@gnu.org>
7889         * image-file.el (insert-image-file): When visiting an image, also
7890         set `truncate-lines' to t so that any fringe arrow looks correct.
7892 2001-02-05  Kenichi Handa  <handa@etl.go.jp>
7894         * isearch.el (isearch-forward): Add description about input method
7895         in the docsting.
7897 2001-02-04  Stefan Monnier  <monnier@cs.yale.edu>
7899         * skeleton.el (skeleton-internal-1): Always push the mark for @.
7901 2001-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
7903         * info.el (info-initialize): If installation-directory is nil, for
7904         DOS/Windows systems try looking in a sibling of invocation-directory.
7906 2001-02-02  Gerd Moellmann  <gerd@gnu.org>
7908         * wid-edit.el (widget-button-click): Fix last change.
7910         * frame.el (frame-notice-user-settings): When resizing the initial
7911         frame because the tool bar is off, also change the frame's top
7912         position if a negative top position was specified.
7914 2001-02-02  Miles Bader  <miles@gnu.org>
7916         * image-file.el (insert-image-file): When visiting an image,
7917         suppress the cursor in the image buffer.
7919 2001-02-01  Dave Love  <fx@gnu.org>
7921         * progmodes/f90.el (f90-mode): Remove startup message.
7923         * vc-cvs.el: Remove autoloads.  Require vc when compiling.
7925 2001-02-01  Gerd Moellmann  <gerd@gnu.org>
7927         * startup.el (command-line): Fix code determining whether or not
7928         to use delete-key-deletes-forward-mode.
7930 2001-02-01  Andre Spiegel  <spiegel@gnu.org>
7932         * vc.el (vc-diff-switches): New user option.
7933         (vc-version-diff): Use it.
7934         (vc-diff-switches-list): New macro.
7936         * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
7937         New customization options.
7938         (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
7940         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
7942 2001-02-01  Gerd Moellmann  <gerd@gnu.org>
7944         * msb.el (toplevel): Quote hook symbols.
7946 2001-02-01  Kenichi Handa  <handa@etl.go.jp>
7948         * international/mule.el (make-coding-system): Add description
7949         about recognized properties in the docstring.
7951         * international/mule-conf.el: Remove unused charsets
7952         mac-roman-lower and mac-roman-upper.
7954 2001-01-31  Gerd Moellmann  <gerd@gnu.org>
7956         * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
7957         is in front of the left-margin, if any.
7959         * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
7960         like `delete'.
7962         * bindings.el: Define `kp-delete' like `delete' in function-key-map.
7964         * term/w32-win.el (mouse-set-font): Doc fix.
7966 2001-01-31  Stefan Monnier  <monnier@cs.yale.edu>
7968         * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
7969         (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
7970         on already.
7972 2001-01-31  Markus Rost  <rost@math.ohio-state.edu>
7974         * files.el (save-buffer): Don't give message if (buffer-file-name)
7975         returns nil.
7977 2001-01-31  Eli Zaretskii  <eliz@is.elta.co.il>
7979         * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
7981         * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
7982         concat for integers.  From Juanma Barranquero <lektu@uol.com.br>.
7984         * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
7985         display problems.
7987 2001-01-31  Kenichi Handa  <handa@etl.go.jp>
7989         * international/mule.el (charset-info): Fix docstring.
7991         * international/mule-diag.el (describe-character-set): Check final
7992         char valid before printing it.
7994 2001-01-30  Gerd Moellmann  <gerd@gnu.org>
7996         * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
7998         * frame.el (frame-notice-user-settings): Do the tool-bar
7999         stuff only for graphical displays.  Fix a braino.
8001         * frame.el (frame-initialize): Create initial frame visible.
8002         (frame-notice-user-settings): When tool-bar has been switched off,
8003         correct the frame size and sync tool-bar-mode.
8005         * startup.el (command-line): Remove manipulation of frame
8006         height for tool bars.
8008 2001-01-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
8010         * lpr.el: Compatibility with XEmacs and doc fixes.
8011         (lpr-windows-system, lpr-lp-system): New vars.
8012         (lpr-printer-switch): New defcustom.
8013         (printer-name, lpr-command): Customization fix.
8014         (print-region-1): Code fix.
8015         (print-region-new-buffer, printify-region): Indentation fix.
8016         (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
8017         New functions.
8019 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
8021         * msb.el (toplevel): Fix the eval-after-load.
8023 2001-01-29  Dave Love  <fx@gnu.org>
8025         * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
8027         * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
8029         * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
8030         (tcl-using-emacs-19-23): Consider Emacs 21+.
8031         (tcl-help-directory-list, tcl-command-switches): Fix :type.
8032         (tcl-add-emacs-menu): Supply menu name.
8033         (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
8035 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
8037         * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
8039 2001-01-29  Stefan Monnier  <monnier@cs.yale.edu>
8041         * pcvs.el (cvs-mark-fis-dead): New function.
8042         (cvs-mode-add): Use it.
8043         (cvs-mode-add-change-log-entry-other-window):
8044         Rebind change-log-default-name to itself rather than to nil.
8046 2001-01-29  Sam Steingold  <sds@gnu.org>
8048         * vc-cvs.el: Replaced (require 'vc) with a bunch of
8049         `autoload' statements.
8051 2001-01-29  Eli Zaretskii  <eliz@is.elta.co.il>
8053         * files.el (confirm-kill-emacs): Doc fix.
8055         * frame.el (frame-initialize): Doc fix.
8057         * time-stamp.el (time-stamp-string): Doc fix.
8059         * woman.el (WoMan-log-1): Make the log buffer writable.
8060         From Markus Rost <rost@math.ohio-state.edu>.
8062 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
8064         * imenu.el (imenu-syntax-alist): Add autoload cookie for
8065         the `make-variable-buffer-local'.
8067 2001-01-29  Dave Love  <fx@gnu.org>
8069         * ansi-color.el (ansi-color-for-comint-mode): Add :version.
8070         (ansi-color-for-comint-mode-on, ansi-color-process-output):
8071         Add autoload cookie.
8072         (ansi-color-apply-sequence): Fix typo.
8074 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
8076         * menu-bar.el (menu-bar-files-menu): Add menu items for
8077         Postscript printing in black and white.
8079         * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
8080         X-Mailman-Version, Precedence, List-Help, List-Post,
8081         List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
8082         Content-Type, Content-Length.
8084 2001-01-29  Dave Love  <fx@gnu.org>
8086         * elide-head.el (elide-head): Make overlay evaporate.
8088         * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
8090 2001-01-28  Eli Zaretskii  <eliz@is.elta.co.il>
8092         * isearch.el (isearch-highlight): Don't punt if the display
8093         doesn't support colors, since isearch faces are defined for
8094         monochrome displays as well.
8096 2001-01-27  Sam Steingold  <sds@gnu.org>
8098         * shell.el (shell-write-history-on-exit): Make sure that we are in
8099         the shell buffer (M-x tex-file RET inserted the error message into
8100         the TeX buffer).
8102 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
8104         * simple.el (transient-mark-mode): Doc fix.
8106 2001-01-27  Gerd Moellmann  <gerd@gnu.org>
8108         * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
8110 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
8112         * shell.el (shell-unquote-argument): If the shell is one of the
8113         mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
8114         quote character.
8115         (shell-dumb-shell-regexp): Document that the shells which match
8116         this regexp are supposed to not treat a backslash as a quote character.
8118         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
8119         from 2001-01-12.  It is not needed, since backspace is mapped into DEL.
8121 2001-01-27  Richard M. Stallman  <rms@gnu.org>
8123         * dabbrev.el (dabbrev--substitute-expansion):
8124         Treat a one-capital-letter abbrev as "not all upper case",
8125         so as to force preservation of the expansion's pattern
8126         if the expansion starts with a capital letter.
8128 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
8130         * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
8131         Doc fix.
8133         * simple.el (transient-mark-mode): Document the fact that many
8134         commands act on the region when mark is active.
8136 2001-01-27  Kenichi Handa  <handa@etl.go.jp>
8138         * international/quail.el (quail-setup-completion-buf): Make the
8139         multibyteness of current buffer inherited to Quail completion buffer.
8140         (quail-show-guidance-buf): Make the multibyteness of current
8141         buffer inherited to Quail guidance buffer.
8142         (quail-help): Make the multibyteness of current buffer inherited
8143         to Quail help buffer.
8145 2001-01-26  Dave Love  <fx@gnu.org>
8147         * time-stamp.el: Doc fixes.
8149         * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
8150         (delphi-keyword-face, delphi-other-face): Fix :type.
8152         * textmodes/flyspell.el: Doc fixes.  Add :version to new options.
8154         * mail/feedmail.el (feedmail): Add :link.
8155         (feedmail-send-it): Doc fix.
8157         * mail/sendmail.el: Doc fixes.
8158         (sendmail-send-it): Fix the non-ASCII regexp and use
8159         rfc2047-encode-string.
8161         * dired.el, dired-aux.el: Revert last change.
8163 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
8165         * makefile.w32-in (DONTCOMPILE): Add various term files.
8167 2001-01-26  Dave Love  <fx@gnu.org>
8169         * Makefile.in (DONTCOMPILE): Add various term files.
8171 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
8173         * man.el (Man-default-man-entry, Man-mode): Doc fix.
8175         * startup.el (display-startup-echo-area-message): Make sure
8176         the echo area is resized to fit the size of the startup message.
8178         * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
8179         part of which is a constant.
8181 2001-01-26  Eli Zaretskii  <eliz@is.elta.co.il>
8183         * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
8185 2001-01-26  Richard M. Stallman  <rms@gnu.org>
8187         * simple.el (next-line): Don't let `newline' expand abbrevs.
8188         Simplify slightly.
8189         (open-line): Don't let `newline' expand abbrevs.
8191 2001-01-25  John Wiegley  <johnw@gnu.org>
8193         * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
8194         to `repeat' in the :type field.
8196         * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
8197         allow a choice of regexp or nil.
8198         (pcomplete-dir-ignore): Same.
8200         * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
8201         a command) to always fail.
8203 2001-01-25  Gerd Moellmann  <gerd@gnu.org>
8205         * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
8206         discard the result.
8207         (iswitchb-to-end): Likewise.
8209 2001-01-25  Sam Steingold  <sds@gnu.org>
8211         * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
8212         Require vc.
8214 2001-01-25  Stefan Monnier  <monnier@cs.yale.edu>
8216         * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
8218         * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
8220 2001-01-25  Dave Love  <fx@gnu.org>
8222         * lisp/international/mule-diag.el (describe-char-after): Doc fix.
8223         (describe-coding-system): Tweak the English text.
8225         * loadup.el: Preload international/ccl for utf-8.
8227 2001-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
8229         * mail/rmail.el (rmail-redecode-body): Doc fix.
8231 2001-01-25  Kenichi Handa  <handa@etl.go.jp>
8233         * international/mule-cmds.el (reset-language-environment):
8234         Reset coding-category-utf-8 to mule-utf-8.
8236         * international/mule-conf.el (coding-category-utf-8):
8237         Initialize to mule-utf-8.
8239         * loadup.el: Preload international/utf-8.
8241         * international/utf-8.el: New file.
8243 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
8245         * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
8247 2001-01-24  Sam Steingold  <sds@gnu.org>
8249         * dired.el (dired-replace-in-string): Removed.
8250         (dired-sort-toggle): Use `replace-regexps-in-string'
8251         instead of `dired-replace-in-string'.
8253         * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
8254         (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
8256         * gs.el (gs-replace-in-string): Removed.
8257         (gs-options): Use `replace-regexps-in-string'
8258         instead of `gs-replace-in-string'.
8260 2001-01-24  Eli Zaretskii  <eliz@is.elta.co.il>
8262         * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
8263         bug report is mailed to an email list and posted to a news group.
8265 2001-01-24  Gerd Moellmann  <gerd@gnu.org>
8267         * comint.el (comint-replace-by-expanded-history-before-point):
8268         Fix change of 2000-08-03 to move point to the start of the line again.
8270         * startup.el (tool-bar-images-pixel-height): New variable.
8271         (command-line): After loading the user's init file, when
8272         tool-bar-mode is on, increase the frame's size by some lines for
8273         the tool-bar.
8275         * frame.el (frame-initialize): Create the initial frame invisible.
8277 2001-01-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
8279         * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
8280         (chinese-big5): MIME:Big5.
8282 2001-01-24  Gerd Moellmann  <gerd@gnu.org>
8284         * international/mule-cmds.el (universal-coding-system-argument):
8285         Handle commands with prefix args.
8287 2001-01-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
8289         * calendar/diary-lib.el (diary-float): Fix case of MONTH
8290         being a list of numbers.
8291         (diary-mail-entries): Rewritten.
8293 2001-01-23  Dave Love  <fx@gnu.org>
8295         * international/mule.el (make-coding-system): Fix typo.
8297         * textmodes/outline.el (outline-mode) <font-lock-defaults>:
8298         Add backward-paragraph as font-lock-beginning-of-syntax-function.
8300 2001-01-23  Eli Zaretskii  <eliz@is.elta.co.il>
8302         * font-lock.el (font-lock-mode): Doc fix.
8304 2001-01-23  Kenichi Handa  <handa@etl.go.jp>
8306         * international/mule.el (make-translation-table): Fix docstring.
8308 2001-01-22  Eli Zaretskii  <eliz@is.elta.co.il>
8310         * mail/rmail.el (rmail-redecode-body): New function.
8312         * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
8314 2001-01-22  Gerd Moellmann  <gerd@gnu.org>
8316         * isearch.el (isearch-lazy-highlight-case-fold-search)
8317         (isearch-lazy-highlight-regexp): New variables.
8318         (isearch-lazy-highlight-cleanup): Update lazy highlight if
8319         case-fold search or regexp search has been toggled.
8321         * wid-edit.el (widget-button-click): Avoid a save-excursion
8322         around running a global binding.
8324         * isearch.el (isearch-lazy-highlight-initial-delay): Set default
8325         to 0.25.
8327 2001-01-20  Miles Bader  <miles@gnu.org>
8329         * cus-edit.el (custom-face-save): Do post-processing on the face's
8330         new value like `custom-face-set' does.
8332 2001-01-19  Eli Zaretskii  <eliz@is.elta.co.il>
8334         * mail/emacsbug.el (report-emacs-bug): Report the value of
8335         LC_CTYPE, not LC_TYPE.
8337         * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
8338         isearch-toggle-regexp and isearch-edit-string to doc string.
8340 2001-01-19  Gerd Moellmann  <gerd@gnu.org>
8342         * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
8343         as font-lock-beginning-of-syntax-function in font-lock-defaults.
8345         * jit-lock.el (jit-lock-fontify-now): Don't bind
8346         font-lock-beginning-of-syntax-function to nil.
8348 2001-01-19  Eli Zaretskii  <eliz@is.elta.co.il>
8350         * mail/emacsbug.el (report-emacs-bug): Report values of
8351         locale-coding-system, default-enable-multibyte-characters, and the
8352         environment variables LC_ALL, LC_TYPE, and LANG.
8354 2001-01-19  Gerd Moellmann  <gerd@gnu.org>
8356         * font-lock.el (font-lock-default-fontify-region): Fix last change.
8358         * font-lock.el (font-lock-multiline): Default to nil.
8359         (font-lock-default-fontify-region): If font-lock-multiline is
8360         nil, don't check the property `font-lock-multiline'.
8362         * jit-lock.el (jit-lock-after-change): If font-lock-multiline
8363         is nil, don't check the `font-lock-multiline' text property.
8365 2001-01-19  Michael Kifer  <kifer@cs.sunysb.edu>
8367         * viper.el: Call initial-major-mode on startup.
8369         * ediff.el (ediff-patch-file): Use better defaults.
8371         * ediff-vers.el: Fix for 8+3 DOS file systems.
8373 2001-01-19  Colin Walters <walters@cis.ohio-state.edu>
8375         * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
8376         diff mode, if available.
8378 2001-01-19  Michael Kifer  <kifer@cs.sunysb.edu>
8380         * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
8382         * ediff-init.el (subst-char-in-string): Define and use it, unless
8383         it's already defined.
8385 2001-01-18  Gerd Moellmann  <gerd@gnu.org>
8387         * tooltip.el (tooltip-hide-delay): New user-option.
8388         (tooltip-show): Use tooltip-hide-delay instead of the default.
8390 2001-01-18  Kenichi Handa  <handa@etl.go.jp>
8392         * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
8393         kill-local-variable doesn't work for enable-multibyte-characters.
8395 2001-01-17  Dave Love  <fx@gnu.org>
8397         * ediff-init.el (ediff-before-setup-hook)
8398         (ediff-merge-filename-prefix): Add :version.
8400         * international/latin1-disp.el: Require disp-table.
8401         (latin1-display): Fix :set.
8403         * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
8405 2001-01-17  Gerd Moellmann  <gerd@gnu.org>
8407         * isearch.el (isearch-lazy-highlight-initial-delay)
8408         (isearch-lazy-highlight-interval): Default to 0.
8410 2001-01-17  Bob Glickstein  <bobg@zanshin.com>
8412         * isearch.el (isearch-highlight): Set isearch-overlay priority to
8413         1 here rather than each time through
8414         isearch-lazy-highlight-new-loop.
8415         (isearch-lazy-highlight-max): Variable deleted.
8416         (isearch-lazy-highlight-max-at-a-time): New user variable, like
8417         isearch-lazy-highlight-max but controls a single invocation of
8418         isearch-lazy-highlight-update.
8419         (isearch-lazy-highlight-wrapped): Variable recreated.
8420         (isearch-lazy-highlight-window-start): New variable.
8421         (isearch-lazy-highlight-cleanup): Restored to behavior of
8422         before 2-Jan.
8423         (isearch-lazy-highlight-remove-overlays): Function deleted;
8424         behavior folded into isearch-lazy-highlight-cleanup.  "Keep"
8425         behavior removed.
8426         (isearch-lazy-highlight-new-loop): Restore old behavior of calling
8427         isearch-lazy-highlight-update in a loop rather than just once.
8428         Test isearch-invalid-regexp here and decide not to start a new
8429         loop, rather than testing it each time through
8430         isearch-lazy-highlight-update.
8431         (isearch-lazy-highlight-search): Function restored.
8432         (isearch-lazy-highlight-update): Get called in a timer loop again,
8433         but this time highlight more than one match each time through.
8434         Only highlight matches in the visible part of the window.
8435         Start at point, move in the direction of the search, and wrap around at
8436         the edge of the window.  Use sit-for to force redisplay and ensure
8437         window-start is credible.  "Face suppressing" behavior removed;
8438         overlay priorities should make it unnecessary, right?
8439         (isearch-highlight): Face suppressing behavior removed.
8440         (isearch-dehighlight): Face suppressing behavior removed.
8441         (isearch-set-lazy-highlight-faces-at): Removed.
8443 2001-01-17  Kenichi Handa  <handa@etl.go.jp>
8445         * language/european.el ("Latin-1"): Make the format of description
8446         about additional language environments same as that of Latin-2.
8448 2001-01-16  Dave Love  <fx@gnu.org>
8450         * isearch.el (isearch-lazy-highlight): Add :version.
8452         * simple.el (backward-delete-char-untabify-method)
8453         (next-line-add-newlines): Add :version.
8455 2001-01-16  Gerd Moellmann  <gerd@gnu.org>
8457         * bindings.el: Bind <backspace> and <delete> via function-key-map.
8458         Don't bind <delete> otherwise.
8460         * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
8461         and <delete> via function-key-map.
8463         * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
8464         Subject line only if point is after the `Subject:'.
8466 2001-01-16  Kenichi Handa  <handa@etl.go.jp>
8468         * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
8469         japanese-jisx0213-2 in `charset' property of this lang. env.
8471         * language/european.el ("Latin-1"): Add description for Dutch and
8472         Spanish lang. env.
8474         * international/mule.el (decode-char): Fix conditions.
8475         (encode-char): Handle eight-bit-control too.
8476         (transform-make-coding-system-args): New function.
8477         (make-coding-system): Accept XEmacs style arguments for CCL base
8478         coding system.
8480 2001-01-15  Gerd Moellmann  <gerd@gnu.org>
8482         * progmodes/etags.el (find-tag-noselect): Save the value of
8483         tags-file-name before switching buffers, for the case it has a
8484         buffer-local value.
8486 2001-01-15  Alex Schroeder  <alex@gnu.org>
8488         * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
8489         From Dave Love <fx@gnu.org>.
8490         (ansi-color-for-comint-mode): Fix :version.
8492 2001-01-15  Alex Schroeder  <alex@gnu.org>
8494         * ansi-color.el (ansi-color-unfontify-region): Doc change.
8496 2001-01-14  Eli Zaretskii  <eliz@is.elta.co.il>
8498         * dired.el (dired-insert-directory): If file-system-info fails,
8499         remove the " free " part, but don't signal an error.
8501 2001-01-12  Sam Steingold  <sds@gnu.org>
8503         * bookmark.el (bookmark-maybe-historicize-string):
8504         Use new backquote syntax.
8506 2001-01-12  Richard M. Stallman  <rms@gnu.org>
8508         * subr.el (last): Handle a list that doesn't end in nil.
8510 2001-01-12  Sam Steingold  <sds@gnu.org>
8512         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
8513         to `backward-delete-char-untabify'.
8515 2001-01-12  Dave Love  <fx@gnu.org>
8517         * cus-edit.el (customize-menu-create): Fix the :filter following
8518         easymenu change.
8520         * wid-edit.el (function): Add :match-alternatives.
8521         (widget-color-action): Doc fix.
8523 2001-01-12  Gerd Moellmann  <gerd@gnu.org>
8525         * calendar/calendar.el (calendar-basic-setup): Doc fix.
8527 2001-01-12  Kenichi Handa  <handa@etl.go.jp>
8529         * international/mule-cmds.el (prefer-coding-system): Fix docstring.
8531         * international/ccl.el (define-ccl-program): Fix docstring.
8533 2001-01-11  Dave Love  <fx@gnu.org>
8535         * international/mule-cmds.el (standard-display-european-internal):
8536         Set display table for 2208 as for 160.
8538         * progmodes/ada-mode.el (ada-popup-key): Fix last change.
8540         * progmodes/fortran.el (fortran-mode-map): Modify Customization
8541         entry for custom-menu-create change.
8542         (fortran-strip-sqeuence-nos): Make arg optional.  Fix regexp and
8543         don't cons it in the search loop.
8545         * imenu.el (imenu--truncate-items): Revert last change.
8547 2001-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
8549         * info.el (Info-setup-header-line): If the node header includes
8550         either Next: or Prev: links, don't show the File: and Node: parts
8551         in the header line.
8553 2001-01-11  Gerd Moellmann  <gerd@gnu.org>
8555         * comint.el (comint-goto-process-mark): Don't print a message
8556         when running in batch mode.
8558         * isearch.el (isearch-search): In the condition-case handler for
8559         `error', set isearch-invalid-regexp to the whole error message.
8561         * subr.el (eval-after-load): Call load-symbol-file-load-history to
8562         ensure that eval-after-load works for files dumped with Emacs.
8564         * help.el (load-symbol-file-load-history): New function extracted
8565         from function symbol-file.
8566         (symbol-file): Use it.
8568         * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
8570 2001-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
8572         * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
8573         behave as if there were no prefix argument.
8574         (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
8575         argument were nil.
8577 2001-01-11  Richard M. Stallman  <rms@gnu.org>
8579         * isearch.el (isearch-lazy-highlight-update):
8580         Don't look for more potential matches once maximum is exceeded.
8581         Use overlays-in to check correctly for overlap with current match.
8582         Ignore empty matches.
8584 2001-01-11  Miles Bader  <miles@gnu.org>
8586         * textmodes/ispell.el (ispell-adjusted-window-height): New function.
8587         (ispell-overlay-window, ispell-help, ispell-show-choices)
8588         (ispell-command-loop): Use it instead of `window-height'.
8590 2001-01-10  Gerd Moellmann  <gerd@gnu.org>
8592         * files.el (confirm-kill-emacs): New user-option.
8593         (save-buffers-kill-emacs): Ask for final confirmation before
8594         killing Emacs.
8596         * isearch.el (isearch-done): Set isearch-lazy-highlight-start
8597         to nil.
8599 2001-01-10  Dave Love  <fx@gnu.org>
8601         * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
8603         * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
8605         * hi-lock.el (hi-lock-exclude-modes): Fix :type.
8607         * calculator.el (calculator-number-digits): Fix :type.
8609         * vc-cvs.el (vc-cvs-header): Fix :type.
8610         * vc-rcs.el (vc-rcs-header): Fix :type.
8611         * vc-sccs.el (vc-sccs-header): Fix :type.
8613         * progmodes/ada-mode.el (ada-popup-key): Fix :type.
8615         * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
8617         * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
8619 2001-01-10  Gerd Moellmann  <gerd@gnu.org>
8621         * simple.el (set-variable): Force a thorough redisplay for the
8622         case that the variable has an effect on the display, like
8623         `tab-width' has.
8625 2001-01-10  Andre Spiegel  <spiegel@gnu.org>
8627         * vc.el: Add documentation for backend interface.
8629 2001-01-10  Kenichi Handa  <handa@etl.go.jp>
8631         * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
8633         * international/mule-conf.el (latin-extra-code-table): Set to t
8634         for \223 and \224.
8636 2001-01-09  Kenichi Handa  <handa@etl.go.jp>
8638         * international/mule-cmds.el (locale-language-names): Map "es" to
8639         "Spanish" and "nl" to "Dutch".
8641 2001-01-09  Gerd Moellmann  <gerd@gnu.org>
8643         * bindings.el (global-map): Bind <home> to beginning-of-line,
8644         <end> to end-of-line, C-<home> to beginning-of-buffer, and
8645         C-<end> to end-of-buffer.
8647         * language/european.el: Add Dutch and Spanish language info
8648         to be able to use the appropriate tutorials.
8650 2001-01-09  Alex Schroeder  <alex@gnu.org>
8652         * ansi-color.el (ansi-color-process-output): Use markers instead
8653         of positions for start and end of region.
8654         (ansi-color-apply-on-region): Rewrote code to make it more robust.
8655         Previously, occasional mistakes happend when fontifying many
8656         chunks of output (eg. ls --color=yes /dev).  This happened
8657         whenever an overlay was created up to the end of the region, which
8658         coincided with the process-mark.  New text would then be added
8659         within that overlay instead of after it.
8660         (ansi-color-make-extent): Overlays are created with the property
8661         `modification-hooks' set to '(ansi-color-freeze-overlay).
8662         (ansi-color-freeze-overlay): New function.  When inserting text at
8663         the end of the overlay, the overlay will resize.
8665 2000-01-09  Alex Schroeder  <alex@gnu.org>
8667         * ansi-color.el (ansi-color-process-output): Doc change.
8668         (ansi-color-unfontify-region): Doc change.  No longer installed
8669         automatically in font-lock-unfontify-region-function.
8670         (ansi-color-apply): Doc change.
8671         (ansi-color-apply-on-region): Use extents or overlays instead of
8672         text-properties.
8673         (ansi-color-make-extent): New function.
8674         (ansi-color-set-extent-face): New function.
8676 2000-01-09  Alex Schroeder  <alex@gnu.org>
8678         * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
8679         both use ansi-color-process-output, now.
8680         (ansi-color-process-output): Doesn't return string anymore.  It is
8681         installed in comint-output-filter-functions for both Emacs and
8682         XEmacs, now.
8683         (ansi-color-unfontify-region): Simplified code removing variables
8684         pos and start-ansi.
8685         (ansi-color-apply): Put text-property ansi-color before putting
8686         text-property face because ansi-color-unfontify-region is called
8687         immediately after the call to put-text-property.
8688         (ansi-color-context-region): Doc change.
8689         (ansi-color-filter-region): Simplified code.
8690         (ansi-color-apply-on-region): Changed start to start-marker, using
8691         a marker explicitly.  Put text-property ansi-color before putting
8692         text-property face because ansi-color-unfontify-region is called
8693         immediately after the call to put-text-property.
8695 2000-01-09  Alex Schroeder  <alex@gnu.org>
8697         * ansi-color.el (ansi-color-faces-vector): Doc change.
8698         (ansi-color-for-comint-mode): Changed :type property to choice.
8699         (ansi-color-last-context): Removed.
8700         (ansi-color-process-output): Don't use ansi-color-last-context, as
8701         the main functions will store their context now.
8702         (ansi-color-context): Doc change.
8703         (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
8704         Uses ansi-color-context such that repeated calls will strip
8705         partial escape sequences, too.
8706         (ansi-color-apply): Simplified code.  Colorize end of string if
8707         face is not null.  Store context in new (FACE STRING) format, such
8708         that repeated calls will strip partial escape sequences, too.
8709         Append faces to face property using ansi-color-apply-sequence such
8710         that cumulative mode actually works.
8711         (ansi-color-context-region): New variable.
8712         (ansi-color-filter-region): Rewrote it based on
8713         ansi-color-apply-on-region.  Uses ansi-color-context-region such
8714         that repeated calls will strip partial escape sequences, too.
8715         (ansi-color-apply-on-region): Simplified code.  Colorize end of
8716         region if face is not null.  Store context in new (FACE POS)
8717         format, such that repeated calls will strip partial escape
8718         sequences, too.  Append faces to face property using
8719         ansi-color-apply-sequence such that cumulative mode actually works.
8720         (ansi-color-apply-sequence): New function.
8721         (ansi-color-get-face): When the default face is added to the list
8722         of faces, all previous settings are discarded and the list of
8723         faces is set to '(default).
8725 2000-01-09  Alex Schroeder  <alex@gnu.org>
8727         * ansi-color.el (ansi-color-faces-vector): Use nil for the default
8728         face, such that ansi-color-apply and ansi-color-apply-on-region
8729         will do the right thing.
8730         (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
8731         returns nil, set the list of faces back to nil instead of
8732         appending the result of ansi-color-get-face to the front of the list.
8734 2000-01-09  Alex Schroeder  <alex@gnu.org>
8736         * ansi-color.el (ansi-color-for-comint-mode): Doc change.
8737         (ansi-color-process): Doc change.
8738         (ansi-color-last-context): New buffer-local variable.
8739         (ansi-color-process-output): New function.  It is automatically
8740         added to comint-output-filter-functions if this is XEmacs.
8741         (ansi-color-unfontify-region): New optional parameter for XEmacs
8742         compatibility.  Check wether font-lock-syntactic-keywords is
8743         boundp before removing the syntax table text property, as XEmacs
8744         doesn't have it.
8745         (ansi-color-filter-region): Doc change.
8746         (ansi-color-apply-on-region): Doc change.
8747         (ansi-color-make-face): New function.  Compatibility layer for
8748         XEmacs.  Return temporary faces instead of cons cells for XEmacs.
8749         (ansi-color-make-color-map): Use ansi-color-make-face.
8750         (ansi-color-get-face): Avoid face text property '(nil) as results
8751         in an errow for XEmacs.
8753 2000-01-09  Alex Schroeder  <alex@gnu.org>
8755         * ansi-color.el (ansi-color-unfontify-region): New function.
8756         Uses text-property ansi-color in order to preserve fontification by
8757         ansi-color.  When the package is loaded, a lambda expression is
8758         put onto font-lock-mode-hook.  This lambda expression will check
8759         font-lock-unfontify-region-function and replace
8760         font-lock-default-unfontify-region with ansi-color-unfontify-region.
8761         (ansi-color-apply): Add text-property ansi-color in addition to
8762         text-property face.
8763         (ansi-color-apply-on-region): Add text-property ansi-color in
8764         addition to text-property face.
8765         (save-buffer-state): Copy of the macro that is also used by
8766         lazy-lock and font-lock.
8768         (ansi-color-for-comint-mode): New option.
8769         (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
8770         (ansi-color-for-comint-mode-off): Ditto.
8771         (ansi-color-for-comint-mode-filter): Ditto.
8772         (ansi-color-process): New function.  Uses ansi-color-for-comint-mode to
8773         decide what to do.  This function is added to
8774         comint-preoutput-filter-functions when the package is loaded.
8776         (ansi-color-for-shell-mode-set): Removed.
8777         (ansi-color-for-shell-mode): Removed.
8779 2000-01-09  Alex Schroeder  <alex@gnu.org>
8781         * ansi-color.el (ansi-color-for-shell-mode-set): New function with
8782         the lambda expression from the ansi-color-for-shell-mode :set
8783         property.  Additionally, modify shell-mode-hook to enable or
8784         disable font-lock-mode for future shell buffers.
8785         (ansi-color-for-shell-mode): The :set property calls
8786         ansi-color-for-shell-mode-set instead of a lambda expression.
8788 2000-01-09  Alex Schroeder  <alex@gnu.org>
8790         * ansi-color.el (ansi-color-for-shell-mode): Doc change.
8791         (ansi-color-context): New variable.
8792         (ansi-color-apply): Save context between calls.
8794 2001-01-09  Eli Zaretskii  <eliz@is.elta.co.il>
8796         * isearch.el (isearch, isearch-lazy-highlight-face):
8797         New definitions for face colors and attributes.
8799         * wid-edit.el (widget-choose): Call display-popup-menus-p instead
8800         of display-mouse-p.
8802 2001-01-09  Kenichi Handa  <handa@etl.go.jp>
8804         * international/mule.el (make-coding-system): If the coding system
8805         accepts extra latin codes, register such codes as safe for the
8806         coding system.
8808 2001-01-08  Richard M. Stallman  <rms@gnu.org>
8810         * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
8811         don't mention the file name or the date here, because they are
8812         logged at the start of the file.
8814 2001-01-08  Richard M. Stallman  <rms@gnu.org>
8816         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
8817         Change screen-width to frame-width.
8819 2001-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
8821         * info.el (Info-search): Print the default as part of the prompt.
8823 2001-01-08  Andre Spiegel  <spiegel@gnu.org>
8825         * vc.el (vc-default-latest-on-branch-p): New function, replaces
8826         constant implementations in backends.
8828         * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
8829         (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
8831         * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
8832         WRITABLE to EDITABLE.
8834         * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
8835         (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
8836         to EDITABLE.
8838 2001-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
8840         * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
8841         (copyright, copyright-update): Compute the current year at run time.
8843 2001-01-08  Gerd Moellmann  <gerd@gnu.org>
8845         * isearch.el (isearch-old-signal-hook): Removed.
8846         (isearch-mode): Add isearch-done to kbd-macro-termination-hook
8847         instead of setting signal-hook-function.
8848         (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
8850 2001-01-08  Kevin Gallagher  <kevingal@onramp.net>
8852         * emulation/edt.el: Update to version 4.0.  Provide support for
8853         EDT scroll margins at top and bottom of the window.  Provide an
8854         emulation of the EDT SUBS command (bound to GOLD-Enter, by
8855         default).  Enhance edt-quit, bound to GOLD-q by default, to warn
8856         user when file-related buffer modifications exist.
8857         Provide support for running EDT Emulation in XEmacs.
8858         Provide customize access to some user updatable variables.
8859         Add Commentary section to file header.
8860         Fixed a few minor bugs and cleaned up some code.
8862         * emulation/edt-mapper.el: Update to version 4.0.  Provide support
8863         for detecting a keypress that generates an ASCII key sequence.
8864         (Previously, only a keypress that generates a vector was
8865         recognized.)  Embed Window Manager name into name of the generated
8866         EDT Emulation initialization file since the initialization file is
8867         Window Manager specific.  Add Commentary section to file header.
8869 2001-01-07  Eli Zaretskii  <eliz@is.elta.co.il>
8871         * mail/sendmail.el (mail-mode): Doc fix.
8873         * info.el (Info-goto-emacs-command-node): Doc fix.
8874         (Info-goto-emacs-key-command-node): Doc fix.
8876 2001-01-06  Eli Zaretskii  <eliz@is.elta.co.il>
8878         * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
8879         systems without long file-name support.
8881 2001-01-06  Andrew Innes  <andrewi@gnu.org>
8883         * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
8885 2001-01-06  Eli Zaretskii  <eliz@is.elta.co.il>
8887         * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
8888         (isearch-lazy-highlight-update): Doc fix.
8890         * ffap.el (ffap-bindings): Doc fix.
8892         * dired-x.el (dired-virtual-guess-dir): Doc fix.
8894 2001-01-05  Dave Love  <fx@gnu.org>
8896         * emacs-lisp/cl-seq.el (remove, remq): Remove.
8898 2001-01-05  Gerd Moellmann  <gerd@gnu.org>
8900         * mouse-drag.el (mouse-drag-safe-scroll):
8901         Bind scroll-preserve-screen-position to nil.
8903         * isearch.el (isearch-old-signal-hook): New variable.
8904         (isearch-mode): Set signal-hook-function to isearch-done.
8905         (isearch-done): Restore old signal-hook-function.
8907         * info.el (Info-fontify-node): Mark one more char as intangible.
8909 2000-01-05  Kenichi Handa  <handa@etl.go.jp>
8911         * composite.el (compose-last-chars): New argument COMPONENTS.
8912         If it is non-nil, compose preceding characters by compose-region with
8913         COMPONENTS.
8915         * international/quail.el (quail-input-string-to-events): New function.
8916         (quail-input-method): Convert input string to events here.
8917         (quail-start-translation): Return input string, not event list.
8918         (quail-start-conversion): Likewise.
8920 2001-01-04  Gerd Moellmann  <gerd@gnu.org>
8922         * tooltip.el (tooltip-cancel-delayed-tip)
8923         (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
8924         and tooltip-add-timeout.
8925         (tooltip-show): Set border color from faces's foreground.
8926         (tooltip-show-help-function): If called with the same help string
8927         as last time, do nothing.
8928         (tooltip-help-tips): Don't set tooltip-help-message to nil.
8930         * startup.el (fancy-splash-screens): Don't bind show-help-function
8931         to nil.
8933         * tooltip.el (tooltip-frame-parameters): Remove colors.
8934         (tooltip): New face
8935         (tooltip-set-param): New function.
8936         (tooltip-show): Set up color frame parameters from face `tooltip'.
8937         Display the tooltip text in face `tooltip'.
8939 2001-01-04  Dave Love  <fx@gnu.org>
8941         * whitespace.el (whitespace-global-mode): Fix typo.
8943         * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
8945 2001-01-04  Eli Zaretskii  <eliz@is.elta.co.il>
8947         * help.el (help-for-help): Fix a typo in a doc string.
8948         From kwzh@gnu.org (Karl Heuer).
8950 2001-01-03  Dave Love  <fx@gnu.org>
8952         * dired-x.el: Doc fixes.  Maintainer change.
8953         (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
8954         (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
8955         (dired-guess-shell-alist-user): Customize.
8956         (dired-x-help-address): Set to bug-gnu-emacs.
8957         (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
8958         (dired-default-directory): Renamed from default-directory.
8960         * hl-line.el (hl-line): Doc fix.
8962 2001-01-03  Karl Fogel  <kfogel@red-bean.com>
8964         * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
8966 2001-01-02  Richard M. Stallman  <rms@gnu.org>
8968         * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
8969         to remove all the current alternative-match highlighting.
8970         If nil, remove only what's outside the current window.
8971         (isearch-lazy-highlight-remove-overlays): Take optional
8972         region within which NOT to remove them.
8973         (isearch-lazy-highlight-new-loop): Greatly simplified.
8974         (isearch-lazy-highlight-update): Find all the other occurrences
8975         visible in the window, in just one call.
8976         (isearch-lazy-highlight-start): Now holds start of region to scan.
8977         (isearch-lazy-highlight-end): Now holds end of region to scan.
8978         (isearch-lazy-highlight-wrapped): Variable deleted.
8979         (isearch-lazy-highlight-search): Function deleted.
8981 2000-01-02  Andrew Innes  <andrewi@gnu.org>
8983         * w32-fns.el (convert-standard-filename): Do length check on name
8984         before aref.
8986 2001-01-02  Dave Love  <fx@gnu.org>
8988         * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
8989         value.
8990         (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
8992         * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
8994         * net/browse-url.el (browse-url-filename-alist): Avoid backquote
8995         read syntax.
8997         * calendar/todo-mode.el (todo): Add :link, :version.
8998         (todo-save-top-priorities): Remove autoload cookie.
8999         (todo-add-category, todo-add-item-non-interactively)
9000         (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
9002 2001-01-02  Gerd Moellmann  <gerd@gnu.org>
9004         * comint.el (comint-input-history-ignore): New variable.
9005         (comint-read-input-ring): Ignore entries matching
9006         comint-input-history-ignore.
9008 2001-01-02  Eric M. Ludlam  <zappo@gnu.org>
9010         * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
9011         (lm-copyright-mark): New function.
9012         (lm-crack-copyright): New function.
9013         (lm-verify): Check that the file has a copyright.
9014         Check that the file is copyright Free Software Foundation.
9016 2000-12-30  Kenichi Handa  <handa@etl.go.jp>
9018         * international/mule-diag.el (print-fontset): Indent font name by
9019         24 columns, not 25.
9021 2000-12-29  Gerd Moellmann  <gerd@gnu.org>
9023         * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
9024         in Subject line.
9026         * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
9027         Use mail-mode-hook instead of mail-setup-hook.
9028         Otherwise continuing an interrupted message with C-u C-x m for
9029         instance, winds up in Mail mode without abbrevs.
9031 2000-12-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9033         * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
9034         non-nil.  Adding almost all customization variables on ps-setup.
9035         Doc fix.
9036         (ps-print-version): New version number (6.3.3).
9037         (ps-end-with-control-d): Initialization fix.
9038         (ps-lines-printed): New var.
9039         (ps-skip-newline): New fun.
9040         (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
9041         (ps-next-line, ps-continue-line, ps-plot-region)
9042         (ps-generate-postscript-with-faces, ps-end-job): Code fix.
9044 2000-12-29  Kenichi Handa  <handa@etl.go.jp>
9046         * international/fontset.el (x-complement-fontset-spec):
9047         Resolve ASCII font name so that the same family name is used for fonts
9048         registered in x-font-name-charset-alist.
9049         (create-fontset-from-fontset-spec): Adjusted for the above change.
9050         The name of fontset alias should be a unresolved ASCII font name.
9052 2000-12-28  Gerd Moellmann  <gerd@gnu.org>
9054         * simple.el (delete-key-deletes-forward-mode): Bind backspace
9055         and delete in isearch-mode-map.
9057 2000-12-28  Richard M. Stallman  <rms@gnu.org>
9059         * dired-x.el (dired-guess-shell-alist-default):
9060         Use xpdf instead of acroread.
9062 2000-12-28  Kenichi Handa  <handa@etl.go.jp>
9064         * textmodes/artist.el (artist-butlast): Deleted.
9065         (artist-ellipse-mirror-quadrant): Use butlast instead of
9066         artist-butlast.
9068         * subr.el (butlast, nbutlast): Moved from cl.el to here.
9070         * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
9072 2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
9074         From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
9076         * ls-lisp.el: Better support for the Mac and MS-Windows.
9077         (ls-lisp): New defgroup.
9078         (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
9079         (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
9080         (ls-lisp-support-shell-wildcards): New defcustoms.
9081         (ls-lisp-parse-symlink): New function.
9082         (insert-directory): Code to convert switches to a list and set up
9083         the wildcard argument copied from ls-lisp-insert-directory.
9084         (ls-lisp-insert-directory): New argument TIME-INDEX.  Add support
9085         for -C and -R switches.
9086         (ls-lisp-column-format): New function.
9087         (ls-lisp-delete-matching, ls-lisp-handle-switches)
9088         (ls-lisp-format-time): Add doc strings.
9089         (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
9090         Support ls-lisp-dirs-first.
9091         (ls-lisp-classify, ls-lisp-extension): New functions.
9092         (ls-lisp-format): Optionally support emulation of symlinks.
9093         Support -i, -s, and -G switches.
9095 2000-12-27  Gerd Moellmann  <gerd@gnu.org>
9097         * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
9099         * version.el (emacs-version): Print X scroll bar information.
9101         * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
9102         instead of x-toolkit-scroll-bars-p.
9104         * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
9105         of x-toolkit-scroll-bars-p.
9107 2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
9109         * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
9110         (ffap-bindings): Doc fix, to reflect the above change.
9112 2000-12-27  Kenichi Handa  <handa@etl.go.jp>
9114         * term.el (term-char-mode): Define all non-ascii self-inserting
9115         characters to 'term-send-raw in term-raw-map.
9117 2000-12-25  Michael Kifer  <kifer@cs.sunysb.edu>
9119         * viper-init (viper-restore-cursor-type): Added condition-case guard.
9121         * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
9122         Changed initialization; use add-hook.
9123         (ediff-file-remote-p): Use file-local-copy.
9125         * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
9127         * ediff.el (ediff-patch-buffer): Bug fix.
9128         (ediff-revision): Allow selection of the file at the prompt.
9130 2000-12-23  Stefan Monnier  <monnier@cs.yale.edu>
9132         * subr.el (combine-run-hooks): Remove.
9134         * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
9135         and remove the rogue second spec.
9137 2000-12-23  Gerd Moellmann  <gerd@gnu.org>
9139         * progmodes/compile.el (compilation-forget-errors): Fix indentation.
9141 2000-12-22  Stefan Monnier  <monnier@cs.yale.edu>
9143         * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
9144         Use minibuffer menu prompt for the `=' prefix.
9145         (smerge-command-prefix): Change default to C-^.
9146         (smerge-mode): Don't assume font-lock doesn't move point.
9148         * skeleton.el (skeleton-internal-1): Make sure the first line of
9149         the region is also re-indented.
9150         (skeleton-end-newline): New var.
9151         (skeleton-end-hook): Use it.
9153 2000-12-22  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9155         * comint.el (comint-password-prompt-regexp): Support CVS.
9157 2000-12-22  Gerd Moellmann  <gerd@gnu.org>
9159         * simple.el (delete-key-deletes-forward-mode): Simplify.
9160         Also backspace key combinations, depending on
9161         delete-key-deletes-forward.
9163         * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
9165         * simple.el (delete-key-deletes-forward): Doc fix.
9167 2000-08-22  Emmanuel Briot  <briot@gnat.com>
9169         * xml.el (top level comment): Updated to reflect the fact that
9170         white spaces are relevant in the XML file.
9171         (xml-parse-file): Do not kill an existing Emacs buffer if the file
9172         to parse was already edited. This allows for on-the-fly analysis
9173         of XML files.
9174         (xml-parse-tag): Check that the casing is the same in the start
9175         tag and end tag, since XML is case-sensitive.  Allows for spaces
9176         in the end tag, after the name of the tag.
9177         (xml-parse-attlist): Allow for the character '-' in the name of
9178         attributes, as in the standard http-equiv attribute Do not save
9179         the properties in the XML tree, since they are not relevant.
9181 2000-12-21  Stefan Monnier  <monnier@cs.yale.edu>
9183         * generic.el (generic-read-type): Undo last change, inline into
9184         `generic-mode' and then remove.
9185         (generic-mode): Inline generic-read-type.
9186         (define-generic-mode): Push the symbol name rather than the symbol
9187         onto generic-mode-list.
9189 2000-12-21  Gerd Moellmann  <gerd@gnu.org>
9191         * generic.el (generic-read-type): Build an alist for
9192         completing-read as in 20.7.
9194         * play/landmark.el (lm): Use interactive spec `P'.
9195         (toplevel): Don't set debug-on-error.
9197         * server.el (server-switch-buffer): Choose a window on a visible frame.
9199 2000-12-21  Dave Pearson  <davep@davep.org>
9201         * quickurl.el: Commentry change, I've moved my web site.
9203 2000-12-21  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9205         * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
9206         ranges like \177-\237, but accepts the character sequence from \177 to
9207         \237.  Doc fix.
9208         (ebnf-version): New version (3.4).
9209         (ebnf-setup): Code fix.
9210         (ebnf-range-regexp): New fun.
9211         (ebnf-8-bit-chars): Const fix.
9213         * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
9214         entry.  Doc fix.
9215         (ebnf-bnf-lex): Code fix.
9216         (ebnf-bnf-comment-chars): Const fix.
9218         * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
9219         entry.  Doc fix.
9220         (ebnf-iso-comment-chars): Const fix.
9222         * ebnf-otz.el: Doc fix.
9224         * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
9225         entry.  Doc fix.
9226         (ebnf-yac-skip-code): Code fix.
9227         (ebnf-yac-comment-chars): Const fix.
9229 2000-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
9231         * files.el (insert-directory-safely): New function.
9232         (recover-file): Use it instead of insert-directory.
9233         From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9235 2000-12-21  Kenichi Handa  <handa@etl.go.jp>
9237         * international/mule-cmds.el (select-safe-coding-system):
9238         Check coding-category-list more rigidly.  Improve help message.
9240         * dired.el (dired-move-to-filename-regexp): Fix previous change.
9242 2000-12-21  Miles Bader  <miles@gnu.org>
9244         * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
9246 2000-12-21  Kenichi Handa  <handa@etl.go.jp>
9248         * international/mule-diag.el (describe-char-after): Make *Help*
9249         buffer inherit multibyteness of the current buffer.
9251         * international/mule.el (make-char): Docstring adjusted for the
9252         change of make-char-internal.
9254 2000-12-20  Stefan Monnier  <monnier@cs.yale.edu>
9256         * international/iso-cvt.el: Docstrings fix.
9258 2000-12-20  Dave Love  <fx@gnu.org>
9260         * subr.el (eval-after-load): Doc fix.
9262 2000-12-20  Kenichi Handa  <handa@etl.go.jp>
9264         * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
9265         for numbers.
9267 2000-12-20  Miles Bader  <miles@gnu.org>
9269         * international/quail.el (quail-help): Resize the help window
9270         again after it has all its contents.  Remove unneeded progn.
9272 2000-12-19  Gerd Moellmann  <gerd@gnu.org>
9274         * pcmpl-linux.el: Fix copy/paste error.
9276 2000-12-19  Andrew Innes  <andrewi@gnu.org>
9278         * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
9280 2000-12-19  Carsten Dominik  <dominik@strw.leidenuniv.nl>
9282         * progmodes/idlw-rinfo.el: Fixed copyright notice.
9284         * progmodes/idlw-toolbar.el: Fixed copyright notice.
9286         * progmodes/idlw-shell.el: Fixed copyright notice.
9288         * progmodes/idlwave.el: Fixed copyright notice.
9290         * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
9291         TAB as key separators.
9293 2000-12-19  Alex Schroeder  <alex@gnu.org>
9295         * sql.el (sql-sybase-options): New option.
9296         (sql-sybase): Use it.  Add sql-database to the list of parameters
9297         provided for login.  The options -w 2048 -n are not used any more.
9298         (sql-postgres-options): Changed default from "--pset" to "-P".
9299         (sql-mysql-options): Doc change.
9300         (sql-stop): Doc change.
9302 2000-12-19  Kenichi Handa  <handa@etl.go.jp>
9304         * international/quail.el (quail-input-method): Always hide
9305         the guidance buffer on exiting.
9307 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
9309         * tooltip.el (tooltip-mode): Signal an error if x-show-tip
9310         isn't fboundp.
9312         * server.el (server-buffer-done): Bury the buffer before
9313         killing it.
9315         * faces.el (face-spec-set): Interpret a nil in specs for
9316         foreground and background colors as `unspecified', for
9317         compatibility with 20.x.
9319 2000-12-18  Dave Love  <fx@gnu.org>
9321         * simple.el (mail-user-agent): Doc fix.
9322         (input-mode-8-bit): Removed.
9324         * international/mule.el (set-keyboard-coding-system): Doc fix.
9325         (keyboard-coding-system): New option.
9327         * mail/sendmail.el (send-mail-function): Customize.
9329 2000-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
9331         * international/codepage.el (cp866-decode-table): New table.
9333 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
9335         * version.el (emacs-version): Remove `%a' from the time format
9336         because the weekday doesn't fit well into each locale.
9338 2000-12-18  Miles Bader  <miles@gnu.org>
9340         * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
9342         * textmodes/artist.el (artist-replace-chars, artist-replace-char):
9343         Check that emacs-major-version is `=' to 20, not `>='.
9344         (artist-replace-chars): Use `make-string' instead of a loop.
9346 2000-12-17  Stefan Monnier  <monnier@cs.yale.edu>
9348         * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
9349         (cvs-execute-single-file): Don't change directory.
9350         Patch from Per Cederqvist.
9352 2000-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
9354         * textmodes/ispell.el (check-ispell-version):
9355         If `ispell-program-name' is "aspell", pass it the -v switch instead
9356         of -vv.
9358 2000-12-16  Kenichi Handa  <handa@etl.go.jp>
9360         * international/mule-diag.el (mule-diag): Insert information about
9361         configure options, multibyte awareness, language env.
9363         * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
9364         regexp to search for candidates.
9366 2000-12-15  Eli Zaretskii  <eliz@is.elta.co.il>
9368         * info.el (Info-forward-node): If the node has an
9369         Info-header-line, widen the buffer before searching for "next:"
9370         and "up:" pointers, and set the search limit to stay in the
9371         current node.
9373 2000-12-16  Miles Bader  <miles@gnu.org>
9375         * simple.el (delete-trailing-whitespace): Remove extraneous let.
9377 2000-12-15  Miles Bader  <miles@gnu.org>
9379         * comint.el (comint-send-string, comint-send-region): Also accept
9380         a buffer, buffer-name, or nil for PROCESS, for compatibility with
9381         process-send-string/region.
9383 2000-12-15  Gerd Moellmann  <gerd@gnu.org>
9385         * isearch.el (isearch-lazy-highlight-max): New user-option.
9386         (isearch-lazy-highlight-update): Don't highlight more than
9387         isearch-lazy-highlight-max matches.
9389         * mail/mh-utils.el (mh-find-path): Set read-mail-command.
9391 2000-12-15  Richard M. Stallman  <rms@gnu.org>
9393         * sort.el (sort-columns): Fix error message.
9395         * dabbrev.el (dabbrev--last-case-pattern): Value is now
9396         `upcase' or `downcase' or nil.
9397         (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
9398         Pass new record-case-pattern arg to dabbrev--substitute-expansion.
9399         (dabbrev--substitute-expansion): New arg record-case-pattern.
9400         If it is non-nil, set dabbrev--last-case-pattern.
9401         If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
9403         * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
9405 2000-12-15  Miles Bader  <miles@gnu.org>
9407         * paths.el (Info-default-directory-list): Don't delete
9408         configure-info-directory from the list of standard info
9409         directories when appending it to the end -- their order is important.
9411         * faces.el (read-face-attribute): If there's no entry for the
9412         user's input in VALID, just use it as-is (this will often result
9413         in an error, but it may be OK for e.g. colors using hexadecimal
9414         notation, and at least will yield a better error message).
9416         * window.el (mode-line-window-height-fudge): Function removed.
9417         (height-affecting-face-attributes, mode-line-window-height-fudge):
9418         Variables removed.
9419         * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
9420         window is really the right size.  Use vertical-motion
9421         rather than forward-line.
9422         (ispell-help): Don't use ispell-mode-line-window-height-fudge.
9423         (ispell-command-loop, ispell-show-choices): Use the variable
9424         ispell-choices-win-default-height, rather than the function.
9425         (ispell-choices-win-default-height): Function removed.
9426         (ispell-mode-line-window-height-fudge): Function removed.
9428 2000-12-14  Stefan Monnier  <monnier@cs.yale.edu>
9430         * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
9432 2000-12-14  Eli Zaretskii  <eliz@is.elta.co.il>
9434         * paths.el (Info-default-directory-list):
9435         If configure-info-directory is not one of the standard directories,
9436         put it first in the list; otherwise put it last.  Doc string
9437         changed accordingly.
9439         * info.el (Info-directory-list): Change doc string to reflect the
9440         change in Info-default-directory-list.
9442         * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
9443         windows-nt as windowed environments, even under -nw.
9445         * startup.el (command-line): Don't call x-backspace-delete-keys-p
9446         if not fboundp.  Switch delete-forward mode for the <delete> key
9447         on all PC platforms, even under -nw.
9449         * term/internal.el ([M-delete]): Remap to M-d.
9451 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
9453         * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
9455 2000-12-14  Eli Zaretskii  <eliz@is.elta.co.il>
9457         * frame.el (show-cursor-in-non-selected-windows): Doc fix.
9459 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
9461         * startup.el (command-line): Call delete-key-deletes-forward-mode,
9462         if appropriate.
9464         * simple.el (delete-key-deletes-forward): New user-option.
9465         (delete-key-deletes-forward-mode): New function.
9467         * bindings.el: Bind `delete' to backward-delete-char.
9469         * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
9470         Test if symbol is bound before getting its value.
9472         * tooltip.el (tooltip-show): If an error is signaled in
9473         x-show-tip, display that error, and display the help in the
9474         echo area.
9476 2000-12-14  Kenichi Handa  <handa@etl.go.jp>
9478         * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
9479         Show "... entries" messages for every 10000 entries, not 10.
9481 2000-12-13  Karl Fogel  <kfogel@red-bean.com>
9483         * bookmark.el: Provide a generic exit hook, as suggested by
9484         Ovidiu Predescu <ovidiu@cup.hp.com>:
9485         (bookmark-exit-hook): New var.
9486         (bookmark-exit-hook-internal): New func, replaces
9487         old raw lambda form in `kill-emacs-hook', and runs new
9488         `bookmark-exit-hooks'.  No longer tests for the bookmark feature,
9489         as logically that feature must have been provided if this function
9490         is running.
9491         Removed ;;;###autoload before the `add-hook' call.
9493 2000-12-13  Stefan Monnier  <monnier@cs.yale.edu>
9495         * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
9496         (easy-menu-current-active-maps): New function.
9497         (easy-menu-get-map): Use it.
9498         Make a proper menu entry when creating a new keymap.
9500 2000-12-13  Kenichi Handa  <handa@etl.go.jp>
9502         * international/characters.el: Fix cases and syntaxes for
9503         mule-unicode-0100-24ff.
9505         * dired.el (dired-move-to-filename-regexp): Fixed for the case
9506         that a Japanese character is not appended after day and year.
9508         * info.el (Info-suffix-list): Change format for a command that
9509         requires arguments.
9510         (info-insert-file-contents): Adjusted for the above change.
9512 2000-12-12  Andreas Schwab  <schwab@suse.de>
9514         * tar-mode.el (tar-extract): Base the name of the subfile buffer
9515         on the name of the tar buffer.  Verify that the existing buffer is
9516         visiting the same subfile.
9518 2000-12-12  Dave Love  <fx@gnu.org>
9520         * subdirs.el: Add obsolete.
9522 2000-12-12  Gerd Moellmann  <gerd@gnu.org>
9524         * mail/rmailsum.el (rmail-summary-expunge)
9525         (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
9526         instead of rmail-confirm-expunge.
9528         * replace.el (perform-replace): Don't use an empty match adjacent
9529         to a non-empty match when computing the next match before the
9530         replacement is performed.
9532 2000-12-12  Milan Zamazal  <pdm@freesoft.cz>
9534         * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
9535         definition (patch by Stefan Monnier).
9536         (glasses-mode): Use jit-lock instead of `after-change-functions'
9537         (patch by Stefan Monnier).
9539 2000-12-12  Miles Bader  <miles@gnu.org>
9541         * info.el (Info-last-preorder): Don't barf on nodes without a prev.
9542         (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
9544 2000-12-12  Andrew Choi  <akochoi@i-cable.com>
9546         * term/mac-win.el: Remove load for ls-lisp.
9548         * loadup.el: Load ls-lisp for system-type `macos'.
9550 2000-12-12  Miles Bader  <miles@gnu.org>
9552         * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
9553         Respect field end too.
9554         (just-one-space): Respect fields as `delete-horizontal-space'.
9555         (newline-and-indent, reindent-then-newline-and-indent):
9556         Use `delete-horizontal-space'.
9558 2000-12-11  Stefan Monnier  <monnier@cs.yale.edu>
9560         * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
9561         (so as to obey the field property in the minibuffer).
9563         * obsolete/c-mode.el: Moved from lisp/progmodes.
9564         * obsolete/auto-show.el: Moved from lisp.
9565         * obsolete/ooutline.el: Moved from lisp/textmodes.
9567 2000-12-11  Carsten Dominik  <dominik@strw.leidenuniv.nl>
9569         * progmodes/idlwave.el: Updated to IDLWAVE version 4.7.  Too many
9570         changes to list them here.
9572         * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
9573         Too many changes to list them here.
9575         * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
9576         Too many changes to list them here.
9578         * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
9580 2000-12-11  Gerd Moellmann  <gerd@gnu.org>
9582         * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
9584         * cus-edit.el (custom-save-variables, custom-save-faces):
9585         Comment fix.
9587         * hscroll.el: Moved to `obsolete' subdir.
9589 2000-12-11  Miles Bader  <miles@gnu.org>
9591         * window.el (window-text-height): Function removed (now in C).
9593 2000-12-10  Stefan Monnier  <monnier@cs.yale.edu>
9595         * log-edit.el (log-edit-parent-buffer): New var.
9596         (log-edit): Set it.  Add BUFFER argument.
9597         (log-edit-done): Use char-before.
9598         Don't bother checking validity of vc-comment-ring.
9599         Only bury the buffer if log-edit popped it up.
9601         * pcvs.el: Update references to CVS-Edit (now Log-Edit).
9602         (cvs-mode-diff-help): Remove.
9603         (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
9604         (cvs-mode-marked): Set up the default for CMD manually.
9606         * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
9607         Remove binding for ? now made unnecessary.
9609 2000-12-10  Carsten Dominik  <dominik@strw.leidenuniv.nl>
9611         * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
9612         (reftex-TeX-master-file): Check for `tex-main-file' early enough.
9614         * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
9615         when master file is not open.
9617 2000-12-09  Stefan Monnier  <monnier@cs.yale.edu>
9619         * progmodes/ada-stmt.el: Update `maintainer'.
9621 2000-12-09  Stephen Gildea  <gildea@stop.mail-abuse.org>
9623         * time-stamp.el (time-stamp-old-format-warn): Reorder custom
9624         choices to match documentation string.
9626 2000-12-09  Miles Bader  <miles@gnu.org>
9628         * minibuf-eldef.el: New file.
9630         * window.el (fit-window-to-buffer): Don't pass last argument to
9631         pos-visible-in-window-p, now that its meaning is inverted.
9633 2000-12-08  Eli Zaretskii  <eliz@is.elta.co.il>
9635         * image.el (create-image): Doc fix; spotted by Per Cederqvist
9636         <ceder@lysator.liu.se>.
9638 2000-12-08  Stefan Monnier  <monnier@cs.yale.edu>
9640         * autoinsert.el (auto-insert-alist): Add missing final \n.
9642         * pcvs-defs.el (cvs-menu): Move.  Make submenu for diff commands.
9643         (cvs-menu-map): Remove.
9644         * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
9645         (cvs-mode-quit): Turn it back into a plain function.
9647         * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
9648         (texinfo-filter): Remove (move to texinfo.el).
9650         * textmodes/texinfo.el: Move the (require 'cl) to the front of the
9651         file where it's more visible.
9652         (texinfo-filter, texinfo-chapter-level-regexp): New variables
9653         moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
9654         (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
9655         (texinfo-inside-macro-p): Only catch `scan-error's.
9656         (texinfo-inside-env-p): Make better use of the match info.
9657         (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
9658         (texinfo-insert-@end): Slight re-organization.
9659         Also remove useless `looking-at' call.
9661 2000-12-08  Andrew Innes  <andrewi@gnu.org>
9663         * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
9664         accessible in -nw mode.
9666         * term/w32-win.el: Remove stuff about selection timeout, which is
9667         irrelevant on Windows.  Move clipboard support to w32-fns.el, so
9668         it is accessible in -nw mode.
9670 2000-12-08  Dave Love  <fx@gnu.org>
9672         * emacs-lisp/lisp-mode.el (lisp-mode):
9673         Set font-lock-keywords-case-fold-search.
9675 2000-12-08  Gerd Moellmann  <gerd@gnu.org>
9677         * textmodes/ispell.el (ispell): Doc fix.
9679 2000-12-08  Kenichi Handa  <handa@etl.go.jp>
9681         * international/quail.el (quail-insert-decode-map): Check the
9682         frame width of a window displaying the current buffer, not that of
9683         the selected frame.
9684         (quail-help): Make sure that the help buffer has window before
9685         inserting text in it.
9687 2000-12-07  Sam Steingold  <sds@gnu.org>
9689         * loadup.el: Load emacs-lisp/backquote instead of autoloading.
9690         Backquote is used in isearch.el, so autoloading saves nothing.
9692 2000-12-07  Eli Zaretskii  <eliz@is.elta.co.il>
9694         * startup.el (normal-top-level-add-subdirs-to-load-path):
9695         Ignore the CVS and RCS subdirectories case-insensitively.
9697         * dired.el (dired-insert-directory): If file-system-info is
9698         fboundp, call it instead of invoking dired-free-space-program.
9700 2000-12-07  Gerd Moellmann  <gerd@gnu.org>
9702         * server.el (server-visit-files): Push files on file-name-history.
9704         * progmodes/cc-langs.el: Update copyright.
9706         * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
9708         * bindings.el (mode-line-mode-menu): Add glasses-mode.
9710         * bindings.el (mode-line-mode-menu): Reverse the order
9711         of define-keys so that the menu appears in alphabetical order.
9713 2000-12-07  Milan Zamazal  <pdm@freesoft.cz>
9715         * progmodes/glasses.el (glasses-mode): Update mode line at the end
9716         of the function.
9718 2000-12-07  Dave Love  <fx@gnu.org>
9720         * jka-compr.el (jka-compr-compression-info-list): Fix :type.
9722         * facemenu.el (facemenu-unlisted-faces): Fix value.
9724 2000-12-07  Stefan Monnier  <monnier@cs.yale.edu>
9726         * font-lock.el (font-lock-default-fontify-region):
9727         Include the terminating \n (off-by-one error).
9728         (font-lock-set-defaults): Use dolist.
9730         * derived.el (define-derived-mode): Don't use combine-run-hooks.
9732 2000-12-07  Kenichi Handa  <handa@etl.go.jp>
9734         * international/mule-cmds.el (describe-language-environment):
9735         Fix for the case that an input method title is not string but a list.
9737         * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
9738         of wrong SIZE record.
9740 2000-12-06  Dave Love  <fx@gnu.org>
9742         * newcomment.el (comment-region, comment-dwim): Doc fix.
9744         * textmodes/texinfo.el: Require tex-mode when compiling.
9745         (texinfo-update-node): Doc fix.
9746         (texinfo-imenu-generic-expression): Add @anchor.
9747         (texinfo-font-lock-keywords): Add @uref.
9748         (texinfo-inside-macro-p): Don't use ignore-errors.
9749         (texinfo-insert-quote): Match more contexts.
9751         * international/mule.el (decode-char, encode-char): Doc fix.
9752         (auto-coding-alist): Customize.
9754         * files.el (load-file): Fix change of 2000-03-12.
9756         * wid-edit.el (widget-text-keymap): Doc fix.
9758 2000-12-06  Andrew Innes  <andrewi@gnu.org>
9760         * makefile.w32-in (lisp): Set to an absolute directory, namely
9761         $(CURDIR).
9763 2000-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
9765         * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
9766         read generated-autoload-file, and set buffer-file-coding-system to
9767         raw-text-unix after reading the file.
9769         * international/mule-conf.el (file-coding-system-alist):
9770         Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
9772 2000-12-06  Gerd Moellmann  <gerd@gnu.org>
9774         * replace.el (occur): Make line-number-width 1 smaller for the
9775         colon following the line number.
9777         * startup.el (fancy-splash-text, command-line-1):
9778         Use `File' for the menu name instead of `Files'.
9780         * tmm.el: Update copyright.
9782         * cus-start.el: Add entry for even-window-heights.
9784 2000-12-06  Miles Bader  <miles@gnu.org>
9786         * faces.el (frame-set-background-mode): Avoid stomping on
9787         locally modified faces.
9789 2000-12-06  Kenichi Handa  <handa@etl.go.jp>
9791         * international/fontset.el: Correct the font registries for
9792         japanese-jisx0213-1 and japanese-jisx0213-2.
9794 2000-12-05  Gerd Moellmann  <gerd@gnu.org>
9796         * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
9798         * iswitchb.el: Update customization commentary.
9800 2000-12-05  Rob Riepel  <riepel@Stanford.EDU>
9802         * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
9803         (tpu-search-highlight): Fixed comparison of overlay end positions.
9804         (tpu-trim-line-ends): Implemented trimming logic locally.
9806         * emulation/tpu-extras.el (tpu-write-file-hook)
9807         (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
9809 2000-12-05  Kenichi Handa  <handa@etl.go.jp>
9811         * language/chinese.el (chinese-iso-8bit): Change mime-charset name
9812         to cn-gb.
9813         (cn-gb, gb2312): New aliases for chinese-iso-8bit.
9815 2000-12-04  Dave Love  <fx@gnu.org>
9817         * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
9819 2000-12-04  Gerd Moellmann  <gerd@gnu.org>
9821         * mail/rmailsum.el (rmail-summary-expunge)
9822         (rmail-summary-expunge-and-save): Ask for confirmation with
9823         rmail-expunge-confirmed.
9825         * mail/rmail.el (rmail-expunge-confirmed): New function.
9826         (rmail-expunge): Use it.
9828 2000-12-04  Philippe Waroquiers  <wao@gull.tact.cfmu.eurocontrol.be>
9830         * progmodes/etags.el (tag-partial-file-name-match-p): New function.
9831         (etags-recognize-tags-table, find-tag-in-order):
9832         New functionality: interpret file names as tags.
9834 2000-12-04  Eli Zaretskii  <eliz@is.elta.co.il>
9836         * info.el (Info-scroll-prefer-subnodes): New defcustom.
9837         (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
9838         the first subnode until the bottom of the current node is visible.
9840 2000-12-04  Gerd Moellmann  <gerd@gnu.org>
9842         * format.el (format-decode): Don't change buffer's undo list.
9844 2000-12-04  Kenichi Handa  <handa@etl.go.jp>
9846         * faces.el (face-font-registry-alternatives): Add entries for CJK
9847         fonts.  Doc-string adjusted for the actual usage of this data.
9849         * international/fontset.el: Change the font registries for CJK
9850         fonts in the default fontset.  Don't append '*' to registries.
9852 2000-12-03  Stefan Monnier  <monnier@cs.yale.edu>
9854         * emacs-lisp/easy-mmode.el (define-derived-mode)
9855         (easy-mmode-derived-mode-p): Remove (moved to derived.el).
9857         * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
9858         (derived-mode-p): New function.
9859         (derived-mode-make-docstring): Add `docstring' argument.
9860         Use it if available and complete it if necessary.
9862 2000-12-03  Andreas Schwab  <schwab@suse.de>
9864         * type-break.el (type-break): Don't make parent of itself.
9866 2000-12-03  Miles Bader  <miles@gnu.org>
9868         * simple.el (delete-trailing-whitespace): Don't delete newlines too.
9870 2000-12-02  Stefan Monnier  <monnier@cs.yale.edu>
9872         * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
9873         (tex-main-file, tex-file): Simplify.
9874         (tex-generate-zap-file-name): Use subst-char-in-string.
9875         (tex-strip-dots): Remove.
9877         * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
9879         * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
9880         to check if the match succeeded.
9882 2000-12-02  Gerd Moellmann  <gerd@gnu.org>
9884         * startup.el (use-fancy-splash-screens-p): New function.
9885         (command-line-1): Use it to determine whether or not to use
9886         a fancy splash screen.
9888 2000-12-02  Andreas Schwab  <schwab@suse.de>
9890         * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
9892 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
9894         * international/mule.el (make-char): Fix last change.
9896         * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
9897         New defcustoms.
9898         (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
9899         autoloading tex-mode; instead, do the same manually.
9900         Use texinfo-open-quote and texinfo-close-quote.  Insert literal quote
9901         with numeric argument.  Docstring fix.
9902         (toplevel): Require cl when compiling.
9904         * international/mule.el (make-char): Doc fix.
9906 2000-12-02  Jason Rumney  <jasonr@gnu.org>
9908         * term/w32-win.el (x-select-enable-clipboard): Customize (as per
9909         the Emacs Lisp manual)
9911 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
9913         * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
9915         * term/pc-win.el (x-select-enable-clipboard): Customize (as per
9916         the Emacs Lisp manual).
9918 2000-12-02  Gerd Moellmann  <gerd@gnu.org>
9920         * simple.el (next-line-add-newlines): Change default to nil.
9922 2000-12-01  Eli Zaretskii  <eliz@is.elta.co.il>
9924         * files.el (revert-buffer, recover-file):
9925         Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
9927 2000-12-01  Gerd Moellmann  <gerd@gnu.org>
9929         * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
9931 2000-12-01  Miles Bader  <miles@gnu.org>
9933         * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
9935 2000-12-01  Kenichi Handa  <handa@etl.go.jp>
9937         * international/mule-diag.el (describe-char-after): Fix typo.
9938         (describe-character-set, non-iso-charset-alist): Fix typo.
9940 2000-12-01  Miles Bader  <miles@gnu.org>
9942         * image-file.el (image-file-name-regexp): Automatically add
9943         upper-case variants of each filename extension in
9944         `image-file-name-extensions', since they seem to be common.
9946         * simple.el (minibuffer-contents)
9947         (minibuffer-contents-no-properties, delete-minibuffer-contents):
9948         New functions.
9949         * filecache.el (file-cache-directory-name)
9950         (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
9952 2000-12-01  Milan Zamazal  <Milan.Zamazal@qbizm.com>
9954         * filecache.el (file-cache-minibuffer-complete): Don't try to
9955         delete the minibuffer prompt.
9957 2000-11-30  Dave Love  <fx@gnu.org>
9959         * cus-start.el: Fix read-buffer-function type.
9961 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
9963         * md5.el: Removed.  There's a built-in function, now.
9965 2000-11-30  Markus Rost  <rost@math.ohio-state.edu>
9967         * mail/rmail.el (rmail-set-message-counters): Don't use "D"
9968         as dummy 0-th char of rmail-deleted-vector.
9970 2000-11-30  Eli Zaretskii  <eliz@is.elta.co.il>
9972         * ps-print.el (ps-end-job): Bind case-fold-search only after
9973         switching to ps-spool-buffer.
9975 2000-11-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9977         * ps-print.el: Line number font customization.  PostScript: Lines and
9978         PageCount are initialized on each page.  Doc Fix.
9979         (ps-print-version): New version number (6.3.2).
9980         (ps-lpr-switches, ps-font-info-database, ps-font-size)
9981         (ps-header-font-size, ps-header-title-font-size, ps-left-header)
9982         (ps-right-header): Customization fix.
9983         (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
9984         Fix code.
9985         (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
9986         New vars.
9988 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
9990         * bs.el: Fix typos and spelling errors.
9991         (bs-appearance) <defgroup>: Renamed from bs-appearence.
9992         (bs-configuration): Doc fix.
9994         * bs.el: Undo mistaken change of 2000-11-28.  Update copyright.
9996 2000-11-30  Rob Riepel  <riepel@Stanford.EDU>
9998         * emulation/tpu-edt.el (tpu-version): New version.
9999         (tpu-search-overlay, tpu-replace-overlay): New initial range.
10000         (tpu-original-mode-line): Variable deleted.
10001         (tpu-mark-flag): New initial value.
10002         (tpu-set-mode-line): Don't redefine mode-line-format.
10003         Add tpu-mark-flag to minor-mode-alist.
10004         (tpu-update-mode-line): New mark flag logic.
10005         (tpu-get): Use find-file-wildcards.
10006         (tpu-search-highlight): Move overlay less, reset overlay properly.
10007         (tpu-unselect): Deactivate mark.
10008         (tpu-lm-replace): Reset overlay properly.
10009         (tpu-forward-line): Use forward-visible-line.
10010         (tpu-edt-on): Set transient mark mode.  ispell autoloads deleted.
10012         * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
10014 2000-11-30  Per Abrahamsen  <abraham@dina.kvl.dk>
10016         * cus-edit.el (custom-face-value-create): Always emphasize tag.
10018 2000-11-30  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10020         * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
10021         and skip whitespace and newlines.
10023 2000-11-30  Stefan Monnier  <monnier@cs.yale.edu>
10025         * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
10027 2000-11-29  Gerd Moellmann  <gerd@gnu.org>
10029         * help.el (describe-function-1): Regexp-quote function name
10030         when used as part of a regexp.
10032         * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
10033         Use face-attribute instead of face-foreground and face-background.
10034         (tool-bar-add-item): Likewise, and handle unspecified colors.
10036         * enriched.el (enriched-face-ans): Use face-attribute instead
10037         of face-foreground and face-background.
10039         * faces.el (face-foreground, face-background, face-stipple):
10040         Return nil if attribute is unspecified, for backward compatibility.
10042         * files.el (auto-mode-alist): Add an entry for antlr-mode.
10044         * play/5x5.el: Remove version info.
10046         * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
10048         * frame.el (blink-cursor-mode): Doc fix.
10050 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
10052         * antlr-mode.el: New commands to run ANTLR from within Emacs and
10053         to create Makefile rules.
10054         (antlr-tool-command): New user option.
10055         (antlr-ask-about-save): New user option.
10056         (antlr-makefile-specification): New user option.
10057         (antlr-file-formats-alist): New variable.
10058         (antlr-special-file-formats): New variable.
10059         (antlr-unknown-file-formats): New user option.
10060         (antlr-help-unknown-file-text): New variable.
10061         (antlr-help-rules-intro): New variable.
10062         (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
10063         (antlr-mode-menu): Add entries.
10064         (antlr-file-dependencies): New function.
10065         (antlr-directory-dependencies): New function.
10066         (antlr-superclasses-glibs): New function.
10067         (antlr-run-tool): New command.
10068         (antlr-makefile-insert-variable): New function.
10069         (antlr-insert-makefile-rules): New function.
10070         (antlr-show-makefile-rules): New command.
10072         * antlr-mode.el: More Emacs/XEmacs stuff.
10073         (antlr-no-action-keywords): New constant with value nil.
10074         (antlr-font-lock-keywords-alist): Use it.  Old value would break
10075         syntax highlighting in Emacs-21.0.
10076         (antlr-default-directory): Emacs/XEmacs dependend function.
10077         (antlr-read-shell-command): Ditto.
10078         (antlr-with-displaying-help-buffer): Ditto.
10080 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
10082         * antlr-mode.el: imenu, parsing and highlighting changes.
10083         (antlr-imenu-create-index-function): Don't create extra submenus
10084         for definitions in different grammar classes.  It is not necessary
10085         for the menu and would make command `imenu' awkward to use.
10086         (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
10087         header actions and more than one.
10088         (antlr-font-lock-tokendef-face): Changed color.
10089         (antlr-font-lock-tokenref-face): Changed color.
10090         (antlr-font-lock-additional-keywords): Also highlight lowercase.
10091         (antlr-mode-syntax-table): New variable.
10092         (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
10093         (antlr-with-syntax-table): Don't copy syntax table.
10095 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
10097         * antlr-mode.el: Minor changes: language setting.
10098         (antlr-language-alist): The value for file option "language" can
10099         be both an identifier and a string.
10100         Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
10101         (antlr-language-limit-n-regexp): Change accordingly.
10103 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
10105         * antlr-mode.el: Minor changes: tabs, hiding.
10106         (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
10107         (antlr-action-visibility): Also allow value nil to also hide the
10108         braces.  Renamed from `antlr-tiny-action-length'.
10109         Suggested by Jay@aol.com.
10110         (antlr-hide-actions): Change accordingly.  Hide line if completely
10111         hidden action is on a line of its own.
10113 2000-11-29  Stefan Monnier  <monnier@cs.yale.edu>
10115         * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
10117         * sort.el (sort-columns): Don't concat strings with numbers.
10119 2000-11-29  Dave Love  <fx@gnu.org>
10121         * cus-edit.el (face): Fix :format.
10123         * mail/feedmail.el: Require smtpmail when compiling.
10124         (mail-do-fcc): Autoload.
10125         (feedmail) <defgroup>: Fix :link.
10126         (feedmail-nuke-body-in-fcc): Fix :type.
10127         (feedmail-send-it): Add autoload cookie.
10129 2000-11-29  Stefan Monnier  <monnier@cs.yale.edu>
10131         * newcomment.el (comment-indent): Save excursion around call to
10132         comment-indent-function.
10134 2000-11-29  Miles Bader  <miles@gnu.org>
10136         * subr.el (member-ignore-case): Return the tail of the list who's
10137         car matches, like `member', not the matching element itself.
10139 2000-11-29  Kenichi Handa  <handa@etl.go.jp>
10141         * xml.el (xml-parse-tag): Fix finding opening tag.  A tag name
10142         should not contain `\n'.
10144 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
10146         * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
10148         * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
10150         * dired-aux.el (dired-do-create-files): Construct default file
10151         name for dired-mark-read-file-name so that when the user enters
10152         just RET, the target file will end up in the target directory.
10154         * abbrev.el (prepare-abbrev-list-buffer): Get the value of
10155         local-abbrev-table before changing buffers because it might
10156         have a buffer-local binding.
10158 2000-11-28  Miles Bader  <miles@gnu.org>
10160         * simple.el (delete-horizontal-space): Handle fields more generally.
10162 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
10164         * simple.el (delete-horizontal-space): Handle minibuffer prompt.
10166 2000-11-28  Dave Love  <fx@gnu.org>
10168         * progmodes/ps-mode.el (ps-mode): Set comment-start and
10169         comment-start-skip locally.
10171         * progmodes/fortran.el (fortran-mode): Don't set
10172         fortran-comment-line-start-skip.  Set comment-start to
10173         fortran-comment-line-start.
10174         (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
10175         (fortran-comment-line-start-skip): Simplify slightly.
10177 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
10179         * play/5x5.el: Remove RCS keyword.
10181         * bs.el: Mistaken commit, undone 2000-11-30.
10183 2000-11-28  Milan Zamazal  <pdm@freesoft.cz>
10185         * textmodes/tildify.el (tildify-string-alist):
10186         Add `plain-tex-mode' here.
10188 2000-11-28  Colin Walters  <walters@cis.ohio-state.edu>
10190         * chistory.el (Command-history-setup): Remove extraneous `keymap'
10191         reference.
10193 2000-11-28  Miles Bader  <miles@gnu.org>
10195         * cus-face.el (custom-face-attributes): Add post-filter function
10196         for :box.  Make pre-filter function for :box handle all cases.
10198         * wid-edit.el (widget-choose): Make sure pop-up window is large
10199         enough to display all the choices, as there's no way to scroll it.
10201 2000-11-28  Kenichi Handa  <handa@etl.go.jp>
10203         * international/mule-conf.el: Make the coding system no-conversion
10204         safe for all characters.
10206 2000-11-27  Dave Love  <fx@gnu.org>
10208         * net/ldap.el (ldap) <defgroup>: Add :version.
10210         * tooltip.el (tooltip-use-echo-area): Doc fix.
10212         * cus-start.el <minibuffer-prompt-properties>: Add version.
10213         <read-buffer-function>: Add.
10215         * apropos.el (apropos-print): Add help-echo to active text.
10217         * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
10219 2000-11-27  Gerd Moellmann  <gerd@gnu.org>
10221         * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
10222         type, group and version.
10224 2000-11-27  Eli Zaretskii  <eliz@is.elta.co.il>
10226         * select.el (x-get-selection): Docstring fix.
10228 2000-11-27  Dave Pearson <davep@hagbard.demon.co.uk>
10230         * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
10232 2000-11-27  Andrew Innes  <andrewi@gnu.org>
10234         * makefile.nt (.SUFFIXES): Add .SUFFIXES.
10236         * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
10238 2000-11-27  Miles Bader  <miles@gnu.org>
10240         * dired.el (dired-get-filename): Return filename verbatim if
10241         LOCALP is `verbatim'.
10242         * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
10243         `verbatim' so that we don't inadvertently delete a non-existant
10244         directory name.
10246 2000-11-27  Kenichi Handa  <handa@etl.go.jp>
10248         * international/characters.el: Specify cases and syntaxes for
10249         mule-unicode-0100-24ff.
10251 2000-11-27  Gerd Moellmann  <gerd@gnu.org>
10253         * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
10254         that foreground and/or background colors of the face `tool-bar'
10255         are unspecified.
10257 2000-11-27  Miles Bader  <miles@gnu.org>
10259         * wid-edit.el (widget-field-buffer, widget-field-start)
10260         (widget-field-end): Handle widget field `pseudo-overlays'.
10261         (widget-field-value-delete): Delete WIDGET from `widget-field-new'
10262         if it's there instead of in `widget-field-list'.
10264         * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
10265         (help-make-xrefs): Delete extraneous newlines at the end of the
10266         docstring.
10268 2000-11-25  Jason Rumney  <jasonr@gnu.org>
10270         * startup.el (command-line): Call set-locale-environment after
10271         Window System init file is read, as it can result in a call to
10272         redraw-frame.
10274 2000-11-25  Eli Zaretskii  <eliz@is.elta.co.il>
10276         * simple.el (shell-command): Mention the effect of the prefix
10277         argument in the doc string.
10279 2000-11-25  Miles Bader  <miles@gnu.org>
10281         * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
10283         * wid-edit.el (widget-field-value-delete): Don't try to delete
10284         overlay when it's the `pseudo-overlay' that exists at some points.
10286 2000-11-24  Jason Rumney  <jasonr@gnu.org>
10288         * international/mule-cmds.el (locale-language-names): Add "jp" as
10289         a non-standard alternative for Japanese.
10291 2000-11-24  Andre Spiegel  <spiegel@gnu.org>
10293         * vc-hooks.el: Require 'cl during compilation.
10295 2000-11-24  Gerd Moellmann  <gerd@gnu.org>
10297         * faces.el (face-set-after-frame-default): Let face attributes
10298         specified for new frames override frame parameters.
10300         * startup.el (command-line): Fix computation of the source file
10301         for user-init-file when user-init-file is a compiled file.
10303 2000-11-24  Miles Bader  <miles@gnu.org>
10305         * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
10306         (custom-post-filter-face-spec): New functions.
10307         (custom-face-set, custom-face-value-create): Filter the face spec
10308         before and after customization.
10309         (custom-face-set): If VALUE specifies a null face, pass a
10310         non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
10311         * cus-face.el (custom-face-attributes): Remove SET and GET
10312         functions.  Add some IN-FILTER and OUT-FILTER functions in the few
10313         cases they're needed.
10315         * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
10316         that it's distinguishable from the :off-glyph on dark-background
10317         displays.  Set its background color too.
10319         * cus-start.el (all): Restore entry for `mode-line-inverse-video',
10320         so that people can easily turn it off.
10322 2000-11-24  Michael Kifer  <kifer@cs.sunysb.edu>
10324         * ediff-diff.el: Moved variables around to have it compile under NT.
10326         * ediff-help.el (ediff-use-long-help-message): Made it customizable.
10328         * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
10330         * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
10331         redundant skip-small-frames test.
10333         * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
10334         (viper-downgrade-to-insert): Protect against errors in hooks.
10336         * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
10337         (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
10338         (viper-restore-cursor-type,viper-set-insert-cursor-type):
10339         New functions.
10341         * viper-util.el (viper-memq-char): Bug fixes.
10343         * viper.el (viper-mode): Fix cursor handling.
10345 2000-11-24  Kenichi Handa  <handa@etl.go.jp>
10347         * international/mule-diag.el (list-iso-charset-chars):
10348         For two-byte charset, fix the `while' condition.
10349         (list-non-iso-charset-chars): Fix the `while' condition.
10351 2000-11-23  Stefan Monnier  <monnier@cs.yale.edu>
10353         * subr.el (add-hook, remove-hook): Don't call make-local-hook
10354         if the variable is make-variable-buffer-local.
10356         * progmodes/ada-stmt.el (ada-template-map):
10357         Initialize and bind it to C-c t in ada-mode-map.
10358         (ada-stmt-mode-hook): New function extracted from old code.
10359         Only change the buffer-local side of skeleton-*.
10360         (ada-mode-hook): Use it.
10362 2000-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
10364         * iswitchb.el (iswitchb-minibuf-depth): New variable.
10365         (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
10366         we expect to be returned by minibuffer-depth once we prompt the
10367         user in the minibuffer.
10368         (iswitchb-entryfn-p): If minibuffer-depth returns the same value
10369         as recorded in iswitchb-minibuf-depth, return non-nil.
10371 2000-11-23  Eli Zaretskii <eliz@is.elta.co.il>
10373         * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
10374         (hscroll-window-maybe): Docstring fix.
10376 2000-11-23  Dave Love  <fx@gnu.org>
10378         * rect.el (string-rectangle): Don't test delete-selection-mode.
10380 2000-11-23  Gerd Moellmann  <gerd@gnu.org>
10382         * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
10383         is in the tool bar.
10385         * dired-aux.el (dired-add-entry): Don't call dired-get-filename
10386         with `no-dir'; we want the directory part to be able to remove it.
10388 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
10390         * textmodes/outline.el (outline-flag-region):
10391         Don't bind inhibit-read-only since we don't modify the buffer.
10392         (outline-isearch-open-invisible): Don't jump to overlay-start
10393         since we're trying to unhide text around point.
10394         (outline-discard-overlays): Use dolist.
10396         * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
10398 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
10400         * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
10402 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
10404         * textmodes/tex-mode.el (tex-font-lock-keywords-1):
10405         Fix ARG regexp to skip quoted braces.
10406         (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
10407         Remove `bf' and `it' from `bold' and `italic' (they were wrong and
10408         are (correctly) handled separately).
10409         Remove `caption' and `footnote' from `citations': they contain text.
10410         Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
10411         (latex-skeleton-end-hook): New function.
10412         (latex-mode): Use it.
10413         (tex-start-tex-marker): Remove.
10414         (tex-send-tex-command): Don't set tex-start-tex-marker.
10415         (tex-error-parse-syntax-table): New var.
10416         (tex-compilation-parse-errors): Use it.
10417         Ignore tex-start-tex-marker.  Don't bother with marker-position.
10418         (tex-validate-buffer): Don't bother with marker-position.
10420         * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
10421         (flyspell-generic-progmode-verify): Use it.
10423 2000-11-22  Sam Steingold  <sds@gnu.org>
10425         * simple.el (delete-trailing-whitespace): New interactive function.
10427         * progmodes/ada-mode.el (ada-mode): Use it instead of
10428         `ada-remove-trailing-spaces'.
10429         (ada-remove-trailing-spaces): Removed.
10431         * textmodes/two-column.el (2C-merge): Recommend it in the doc.
10433         * textmodes/picture.el (picture-clean): Removed.
10434         (picture-mode-exit): Call it instead of `picture-clean'.
10436 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
10438         * frame.el (show-cursor-in-non-selected-windows): Doc fix.
10440         * hi-lock.el (hi-lock-refontify): Don't call non-existent
10441         jit-lock-fontify-buffer; it should anyway be unneccessary to
10442         do anything special when jit-lock is active.
10443         (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
10445 2000-11-22  Dave Love  <fx@gnu.org>
10447         * calendar/todo-mode.el (todo-top-priorities): Use
10448         todo-tmp-buffer-name.  From Milan Zamazal <Milan.Zamazal@qbizm.com>.
10450         * language/chinese.el, language/cyrillic.el:
10451         * language/devanagari.el, language/ethiopic.el, language/greek.el:
10452         * language/hebrew.el, language/indian.el, language/japanese.el:
10453         * language/korean.el, language/lao.el, language/misc-lang.el:
10454         * language/thai.el, language/tibetan.el, language/vietnamese.el:
10455         Use provide.
10457         * cus-edit.el (custom-buffer-create-internal): Save some consing.
10458         (custom-variable-set): Improve validation error mesage.
10460         * rect.el (string-rectangle): Revert last change.
10461         (string-rectangle-line): New arg DELETE.
10462         (string-rectangle): Check delete-selection-mode.
10464         * emacs-lisp/edebug.el (edebug-version)
10465         (edebug-maintainer-address): Deleted.
10466         (edebug-submit-bug-report): Just alias to report-emacs-bug.
10467         (edebug-read-function): Account for other `'#' read forms.
10468         (edebug-mode-menus): Make some items toggles.
10469         (edebug-outside-unread-command-event, unread-command-event):
10470         Remove these to avoid warnings.
10472 2000-11-22  David Ponce  <david@dponce.com>
10474         * recentf.el (recentf-menu-items-for-commands)
10475         (recentf-make-menu-items, recentf-make-menu-item)
10476         (recentf-filter-changer): Added :help and :active menu-item properties.
10478         (recentf-build-dir-rules, recentf-dump-variable)
10479         (recentf-edit-list, recentf-open-files-item)
10480         (recentf-open-files): Replaced unnecessary `mapcar' with new
10481         built-in `mapc'.
10483 2000-11-23  Miles Bader  <miles@gnu.org>
10485         * faces.el (menu): Make inverse-video on ttys too.
10487 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
10489         * simple.el (comment-line-break-function): Use the new name
10490         indent-new-comment-line -> comment-indent-new-line.
10491         (clone-indirect-buffer): Don't ignore NORECORD.
10492         (next-completion): Properly handle the case where items are adjacent.
10494         * mouse.el (popup-menu): Stupid typo.
10496 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
10498         * emacs-lisp/authors.el: Remove autoload cookies, add author,
10499         maintainer, keywords tags.
10501         * rect.el (replace-rectangle): Don't call string-rectangle-line
10502         with too many arguments.
10504 2000-11-22  Andre Spiegel  <spiegel@gnu.org>
10506         * ediff-util.el (ediff-file-checked-out-p)
10507         (ediff-file-checked-in-p): Call vc-state instead of
10508         vc-locking-user, which no longer exists.
10510         * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
10512 2000-11-22  Dave Love  <fx@gnu.org>
10514         * md5.el (md5): Provide.
10515         (md5): Fix error call.
10517 2000-11-22  Miles Bader  <miles@gnu.org>
10519         * textmodes/refill.el (refill-adjust-ignorable-overlay)
10520         (refill-fill-paragraph-at): Remove debugging code.
10522         * calendar/calendar.el (generate-calendar-window): When we don't
10523         call `fit-window-to-buffer', make sure the top line is fully visible.
10525         * image-file.el (insert-image-file): Don't make `read-only'
10526         property rear-nonsticky.
10528         * isearch.el (isearch-original-minibuffer-message-timeout): New var.
10529         (isearch-mode): Set `minibuffer-message-timeout' to nil, after
10530         stashing away its original value.
10531         (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
10532         in the recursive edit.
10533         Bind `isearch-original-minibuffer-message-timeout' to protect it.
10534         (isearch-done): Restore `minibuffer-message-timeout'.
10536         * cus-start.el: Remove entry for `mode-line-inverse-video'.
10538 2000-11-21  Stefan Monnier  <monnier@cs.yale.edu>
10540         * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
10542         * find-lisp.el (find-lisp-find-files-internal):
10543         Use dolist, when and file-name-as-directory.
10545         * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
10546         (define-derived-mode, define-minor-mode): Add specs.
10548         * window.el: General comment and spacing fixes.
10549         (save-selected-window): Use backquotes.
10550         (window-safely-shrinkable-p): New function.
10551         (shrink-window-if-larger-than-buffer): Use it.
10553         * subr.el (make-local-hook): Docstring fix.
10555         * shell.el (shell-mode): Use define-derived-mode.
10557         * newcomment.el (comment-indent): Insert comment before calling
10558         comment-indent-function.  Don't insert in column 0.
10559         (comment-dwim): Indent before inserting comment.
10561         * isearch.el (isearch-mode-map): Fix docstring.  Init in defvar.
10562         (minibuffer-local-isearch-map): Init in defvar.  Use inheritance.
10563         (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
10564         Use mapc rather than map.
10566         * files.el (find-buffer-visiting): Compare all attributes before
10567         declaring two files identical (rather than just their inode-no).
10568         (auto-mode-alist): Use \' rather than $.
10570         * which-func.el: Update maintainer line.
10572         * pcvs.el (uniquify-buffer-file-name): Remove advice.
10573         * uniquify.el (uniquify-list-buffers-directory-modes): New var.
10574         (uniquify-buffer-file-name): Use it.
10576 2000-11-22  Miles Bader  <miles@gnu.org>
10578         * cus-start.el: Add entry for `minibuffer-prompt-properties'.
10579         * simple.el (minibuffer-avoid-prompt): New function.
10581 2000-11-21  Gerd Moellmann  <gerd@gnu.org>
10583         * Makefile.in (.SUFFIXES): Add .SUFFIXES.
10585 2000-11-21  Miles Bader  <miles@gnu.org>
10587         * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
10588         inclusion of `track-mouse'.
10590         * textmodes/refill.el (refill-ignorable-overlay): New variable.
10591         (refill-adjust-ignorable-overlay): New function.
10592         (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
10593         only the paragraph's tail if possible.
10594         Update `refill-ignorable-overlay'.
10595         (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
10597         * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
10598         point inside the fill-prefix.
10600         * textmodes/refill.el (refill-post-command-function): Don't reset
10601         refill-doit in the case where a self-insertion command doesn't
10602         case a refill.  Use `refill-fill-paragraph-at', getting position
10603         from `refill-doit'.
10604         (refill-after-change-function): Set `refill-doit' to END.
10605         (refill-fill-paragraph-at): New function, mostly from old
10606         refill-fill-paragraph.
10607         (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
10608         (refill-pre-command-function): New function.
10609         (refill-mode): Add it to `pre-command-hook'.
10611 2000-11-20  Gerd Moellmann  <gerd@gnu.org>
10613         * textmodes/artist.el (artist-mode): Fix autoload cookie.
10615         * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
10616         javadoc tags.
10618 2000-11-20  Andre Spiegel  <spiegel@gnu.org>
10620         * vc.el, vc-hooks.el: Undo prev change (moved functions back to
10621         vc.el).
10623         * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
10624         require vc.
10626         * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
10627         checkouts.
10629 2000-11-20  Dave Love  <fx@gnu.org>
10631         * Makefile.in (DONTCOMPILE): Omit bindings.el.
10633 2000-11-20  Eli Barzilay <eli@www.barzilay.org>
10635         * calculator.el (calculator-paste): Use `if' instead of `and'
10636         and `or'.
10637         (calculator-help): Don't use electric-describe-mode for XEmacs.
10639 2000-11-19  Gerd Moellmann  <gerd@gnu.org>
10641         * info.el (info-menu-5): Doc fix.
10643         * textmodes/artist.el: New file.
10645 2000-11-19  Andre Spiegel  <spiegel@gnu.org>
10647         * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
10648         and differentiate according to checkout model.
10649         (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
10650         since this function is only concerned with master state.
10652         * vc-hooks.el (vc-workfile-unchanged-p)
10653         (vc-default-workfile-unchanged-p): Moved here from vc.el.
10655         * vc.el (vc-workfile-unchanged-p)
10656         (vc-default-workfile-unchanged-p): See above.
10658 2000-11-19  Miles Bader  <miles@gnu.org>
10660         * image-file.el (insert-image-file): Make `intangible' and
10661         `read-only' properties rear-nonsticky too.
10663 2000-11-18  Gerd Moellmann  <gerd@gnu.org>
10665         * ps-print.el: Update copyright notice.
10667         * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
10668         (tooltip-show): Use the offsets.
10670         * bindings.el (mode-line-modified): Fix a typo.
10671         (mode-line-toggle-modified, mode-line-widen)
10672         (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
10674 2000-11-17  Vinicius Jose Latorre <vinicius@cpqd.com.br>
10676         * ps-print.el (toplevel): Test for find-coding-system being
10677         fboundp before calling ps-x-find-coding-system.
10679 2000-11-16  Stefan Monnier  <monnier@cs.yale.edu>
10681         * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
10682         (vc-version-backup-file): Docstring fix.
10684 2000-11-16  Gerd Moellmann  <gerd@gnu.org>
10686         * files.el (basic-save-buffer): Don't add a newline if
10687         find-file-literally is non-nil.
10688         (find-file-literally): Extend doc string.
10690         * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
10691         sort(1) with the `-f' argument.
10693 2000-11-16  Andre Spiegel  <spiegel@gnu.org>
10695         * vc.el: Updated backend documentation.
10696         (vc-default-check-headers): New function.
10698         * vc-{cvs,rcs,sccs}.el: Functions reordered.
10700         * vc.el (vc-revert-buffer): Ask for confirmation if file seems
10701         up-to-date.
10702         (vc-do-command): In the asynchronous case, output messages only if
10703         the minibuffer is not active.
10705         * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
10706         `vc-cvs-use-edit' is on.
10707         (vc-cvs-checkout): When this is used for reverting the workfile,
10708         make a backup of the original contents and revert to that in case
10709         of error.
10710         (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
10711         remote repositories.
10713         * vc.el (vc-annotate): Changed handling of prefix arg; now asks
10714         for both version and ratio in the minibuffer.
10716         * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
10717         Use vc-do-command to perform the annotation, not call-process.
10719 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
10721         * international/quail.el (quail-start-translation): Don't call
10722         `message' before reading key sequence.
10724 2000-11-16  Miles Bader  <miles@lsi.nec.co.jp>
10726         * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
10728 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
10730         * window.el (fit-window-to-buffer): Be sure to acquire at least
10731         one text line even if the buffer is empty.
10733 2000-11-16  Gerd Moellmann  <gerd@gnu.org>
10735         * net/ange-ftp.el (ange-ftp-file-writable-p)
10736         (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
10737         Bind ange-ftp-process-verbose to nil.
10739 2000-11-15  Dave Love  <fx@gnu.org>
10741         * wid-edit.el (widget-specify-field, widget-specify-button):
10742         If :help-echo is a function, set help-echo of overlay to
10743         widget-mouse-help.
10744         (widget-mouse-help): New function.
10745         (widget-echo-help): Rewritten for :help-echo functions only taking
10746         a widget arg.
10748         * net/eudc-bob.el (eudc-bob-can-display-inline-images):
10749         Use display-graphic-p.
10750         (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
10751         and that JPEG is available.
10752         (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
10754         * international/mule-cmds.el (locale-charset-language-names):
10755         Match @euro.
10757 2000-11-15  Gerd Moellmann  <gerd@gnu.org>
10759         * faces.el (face-set-after-frame-default):
10760         If `inhibit-default-face-x-resources' is bound, don't intialize the
10761         default face from X resources.
10763 2000-11-15  Eli Zaretskii  <eliz@is.elta.co.il>
10765         * Makefile.in (custom-deps, finder-data, autoloads, recompile):
10766         Don't set EMACSLOADPATH.
10768 2000-11-15  Eli Zaretskii  <eliz@is.elta.co.il>
10770         * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
10771         texinfo-insert-@url.
10772         (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
10773         (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
10775 2000-11-14  Stefan Monnier  <monnier@cs.yale.edu>
10777         * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
10778         (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
10779         (checkdoc-minor-keymap): Backward compatibility.
10780         (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
10781         (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
10782         (checkdoc-this-string-valid-engine): Be a bit more strict
10783         to avoid matching substrings of `...' quoted vars/funs.
10784         (checkdoc-defun-info): Only look for `interactive' if alone.
10785         (debug-ignored-errors): Add "arg doesn't appear in docstring".
10787         * progmodes/compile.el (grep): `tag-default' can be nil.
10789         * newcomment.el (comment-indent): Paren typo.
10791 2000-11-14  Dave Love  <fx@gnu.org>
10793         * calculator.el: New maintainer version.
10795         * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
10797         * cmuscheme.el: Doc fixes.
10798         (cmuscheme) <defgroup>: Use `scheme' as parent.
10799         (cmuscheme-program-name): Remove.  Change uses to scheme-program-name.
10801         * xscheme.el (scheme-program-name): Don't define here.
10803         * progmodes/scheme.el (scheme-program-name): New variable
10804         (originally in cmuscheme).
10806 2000-11-14  Miles Bader  <miles@gnu.org>
10808         * window.el (fit-window-to-buffer): Handle windows without mode-lines.
10809         Handle header-lines.  Don't loop forever if we can't enlarge the
10810         window anymore.  Simplify a bit.
10812 2000-11-14  Kenichi Handa  <handa@etl.go.jp>
10814         * window.el (fit-window-to-buffer): Don't check
10815         window-text-height.  Assure that the last line is fully visible.
10817         * international/quail.el (quail-show-guidance-buf):
10818         Call fit-window-to-buffer to assure the enough height of the guidance
10819         buffer.
10820         (quail-update-guidance): Avoid making the guidance buffer shorter.
10822 2000-11-14  Stefan Monnier  <monnier@cs.yale.edu>
10824         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
10825         rather than `prepend' and add an interesting comment.
10826         (tex-math-face, tex-font-lock-syntactic-face-function):
10827         New face and function to use it.
10828         (tex-define-common-keys, tex-mode-map): Use menu-item rather
10829         than `menu-enable' symbol property.
10830         (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
10831         (tex-mode): Add some latex-mode commands for auto-selection.
10832         Use tex-font-lock-syntactic-face-function.
10833         (tex-insert-quote): Simplify.
10834         (tex-shell): New mode.
10835         (tex-start-shell): Use it.
10836         (tex-shell-proc, tex-shell-buf): New functions.
10837         (tex-send-command): Use it.
10838         (tex-main-file): Fix the meaning of the new arg REALFILE.
10839         (tex-send-tex-command): New function split from `tex-start-tex'.
10840         Set compilation-last-buffer and compilation-parsing-end.
10842         * newcomment.el (comment-indent-default): Stick \s<\s< to the left
10843         when it follows non-comment text on the line.
10845         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10846         Set font-lock-defaults.
10847         (lisp-mode-shared-map): Init inside the defvar.
10848         (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
10849         Use define-derived-mode.
10851 2000-11-14  Miles Bader  <miles@lsi.nec.co.jp>
10853         * faces.el (header-line): Use `:box nil' for color/gs displays too.
10855 2000-11-14  Gerd Moellmann  <gerd@gnu.org>
10857         * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
10858         Don't recursively optimize body because that can lead to infinite
10859         recursion; see comment there.
10861 2000-11-13  Eli Zaretskii  <eliz@is.elta.co.il>
10863         * faces.el (face-spec-set-match-display): Revert the change from
10864         2000-10-24.  Add a FIXME for after v21.1.
10866 2000-11-13  Miles Bader  <miles@gnu.org>
10868         * textmodes/fill.el (skip-line-prefix): New function.
10869         (fill-region-as-paragraph, fill-region):  Return the fill-prefix.
10870         (fill-paragraph): Don't leave point inside the fill-prefix.
10871         * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
10872         point inside the fill-prefix.
10874 2000-11-13  Miles Bader  <miles@lsi.nec.co.jp>
10876         * calendar/calendar.el (generate-calendar-window):
10877         Use `fit-window-to-buffer'.
10879 2000-11-12  Stefan Monnier  <monnier@cs.yale.edu>
10881         * gud.el (gud-minor-mode): New var.
10882         (gud-symbol, gud-val): New functions.
10883         (gud-find-file): Copy gud-minor-mode to the new buffer.
10884         (gud-menu-map): Include entries for commands that are not always
10885         available, using :enable to (de)activate them.
10886         (gud-minor-mode-map): New map.  Add it to minor-mode-map-alist.
10887         (gud-mode-map): New map.
10888         (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
10889         (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
10890         Don't set up gud's menu (it's done by the minor-mode).
10891         (gud-minibuffer-local-map): New.
10892         Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
10893         (gud-query-cmdline): New function.
10894         (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it.  Set gud-minor-mode.
10895         (gud-mode): Use define-derived-mode.
10896         Don't set up gud's menu (it's done by the minor-mode).
10897         (gud-chop-words): Remove.
10898         (gud-common-init): Use split-string instead.
10899         (gud-new-keymap, gud-make-debug-menu): Eradicate.
10901         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
10902         Add keyword arg :name.
10904         * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
10905         (diff-count-matches, diff-split-hunk): New functions.
10906         (diff-mode-map): Bind C-c C-s to diff-split-hunk.
10908         * pcvs-info.el (cvs-fi-conflict-face): New var.
10910         * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
10911         Make it into a simple syntax-table, shared among all submodes.
10912         (sh-heredoc-face): Re-introduce.
10913         (sh-font-lock-syntactic-face-function): New function.
10914         (sh-mode): Use it.  Also use define-derived-mode.
10915         Remove old bogus setting of indent-region-function.
10916         (sh-set-shell): Don't set the syntax-table any more.
10917         (sh-mode-syntax-table) <defun>: Remove.
10919 2000-11-12  Miles Bader  <miles@gnu.org>
10921         * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
10922         message if interactive.
10924 2000-11-12  Dave Love  <fx@gnu.org>
10926         * mail/feedmail.el: Fix header,
10927         (feedmail) <defgroup>: Add :link.
10929         * view.el: Use local-map property, not keymap on mode-line string.
10931         * scroll-all.el (scroll-all-mode): Customize variable.
10932         Add autoload cookie to function.
10934         * lazy-lock.el: Remove compatibility code.
10936         * finder.el (finder-known-keywords): Add `files', remove `vms'.
10937         (finder-help-echo): New variable.
10938         (finder-mouse-face-on-line): Add help-echo stuff.
10939         (finder-list-keywords, finder-list-matches): Use mapc.
10941         * faces.el (face-font-registry-alternatives): Add :version.
10943         * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
10944         tags-table-list.
10946         * net/browse-url.el (browse-url-browser-function): Update :version.
10948         * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
10949         (mail-mode): Use [:alnum:] in some regexps.
10951 2000-11-10  Dave Love  <fx@gnu.org>
10953         * ediff.el (ediff-regions-internal, ediff-documentation):
10954         * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
10955         fundamental mode.
10957         * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
10958         buffer into fundamental mode.
10959         (ediff-set-difference): Use copy-sequence if available.
10961         * ediff-ptch.el (ediff-dispatch-file-patching-job):
10962         Check ediff-patch-map non-nil.
10963         (ediff-fixup-patch-map, ediff-fixup-patch-map)
10964         (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
10965         buffer into fundamental mode.
10967         * ediff-merg.el (state-or-merge): Defvar when compiling.
10969 2000-11-10  Jason Rumney  <jasonr@gnu.org>
10971         * w32-fns.el (w32-add-charset-info): New function.
10972         (w32-charset-info-alist): Use it.
10974 2000-11-10  Gerd Moellmann  <gerd@gnu.org>
10976         * faces.el (face-font-registry-alternatives): New user-option.
10978 2000-11-10  Stefan Monnier  <monnier@cs.yale.edu>
10980         * textmodes/texinfo.el (texinfo-block-default): New var.
10981         (texinfo-insert-block): Use it.  Insert a newline if needed.
10983         * textmodes/fill.el (fill-indent-according-to-mode): New var.
10984         (fill-region-as-paragraph): Use it.
10986         * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
10987         (latex-mode): Tweak tex-*-(head|trail)er regexps.
10988         Tweak paragraph regexps to allow a leading [ \t]*.
10989         (tex-latex-block): Insert a newline if necessary.
10990         (latex-insert-item): Only insert a newline if necessary.
10991         (tex-guess-main-file): New function.
10992         (tex-main-file): Use it.  Add arg `realfile'.  Trim `.tex'.
10993         Set tex-main-file if TeX-master is provided.
10994         (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
10996 2000-11-10  Gerd Moellmann  <gerd@gnu.org>
10998         * startup.el (command-line): Set the default tooltip-mode
10999         to t for graphical displays which implement x-show-tip.
11001         * tooltip.el (tooltip-mode): Add a comment about startup.el
11002         setting the default value of this user-option.
11004 2000-11-09  Stefan Monnier  <monnier@cs.yale.edu>
11006         * font-lock.el (font-lock-*-face) <defvar>: Move.
11007         (font-lock-defaults-alist): Mark obsolete.
11008         (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
11009         (font-lock-mode): Use define-minor-mode.
11010         (font-lock-support-mode): Tweak type to default to jit-lock-mode.
11011         (font-lock-turn-off-thing-lock): Be more explicit.
11012         (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
11013         (font-lock-syntactic-face-function): New var.
11014         (font-lock-fontify-syntactically-region): Use it.
11015         (font-lock-doc-face): New.
11017         * pcvs.el (cvs-enabledp): Ignore errors.
11018         (cvs-commit-filelist): Never query.
11019         (cvs-mode-insert): Always add a terminating / in the initial prompt.
11020         (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
11021         (cvs-do-removal): Use cvs-partition rather than delete-if.
11022         Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
11023         cvs-bury-buffer.
11025         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11026         Allow `next' to jump to after the end of the last match.
11028 2000-11-09  Gerd Moellmann  <gerd@gnu.org>
11030         * simple.el (byte-compiling-files-p): New function.
11032         * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
11033         if it is there.
11035         * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
11036         nil again.
11038         * textmodes/ispell.el (ispell-library-path): Don't call
11039         check-ispell-version when byte-compiling because that starts
11040         an ispell process, and ispell might not be installed.
11041         (toplevel): Don't set up a menu when byte-compiling.
11043         * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
11044         it, so that a boundp test can be used to determine if we're
11045         currently byte-compiling.
11047 2000-11-09  Dave Love  <fx@gnu.org>
11049         * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
11051 2000-11-09  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11053         * ps-print.el: Patch for variable initialization when spooling.
11054         Doc fix.
11055         (ps-output-list): Fun eliminated.
11056         (ps-begin-file, ps-begin-job): Code fix.
11058 2000-11-08  Dave Love  <fx@gnu.org>
11060         * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
11062 2000-11-08  Gerd Moellmann  <gerd@gnu.org>
11064         * simple.el (shell-command, display-message-or-buffer)
11065         (shell-command-on-region): Mention resize-mini-windows in the doc
11066         string.
11067         (display-message-or-buffer): Take the value of resize-mini-windows
11068         into account.
11070 2000-11-07  Gerd Moellmann  <gerd@gnu.org>
11072         * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
11074         * dired.el (dired-between-files): Add `^. find' as an alternative
11075         to the regular expression, for find-dired.
11077 2000-11-06  Stefan Monnier  <monnier@cs.yale.edu>
11079         * textmodes/texnfo-upd.el: Require texinfo.
11080         (defmacro, defgroup): Remove.
11081         (texinfo-section-to-generic-alist): Remove.
11082         Use texinfo-section-list instead (i.e. level is changed string->int).
11083         (texinfo-filter): New function.
11084         (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
11085         (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
11086         Use it.  And use regexp-opt.
11087         (texinfo-find-higher-level-node, texinfo-hierarchic-level)
11088         (texinfo-update-menu-region-beginning)
11089         (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
11090         (texinfo-update-the-node, texinfo-sequentially-update-the-node)
11091         (texinfo-update-menu-same-level-regexps): Update.
11092         (texinfo-update-node, texinfo-every-node-update)
11093         (texinfo-sequential-node-update): Remove autoload cookie.
11095         * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
11096         (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
11097         (texinfo-chapter-level-regexp): Remove.
11098         (texinfo-mode): Hard code texinfo-chapter-level-regexp.
11100 2000-11-06  Dave Love  <fx@gnu.org>
11102         * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
11104         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11105         Match defun*.
11107 2000-11-06  Kenichi Handa  <handa@etl.go.jp>
11109         * composite.el (composition-function-table): Variable declaration
11110         moved to src/composite.c.
11111         (compose-chars-after): New optional arg object.
11113 2000-11-06  Gerd Moellmann  <gerd@gnu.org>
11115         * bindings.el (mode-line-toggle-read-only)
11116         (mode-line-toggle-modified, mode-line-widen)
11117         (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
11118         (make-mode-line-mouse2-map): Rewritten.
11119         (mode-line-modified, mode-line-format, minor-mode-alist): Use new
11120         functions so that C-h k can show something with a doc string.
11122         * startup.el (fancy-splash-delay): Set to 10 seconds.
11123         (fancy-splash-max-time): New user-option.
11124         (fancy-splash-stop-time): New variable.
11125         (fancy-splash-screens): Set it.  Catch `stop-splashing'.
11126         (fancy-splash-screens-1): Throw `stop-splashing' when current
11127         time is greater than fancy-splash-stop-time.
11129 2000-11-06  Stefan Monnier  <monnier@cs.yale.edu>
11131         * vc-hooks.el (vc-insert-file): Don't assume byte==char.
11133         * pcvs.el (cvs-mode-marked): New arg `noquery'.
11134         Prompt user for a file rather than raising an error.
11135         (cvs-enabledp): Fix call to cvs-mode-marked.
11136         (cvs-insert-file): New function (extracted from cvs-mode-insert).
11137         (cvs-mode-insert): Use it.  Change the init prompt' value.
11138         (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
11140         * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
11141         Don't pass default arg to ewoc-locate.
11142         (ewoc-collect): Return result in the right order.
11144         * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
11146         * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
11147         (cvs-status-get-tags): Fix regexp.
11148         (cvs-status-trees, cvs-status-cvstrees):
11149         Combine after change hooks and don't sit-for.
11150         (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
11151         (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
11152         Use make-char rather than hard-coded cryptic data.
11153         (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
11155         * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
11157         * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
11158         (cvs-insert-strings): New function.
11160 2000-11-06  Miles Bader  <miles@lsi.nec.co.jp>
11162         * mwheel.el (mouse-wheel-scroll-amount): Renamed from
11163         `mwheel-scroll-amount'.
11164         (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
11165         (mouse-wheel-mode): Use (featurep 'xemacs) instead of
11166         string-matching against the version string.
11168 2000-11-06  Kenichi Handa  <handa@etl.go.jp>
11170         * language/thai.el ("Thai"): Set a lisp form that produces
11171         composed string in `sample-text' language info.
11173         * language/tibetan.el ("Tibetan"): Set a lisp form that produces
11174         composed string in `sample-text' language info.
11176         * international/mule-cmds.el (describe-language-environment):
11177         Eval `sample-text' data and insert the result.
11179         * international/mule-conf.el (compound-text): Define this coding
11180         system here.  Make x-ctext and ctext aliases of it.
11182         * language/european.el (compound-text, ctext): Moved to
11183         international/mule-conf.el.
11185 2000-11-05  Andrew Innes  <andrewi@gnu.org>
11187         * w32-fns.el (w32-version): New function.
11189 2000-11-05  Stefan Monnier  <monnier@cs.yale.edu>
11191         * progmodes/awk-mode.el: Update copyright.
11192         (awk-mode-abbrev-table): Remove.
11193         (awk-font-lock-keywords): Use regexp-opt.
11194         (awk-mode): Use define-derived-mode.
11196         * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
11197         when extracting a suffix.
11199 2000-11-04  Andre Spiegel  <spiegel@gnu.org>
11201         * vc-hooks.el (vc-insert-file): Rewritten.  Don't bother about
11202         auto-save-mode.
11204 2000-11-04  Jason Rumney  <jasonr@gnu.org>
11206         * language/european.el (decode-mac-roman): Test against r1 not r0.
11208 2000-11-03  Stefan Monnier  <monnier@cs.yale.edu>
11210         * progmodes/icon.el (icon-mode-map): Don't rebind \t.
11211         (icon-mode): Define indent-line-function.
11212         (icon-comment-indent): Simplify.
11213         (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
11215         * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
11217         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
11218         Bind change-log-default-mode to defeat the caching done on it.
11219         Don't bother saving excursion any more.
11221         * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
11223         * frame.el (after-setting-font-hook): Rename hooks -> hook.
11224         (set-frame-font): Use the new name (and the old for compatibility).
11226         * toolbar/tool-bar.el (tool-bar-mode):
11227         * time.el (display-time-mode):
11228         * recentf.el (recentf-mode):
11229         * paren.el (show-paren-mode):
11230         * mwheel.el (mouse-wheel-mode):
11231         * msb.el (msb-mode):
11232         * jka-compr.el (auto-compression-mode):
11233         * image-file.el (auto-image-file-mode):
11234         * hl-line.el (hl-line-mode):
11235         * delsel.el (delete-selection-mode):
11236         * autoinsert.el (auto-insert-mode):
11237         * complete.el (partial-completion-mode): Drop unneeded positional args.
11239         * info.el (Info-mode):
11240         * comint.el (comint-mode): Don't bother with make-local-hook.
11242         * log-edit.el (log-edit-menu): New menu.
11244 2000-11-03  Miles Bader  <miles@gnu.org>
11246         * wid-edit.el (widget-end-of-line): Reinstate, with a new
11247         definition, so that trailing spaces are handled properly.
11248         (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
11250 2000-11-03  Gerd Moellmann  <gerd@gnu.org>
11252         * startup.el (fancy-splash-text, fancy-splash-text): Use a single
11253         tab character.
11254         (fancy-splash-screens): Set tab-width to 20.
11256 2000-11-03  Dave Love  <fx@gnu.org>
11258         * comint.el (comint-completion-addsuffix): Fix custom type.
11260 2000-11-02  Stefan Monnier  <monnier@cs.yale.edu>
11262         * font-lock.el (font-lock-buffers): Remove.
11263         (font-lock-global-modes): Define with easy-mmode-define-global-mode.
11264         (font-lock-change-major-mode): Remove.
11265         (turn-on-font-lock-if-enabled): Only apply to the current buffer.
11266         (font-lock-default-fontify-region): Extend the multiline
11267         fontification to whole lines.
11268         (font-lock-fontify-anchored-keywords)
11269         (font-lock-fontify-keywords-region): If matching just one
11270         line (with \n) only mark the \n as multiline.
11272         * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
11273         Correctly handle the case where several :group args are supplied.
11274         Allow :extra-args.
11275         (easy-mmode-define-global-mode): Allow :extra-args.
11276         Correctly handle the case where several :group args are supplied.
11278 2000-11-02  Miles Bader  <miles@gnu.org>
11280         * calendar/calendar.el (diary-face, calendar-today-face)
11281         (holiday-face): Remove dependency on `window-system'.
11283 2000-11-02  Ken Raeburn  <raeburn@gnu.org>
11285         * Makefile.in (emacs): Set EMACSLOADPATH always.
11286         (update-authors, .el.elc, compile-files): Don't do it explicitly here.
11287         (compile-files): Bomb out if compilation of a file fails.
11289 2000-11-02  Dave Love  <fx@gnu.org>
11291         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
11293 2000-11-02  Eli Zaretskii  <eliz@is.elta.co.il>
11295         * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
11296         punctuation in the warning inserted into the *mail* buffer.
11298 2000-11-02  Gerd Moellmann  <gerd@gnu.org>
11300         * emacs-lisp/authors.el (authors-public-domain-files): New variable.
11301         (authors-public-domain-p): New function.
11302         (authors-print): Use it.
11304         * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
11306         * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
11308 2000-11-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11310         * ps-print.el: Extension for even/odd printing.  Doc fix.
11311         (ps-print-version): New version number (6.3.1).
11312         (ps-even-or-odd-pages): Customization fix.
11313         (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
11314         (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
11315         (ps-page-count): Var replaced by `ps-page-column'.
11316         (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
11317         (ps-print-sheet-p): New fun.
11319 2000-11-02  Miles Bader  <miles@lsi.nec.co.jp>
11321         * tooltip.el (tooltip-gud-tips-setup): New function.
11322         (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
11323         (tooltip-mode): Call tooltip-gud-tips-setup.
11324         (tooltip-gud-tips): Use `gud-basic-call' instead of
11325         process-send-string, so the prompt gets frobbed appropriately.
11326         Handle nil return value from `tooltip-gud-print-command'.
11328 2000-11-01  Eric M. Ludlam  <zappo@ultranet.com>
11330         * comint.el (comint-add-to-input-history): New function.
11331         (comint-send-input): Use `comint-add-to-input-history'.
11333 2000-11-02  Miles Bader  <miles@lsi.nec.co.jp>
11335         * info.el (info-menu-header): New face.
11336         (Info-fontify-menu-headers): New function.
11337         (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
11339         * info.el (Info-insert-dir): Don't include blank lines at
11340         beginning of additional dir files (one is added automatically).
11342 2000-11-01  Stefan Monnier  <monnier@cs.yale.edu>
11344         * emacs-lisp/easy-mmode.el (define-minor-mode):
11345         Revert the latest changes.
11346         Allow the three positional arguments to be skipped and replaced
11347         by keyword arguments.
11348         Add a :toggle argument to determine whether a nil arg means toggle
11349         or means turn-on.  The default is unchanged.
11350         Add a call to force-mode-line-update.
11352 2000-11-01  Dave Love  <fx@gnu.org>
11354         * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
11356 2000-11-01  Miles Bader  <miles@lsi.nec.co.jp>
11358         * calendar/calendar.el (diary-face, holiday-face):
11359         Add dark-background variants.
11361 2000-10-31  Sam Steingold  <sds@gnu.org>
11363         * textmodes/tex-mode.el (tex-file): Use `default-directory' when
11364         `tex-main-file' does not have directory in it.
11366 2000-10-31  Stefan Monnier  <monnier@cs.yale.edu>
11368         * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
11370 2000-10-31  Thien-Thi Nguyen  <ttn@gnu.org>
11372         * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
11373         functional change.
11375 2000-10-31  Gerd Moellmann  <gerd@gnu.org>
11377         * files.el (find-file-noselect): When we expand a wildcard, return
11378         a list of buffers, as we should do according to the doc string.
11380 2000-10-31  Ken Raeburn  <raeburn@gnu.org>
11382         * loadup.el (top level): Adjust load path if program name is
11383         "../src/bootstrap-emacs", in case it's not dumped and thus the
11384         load path adjustment hasn't already been done.
11386 2000-10-31  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11388         * ps-print.el: Fix bug on selected pages for printing.
11389         Use `color-values' for Emacs 21.  Ensure fontification when jit-lock
11390         is on.  Try to avoid warning messages when compiling.  Doc Fix.
11391         (ps-print-version): New version number (6.3).
11392         (ps-color-device): Use `color-values' to determine if device
11393         supports color.
11394         (ps-color-values): Try to use `x-color-values' when using XEmacs.
11395         (ps-print-page-p): Changed from defsubst to defun.
11396         (ps-page-number): Changed from defmacro to defun.
11397         (ps-header-sheet, ps-header-page): Fix bug on selected pages for
11398         printing.
11399         (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
11400         (ps-end-file, ps-dummy-page): Funs eliminated.
11401         (ps-print-color-scale): Changed default value.
11402         (ps-page-n-up, ps-print-page-p): New internal vars.
11403         (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
11404         (ps-plot-region, ps-generate, ps-end-job): Code fix.
11406         * delim-col.el: Little programming improvement.
11407         (delimit-columns-str): New macro.
11408         (delimit-columns-region, delimit-columns-rectangle): Code fix.
11410 2000-10-31  Kenichi Handa  <handa@etl.go.jp>
11412         * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
11413         Moved to european.el.
11414         (ccl-encode-mac-roman-font, fontset-mac): Modified for
11415         mule-unicode-2500-33ff and mule-unicode-e000-ffff.
11416         (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
11417         (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
11419 2000-10-30  Dave Love  <fx@gnu.org>
11421         * progmodes/cc-menus.el (imenu-generic-expression)
11422         (imenu-progress-message): Only defvar when compiling.
11424         * emacs-lisp/elp.el (elp-unload-hook): New function.
11426         * loadhist.el (unload-feature): Call elp-restore-function,
11427         checking for symbols; don't use elp-restore-all.
11428         (loadhist-hook-functions): Doc fix.
11430 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
11432         * log-edit.el (log-edit-confirm): Fix the default.
11434 2000-10-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11436         * delim-col.el: Little fix: replace delimit-columns-align-columns by
11437         delimit-columns-format.
11438         (delimit-columns-region, delimit-columns-rectangle): Code fix.
11440 2000-10-30  Miles Bader  <miles@lsi.nec.co.jp>
11442         * comint.el (comint-replace-by-expanded-history): Don't use
11443         comint-get-old-input (we're not looking at *old* input).
11444         (comint-get-old-input-default): If using fields, signal an error
11445         when the point is not in an input field.
11447 2000-10-30  Kenichi Handa  <handa@etl.go.jp>
11449         * international/mule-conf.el: New charsets mule-unicode-2500-33ff
11450         and mule-unicode-e000-ffff.
11452         * international/mule.el (decode-char, encode-char): New functions.
11453         (make-coding-system): Accept a symbol of translation table as a
11454         value of property `safe-chars'.
11456         * international/mule-cmds.el (encode-coding-char): Check property
11457         safe-chars instead of safe-charsets.
11459         * international/fontset.el (fontset-default): Modified for
11460         mule-unicode-2500-33ff and mule-unicode-e000-ffff.
11461         (x-font-name-charset-alist): Likewise.
11462         (ccl-encode-unicode-font): New CCL program.  Record it in
11463         font-ccl-encoder-alist to be used for fonts "ISO10646-1".
11465         * language/european.el (mac-roman-decoder, mac-roman-encoder):
11466         New translation tables.
11467         (decode-mac-roman, encode-mac-roman): Definition of these CCL
11468         programs are modified and moved from mac-win.el.
11469         (mac-roman): Definition of this coding system is modified and
11470         moved from mac-win.el.
11472 2000-10-29  Michael Kifer  <kifer@cs.sunysb.edu>
11474         * ediff-wind.el (ediff-setup-control-frame): Enclose
11475         face-attribute in condition-case to avoid errors in older emacsen.
11477 2000-10-29  Miles Bader  <miles@gnu.org>
11479         * custom.el (custom-add-to-group): Allow multiple entries for a
11480         given value OPTION, as long as their widget types are different.
11481         * cus-edit.el (custom-face-value-create): If face name doesn't end
11482         with "face", add such here (similar to custom group widgets).
11484         * comint.el (comint-highlight-prompt): Add :type.
11486 2000-10-28  John Wiegley  <johnw@gnu.org>
11488         * calendar/timeclock.el (timeclock-log): Doc fix.
11489         (timeclock-last-event): Doc fix.
11490         (timeclock-log): Kill the timelog buffer after appending a new event.
11491         (timeclock-find-discrep): Use a temp buffer to read in the
11492         timelog, instead of visiting the file.
11493         (timeclock-log-data): A new function, along with a host of helper
11494         functions, for the purpose of making timelog data accessible to
11495         programmers.
11497         * eshell/esh-mode.el (window-height test): Make certain that
11498         `eshell-stringify-t' is non-nil.
11499         (eshell-password-prompt-regexp): Changed to a much simpler
11500         password regexp.
11501         (eshell-send-input): If `eshell-invoke-directly' returns t,
11502         directly invoke the parsed command using `eval'.  This improves
11503         turn-around time on simple commands by a factor of three or
11504         greater, such as cd, ls, pwd, etc. -- which get used very often.
11505         It also conserves thousands of cons cells per call (since
11506         `eshell-do-eval' consumes memory like a Cookie Monster set loose
11507         in the Pacific Cookie Company).
11509         * eshell/esh-test.el (eshell-test): Whitespace fix.
11511         * eshell/em-ls.el (eshell-ls-insert-directory):
11512         Make `eshell-ls-initial-args' nil when inserting directory contents.
11514         * eshell/em-script.el (eshell-script-initialize): Add names to
11515         `eshell-complex-commands, since `source' and `.' are complex.
11517         * eshell/esh-cmd.el (eshell-rewrite-for-command)
11518         (eshell-rewrite-while-command): Use `eshell-protect' instead of
11519         `eshell-copy-handles'.
11520         (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
11521         bodies.
11522         (eshell-separate-commands): Whitespace fix.
11523         (eshell-complex-commands): Added a new list of names, for
11524         determining whether a given command is as simple as it looks.
11525         (eshell-invoke-directly): New function.  Returns t if a command
11526         should be invoked directly (using `eval'), rather than indirectly
11527         using `eshell-do-eval'.
11528         (eshell-do-eval): Whitespace fix.
11530         * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
11531         which provides an emulation of the DOS shell behavior of assuming
11532         that cp/mv/ln should copy/move/link to the current directory.
11533         (eshell-remove-entries): Added a doc string.
11534         (eshell-shuffle-files): Removed the check for `target' being null.
11535         (eshell-mvcp-template, eshell-mvcpln-template): Renamed
11536         `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
11537         it to do a smarter check of whether a destination was provided.
11538         (eshell/mv, eshell/cp): Enable `:preserve-args'.
11539         (eshell/ln): Enable `:preserve-args', and use
11540         `eshell-mvcpln-template' to implement the body of the function.
11541         (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
11542         (eshell/du, eshell/diff, eshell/locate): Stringify the argument
11543         list after flattening it.  This makes it possible to cat files
11544         with numerical names.
11545         (eshell-unix-initialize): Added several names to
11546         `eshell-complex-commands.
11547         (eshell-unix-command-complex-p): Return t if a given command name
11548         may result in external processes being invoked.
11550         * eshell/em-glob.el (eshell-glob-show-progress): Make this
11551         variable nil by default, since it slows down glob processing by a
11552         factor of two or more, and increases memory consumption.
11554         * eshell/em-smart.el: Added a note about how memory consumptive
11555         smart display mode can be (at least this is true in Emacs 21).
11556         (eshell-smart-initialize): Whitespace fix.
11557         (eshell-refresh-windows): Use `if' instead of `when'.
11558         (eshell-smart-scroll-window): Calling `save-current-buffer' was
11559         not necessary.
11560         (eshell-currently-handling-window): Added a missing global variable.
11562         * eshell/em-ls.el (eshell-do-ls): Code simplification.
11563         (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
11564         Whitespace fix.
11565         (eshell-ls-exclude-hidden): Added this variable in addition to
11566         `eshell-ls-exclude-regexp'.  This one prevents files beginning
11567         with . from even being read, which can improve memory consumption
11568         quite a bit.
11569         (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
11570         read file entries beginning with a dot.  In home directories with
11571         lots of hidden files, fully two-thirds of the time spent in ls is
11572         used to read directory entries that are immediately thrown away.
11573         (eshell-ls-initial-args): Added back this configuration variable,
11574         for specifying default initial arguments to every call to ls.
11575         Much faster than using an alias to do the same thing.
11576         (eshell-do-ls): Use `eshell-ls-initial-args', if set.
11577         (eshell-ls-dir): Whitespace change.
11579         * eshell/em-dirs.el (eshell/pwd): Small code simplification.
11581         * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
11582         (eshell-stringify-t): Added a customization variable, to indicate
11583         whether `t' should be rendered as a string at all.  If not, one
11584         can still determine if the result of an expression is true using
11585         "file-exists-p FILE && echo true".
11586         (eshell-stringify): If `eshell-stringify-t' is nil, don't
11587         stringify t!
11589         * eshell/esh-module.el: Whitespace fix.
11591         * eshell/em-alias.el (eshell-alias-initialize):
11592         Added `eshell-command-aliased-p' to `eshell-complex-commands'.
11593         (eshell-command-aliased-p): New function that returns t if a
11594         command name names an aliased.
11596 2000-10-29  Michael Kifer  <kifer@cs.sunysb.edu>
11598         * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
11599         redrawing the screen when changing cursor color.
11600         (viper-insert-state-pre-command-sentinel)
11601         (viper-replace-state-pre-command-sentinel)
11602         (viper-replace-state-post-command-sentinel):
11603         Use viper-preserve-cursor-color.
11604         Many functions changed to use viper= instead of = when comparing
11605         characters.
11606         * viper-util.el (viper-memq-char,viper=): New functions for
11607         working with characters.
11608         (viper-change-cursor-color): Fixed buglet.
11609         Many functions changed to use viper= instead of = when comparing
11610         characters.
11611         * viper.el (viper-insert-state-mode-list): Added eshell.
11613         * ediff-init.el (ediff-before-setup-hook): New hook.
11614         Several typos fixed in various docstrings.
11615         * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
11616         * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
11617         (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
11618         * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
11619         (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
11620         (ediff-get-selected-buffers): New function.
11621         * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
11622         (ediff-vc-merge-internal,ediff-rcs-merge-internal):
11623         Use save-window-excursion.
11624         * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
11625         termination check in while loop.
11626         * ediff.el (ediff-get-default-file-name): Better defaults when in
11627         dired buffer.
11628         (ediff-files,ediff-merge-files,ediff-files3)
11629         (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
11631 2000-10-28  Dave Love  <fx@gnu.org>
11633         * info.el (Info-fontify-node): Add help-echo for menu items.
11635 2000-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
11637         * startup.el (normal-top-level): If the value of $TERM indicates
11638         we are running from xterm or one of its work-alikes, default to a
11639         light background mode.
11641         Support for -fg, -bg, and -rv command-line arguments for TTYs:
11642         * faces.el (tty-handle-reverse-video): New function.
11643         (tty-create-frame-with-faces): Call it.
11645         * frame.el (frame-notice-user-settings): Don't apply
11646         default-frame-alist and initial-frame-alist to MS-DOS frames.
11647         Call tty-handle-reverse-video, frame-set-background-mode, and
11648         face-set-after-frame-default for non-MS-DOS frames.
11650         * startup.el (tty-long-option-alist): New variable.
11651         (tty-handle-args): New function.
11652         (command-line): Call tty-handle-args.
11654         * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
11655         startup.el now does that for all character-terminal frames.
11657 2000-10-28  Miles Bader  <miles@gnu.org>
11659         * emacs-lisp/easy-mmode.el (define-minor-mode):
11660         Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
11661         is global.  If :global is followed by a non-nil but non-t value,
11662         make the mode buffer-local, but also generate a `global-MODE'
11663         version using `easy-mmode-define-global-mode'.
11664         Add :conditional-turn-on keyword argument.
11666 2000-10-28  Dave Love  <fx@gnu.org>
11668         * international/latin1-disp.el (latin1-char-displayable-p):
11669         Don't use window-system.
11671 2000-10-27  Eli Zaretskii  <eliz@is.elta.co.il>
11673         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
11674         Don't call find-buffer-file-type-coding-system.  Instead, just
11675         set eol-type to -unix if inhibit-eol-conversion is in effect, or
11676         if the file is on an untranslated filesystem.
11677         (add-untranslated-filesystem): Use "D" instead of "f" inside
11678         interactive.
11680 2000-10-27  Dave Love  <fx@gnu.org>
11682         * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
11683         (refill-mode): Use it.
11685 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
11687         * international/quail.el (quail-activate): Don't make-local-hook.
11689 2000-10-27  Andre Spiegel  <spiegel@gnu.org>
11691         * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
11692         manual backups and file.~<rev>.~ for automatic ones.
11693         (vc-make-version-backup): Don't do it on MS-DOS without long file
11694         names.
11696         * vc.el (vc-version-other-window): If an automatic backup of the
11697         desired version exists, rename it instead of copying it.
11699         * vc-cvs.el (vc-cvs-checkin): Check both status and error message
11700         after command.  If there's an unexpected error, signal it instead
11701         of being silent.
11702         (vc-cvs-merge-news): Be prepared for no news at all.
11704 2000-10-27  Miles Bader  <miles@lsi.nec.co.jp>
11706         * shell.el (shell): Add BUFFER argument.
11707         * comint.el (make-comint-in-buffer): New function.
11708         (make-comint): Use it.
11710         * faces.el (face-spec-choose): Change syntax so that the list of
11711         attribute-value pairs is now the cdr of each clause, not the cadr.
11712         Detect old-style entries, and handle them.  Use pop.
11714 2000-10-26  Stefan Monnier  <monnier@cs.yale.edu>
11716         * cus-edit.el (custom-mode-map): Use a sparse map.
11717         (custom-mode): Don't bother with make-local-hook.
11719         * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
11721         * vc.el (vc-start-entry): Only erase the buffer if comment is set.
11723 2000-10-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11725         * ps-print.el: Avoid compilation gripes.
11726         (ps-print-version): New version number (6.2.1).
11728 2000-10-26  Dave Love  <fx@gnu.org>
11730         * menu-bar.el: Modify some menu item help strings.
11731         (menu-bar-help-menu): Add link to MORE.STUFF.
11733         * cus-edit.el (custom-mode): Add `special' mode-class property.
11735         * wid-browse.el (widget-browse-mode): Likewise.
11737         * wid-edit.el (widget-specify-field): Revert to using local-map
11738         property, not keymap.
11740 2000-10-26  Miles Bader  <miles@lsi.nec.co.jp>
11742         * wid-edit.el (widget-field-end): When checking for a `boundary'
11743         field, do so in the correct buffer.
11745         * simple.el (undo): Correctly distinguish between numeric and
11746         non-numeric prefix args in non-transient-mark-mode, as per the doc
11747         string.  When in transient-mark-mode, treat all prefix-args as
11748         numeric.
11750         * simple.el (previous-matching-history-element): Miscellaneous cleanup.
11751         Position point on match.  Handle N == 0 correctly.
11753         * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
11754         (comint-mode-map): Reverse order of `comint-write-output' and
11755         `comint-append-output-to-file'.
11756         (comint-append-output-to-file): Reinstate this function, for the
11757         benefit of the menu.
11759 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
11761         * vc.el (vc-version-other-window): Bind `file'.
11763 2000-10-25  Gerd Moellmann  <gerd@gnu.org>
11765         * Makefile.in (update-authors): New target for maintenance purposes.
11767         * emacs-lisp/authors.el (batch-update-authors): New function.
11768         (authors-fixed-entries): New defconst.
11769         (authors-add-fixed-entries): New function.
11770         (authors): Call it.: Don't process lispref/.
11772 2000-10-25  Jason Rumney  <jasonr@gnu.org>
11774         * cus-edit.el (custom-button-face, custom-button-pressed-face):
11775         Merge x w32 and mac definitions.
11777 2000-10-25  Gerd Moellmann  <gerd@gnu.org>
11779         * menu-bar.el (menu-bar-options-menu): Add a help string for
11780         `uniquify'.
11782 2000-10-25  Stephen Gildea  <gildea@stop.mail-abuse.org>
11784         * time-stamp.el (time-stamp-string-preprocess):
11785         Fix a wrong type argument error.
11787 2000-10-25  Miles Bader  <miles@gnu.org>
11789         * recentf.el (recentf-mode): Variable removed.
11790         (recentf-mode): Use `define-minor-mode'.
11792         * mwheel.el (mouse-wheel-mode): New global minor mode.
11793         (mwheel-install): Use `mouse-wheel-mode'.
11795 2000-10-25  Dave Love  <fx@gnu.org>
11797         * progmodes/cperl-mode.el (cperl-mode):
11798         Set normal-auto-fill-function correctly.
11800         * wid-edit.el (widget-field-keymap, widget-text-keymap):
11801         Don't inherit from global-map and don't nullify menu-bar and tool-bar
11802         bindings.
11804 2000-10-25  Miles Bader  <miles@lsi.nec.co.jp>
11806         * wid-edit.el (widget-field-at): New function.
11807         (widget-at, widget-field-activate): Use it.
11808         (widget-tabable-at): Use `widget-at'.
11809         (widget-specify-field): If the terminating character of the widget
11810         field (which is read-only) is a newline, put it into a special
11811         `boundary' field so that C-n/C-p act more naturally.
11812         (widget-field-end): Also don't subtract one if a special
11813         `boundary' field has been added after the widget field.
11815         * comint.el (comint-output-filter, comint-send-input):
11816         Don't bother adding stickiness fields to overlays to fool the field
11817         code, since it should notice the overlay insertion-types now.
11819         * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
11820         Replace with aliases of the normal emacs b-o-l/e-o-l functions.
11821         (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
11823 2000-10-24  Gerd Moellmann  <gerd@gnu.org>
11825         * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
11826         (authors): Set file coding system to iso-2022-7bit.
11827         Add file-local variables to output buffer.
11829         * files.el (after-find-file): Don't print any warnings if
11830         WARN is nil.
11832 2000-10-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11834         * ps-print.el (ps-generate): Fix odd/even pages printing bug.
11836         * delim-col.el: Now there is a column formatting mechanism.
11837         Modified to customization mechanisms convention.  Doc fix.
11838         (columns): New group for delim-col.
11839         (delimit-columns-before, delimit-columns-after)
11840         (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
11841         (delimit-columns-end): New vars.
11842         (delimit-columns-customize, delimit-columns-format): New funs.
11843         (delimit-columns-region, delimit-columns-rectangle)
11844         (delimit-columns-rectangle-line): Modified to support column
11845         formatting.
11847 2000-10-24  Dave Love  <fx@gnu.org>
11849         * log-edit.el (log-edit): Add :version and a :group for vc.
11851 2000-10-24  Gerd Moellmann  <gerd@gnu.org>
11853         * files.el (after-find-file): Don't print a message ``New file''
11854         if WARN is nil.
11856         * wid-edit.el (widget-field-keymap, widget-text-keymap):
11857         Define the tool-bar map as nil, as for the menu-bar.  Otherwise, we'll
11858         get duplicate tool-bar entries because we'll see the global ones
11859         on more than one path through keymaps.
11861         * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
11863         * progmodes/cmacexp.el: Change Francesco's email address.
11865 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
11867         * window.el (fit-window-to-buffer): Adjust point of the window
11868         buffer, not that of the current buffer.
11870 2000-10-24  Eli Zaretskii  <eliz@is.elta.co.il>
11872         * progmodes/cmacexp.el: Update the euthor's email address.
11874 2000-10-24  Miles Bader  <miles@lsi.nec.co.jp>
11876         * faces.el (face-spec-set-match-display): Add `graphic' display
11877         type (the inverse of `tty').  Use `display-graphic-p' instead of
11878         the window-system variable.
11880 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
11882         * international/isearch-x.el (isearch-with-input-method):
11883         Call input-method-function with the first event in
11884         unread-command-events.
11886 2000-10-24  Miles Bader  <miles@lsi.nec.co.jp>
11888         * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
11890 2000-10-24  Andrew Choi  <akochoi@i-cable.com>
11892         * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
11893         New charsets.
11895         * term/mac-win.el: Remove definitions of mac-roman-lower and
11896         mac-roman-upper, require dired, and define instead of set
11897         mac-ready-for-drag-n-drop to avoid compilation error.
11899 2000-10-23  Andrew Innes  <andrewi@gnu.org>
11901         * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
11902         Remove superfluous calls to subst-char-in-string; instead apply
11903         expand-file-name after convert-standard-filename to ensure
11904         expected directory separators are used.
11906 2000-10-23  Eli Zaretskii  <eliz@is.elta.co.il>
11908         * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
11910 2000-10-23  Dave Love  <fx@gnu.org>
11912         * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
11913         (tool-bar-add-item): Set foreground and background for XBM icons.
11915         * international/latin1-disp.el (latin1-char-displayable-p):
11916         New function (from Handa).
11917         (latin1-display-check-font): Use it.
11919         * imenu.el (imenu--create-keymap-2): Build menu with menu-item
11920         using :key-sequence, making it much more usable.
11921         Use nconc, not append.
11922         (imenu--create-keymap-1): Avoid append.
11924         * textmodes/refill.el: Remove bits redundant with define-minor-mode.
11926 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
11928         [the following changes fix a bug where `define-minor-mode' didn't
11929         correctly generate :require clauses for defcustoms in compiled files]
11930         * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
11931         (byte-compile-log-file, byte-compile-log-1): Don't set
11932         `byte-compile-current-file' to nil.  Instead set
11933         `byte-compile-last-logged-file' to it.  Test whether
11934         byte-compile-current-file equals byte-compile-last-logged-file
11935         instead of whether its nil.
11936         (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
11938 2000-10-23  Stefan Monnier  <monnier@cs.yale.edu>
11940         * textmodes/refill.el: Fix var names in doc.
11941         (refill-mode): Don't bother with make-local-hook anymore.
11943 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
11945         * faces.el (face-user-default-spec, face-default-spec): New functions.
11946         (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
11947         (frame-set-background-mode, face-set-after-frame-default):
11948         Use `face-user-default-spec'.  Simplify code slightly.
11950         * woman.el (woman-italic-face, woman-bold-face)
11951         (woman-unknown-face): Add dark-background variants.
11952         (woman-default-faces): Renamed from `woman-colour-faces'.
11953         Set using the stored defaults, rather than using hard-wired colors.
11954         (woman-monochrome-faces): Renamed from `woman-black-faces'.
11955         Just make the foreground `unspecified' rather than "black".
11956         (woman-menu): Rename menu entries accordingly.
11958         * faces.el (header-line): Make more reasonable on mono/grayscale
11959         displays.
11961 2000-10-23  Andrew Choi  <akochoi@i-cable.com>
11963         * cus-edit.el (custom-button-face): Use 3D look for mac.
11964         (custom-button-pressed-face): Likewise.
11966         * faces.el (set-face-attributes-from-resources): Handle mac frames
11967         in the same way as x and w32 frames.
11968         (face-valid-attribute-values): Likewise.
11969         (read-face-attribute): Likewise.
11970         (defined-colors): Likewise.
11971         (color-defined-p): Likewise.
11972         (color-values): Likewise.
11973         (display-grayscale-p): Likewise.
11974         (face-set-after-frame-default): Likewise.
11975         (mode-line): Same default face as for x and w32.
11976         (tool-bar): Likewise.
11978         * frame.el: Remove call to frame-notice-user-settings at end of
11979         the file.
11981         * info.el (Info-fontify-node): Make underlines invisible for mac
11982         as for x, pc, and w32 frame types.
11984         * term/mac-win.el: New file.
11986 2000-10-22  Dave Love  <fx@gnu.org>
11988         * textmodes/refill.el: New file.
11990 2000-10-22  Andre Spiegel  <spiegel@gnu.org>
11992         * vc-hooks.el (vc-version-backup-file-name): New optional args
11993         MANUAL and REGEXP.
11994         (vc-delete-automatic-version-backups, vc-make-version-backup):
11995         New functions.
11996         (vc-before-save): Use the latter.
11997         (vc-default-make-version-backups-p): Added `-p' suffix to avoid
11998         confusion.
12000         * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
12001         expected by vc[-hooks].el.
12003         * vc.el (vc-checkout): Added `-p' suffix in call to
12004         vc-make-version-backups-p; use vc-make-version-backup to actually
12005         make the backup.
12006         (vc-version-other-window, vc-version-backup-file): Handle both
12007         automatic and manual backups.
12008         (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
12009         of all of them.
12011 2000-10-22  Miles Bader  <miles@gnu.org>
12013         * comint.el (comint-highlight-input, comint-highlight-prompt):
12014         Renamed, `-face' at end removed.
12015         (comint-send-input, comint-output-filter): Use renamed faces.
12017         * window.el (fit-window-to-buffer): Change defaulting of
12018         MAX-HEIGHT slightly.
12020         * faces.el (color-values, color-defined-p): Use `member', not
12021         `memq', because it works correctly for strings.
12022         (frame-set-background-mode): Actually, "unspecified-fg" and
12023         "unspecified-bg" *are* strings.  Use `member', not `memq', and
12024         `equal', not `eq', when a string value is possible.
12026 2000-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
12028         * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
12030 2000-10-21  Stefan Monnier  <monnier@cs.yale.edu>
12032         * progmodes/sh-script.el (sh-mode-map): Remove bindings for
12033         sh-electric-rparen, sh-electric-less and sh-electric-hash.
12034         (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
12035         (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
12036         (sh-font-lock-syntactic-keywords): Use them.
12037         (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
12038         (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
12039         (sh-mode): Don't override font-lock-unfontify-region-function.
12040         Use a copy of sh-font-lock-syntactic-keywords.
12041         (sh-set-shell): Don't set sh-electric-rparen-needed-here.
12042         Don't call sh-scan-buffer since font-lock does it on the fly.
12043         (sh-get-indent-info): Use `face' rather than `syntax-table'
12044         text-property to detect here-documents.
12045         Replace sh-special-syntax with sh-st-punc.
12046         (sh-prev-line): Use `face' rather than `syntax-table'
12047         text-property to skip over here-documents.
12048         (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
12049         (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
12050         (sh-electric-less, sh-set-here-doc-region)
12051         (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
12052         (sh-scan-buffer, sh-rescan-buffer): Remove.
12054 2000-10-21  Andrew Innes  <andrewi@gnu.org>
12056         * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
12057         remote (ange-ftp) file names.
12059 2000-10-21  Miles Bader  <miles@gnu.org>
12061         * window.el (fit-window-to-buffer): New function.
12062         (shrink-window-if-larger-than-buffer): Use it.
12063         (window-text-height): Don't expect minibuffers to have mode-lines.
12065         * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
12066         * international/quail.el (quail-update-guidance):
12067         Use `fit-window-to-buffer' instead of `set-window-text-height'.
12069         * international/quail.el (quail-show-guidance-buf): Make sure
12070         guidance window really has enough room.
12071         (quail-update-guidance): If quail-guidance-win is already shown,
12072         make sure its height is OK.
12074         * window.el (window-text-height, set-window-text-height):
12075         New functions.
12076         (shrink-window-if-larger-than-buffer): Use `window-text-height'
12077         instead of `window-height' & `mode-line-window-height-fudge'.
12078         (mode-line-window-height-fudge): Add FACE parameter.
12079         * help.el (resize-temp-buffer-window): Use `set-window-text-height'
12080         instead of `enlarge-window' & `mode-line-window-height-fudge'.
12082 2000-10-20  Miles Bader  <miles@gnu.org>
12084         * window.el (height-affecting-face-attributes): Use `defconst'.
12086         * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
12087         New function, conditionally aliased to `mode-line-window-height-fudge'.
12088         (ispell-help): Use it.
12089         (ispell-choices-win-default-height): Don't include mode-line fudge.
12090         (ispell-choices-win-default-height): New function.
12091         (ispell-show-choices, ispell-command-loop): Use function
12092         `ispell-choices-win-default-height' instead of variable.
12094 2000-10-20  Miles Bader  <miles@lsi.nec.co.jp>
12096         * window.el (mode-line-window-height-fudge): New variable.
12097         (height-affecting-face-attributes): New variable.
12098         (mode-line-window-height-fudge): New function.
12099         (shrink-window-if-larger-than-buffer): Use it.
12100         * help.el (resize-temp-buffer-window): Likewise.
12102         * info.el (Info-fontify-node): Add support for @subsubsection
12103         titles, which use `Info-title-4-face'.
12104         (Info-title-4-face): New face.
12105         (Info-title-3-face): Inherit from Info-title-4-face instead of
12106         variable-pitch.
12108 2000-10-19  Jason Rumney  <jasonr@gnu.org>
12110         * dired.el (dired-insert-directory): Do not let errors signalled by
12111         attempt to run dired-free-space-program prevent dired from working.
12113 2000-10-19  Stefan Monnier  <monnier@cs.yale.edu>
12115         * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
12117 2000-10-19  Gerd Moellmann  <gerd@gnu.org>
12119         * dirtrack.el (dirtrack): Fix call to run-hooks.
12121         * cmuscheme.el (cmuscheme-program-name): Renamed from
12122         scheme-program-name because xscheme.el contains a defcustom with
12123         the same name.  As a consequence, customizing group `cmuscheme'
12124         loaded `xscheme' which redefined run-scheme.
12125         (run-scheme): Use cmuscheme-program-name.
12127         * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
12129         * play/doctor.el (doctor-death): Update the Samaritans'
12130         anonymous address, and add a website for Befrienders International.
12132 2000-10-19  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
12134         * ps-print.el: Even/odd pages fix.  Fix little bug on XEmacs.
12135         Avoid compilation gripes.  Doc fix.
12136         (ps-print-version): New version number (6.2).
12137         (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
12138         (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
12139         (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
12140         (ps-x-extent-priority, ps-x-extent-start-position)
12141         (ps-x-face-font-instance, ps-x-find-coding-system)
12142         (ps-x-font-instance-properties, ps-x-make-color-instance)
12143         (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
12144         avoid compilation gripes without defining functions.
12145         (ps-e-find-composition): Alias for function find-composition, to have a
12146         suitable function depending on Emacs version.
12147         (ps-color-device, ps-color-values, ps-face-foreground-name)
12148         (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
12149         (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
12150         (ps-print-ensure-fontified): Function definitions surrounded by
12151         `eval-and-compile' to avoid compilation gripes.
12152         (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
12153         by symbol-value to avoid compilation gripes.
12154         (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
12155         (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
12157 2000-10-19  Miles Bader  <miles@lsi.nec.co.jp>
12159         * startup.el (normal-top-level): Call `frame-set-background-mode'
12160         after `frame-notice-user-settings' because the latter doesn't call
12161         the former on a tty.
12163         * faces.el (frame-set-background-mode): `unspecified' &c are
12164         symbols, not strings.
12166 2000-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
12168         * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
12169         why some "light*" colors are deliberately absent from the alist.
12171         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
12172         Change colors for tty's, as suggested by Miles Bader.
12174 2000-10-19  Kenichi Handa  <handa@etl.go.jp>
12176         * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
12177         (ccl-encode-mule-unicode-0100-24ff): New CCL program.  Register it
12178         for ISO10646-1 fonts.
12179         (x-font-name-charset-alist): Add an entry for "iso10646-1".
12181 2000-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
12183         * faces.el (frame-set-background-mode): If a tty frame defines a
12184         background color, use that to compute the background mode, instead
12185         of always defaulting to "dark".
12187 2000-10-19  Miles Bader  <miles@lsi.nec.co.jp>
12189         * comint.el (comint-write-output): New function.
12190         (comint-mode-map): Add it to the menu.
12191         Bind `C-c C-s' to comint-write-output.
12193 2000-10-18  Gerd Moellmann  <gerd@gnu.org>
12195         * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
12196         Use fancy-splash-delay.
12198 2000-10-18  Alex Schroeder  <alex@gnu.org>
12200         * progmodes/sql.el (sql-sybase-options): New option.
12201         (sql-sybase): Use it.  Add sql-database to the list of parameters
12202         provided for login.  The options -w 2048 -n are not used any more.
12204         * comint.el (comint-read-input-ring): Bugfix such that the first
12205         and the last entry of the input ring file are not lost.
12207 2000-10-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
12209         * ps-print.el: Internal variable changes to defcustom,
12210         make-local-hook changes to defvar.  Doc fix.
12211         (ps-print-version): New version number (6.1).
12212         (ps-setup, ps-do-despool): Code fix.
12213         (ps-printer-name): Customization fix.
12214         (ps-printer-name-option): Now is a defcustom instead of an
12215         internal variable.
12216         (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
12217         (ps-print-begin-column-hook): Now are defvar instead of
12218         make-local-hook.
12220 2000-10-18  Miles Bader  <miles@gnu.org>
12222         * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
12223         (comint-kill-output): Changed into an alias for `comint-delete-output',
12224         and made obsolete.
12225         (comint-mode-map): Rename references to comint-kill-output.
12227 2000-10-18  Eli Zaretskii  <eliz@is.elta.co.il>
12229         * diff-mode.el (diff-header-face, diff-file-header-face)
12230         (diff-changed-face): Add bold and italic attributes to tty faces.
12231         (diff-function-face): New face.
12232         (diff-font-lock-keywords): Use it.
12234 2000-10-18  Miles Bader  <miles@lsi.nec.co.jp>
12236         * comint.el (comint-output-filter): Fixup comint-last-input-end too.
12237         Remove commented-out call to force-mode-line-update.
12238         (comint-kill-output): Use `forward-line 0' instead of
12239         beginning-of-line to make sure we get past the prompt.
12241 2000-10-17  Stefan Monnier  <monnier@cs.yale.edu>
12243         * diff-mode.el (diff-header-face, diff-file-header-face):
12244         Add specific setting for dark background.
12245         (diff-context-face): Renamed from diff-comment-face.
12246         Set explicitly rather than inheriting from font-lock-comment-face.
12248 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
12250         * startup.el (command-line): Move the code which sets the default
12251         TTY colors to before before-init-hook.
12253 2000-10-17  Gerd Moellmann  <gerd@gnu.org>
12255         * jit-lock.el (jit-lock-stealth-time): Doc fix.
12257 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
12259         * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
12260         extensions, for MS-DOS.
12262         * diff-mode.el (diff-header-face, diff-file-header-face)
12263         (diff-changed-face): Define tty-specific colors.
12265 2000-10-17  Gerd Moellmann  <gerd@gnu.org>
12267         * startup.el (fancy-splash-text): Realign the text.
12269 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
12271         * font-lock.el (font-lock-comment-face): Define a separate default
12272         for dark-background tty's.
12274 2000-10-17  Miles Bader  <miles@gnu.org>
12276         * help.el (resize-temp-buffer-window): Add hack to avoid last line
12277         being obscured by whizzy mode-lines on graphics displays.
12279 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
12281         * info.el (Info-title-1-face, Info-title-2-face)
12282         (Info-title-3-face): Define colors for tty's.
12283         (info-header-node): Remove unneeded tty-specific definition.
12285 2000-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
12287         * term/pc-win.el (msdos-handle-reverse-video): Don't remove
12288         reverse from the frame parameters, and don't invert foreground and
12289         background colors.
12291 2000-10-16  Miles Bader  <miles@gnu.org>
12293         * info.el (Info-set-mode-line): Use `%b' instead of hardwired
12294         string "*Info*".  Call propertized-buffer-identification to spruce
12295         up the result.
12297 2000-10-16  Gerd Moellmann  <gerd@gnu.org>
12299         * help.el: Provide `help' for the sake of define-minor-mode
12300         which generates defcustoms with requires.
12302         * jit-lock.el (jit-lock-after-change): If we're in text that
12303         matches a multi-line font-lock pattern, make sure the whole text
12304         will be redisplayed.
12306         * emacs-lisp/authors.el (authors-add): Don't add an entry if
12307         author's name is unknown.
12309         * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
12310         * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
12311         * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
12312         * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
12313         * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
12314         * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
12315         * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
12316         * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
12317         * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
12318         Add author information.
12320 2000-10-16  Miles Bader  <miles@lsi.nec.co.jp>
12322         * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
12323         * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
12324         full-color version (using the Gimp) to eliminate dithering artifacts.
12326 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
12328         * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
12330         * simple.el (syntax-flag-table, string-to-syntax): Remove.
12332 2000-10-15  Dave Love  <fx@gnu.org>
12334         * progmodes/sh-script.el: Require skeleton and comint when compiling.
12336         * pcomplete.el (pcomplete) <defgroup>: Add :version.
12338         * whitespace.el: Doc fixes.
12339         (top-level): Don't add hooks here.
12340         (whitespace-running-emacs): Deleted.
12341         (timer): Don't require.
12342         (whitespace): Add back :version conditional on xemacs test.
12343         (whitespace-spacetab-regexp, whitespace-indent-regexp)
12344         (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
12345         (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
12346         (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
12347         Avoid specific xemacs test.
12348         (whitespace-global-mode): New option.
12349         (whitespace-global-mode): New command.
12350         (whitespace-unload-hook): New function.
12352         * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
12353         (Info-fontify-node, Info-goto-node, Info-mode-menu)
12354         (Info-fontify-node): `Goto' goes to `Go to'.
12355         (Info-fontify-node): Add help-echo to xref links.
12357 2000-10-15  Eli Zaretskii  <eliz@is.elta.co.il>
12359         * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
12361 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
12363         * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
12364         Use plist-get and allow :inherit.
12366         * emacs-lisp/cl-macs.el (cl-do-arglist):
12367         Use plist-get and plist-member instead of memq.
12369         * emacs-lisp/ewoc.el (ewoc-location): New function.
12370         (ewoc-enter-after, ewoc-enter-before): Document return value.
12371         * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
12372         Don't need make-local-hook any more.
12373         (cvs-addto-collection): Return the new tin.
12374         (cvs-mode-insert): Jump to the new line.
12376         * jit-lock.el (jit-lock-fontify-buffer): Remove.
12378         * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
12380         * font-lock.el (font-lock-syntactically-fontified): New var.
12381         (font-lock-fontify-syntactic-keywords-region): Use it.
12382         (font-lock-mode): Fix docstring.  Don't need make-local-hook anymore.
12384         * diff-mode.el (diff-find-file-name): Fix regexp.
12386         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
12387         (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
12389         * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
12390         (sh-mode-syntax-table): Add punctuation syntax for < and >.
12391         (sh-mode): Don't make all vars local here.
12392         (sh-kw): Reformat.
12393         (sh-set-shell): Use dolist.  Don't set indent-region-function.
12394         (sh-mode-syntax-table): Use pop.
12395         (sh-remember-variable): Use push.
12396         (sh-help-string-for-variable): Use memq.
12397         (sh-safe-backward-sexp): Remove.
12398         (sh-safe-forward-sexp): Add ARG.
12399         (sh-get-indent-info, sh-prev-stmt): Use it.
12400         (sh-prev-line): Simplify by using forward-comment.
12401         (sh-this-is-a-continuation): Simplify.
12402         (sh-learn-buffer-indent): Use dolist.
12403         (sh-do-nothing): Remove.
12404         (sh-set-char-syntax, sh-set-here-doc-region):
12405         Use inhibit-modification-hooks.
12406         (sh-name-style): Use mapcar and push.
12407         (sh-load-style): Use dolist.
12408         (sh-save-styles-to-buffer): Use with-current-buffer and pp.
12409         (sh-case, sh-while-getopts): Use propertize directly rather
12410         than sh-electric-rparen.
12412 2000-10-14  Stefan Monnier  <monnier@cs.yale.edu>
12414         * textmodes/tex-mode.el: Require CL when compiling.
12415         (tex-mode-syntax-table): Init immediately.
12416         (tex-mode-map): Bind M-RET to latex-insert-item.
12417         (latex-mode): Set indent-line-function to latex-indent.
12418         (tex-common-initialization): Don't setup the syntax-table any more.
12419         (latex-insert-item): New skeleton.
12420         (tex-next-unmatched-end): Fix copy/paste braino.
12421         (latex-syntax-after, latex-skip-close-parens, latex-down-list)
12422         (latex-indent, latex-find-indent): New functions.
12423         (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
12424         (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
12425         (tex-compilation-parse-errors): Use with-syntax-table.
12427 2000-10-15  Miles Bader  <miles@gnu.org>
12429         * font-lock.el (font-lock-comment-face): Change dark-background,
12430         color, non-tty, default to `chocolate1'.
12432 2000-10-13  John Wiegley  <johnw@gnu.org>
12434         * eshell/esh-util.el (require): Added a missing `require' form,
12435         needed when compiling (for an ange-ftp macro definition).
12437 2000-10-13  Dave Love  <fx@gnu.org>
12439         * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
12441 2000-10-13  Gerd Moellmann  <gerd@gnu.org>
12443         * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
12445         * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
12446         transparent -colors 8).
12448 2000-10-13  Stephen Gildea  <gildea@stop.mail-abuse.org>
12450         * time-stamp.el (time-stamp): Fixed bug in new multi-line code
12451         that breaks with old list format timestamps.
12452         (time-stamp-warn-inactive, time-stamp-old-format-warn)
12453         (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
12455 2000-10-13  John Wiegley  <johnw@gnu.org>
12457         * align.el, pcomplete.el, calendar/timeclock.el,
12458         eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
12460         * calendar/timeclock.el (timeclock-find-discrep): A fix to some
12461         faulty math, where holiday hours were being computing as seconds.
12463 2000-10-13  John Wiegley  <johnw@gnu.org>
12465         * desktop.el (desktop-buffer-modes-to-save): Added a global for
12466         specifying what "other" kinds of buffers should be saved.
12467         This used to be hard-coded.
12468         (desktop-buffer-misc-functions): A global for specifying how
12469         auxiliary data should be determined for special buffer types.
12470         (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
12471         instead of hard-coding the special buffer types.
12472         (desktop-save): Run `desktop-buffer-misc-functions' to gather
12473         auxiliary data, instead of hard-coding for Info buffers and dired.
12474         (desktop-buffer-info-misc-data): Aux function for determining Info
12475         buffer auxiliary info.
12476         (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
12477         (desktop-buffer-info): Changed this function to use the info
12478         gathered above.
12479         (desktop-create-buffer): Be a little more careful about what
12480         `minor-mode' means before calling it.  This is important for some
12481         buffer types.
12483 2000-10-13  John Wiegley  <johnw@gnu.org>
12485         * eshell/esh-util.el: Added a global form which declares an
12486         autoload for `parse-time-string', if that function is not already
12487         defined, and if parse-time.el is available on the user's system.
12489         * eshell/em-ls.el (eshell-ls-applicable): Extended this function
12490         to be aware of ange-ftp user info.
12491         (eshell-do-ls): Bind `ange-cache'.  Also, use `eshell-file-attributes'.
12492         (eshell-ls-annotate): Use `eshell-file-attributes'.
12493         (eshell-ls-file): Made the user-id printing code a bit smarter.
12495         * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
12496         allow identification of alias user ids in remote directories.
12497         It's manual, but there's no other way to know when the current user
12498         on the local machine, is also the owning user on the remote machine.
12499         (fboundp): Bind `ange-cache'.
12500         (eshell-directory-files-and-attributes): Re-organized the logic a
12501         bit to use `eshell-file-attributes' instead of `file-attributes'.
12502         The former is more sensitive to directories that are read via FTP,
12503         and knows how to use ange-ftp to determine full attribute
12504         information, instead of just the name and last modtime.
12505         (eshell-current-ange-uids): Return the current user id when in a
12506         remote directory.
12507         (eshell-parse-ange-ls): Parse a full directory listing that has
12508         been returned by ange-ftp.
12509         (eshell-file-attributes): This beefed up version of
12510         `file-attributes' is only special if the user is currently in a
12511         remote directory, in which case it does a lot of work to find out
12512         what the real attributes of a file are, as they appear on the
12513         remote machine.  This makes usage of remote directories (i.e.,
12514         ange-ftp pathnames) much more useful.  You can now use Eshell as a
12515         full-fledged FTP client, with much more manipulation ability than
12516         most other clients.
12518         * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
12519         variable, which means that Eshell's du should always be preferred
12520         in remote directories.
12521         (eshell-shuffle-files): Use `eshell-file-attributes', rather than
12522         just `file-attributes'.
12523         (eshell-mvcp-template): Bind `ange-cache', to improve performance
12524         when reading remote directories.  This is an Eshell-specific
12525         variable (not part of ange-ftp).
12526         (eshell/ln): Bind `ange-cache'.
12527         (eshell/du): Added some extra logic for determining when to use
12528         Eshell's du (which is slow), and when to use the external version
12529         (which may or may not exist).
12531         * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
12532         Call `eshell-interactive-process', rather than using
12533         `get-buffer-process', since backgrounded processes don't count in
12534         the context of this function's logic.
12536         * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
12537         `forward-char', so that null strings are parsed correctly.
12539 2000-09-13  John Wiegley  <johnw@gnu.org>
12541         * eshell/em-pred.el (eshell-pred-file-type)
12542         (eshell-pred-file-links, eshell-pred-file-size):
12543         Use `eshell-file-attributes'.  This is more correct over ange-ftp.
12545         * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
12546         that remote file globbing is more efficient.
12548         * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
12549         gathering the files and attributes within a directory.
12551         * eshell/em-unix.el (eshell/cat): If any of the files passed on
12552         the command line is a special file (not a regular file, directory
12553         or symlink), always attempt to call the external version of cat.
12555 2000-09-13  John Wiegley  <johnw@gnu.org>
12557         * eshell/esh-mode.el (eshell-find-tag): Corrections to the
12558         Eshell-friendly version of find-tag.
12560 2000-10-13  Miles Bader  <miles@lsi.nec.co.jp>
12562         * image-file.el (image-file-name-extensions)
12563         (image-file-name-regexps): Add autoload cookies.
12565 2000-10-13  Kenichi Handa  <handa@etl.go.jp>
12567         * international/mule-cmds.el (select-safe-coding-system): If FROM
12568         is string, show it in *Warning* buffer.
12570 2000-10-13  Eli Zaretskii  <eliz@is.elta.co.il>
12572         * startup.el (normal-top-level): Use display-popup-menus-p instead
12573         of window-system.
12574         (command-line): Use display-graphic-p instead of window-system.
12575         (command-line-1): Use display-popup-menus-p and display-mouse-p
12576         instead of window-system.
12578 2000-10-12  Sam Steingold  <sds@gnu.org>
12580         * tooltip.el (tooltip-use-echo-area): New user variable.
12581         (tooltip-show): Use it to choose between `x-show-tip' and `message'.
12583 2000-10-12  Dave Love  <fx@gnu.org>
12585         * recentf.el: Maintainer's checkdoc fixes.
12587         * startup.el (normal-top-level-add-subdirs-to-load-path):
12588         Use character class, not ASCII when matching file names.
12589         (fancy-splash-head): Add trailing slash to URL.
12590         (command-line): Don't require XPM support for toolbar.
12592         * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
12593         (cperl-invalid-face): Revert last change.
12594         (cperl-init-faces): Quote cperl-invalid-face.
12596 2000-10-12  Kenichi Handa  <handa@etl.go.jp>
12598         * startup.el (fancy-splash-text): Remove superfluous quote.
12600 2000-10-12  Gerd Moellmann  <gerd@gnu.org>
12602         * startup.el (fancy-splash-screens): Don't add a pre-command hook.
12603         (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
12604         (command-line-1): Don't use fancy-splash-pending-command.
12605         (fancy-splash-screens-1): Goto point-min after inserting text.
12607         * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
12609         * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
12610         instead of shared-lisp-mode-map.
12612 2000-10-12  Miles Bader  <miles@lsi.nec.co.jp>
12614         * faces.el (header-line): Change tty-variant to use underlining.
12616         * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
12617         (isearch-highlight): Restore lazy-isearch face properties at old
12618         position, and suppress them at new position.
12619         (isearch-dehighlight): Restore lazy-isearch face properties.
12620         (isearch-lazy-highlight-update): Add lazy-isearch overlays even
12621         over the real isearch overlay, but in that case, don't give it a
12622         face property.  Use `push'.
12624 2000-10-12  Kenichi Handa  <handa@etl.go.jp>
12626         * man.el (Man-getpage-in-background): Fix previous change.
12627         Decode the process output only when we are in multibyte mode.
12629 2000-10-11  Dave Love  <fx@gnu.org>
12631         * info.el (Info-mode-menu): Fix some help.
12632         (info-tool-bar-map): Add entry for Info-last.
12634         * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
12635         * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
12636         * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
12637         * toolbar/cut.xpm, toolbar/mail_compose.xpm:
12638         * toolbar/search-replace.xpm, toolbar/exit.xpm:
12639         * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
12640         * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
12641         * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
12642         * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
12643         * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
12644         Reduce colour requirements to 25 overall.  (Probably wants
12645         revisiting from the originals to reduce further.)
12647 2000-10-11  Eli Zaretskii  <eliz@is.elta.co.il>
12649         * hexl.el (hexlify-buffer): Bind coding-system-for-write to
12650         buffer-file-coding-system, instead of raw-text.
12651         (dehexlify-buffer): Bind coding-system-for-read to
12652         buffer-file-coding-system, instead of raw-text.
12654 2000-10-11  Sam Steingold  <sds@gnu.org>
12656         * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
12657         `underline' - fixes the bug introduced on 2000-09-21.
12659 2000-10-11  Dave Love  <fx@gnu.org>
12661         * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
12662         Avoid compiler warnings.
12663         (scheme-mode): Doc fix.
12664         (scheme-font-lock-keywords-1): Match `define-syntax'.
12666 2000-10-11  Miles Bader  <miles@lsi.nec.co.jp>
12668         * faces.el (frame-set-background-mode): Pay attention to saved
12669         face specs as well as default ones.  Only do anything if the
12670         bg-mode or display-type has actually changed.  Use `dolist'.
12671         (region): Make dark-background `region' face less in-your-face.
12673 2000-10-10  Sam Steingold  <sds@gnu.org>
12675         * chistory.el, ielm.el, ledit.el:
12676         * progmodes/inf-lisp.el, progmodes/scheme.el:
12677         Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
12679 2000-10-10  Stefan Monnier  <monnier@cs.yale.edu>
12681         * textmodes/texinfo.el: Update copyright and fix typo.
12683         * desktop.el (desktop-modes-not-to-save): New var.
12684         (desktop-save-buffer-p): Use it.
12685         Also, obey desktop-buffers-not-to-save even for non-file buffers.
12686         (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
12688 2000-10-10  Dave Love  <fx@gnu.org>
12690         * toolbar/tool-bar.el (tool-bar-add-item)
12691         (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
12693         * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
12694         * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
12695         * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
12696         * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
12697         * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
12698         * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
12699         * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
12700         * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
12701         * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
12702         * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
12703         the .xpms; probably need retouching.
12705 2000-10-10  Miles Bader  <miles@lsi.nec.co.jp>
12707         * subr.el (add-to-list): Add optional argument APPEND.
12708         * battery.el (display-battery): Use `add-to-list'.
12710 2000-10-09  Thien-Thi Nguyen  <ttn@gnu.org>
12712         * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
12713         properties.
12714         (zone, zone-when-idle, zone-leave-me-alone)
12715         (zone-pgm-whack-chars): Use new symbol properties.
12717         * battery.el (display-battery): Doc spelling fix.
12719         * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
12720         property.
12722 2000-10-09  Dave Love  <fx@gnu.org>
12724         * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
12725         has been initialized before calling tool-bar-setup.
12726         (tool-bar-add-item-from-menu): Add autoload cookie.
12728 2000-10-09  Eli Zaretskii  <eliz@is.elta.co.il>
12730         * menu-bar.el (send-mail-item-name): New function.
12731         (menu-bar-tools-menu) <compose-mail>: Use it to display the value
12732         of mail-user-agent in the menu.  Don't display the "Send Mail"
12733         item if mail-user-agent is nil or its value is ignore.
12734         (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
12735         if read-mail-command is nil or its value is ignore.
12737         * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
12739 2000-10-09  Miles Bader  <miles@gnu.org>
12741         * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
12742         Correct image size.
12743         * toolbar/left_arrow.xpm: Correct image size.
12745         * jka-compr.el: Don't call `jka-compr-install' when loading (it
12746         will be done by the definition of `auto-compression-mode' if
12747         necessary.  Move code to uninstall existing file-name handler
12748         before definition of `auto-compression-mode'.
12750         * image-file.el (auto-image-file-mode): Move to the end of the
12751         file, because `define-minor-mode' actually calls the mode-function
12752         if the associated variable is non-nil, which requires that all
12753         needed functions be already defined.
12755         * mouse.el (popup-menu): Balance parens.
12757 2000-10-08  Stefan Monnier  <monnier@cs.yale.edu>
12759         * mouse.el (popup-menu): Move the command call outside the loop
12760         so that popup-menu returns whatever the command returns.
12762         * progmodes/etags.el: Docstring fixes.  Maintainer line updated.
12763         (initialize-new-tags-table): Use run-hook-with-args-until-success.
12764         (find-tag): Use pop-to-buffer if switch-to-buffer failed.
12765         (tags-table-format-functions): Renamed from tags-table-format-hooks.
12767         * vc.el (vc-version-diff): diff-switches can be a list.
12768         Use relative filenames for prettier output.
12770         * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
12771         (vc-post-command-functions): Remove old-VC compatibility code.
12773         * newcomment.el (comment-indent-default): Autoload.
12775         * font-lock.el (font-lock-defaults): Make buffer-local.
12776         (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
12777         (font-lock-choose-keywords):
12778         Ignore LEVEL unless KEYWORDS is a list of syms.
12779         (c-keywords, c++-keywords, objc-keywords, java-keywords):
12780         Don't wrap regexp-opt things in \(...\) unnecessarily.
12782         * jit-lock.el: Don't require font-lock any more.
12783         (jit-lock-functions): Make buffer-local.
12784         (jit-lock-saved-fontify-buffer-function): Remove.
12785         (jit-lock-mode): Remove autoload cookie.
12786         Remove font-lock specific code.
12787         (jit-lock-unregister): Don't bother handling complex hooks any more.
12788         (jit-lock-refontify): New function.
12789         (jit-lock-fontify-buffer): Use it.
12790         (jit-lock-function-1): Replaced by jit-lock-fontify-now.
12791         (jit-lock-fontify-now): Renamed from jit-lock-function-1.
12792         Add optional args START and END.
12793         Never call font-lock-fontify-region directly.
12794         (jit-lock-function, jit-lock-stealth-fontify): Use it.
12796         * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
12798 2000-10-08  Dave Love  <fx@gnu.org>
12800         * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
12802         * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
12804         * play/studly.el (studlify-region, studlify-word): Add autoload
12805         cookie.
12807         * play/morse.el (morse-region, unmorse-region): Add autoload
12808         cookie.
12810         * play/spook.el (spook-phrases-file): Use expand-file-name, not
12811         concat.
12813         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
12814         insist on symbols starting with word syntax.
12815         (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
12816         (eval-defun-1): Doc fix.
12817         (indent-sexp): Use nconc to build up indent-stack.
12819         * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
12820         Gnus with little use.
12821         (mail-setup-hook): Add mail-abbrevs-setup to options.
12823         * recentf.el: Doc fixes.
12825         * vcursor.el (vcursor-cs-binding): Remove compatibility code.
12826         Clean up remainder.
12828         * timezone.el (timezone-parse-date): Doc fix.  Fix regexps for (5)
12829         without timezone and (8) with timezone to enforce some whitespace.
12830         Simplify code somewhat.
12832         * options.el (list-options): Doc that you should use customize.
12834         * iswitchb.el (iswitchb-mode): Add :require.
12836         * info.el (Info-goto-node, Info-menu): Doc fix.
12837         (Info-mode-menu): Bind beginning-of-buffer, Info-edit
12838         (info-tool-bar-map): New variable.
12839         (Info-mode): Use it.
12840         (Info-edit-map): Define all in defvar.
12841         (speedbar-attached-frame): Avoid compiler warning.
12843         * toolbar/tool-bar.el (tool-bar-map): Define it empty.
12844         (global-map): Bind [tool-bar] to a filtered map.
12845         (tool-bar-add-item): Remove MAP arg.  Allow PBM icons.
12846         (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
12847         Allow PBM icons.
12848         (tool-bar-setup): Adjust calls of tool-bar-add-item.
12850         * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
12851         * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
12852         * toolbar/right_arrow.xpm: New files.  Renamed from tigert's
12853         icons, except up_arrow, which is left-arrow rotated.
12855         * imenu.el (imenu-add-to-menubar): Fix last change.
12857 2000-10-08  Peter Breton  <pbreton@ne.mediaone.net>
12859         * generic-x.el (rul-generic-mode): Remove eval-when-compile
12860         statements. Suggested by Stefan Monnier  <monnier@cs.yale.edu>.
12862 2000-10-08  Eli Zaretskii  <eliz@is.elta.co.il>
12864         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
12865         typos in doc strings.
12867         * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
12868         the doc strings how to customize Font Lock faces.
12870         * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
12871         computing growth when dragging the header line.
12873 2000-10-08  Eli Zaretskii  <eliz@is.elta.co.il>
12875         * simple.el (kill-line): Doc fix.
12877 2000-10-08  Miles Bader  <miles@gnu.org>
12879         * faces.el (secondary-selection): Make foreground visible on tty.
12881         * jka-compr.el (auto-compression-mode): Move to the end of the
12882         file, because `define-minor-mode' actually calls the mode-function
12883         if the associated variable is non-nil, which requires that all
12884         needed functions be already defined.
12885         (with-auto-compression-mode): Add autoload cookie.
12887 2000-10-07  Eli Zaretskii  <eliz@is.elta.co.il>
12889         * files.el (find-backup-file-name) [ms-dos]: If support for long
12890         file names is not available, behave as if version-control were set
12891         to never.
12893 2000-10-07  Dave Love  <fx@gnu.org>
12895         * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
12896         (browse-url-gnome-moz): New function.
12897         (browse-url-browser-function): Use it.
12898         Suggested by Colin Walters <walters@cis.ohio-state.edu>.
12900 2000-10-07  Stefan Monnier  <monnier@cs.yale.edu>
12902         * indent.el (tab-always-indent): New var.
12903         (indent-for-tab-command): Use it.
12905         * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
12906         raise an error.  This way it can still default to a sane value.
12908 2000-10-06  Stefan Monnier  <monnier@cs.yale.edu>
12910         * startup.el (fancy-splash-screens): Use local rather than global map.
12911         Don't use `update-menu-bindings' any more.
12912         Get rid of assumptions about keymap representation.
12914 2000-10-06  Dave Love  <fx@gnu.org>
12916         * textmodes/fill.el (sentence-end-double-space)
12917         (sentence-end-without-period):  Doc fix.
12918         (adaptive-fill-regexp): Purecopy.
12919         (unjustify-current-line): Use line-end-position.
12920         (fill-individual-paragraphs-prefix): Use line-beginning-position.
12922         * net/eudc-vars.el (eudc): Add :version, :link.
12924         * international/mule-conf.el (file-coding-system-alist): Use \', not $.
12926         * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
12927         Fix for define-minor-mode.
12928         (function-at-point): Alias to function-called-at-point.
12930         * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
12932         * simple.el (backward-word): Doc fix.
12934         * image-file.el (image-file-name-regexp): image-file-regexps ->
12935         image-file-name-regexps.
12936         (image-file-name-extensions): Add pbm.
12938 2000-10-06  Stefan Monnier  <monnier@cs.yale.edu>
12940         * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
12941         and add filename to the names so that diff-mode can jump to source.
12943         * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
12944         (tex-font-lock-keywords, tex-font-lock-keywords-2)
12945         (tex-font-lock-keywords-1): Remove.
12946         (font-lock-turn-on-thing-lock): Use jit-lock-register.
12947         (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
12948         (font-lock-default-fontify-region):
12949         Expand beg..end correctly when just following a multiline region.
12950         (font-lock-fontify-anchored-keywords):
12951         Include the anchor text as part of the multiline.
12953 2000-10-06  Gerd Moellmann  <gerd@gnu.org>
12955         * loadup.el (toplevel): Load `loaddefs' before `help' because the
12956         latter needs the autoloaded define-minor-mode macro during the
12957         bootstrap.
12959         * startup.el (command-line): For now, activate tool-bar-mode only
12960         if XPM images are supported.
12962         * mouse.el (mouse-drag-header-line): Don't allow resizing a
12963         window by dragging a header-line at the top of the frame; that's
12964         confusing because the header-line doesn't move.
12965         (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
12966         of treating the event as a list.  Some cleanup.
12968 2000-10-06  Miles Bader  <miles@gnu.org>
12970         * simple.el (display-message-or-buffer): New function.
12971         (shell-command-on-region): Use `display-message-or-buffer'.
12973         * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
12974         docstring parts.
12976         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
12977         (smbclient-prompt-regexp): Add usage note to doc string.
12978         (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
12979         (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
12980         Use add-hook for adding the comint filter function, and only do so
12981         if it's not already in the global hook list.
12982         (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
12983         to `make-local-variable'.
12984         (nslookup-font-lock-keywords): Remove prompt entry.
12985         (nslookup): Don't set the process-filter.
12986         (finger): Exit the loop correctly when the regexps list runs out.
12987         (ftp, smbclient, smbclient-list-shares):
12988         Set the real major mode immediately, not after execing.
12989         Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
12991         * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
12993 2000-10-05  Stefan Monnier  <monnier@cs.yale.edu>
12995         * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
12997         * which-func.el (which-func-format): Remove spurious space.
12998         (which-func-mode): Don't make it permanent-local.
12999         (which-func-ff-hook): Allow which-func-maxout to be nil.
13000         (which-func-update): Simplify a bit.  Only run if which-func-mode is t.
13001         (which-func-mode): Simplify.
13002         Use post-command-idle-hook rather than post-command-hook.
13003         Go through all buffers and update their state.
13004         (which-function): Also try add-log-current-defun-function.
13006         * vc.el (with-vc-properties): Use conses rather than length-2 lists.
13007         (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
13008         Update call to with-vc-properties accordingly.
13009         (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
13010         (vc-revert-buffer): More careful about window selection and deletion.
13011         (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
13013         * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
13014         (cvs-retrieve-revision): Reuse a pre-existing buffer.
13015         (cvs-dired-action): Change the default to quickdir.
13017         * newcomment.el (comment-indent): Delegate to indent-according-to-mode
13018         if comment-indent-function returns nil.
13019         (comment-indent-default): New function.
13020         (comment-indent-function): Use it and document the new semantics.
13022         * image-file.el: Docstring fixes.
13024         * help.el (help-xref-on-pp): Use match-string.
13025         (describe-variable): New arg BUFFER.
13026         Store the current buffer in the help-xref-stack.
13027         (temp-buffer-resize-mode): Use define-minor-mode.
13029         * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
13030         consistently with its docstring.
13031         Set jit-lock-first-unfontify-pos in an idempotent way.
13032         (jit-lock-register): Autoload and add arg CONTEXTUAL.
13034 2000-10-05  Alex Schroeder  <alex@gnu.org>
13036         * sql.el (sql-mysql-options): New variable.
13037         (sql-mysql): Use it.
13039 2000-10-05  Miles Bader  <miles@lsi.nec.co.jp>
13041         * image.el (image): New group.
13043         * smerge-mode.el (smerge-mine-face, smerge-other-face)
13044         (smerge-base-face, smerge-markers-face): Add dark-background variants.
13046 2000-10-04  Peter Breton  <pbreton@ne.mediaone.net>
13048         * net/net-utils.el (nslookup-font-lock-keywords)
13049         (ftp-font-lock-keywords, smbclient-font-lock-keywords):
13050         Ignore the value of wqindow-system; always define keywords
13052 2000-10-05  Kenichi Handa  <handa@etl.go.jp>
13054         * startup.el (fancy-splash-screens): Remove the code for
13055         debugging; `(trace-to-stderr "EXITTT\n")'.
13057 2000-10-05  Miles Bader  <miles@gnu.org>
13059         * diff-mode.el (diff-goto-source): Update call to
13060         `diff-hunk-status-msg' to reflect new REV variable.
13062 2000-10-04  Stefan Monnier  <monnier@cs.yale.edu>
13064         * progmodes/icon.el (icon-mode):
13065         Don't gratuitously override the default for comment-column.
13067         * vc-hooks.el (vc-mode-line): Fix interactive spec.
13069         * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
13070         (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
13071         (jit-lock-functions): New var.
13072         (jit-lock-function-1): Use it if non-nil.
13073         Don't switch the syntax-table.  Don't set parse-sexp-lookup-properties.
13074         Set the `fontified' property before doing the fontification to avoid
13075         repeatedly going through the same error.
13076         Don't turn errors into messages.
13077         (jit-lock-register, jit-lock-unregister): New functions.
13079         * dired.el (dired-mark-pop-up): Turn comment into docstring.
13080         Use with-current-buffer.
13082         * dired-aux.el (dired-do-create-files, dired-kill-tree):
13083         Turn comment into docstring.
13085         * apropos.el (apropos-mode): Use define-derived-mode.
13087 2000-10-04  Gerd Moellmann  <gerd@gnu.org>
13089         * startup.el (fancy-splash-pending-command): New variable.
13090         (fancy-splash-pre-command): New function.
13091         (fancy-splash-screens): Rewritten.
13092         (command-line-1): If fancy-splash-pending-command is set, call it
13093         interactively.
13095 2000-10-04  Dave Love  <fx@gnu.org>
13097         * toolbar/tool-bar.el (tool-bar-setup): New function.
13098         (tool-bar-mode): Use it.
13100         * subr.el (substitute-key-definition): Doc fix.
13101         (play-sound-file): New command.
13103 2000-10-04  Andre Spiegel  <spiegel@gnu.org>
13105         * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
13106         vc-version-backup-file-name): New functions.
13108         * files.el (basic-save-buffer): Call vc-before-save before saving.
13110         * vc-cvs.el (vc-cvs-make-version-backups): Return t if
13111         vc-cvs-stay-local-p.
13113         * vc.el (vc-revert-buffer): Handle empty diff properly.
13114         (vc-version-backup-file): New function.
13115         (vc-checkout): Create a version backup if necessary.
13116         (vc-checkin): If a version backup file exists, delete it.
13117         (vc-version-diff): Diff locally using version backups, if available.
13118         (vc-revert-file): If there's a version backup, revert locally.
13119         (vc-transfer-file): Use version backup for base version, if
13120         available.  If not, ask for confirmation whether to get it from the
13121         server.  Update mode line before check-in.
13123 2000-10-04  Dave Love  <fx@gnu.org>
13125         * toolbar/tool-bar.el (tool-bar-setup): New function.
13126         (tool-bar-mode): Use it.
13128 2000-10-04  Peter Breton  <pbreton@ne.mediaone.net>
13130         * net/net-utils.el (nslookup-font-lock-keywords)
13131         (ftp-font-lock-keywords, smbclient-font-lock-keywords):
13132         Only set if window-system is non-nil
13133         (net-utils-run-program): Returns buffer.
13134         (network-connection-reconnect): Added this function.
13136         * generic.el:
13137         Incorporates extensive cleanup and docfixes by
13138         Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
13139         Uses cl compile-time macros.
13140         (generic-mode-name, generic-comment-list)
13141         (generic-keywords-list, generic-font-lock-expressions)
13142         (generic-mode-function-list, generic-mode-syntax-table):
13143         Removed variables.
13144         (generic-mode-alist): Renamed to generic-mode-list.
13145         (generic-find-file-regexp): Default changed to "^#".
13146         (generic-read-type): Uses completing read on generic-mode-list.
13147         (generic-mode-sanity-check): removed this function.
13148         (generic-add-to-auto-mode): Removed this function
13149         (generic-mode-internal): Bind mode-specific definitions
13150         into function instead of putting them in alist.
13151         (generic-mode-set-comments): Reworked extensively.
13152         (generic-mode-find-file-hook): Simplified regexp searching
13153         (generic-make-keywords-list): Omit extra pair of parens
13155         * find-lisp.el (find-lisp-find-files-internal):
13156         Make sure directory name ends with "/".
13158         * generic-x.el (apache-conf-generic-mode):
13159         Regexp now allows leading whitespace.
13160         (rc-generic-mode): Added eval-when-compile
13161         around generic-make-keywords-list.
13162         Deleted duplicate regexp
13163         (rul-generic-mode): Added eval-when-compile
13164         around generic-make-keywords-list.
13165         (etc-fstab-generic-mode): New generic mode.
13166         (rul-generic-mode): Removed one eval-when-compile
13167         which caused a max-specpdl-size exceeded error.
13169 2000-10-04  Miles Bader  <miles@gnu.org>
13171         * simple.el (minibuffer-temporary-goal-position): New variable.
13172         (next-history-element): Try to keep the position of point in the
13173         input string constant.
13175         * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
13176         (dired-do-create-files): If there's only one file, pass it in as
13177         the DEFAULT arg to dired-mark-read-file-name.
13179 2000-10-03  Stefan Monnier  <monnier@cs.yale.edu>
13181         * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
13182         (diff-goto-source): Be smarter when choosing REVERSE or not.
13184         * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
13185         (texinfo-mode-menu): Add an explicit shortcut for update all.
13187 2000-10-03  Andre Spiegel  <spiegel@gnu.org>
13189         * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
13190         factorize backend-specific code cleanly (this was essentially
13191         conceived by Stefan Monnier).
13192         (vc-unregister): Function removed.
13193         (vc-revert-file): New function.
13194         (vc-revert-buffer): Delegate some of the work to it.
13196         * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
13197         default branch unconditionally.
13198         (vc-rcs-set-default-branch): New function.
13199         (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
13200         (vc-rcs-checkin): If an appropriate default branch has been set,
13201         force creation of that branch.
13202         (vc-rcs-receive-file): Rewritten to contain only backend-specific
13203         code (as suggested by Stefan Monnier).
13205 2000-10-02  Gerd Moellmann  <gerd@gnu.org>
13207         * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
13208         highlighting overlay with a different face over the overlay
13209         isearch uses to highlight the current match because that can lead
13210         to bad face combinations.
13212         * loadup.el (toplevel): Load faces before isearch.
13214         * isearch.el (isearch-faces): New custom group.
13215         (isearch): New defface; was already tested for in the code.
13216         (isearch-lazy-highlight-face): Changed to defface from defcustom.
13217         (isearch-highlight): Always use face `isearch'.
13219 2000-10-02  Dave Love  <fx@gnu.org>
13221         * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
13222         unused vars.  Treat byte-constant2 like byte-constant.  Fix bogus
13223         comparison of opcode with operand.
13225 2000-10-03  Miles Bader  <miles@gnu.org>
13227         * play/yow.el (yow): Don't display multi-line quotations in a *Help*
13228         buffer, since the echo area will now grow to accommodate them.
13230 2000-10-02  Andre Spiegel  <spiegel@gnu.org>
13232         * vc-hooks.el (vc-registered): If FILE used to be registered under
13233         a certain backend, try that one first.
13235         * vc.el (vc-responsible-backend): Undo the previous change in the
13236         argument list.  Handle multiple backends correctly.
13237         (vc-find-new-backend): Function removed.
13238         (vc-register): Use vc-responsible-backend, as before.
13239         (vc-next-action-on-file): Do use vc-registered, not vc-backend.
13241 2000-10-02  Gerd Moellmann  <gerd@gnu.org>
13243         * startup.el (fancy-splash-head): Change message below the
13244         logo.
13246 2000-10-02  Miles Bader  <miles@lsi.nec.co.jp>
13248         * diff-mode.el (diff-goto-source): Emit a status message.
13249         (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
13250         (diff-test-hunk): Fix doc string.
13251         (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
13252         (diff-advance-after-apply-hunk): New variable.
13253         (diff-apply-hunk): Don't return a value.
13255 2000-10-01  Stefan Monnier  <monnier@cs.yale.edu>
13257         * vc.el (vc-editable-p): Minor optimization.
13258         (edit-vc-file, vc-next-action-on-file): Don't use find-file.
13259         (vc-find-new-backend): New function split from vc-responsible-backend.
13260         (vc-register): Use it.
13261         (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
13262         (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
13263         (vc-default-unregister, vc-revert-buffer): Docstring fix.
13264         (vc-clear-headers): Don't use find-file.
13265         (vc-revert-buffer): Use `and' again (must have been a braino).
13266         (vc-switch-backend): Only prompt if requested.
13267         Short circuit if nothing is to be done.
13268         Don't use vc-resynch-buffer which could lose unsaved editing.
13269         (vc-default-receive-file): Update call to vc-unregister.
13270         (with-vc-file, vc-next-action-on-file):
13271         Use vc-backend rather than vc-registered.
13272         (vc-next-action-on-file): Use intern-soft.
13273         Deal with read-only *vc-diff* buffer.
13274         (vc-transfer-file): Docstring fix.
13276         * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
13277         (vc-rcs-receive-file): Avoid with-vc-properties.
13278         Update call to vc-unregister.
13279         Use constant `RCS' rather than (dynamically bound) var `backend'.
13281 2000-10-01  Andre Spiegel  <spiegel@gnu.org>
13283         * vc.el (vc-next-action-on-file): Update mode line only if file
13284         is visited.
13285         (vc-start-entry): New argument initial-contents.  Don't visit the file
13286         if it isn't already visited.  Brought documentation up-to-date.
13287         (vc-next-action, vc-register): Updated calls to vc-start-entry.
13288         (vc-checkin): New optional arg initial-contents, which is passed to
13289         vc-start-entry.
13290         (vc-finish-logentry): Make sure to bury log buffer only if there
13291         really is one.  Call `vc-resynch-buffer' on log-file, not
13292         buffer-file-name.
13293         (vc-default-comment-history, vc-default-wash-log): New functions.
13294         (vc-index-of): Removed.
13295         (vc-transfer-file): Make do without the above.
13296         (vc-default-receive-file): Call comment-history unconditionally.  Pass
13297         the resulting string to vc-checkin, instead of inserting it into the
13298         comment ring.
13300         * vc-rcs.el (vc-rcs-receive-file): Call comment-history
13301         unconditionally.  Use the comments as initial contents of the log
13302         entry buffer.  Document the trick to force branch creation with no
13303         changes.
13305 2000-10-01  Miles Bader  <miles@gnu.org>
13307         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
13308         `recenter' with an arg to prevent redrawing the display.
13310 2000-09-30  Stefan Monnier  <monnier@cs.yale.edu>
13312         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
13314         * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
13316         * progmodes/c-mode.el (c-mode):
13317         Don't gratuitously override the default for comment-column.
13319         * textmodes/tex-mode.el (latex-metasection-list): New var.
13320         (latex-imenu-create-index): Use it.
13321         Move the regexp construction outside loops (and use push).
13322         (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
13323         (tex-font-lock-keywords): Moved from font-lock.el.
13324         (tex-comment-indent): Remove.
13325         (tex-common-initialization): Don't set comment-indent-function.
13326         (latex-block-default): New var.
13327         (tex-latex-block): Use it to provide a default choice.
13328         Add any unknown choice to latex-block-names.
13329         Insert [...] after {...}.
13330         (tex-last-unended-begin): Simplify regexp.
13331         (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
13332         (latex-forward-sexp-1, latex-forward-sexp): New functions.
13333         (latex-mode): Set forward-sexp-function.
13335         * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
13336         Add regexp for @ignore ... @end ignore.
13337         (texinfo-heading-face): New face.
13338         (texinfo-font-lock-keywords): Use it.
13339         (texinfo-mode-menu): New menu.
13340         (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
13341         New functions.
13342         (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
13343         (texinfo-section-types-regexp, texinfo-section-level-regexp)
13344         (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
13345         Remove declaration.
13346         (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
13348         * delsel.el (delete-selection-mode): Use define-minor-mode.
13350         * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
13352 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
13354         * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
13356 2000-09-30  Gerd Moellmann  <gerd@gnu.org>
13358         * replace.el (keep-lines-read-args): New function.
13359         (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
13360         read arguments interactively.  Add parameters RSTART and REND.
13361         Operate on the active region in Transient Mark mode.
13363         * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
13365         * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
13366         (authors-obsolete-files-regexps): New variable.
13367         (authors-add): Don't record changes in obsolete files.
13369 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
13371         * autoinsert.el (auto-insert-mode): Use define-minor-mode.
13373         * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
13374         (comment-indent): Make sure there's a space between code and comment.
13375         Shift comments left to avoid going past fill-column.
13377 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
13379         * startup.el (startup-echo-area-message): New function.
13380         (display-startup-echo-area-message): Use it.
13381         (fancy-splash-screens): Rewritten to use keymaps and a timer.
13382         (fancy-splash-default-action): New function.
13383         (fancy-splash-screens-1): New function.
13384         (fancy-splash-head): Put a help-echo and a keymap under the image.
13386 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
13388         * diff-mode.el (diff-add-log-file-name): Remove.
13389         (diff-mode): Use add-log-buffer-file-name-function.
13391         * add-log.el (find-change-log): New arg BUFFER-FILE.
13392         (add-log-file-name): Obey add-log-file-name-function.
13393         (add-log-buffer-file-name-function): New var.
13394         (add-change-log-entry): Use it.
13396 2000-09-29  Miles Bader  <miles@gnu.org>
13398         * image-file.el (image-file-name-extensions): New variable.
13399         (image-file-name-regexps): Renamed from `image-file-regexps'.
13400         New default value is nil.  Call `auto-image-file-mode'.
13401         (image-file-name-regexp): New function.
13402         (auto-image-file-mode): New minor mode.
13403         (insert-image-file): Don't make conditional on the image-file
13404         handler being enabled.
13405         (image-file-handler): Make the call here conditional instead.
13406         (set-image-file-handler-enabled, enable-image-file-handler)
13407         (disable-image-file-handler): Functions removed.
13409         * emacs-lisp/authors.el (authors-print): Rephrase many-files
13410         string.
13412 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
13414         * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
13415         it's a function from CL.
13416         (latex-imenu-create-index): Replace eval-when-compile with progn
13417         because latex-section-alist is not bound while compiling.
13419 2000-09-28  Stefan Monnier  <monnier@cs.yale.edu>
13421         * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
13422         (outline-mode): Use define-derived-mode.
13424         * progmodes/perl-mode.el (perl-mode):
13425         * progmodes/awk-mode.el (awk-mode):
13426         * progmodes/asm-mode.el (asm-mode):
13427         Don't gratuitously override the default for comment-column.
13429         * emacs-lisp/lisp.el (lisp-complete-symbol):
13430         Distinguish the let-binding case from the funcall case.
13431         (forward-sexp-function): New variable.
13432         (forward-sexp): Use it.
13434         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
13435         (easy-mmode-defmap): Remove the now useless autoload.
13437         * time.el (display-time-mode): Use define-minor-mode.
13439         * subr.el (add-minor-mode): Don't eval NAME.
13440         Don't depend on the presence of TOGGLE-FUN for any special behavior.
13441         Use if rather than cond.
13443         * simple.el (read-expression-map): Define more properly.
13444         (comment-indent-hook): Remove.
13445         (string-to-syntax): Bug fix.
13447         * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
13448         (cvs-ediff-diff): Fix typo.
13449         (cvs-revert-if-needed): Don't bother preserving read-only.
13451         * paren.el (show-paren-mode): Use define-minor-mode.
13453         * jka-compr.el (auto-compression-mode): Use define-minor-mode.
13454         (toggle-auto-compression): Remove.
13455         (jka-compr-build-file-regexp): Remove useless grouping.
13457         * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
13458         Avoid user-reserved bindings.
13459         (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
13460         (diff-header-face): Revert to grey85.
13462         * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
13464         * complete.el (partial-completion-mode) <defcustom>: Remove.
13465         (partial-completion-mode): Use define-minor-mode.
13466         (PC-do-completion): Understand `completion-auto-help = delay'
13467         to mean to popup the completion buffer only the second time.
13468         (PC-include-file-all-completions, PC-include-file-all-completions)
13469         (PC-include-file-all-completions): Don't quote lambda.
13471         * comint.el (comint-mode-hook): Docstring fix.
13472         (comint-mode): Use define-derived-mode.
13473         (comint-mode-map): Remove obsolete comment.
13474         (make-comint): Minor stylistic change.
13475         (comint-insert-clicked-input): Be more careful to find the overlay.
13476         Use this-command-keys rather than hardcoding mouse-2.
13478         * font-lock.el: Replace confusing (,@ with ,
13479         (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
13480         Don't use regexp-opt-depth.  Spice up the regexp for args.
13481         Don't distinguish between cmds that can take an opt arg or not.
13482         Use `append' and `prepend' rather than `keep'.
13484         * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
13485         (latex-outline-regexp): New var.
13486         (latex-outline-level): New fun.
13487         (latex-section-alist): New var.
13488         (latex-imenu-create-index): Use it.  Use `push' as well.
13489         (tex-shell-map): Initialize it properly.
13490         (tex-mode): Minor stylistic change.
13491         (plain-tex-mode): Use define-derived-mode.
13492         (latex-mode): Use define-derived-mode.
13493         Construct the paragraph regexps in a more readable way.
13494         Set the buffer-local outline-{level,regexp} vars.
13495         (slitex-mode): Derive from latex-mode.
13496         (tex-common-initialization): Don't kill-all-vars anymore.
13497         Add setting for comment-add and font-lock-defaults.
13498         (tex-start-shell): Use with-current-buffer and don't re-init keymap.
13499         (tex-main-file): New fun.  Obey TeX-master as well and remove `.tex'.
13500         (tex-start-tex): New arg DIR (and send a chdir command for it).
13501         Also display the shell buffer and save it in tex-last-buffer-texed.
13502         (tex-region): Use expand-file-name rather than concat.
13503         Remove code made useless by changes in tex-start-tex.
13504         (tex-file): Use tex-main-file and adapt to new tex-start-tex.
13506         * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
13508 2000-09-28  Dave Love  <fx@gnu.org>
13510         * eshell/eshell.el (eshell) <defgroup>: Add :version.
13512 2000-09-28  Gerd Moellmann  <gerd@gnu.org>
13514         * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
13515         `append'.
13517 2000-09-28  Stefan Monnier  <monnier@cs.yale.edu>
13519         * info.el (Info-extract-pointer): Undo last change.
13520         Instead, fix the position of the `bound' arg to re-search-backward.
13522 2000-09-27  Stefan Monnier  <monnier@cs.yale.edu>
13524         * info.el (Info-extract-pointer):
13525         Widen more carefully, to avoid finding pointers in other nodes.
13526         (Info-index): Use push.
13528 2000-09-27  Gerd Moellmann  <gerd@gnu.org>
13530         * frame.el (set-frame-font): Remove call to obsolete function
13531         frame-update-faces.
13532         (set-foreground-color, set-background-color): Likewise for
13533         frame-update-face-colors.
13535 2000-09-27  Miles Bader  <miles@gnu.org>
13537         * image-file.el: New file.
13539 2000-09-27  Gerd Moellmann  <gerd@gnu.org>
13541         * frame.el (frame-notice-user-settings): Don't call
13542         frame-update-faces, which is a no-op now.
13544         * ediff-wind.el (ediff-control-frame-parameters): Add zero
13545         tool-bar-lines.
13547 2000-09-27  Dave Love  <fx@gnu.org>
13549         * mouse.el: Fix last change.
13551 2000-09-27  Miles Bader  <miles@lsi.nec.co.jp>
13553         * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
13555 2000-09-22  Kenichi Handa  <handa@etl.go.jp>
13557         * international/quail.el (quail-help): The output message is
13558         improved.
13560 2000-09-26  Dave Love  <fx@gnu.org>
13562         * mouse.el (popup-menu): If POSITION is nil, set it using
13563         mouse-position.
13565 2000-09-25  Sam Steingold  <sds@gnu.org>
13567         * net/browse-url.el (browse-url-file-url): Check for null maps.
13569 2000-09-26  Gerd Moellmann  <gerd@gnu.org>
13571         * frame.el (frame-notice-user-settings): Don't add a
13572         tool-bar-lines frame parameter to default-frame-alist in batch mode.
13574         * frame.el (frame-notice-user-settings):
13575         Make tool-bar-mode and default-frame-alist consistent.
13577         * toolbar/tool-bar.el (tool-bar-help): New function.
13579 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
13581         * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
13582         current-load-list in top-level forms.  Else this leaks a cons cell
13583         every time a defun is called.
13585         * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
13587 2000-09-25  Dave Love  <fx@gnu.org>
13589         * startup.el (fancy-splash-head): Check XPM is available.
13591         * autoinsert.el (auto-insert): Doc fix.
13592         (auto-insert-alist): Following GNU notices, don't say `copyright
13593         _by_'.  Use line-beginning-position.
13594         (auto-insert): Check buffer-file-name is non-nil before use.
13596 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
13598         * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
13599         starting with `@def' or `@multitable', in addition to ones
13600         specified by the user in auto-fill-inhibit-regexp.
13602 2000-09-25  Markus Rost  <rost@math.ohio-state.edu>
13604         * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
13605         rmail-dont-reply-to-names matches the empty string.
13607 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
13609         * startup.el (command-line-1, fancy-splash-text): Change the
13610         text to sound more friendly.
13612 2000-09-23  Thien-Thi Nguyen  <ttn@gnu.org>
13614         * progmodes/hideshow.el: Update author email address.
13615         Generally, sync w/ maintainer version 5.22.
13616         (hs-hide-all-non-comment-function): New var.
13617         (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
13618         (hs-hide-all): Use `hs-hide-all-non-comment-function'.
13619         (hs-show-region): Delete this command.
13620         (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
13622 2000-09-22  Dave Love  <fx@gnu.org>
13624         * hl-line.el (hl-line-overlay): Don't make it buffer-local.
13625         (hl-line-highlight): Specify buffer when moving overlay.
13627         * progmodes/fortran.el (fortran-mode): Locally set
13628         normal-auto-fill-function.
13629         (fortran-auto-fill-mode): Just alias to auto-fill-mode.
13630         (fortran-mode-map): Adjust auto-fill menu entry.
13632 2000-09-22  Gerd Moellmann  <gerd@gnu.org>
13634         * vc-rcs.el (toplevel): Require `vc' when compiling.
13636         * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
13638 2000-09-22  Andre Spiegel  <spiegel@gnu.org>
13640         * vc.el (vc-switch-backend): Signal an error if the file is not
13641         registered under the new backend.
13643         * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
13644         without explicit revision number.
13646 2000-09-21  Stefan Monnier  <monnier@cs.yale.edu>
13648         * diff-mode.el (diff-file-header-face): Reset to its previous value.
13649         (diff-hunk-text): Correctly use offsets rather than buffer-positions.
13650         (diff-xor): New function.
13651         (diff-find-source-location): Use it.  Fix a stupid name clash.
13652         (diff-hunk-status-msg): New function.
13653         (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
13654         (diff-test-hunk): Use diff-find-source-location.
13655         (diff-goto-source): Favor the `reverse'.
13656         (diff-hunk-text): Properly handle one-sided context diffs.
13657         (diff-apply-hunk): When done, advance to the next hunk.
13659 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
13661         * startup.el (command-line): If frame was created with a non-zero
13662         tool-bar-lines parameter, switch tool-bar-mode on.
13664         * add-log.el (change-log-date-face, change-log-name-face)
13665         (change-log-email-face, change-log-file-face)
13666         (change-log-list-face, change-log-conditionals-face)
13667         (change-log-function-face, change-log-acknowledgement-face):
13668         New faces, inheriting from font-lock faces.
13669         (change-log-font-lock-keywords): Use them.
13671 2000-09-21  Dave Love  <fx@gnu.org>
13673         * progmodes/cperl-mode.el (top-level): Clean up
13674         `eval-when-compile's and assorted defvars.
13675         (cperl-invalid-face): Don't double-quote value.  Change custom
13676         type.
13677         (cperl-mode): Set normal-auto-fill-function and don't zap
13678         auto-fill-function.
13679         (cperl-imenu--function-name-regexp-perl): Renamed from
13680         imenu-example--function-name-regexp-perl.
13681         (cperl-imenu--create-perl-index): Renamed from
13682         imenu-example--create-perl-index.
13683         (cperl-xsub-scan): Don't require cl.
13685         * msb.el (msb-mode-map): Use substitute-key-definition.
13686         (msb-mode): Use msb-mode-map.
13688 2000-09-21  Andre Spiegel  <spiegel@gnu.org>
13690         * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
13691         New functions.
13692         (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
13693         (vc-switch-backend): New function.
13694         (vc-prefix-map): Bind `vc-switch-backend' to `b'.
13695         (vc-register): Fix prompt.
13696         (vc-unregister, vc-default-unregister): New functions.
13697         (vc-version-diff): Handle empty buffer in sentinel.
13699         * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
13700         (vc-rcs-state-heuristic): Use it to guess the state of files with
13701         non-strict locking.
13702         (vc-rcs-find-most-recent-rev): Handle the case when a branch has
13703         been set with -b, but not created yet.
13704         (vc-rcs-fetch-master-state): With non-strict locking, compare file
13705         contents in order to find the state.
13706         (vc-rcs-checkin): Allow creation of branches with no changes.
13707         (vc-rcs-unregister, vc-rcs-receive-file)
13708         (vc-rcs-set-non-strict-locking): New functions.
13710         * vc-hooks.el (vc-name): Force correct computation of the value
13711         in case it is missing.
13713 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
13715         * startup.el (fancy-splash-tail): Use a different foreground
13716         color on a dark frame background.
13718 2000-09-21  Miles Bader  <miles@lsi.nec.co.jp>
13720         * info.el: Use the correct capitalization when making Info-mode
13721         and Info-edit-mode `special' modes.
13723 2000-09-20  Stefan Monnier  <monnier@cs.yale.edu>
13725         * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
13726         (diff-mode): Add support for add-log.el.
13727         (diff-hunk-text): Use char offsets rather than line offsets.
13728         (diff-find-source-location): Replace LINE with line-offset (nil
13729         if not found) and always set POS to a meaningful position.
13730         Adapt to the new char-offsets.
13731         (diff-apply-hunk): Drop support for the unused `select' POPUP.
13732         Adapt to the new diff-find-source-location.
13733         (diff-goto-source): Adapt to the new diff-find-source-location.
13735         * add-log.el (add-log-file-name): New function (split out of
13736         add-change-log-entry).
13737         (add-change-log-entry): Use it.
13738         Call add-log-file-name-function with the changelog file name if
13739         the current buffer is not associated with any file.
13740         Avoid find-file if the selected window is dedicated.
13742         * diff-mode.el (diff-find-source-location):
13743         Move code from diff-apply-hunk.  Return buffer rather than file.
13744         (diff-apply-hunk): Use the new result from  diff-find-source-location.
13745         (diff-goto-source): Use the new diff-find-source-location.
13747 2000-09-20  Dave Love  <fx@gnu.org>
13749         * iswitchb.el: Some doc fixes.
13750         (iswitchb-mode-map): Define completely initially.  Inherit
13751         minibuffer-local-map.
13752         (iswitchb-completion-help) <!iswitchb-xemacs>: Use
13753         fundamental-mode.
13754         (iswitchb-global-map): New variable.
13755         (iswitchb-summaries-to-end): Amalgamate regexps.
13756         (iswitchb-mode): New.
13757         (iswitchb-mode-hook): New variable.
13758         (iswitchb) <defgroup>: Add URL link.  Use group `completion', not
13759         `extensions'.
13761 2000-09-20  Gerd Moellmann  <gerd@gnu.org>
13763         * ehelp.el (electric-help): New defgroup.
13764         (electric-help-shrink-window): New user-option.
13765         (with-electric-help): Use it.
13767         * window.el (shrink-window-if-larger-than-buffer): If face
13768         `mode-line' has a :box, and we're on a graphical frame, add 1
13769         to the needed window height.
13771         * frame.el (frame-notice-user-settings): Add a last parameter nil
13772         to a call to `append', because the last list passed to `append' is
13773         not copied, and so subsequent calls to assq-delete-all will modify
13774         default-frame-alist.
13776         * startup.el (fancy-splash-image): Change :type.
13777         (fancy-splash-head): Use an XBM image if appropriate.
13778         (command-line-1): Show splash screens in more cases.
13780         * startup.el (fancy-splash-text): Don't quote faces.
13782         * dired.el (dired-font-lock-keywords): Undo last change.
13783         (dired-readin): Bind indent-tabs-mode to nil.
13785         * startup.el (fancy-splash-head): If frame's background mode
13786         is `dark', change the black background of the image to gray.
13787         (fancy-splash-screens): Display startup echo area message.
13788         (display-startup-echo-area-message): New function.
13790 2000-09-20  Miles Bader  <miles@lsi.nec.co.jp>
13792         * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
13794         * info.el (info-header-node): Tweak for color ttys.
13796         * faces.el (face-valid-attribute-values): Make sure directories we
13797         search for stipples both exist and are readable before trying to
13798         search them.
13800         * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
13801         in the dry-run case.
13803         * jka-compr.el (with-auto-compression-mode): New macro.
13805         * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
13806         (custom-group-tag-face, custom-variable-tag-face): Use relative
13807         :height and inherit from `variable-pitch' face instead of
13808         hardwiring :family.
13809         * hi-lock.el (hi-black-hb): Likewise.
13811         Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
13812         * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
13813         toolbar-add-item, if image doesn't have a mask add a `:mask
13814         heuristic'.
13816 2000-09-19  Stefan Monnier  <monnier@cs.yale.edu>
13818         * diff-mode.el: Docstring fixes.
13819         (diff-header-face, diff-comment-face): New faces.
13820         (diff-font-lock-keywords): Highlight a bit differently.
13821         (diff-find-source-location): Don't return SPAN any more.
13822         (diff-hunk-text): Don't bother erasing the temp buffer.
13823         (diff-find-text): Drop argument LINE.
13824         (diff-apply-hunk): Update calls to diff-find-text.
13825         (diff-goto-source): Use pop-to-buffer again and don't raise an error.
13827         * calendar/calendar.el: Docstring fixes.
13828         (calendar-make-alist): Don't quote lambda.
13829         (calendar-star-date): Use make-local-variable.
13831 2000-09-19  Dave Love  <fx@gnu.org>
13833         * toolbar/tool-bar.el: Renamed from toolbar.el.
13834         Change `toolbar' to `tool-bar' generally in symbols.
13835         Make some items invisible in `special' major modes.
13836         (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
13837         Add arg PROPS.
13839         * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
13840         Add :version here.
13841         (fancy-splash-delay, fancy-splash-image): Remove :version here.
13843 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
13845         * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
13847         * files.el (find-file-suppress-same-file-warnings): New user-option.
13848         (find-file-noselect): Use it.
13850         * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
13851         (fancy-splash-screen): Defgroup.
13853         * add-log.el (change-log-font-lock-keywords): Match names
13854         more exactly for the case that font-lock-constant-face is
13855         underlined.
13857 2000-09-19  Richard M. Stallman  <rms@gnu.org>
13859         * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
13861 2000-09-19  Andre Spiegel  <spiegel@gnu.org>
13863         * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
13865 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
13867         * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
13868         * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
13869         * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
13870         * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
13871         * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
13872         * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
13873         * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
13874         * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
13875         * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
13876         * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
13877         * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
13878         * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
13880         * startup.el (fancy-splash-text): New variable.
13881         (fancy-splash-delay, fancy-splash-image): New user-options.
13882         (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
13883         (fancy-splash-screens): New functions.
13884         (command-line-1): If display has a `display' frame parameter, has
13885         colors, and we have XPM support, show more fancy splash screens.
13887 2000-09-19  Dave Love  <fx@gnu.org>
13889         * map-ynp.el (map-y-or-n-p): Check use-dialog-box.  Don't lose
13890         with null `help'.  Use modern backquote syntax.
13892 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
13894         * font-lock.el (font-lock-mode): Change message telling the user
13895         that ``the buffer is too big''.
13897         * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
13898         for instance for the case that tab-width is 2.
13900 2000-09-18  Gerd Moellmann  <gerd@gnu.org>
13902         * toolbar/toolbar.el (toolbar-like-menu-item): Like in
13903         toolbar-add-item, if image doesn't have a mask add a `:mask
13904         heuristic'.
13906 2000-09-18  Miles Bader  <miles@lsi.nec.co.jp>
13908         * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
13909         and return a cons if it's non-nil.
13910         (diff-apply-hunk): Try to jump to the line in the source text
13911         corresponding to the position of point in the in the hunk.
13913         * info.el (Info-title-3-face, Info-title-2-face)
13914         (Info-title-1-face): Use face inheritance and relative sizes
13915         instead of hard-wiring things.
13917         * faces.el (secondary-selection): Make dark-background variant sane.
13919 2000-09-16  Andrew Innes  <andrewi@gnu.org>
13921         * makefile.w32-in (compile-files-CMD): No need to make .elc files
13922         read-only, since they aren't under VC now.
13924 2000-09-17  Dave Love  <fx@gnu.org>
13926         * tmm.el: Replace mapcar with mapc in several places.
13928         * loadhist.el (unload-feature): Maybe call elp-restore-list and
13929         ad-unadvise.
13931         * international/latin1-disp.el: New file.
13933         * calendar/cal-move.el (scroll-calendar-left)
13934         (scroll-calendar-right): Make arg optional (for active mode line).
13936         * calendar/calendar.el (calendar-mode-line-format): Make fields
13937         mouse-sensitive.
13938         (calendar-read-date, calendar-read-date, calendar-window-list):
13939         Unquote lambda.
13940         (calendar-month-name): Use aref, not sref.
13942         * view.el (minor-mode-alist): Propertize the string.
13944         * international/characters.el (standard-case-table): Add entries
13945         for Greek.
13947 2000-09-18  Miles Bader  <miles@gnu.org>
13949         * info.el (info-node, info-xref): Add dark-background variants.
13951         * faces.el (header-line): Change defaults to be less confusing
13952         when mixed with mode-lines.
13954         * info.el (Info-fontify-node): Make a few cleanups.
13955         Add extra `help-echo' and `local-map' props to node xrefs.
13956         Use header-specific faces for node-names & xrefs.
13957         (Info-use-header-line): New variable.
13958         (info-header-xref, info-header-node): New faces.
13959         (Info-setup-header-line): New function.
13960         (Info-select-node): Call Info-setup-header-line when enabled.
13961         (Info-extract-pointer): Work even if the header line is hidden.
13962         (Info-header-line): New variable.
13964 2000-09-16  Stefan Monnier  <monnier@cs.yale.edu>
13966         * vms-patch.el (print-region-function): Don't quote lambda.
13968         * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
13970         * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
13971         (lm-get-header-re): Allow spaces between the header and the colon.
13972         (lm-header): Allow $ in non-RCS headers.
13973         (lm-header-multiline): Put the strings back into order.
13974         Stop at an empty line.  Don't require two space chars if the
13975         line is clearly not another header line.
13977         * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
13978         (popup-menu-popup): Remove.
13980 2000-09-15  Gerd Moellmann  <gerd@gnu.org>
13982         * toolbar/toolbar.el (toolbar-add-item): Use the same image
13983         specification if or if not tool-bar item contains an `:enabled'
13984         property.
13986         * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
13987         current buffer has no file name.
13989 2000-09-15  Dave Love  <fx@gnu.org>
13991         * strokes.el: Sync with maintainer's current version with changes
13992         for Emacs, but avoid runtime cl and levents.
13993         (toplevel):  Change autoloads and compilation requires.
13994         (strokes-version, strokes-bug-address, strokes-lift): Values
13995         changed.
13996         (strokes-xpm-header, strokes-insinuated): New variable.
13997         (strokes): Add :link.
13998         (strokes-mode): Customized.
13999         (strokes-while-inhibiting-garbage-collector): New macro.
14000         (strokes-remassoc): Avoid remove-if.
14001         (strokes-fix-button2-command): Don't use ad-do-it.
14002         (strokes-insinuate): New function.
14003         (strokes-button-press-event-p, strokes-button-release-event-p):
14004         New functions, used instead of non-`strokes-' versions..
14005         (strokes-mouse-event-p): Rewritten.
14006         (strokes-event-closest-point): Avoid event-point.
14007         (strokes-get-grid-position): Avoid cdadr, caadr
14008         (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
14009         functions.
14010         (strokes-help): Use with-output-to-temp-buffer.
14011         (strokes-window-configuration-changed-p): New function.
14012         (strokes-update-window-configuration): Use buffer-live-p,
14013         strokes-window-configuration-changed-p.
14014         (strokes-mode): Use strokes-insinuate.  Alter mouse bindings.
14015         (strokes-char-face): New face.
14016         (strokes-char-table, strokes-base64-chars): New variable.
14017         (strokes-xpm-for-stroke, strokes-list-strokes)
14018         (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
14019         (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
14020         (strokes-xpm-to-compressed-string, strokes-decode-buffer)
14021         (strokes-encode-buffer, strokes-xpm-for-compressed-string)
14022         (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
14023         functions.
14025 2000-09-15  Gerd Moellmann  <gerd@gnu.org>
14027         * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
14029         * image.el (create-image): Doc fix.
14031         * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
14032         instead of `:heuristic-mask t'.
14034 2000-09-14  Andrew Innes  <andrewi@gnu.org>
14036         * makefile.w32-in: Revert to Unix line endings.
14038 2000-09-14  Andrew Innes  <andrewi@gnu.org>
14040         * makefile.w32-in: Add bootstrap support.  Also copy lisp source
14041         when installing.
14043         * makefile.nt (DONTCOMPILE): Fix typo.
14045         * shell.el (shell-write-history-on-exit): New function.
14046         (shell-dumb-shell-regexp): New custom variable.
14047         (shell-mode): Make shell-write-history-on-exit the process
14048         sentinel if shell name matches shell-dumb-shell-regexp.
14050         * w32-fns.el: Comment out before-init-hook function which resets
14051         source-directory based; this breaks bootstrap.
14053 2000-09-14  Dave Love  <fx@gnu.org>
14055         * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
14056         toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
14057         toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
14058         toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
14059         toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
14060         toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
14061         toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm:  New.
14062         From Tuomas Kuosmanen <tigert@gimp.org>.  (Gnome icons fetched
14063         from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
14065         * toolbar/toolbar.el: New.
14067         * subdirs.el: Add toolbar.
14069 2000-09-14  Gerd Moellmann  <gerd@gnu.org>
14071         * indent.el (indent-for-tab-command): Doc fix.
14073 2000-09-14  Alex Schroeder  <alex@gnu.org>
14075         * ansi-color.el (ansi-colors): Doc change.
14076         (ansi-color-get-face): Simplified regexp.
14077         (ansi-color-faces-vector): Added more faces, doc change.
14078         (ansi-color-names-vector): Doc change.
14079         (ansi-color-regexp): Simplified regexp.
14080         (ansi-color-parameter-regexp): New regexp.
14081         (ansi-color-filter-apply): Doc change.
14082         (ansi-color-filter-region): Doc change.
14083         (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
14084         deal with zero length parameters.
14085         (ansi-color-apply-on-region): Doc change.
14086         (ansi-color-map): Doc change.
14087         (ansi-color-map-update): Removed debugging message.
14088         (ansi-color-get-face-1): Added condition-case to trap
14089         args-out-of-range errors.
14090         (ansi-color-get-face): Doc change.
14091         (ansi-color-make-face): Removed.
14092         (ansi-color-for-shell-mode): New option.
14094 2000-09-13  Kenichi Handa  <handa@etl.go.jp>
14096         * international/quail.el (quail-start-translation): Translate KEY
14097         if necessary even if it doesn't have any mapping in the current
14098         input method.
14099         (quail-start-conversion): Likewise.
14100         (quail-help): The output message is improved.
14102 2000-09-13  Miles Bader  <miles@gnu.org>
14104         * comint.el (comint-output-filter): Revert to using
14105         `insert-before-markers'.  Add bletcherous hack to undo damage
14106         caused by `insert-before-markers'.  Put `front-sticky' property on
14107         overlays created here so that the field code understands how the
14108         overlay works.  Use a let when making comint-last-prompt-overlay,
14109         so that the code is easier to read.
14111 2000-09-13  Dave Love  <fx@gnu.org>
14113         * wid-edit.el (widget-default-format-handler): DTRT when
14114         doc-property is a function.
14116 2000-09-12  Francesco Potorti`  <pot@gnu.org>
14118         * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
14119         filed name if it's not there.
14121 2000-09-12  Dave Love  <fx@gnu.org>
14123         * simple.el (read-mail-command): Doc fix.
14124         (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
14126         * vc.el (vc-dired-listing-switches): Fix :version.
14128         * vc-hooks.el: Doc fixes.
14130         * subr.el (add-minor-mode): Use toggle-fun arg.
14132         * speedbar.el: Add :version to several defcustoms.
14134         * imenu.el (imenu--truncate-items, imenu--cleanup)
14135         (imenu--generic-function): Avoid mapcar.
14136         (imenu--replace-spaces): Function removed.
14137         (imenu--completion-buffer): Use subst-char-in-string.
14138         (imenu-add-to-menubar): Use keymap inheritance.
14140 2000-09-12  Miles Bader  <miles@gnu.org>
14142         * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
14143         (diff-mode-map): Bind `diff-test-hunk'.
14144         (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
14146 2000-09-11  Gerd Moellmann  <gerd@gnu.org>
14148         * bytecomp.el (byte-compile-defvar): Undo last change
14149         because it breaks '(make-variable-buffer-local (defvar ...)'
14150         which is used at least in dired.
14152 2000-09-12  Kenichi Handa  <handa@etl.go.jp>
14154         * international/quail.el (quail-define-package): Docstring
14155         modified.
14157 2000-09-12  Kenichi Handa  <handa@etl.go.jp>
14159         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
14160         extra docstrings for "chinese-ccdospy", "chinese-ecdict",
14161         "chinese-etzy", "chinese-sw", and "chinese-ziranma".  Modify the
14162         docstring of "chinese-py".
14164         * international/quail.el (quail-translation-docstring): New
14165         variable.
14166         (quail-show-keyboard-layout): Docstring modified.
14167         (quail-select-current): Likewise.
14168         (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
14169         infinite recursive call.
14170         (quail-help): Check quail-translation-docstring.  Format of the
14171         output changed.
14172         (quail-help-insert-keymap-description): Adjusted for the above
14173         change.
14175 2000-09-11  Gerd Moellmann  <gerd@gnu.org>
14177         * bytecomp.el (byte-compile-defvar): Only cons onto
14178         current-load-list in top-level forms.  Else this leaks a cons cell
14179         every time a defun is called.
14181 2000-09-11  Miles Bader  <miles@lsi.nec.co.jp>
14183         * diff-mode.el (diff-apply-hunk): Function basically rewritten.
14184         Now understands non-unified diffs.  Some functionality moved into
14185         `diff-hunk-text' and `diff-find-text'.  Add OTHER-FILE, DRY-RUN,
14186         POPUP, and NOERROR arguments.  If DRY-RUN is true, don't actually
14187         modify anything.  Only reposition point in the patched file if the
14188         patch succeeds.  Only pop up another window if POPUP is true.
14189         Emit a message describing what happened if successful, and at what
14190         line-offset.  Automatically detect reversed hunks and do something
14191         appropriate.
14192         (diff-hunk-text, diff-find-text): New functions.
14193         (diff-filter-lines): Function removed.
14194         (diff-test-hunk): New function.
14195         (diff-goto-source): Rewritten in terms of diff-apply-hunk.
14197 2000-09-10  Dave Love  <fx@gnu.org>
14199         * textmodes/tildify.el: Minor doc/commentary fixes.
14200         (tildify) <defgroup>: Add :version.
14202         * faces.el (face-x-resources): Make custom type more specific.
14203         (frame-background-mode): Use mapc.
14204         (region) <defcustom>: Add :version.
14206 2000-09-08  Stefan Monnier  <monnier@cs.yale.edu>
14208         * vc-sccs.el (vc-sccs-register):
14209         * vc-rcs.el (vc-rcs-register):
14210         * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
14211         * vc.el (vc-register): Clear file's properties.
14213 2000-09-08  Gerd Moellmann  <gerd@gnu.org>
14215         * faces.el (face-spec-set): Only face-spec-reset-face when
14216         ATTRS is non-nil.
14218 2000-09-08  Eli Zaretskii  <eliz@is.elta.co.il>
14220         * help.el (help-insert-xref-button): Fix a typo in doc string.
14222 2000-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
14224         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
14225         Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
14226         methods.
14228         * menu-bar.el (read-mail-item-name): New function.
14229         (menu-bar-tools-menu): Use it to compute and display the package
14230         used to read email.
14231         (menu-bar-tools-menu): Fix typo in GUD's help string.
14233 2000-09-07  Dave Love  <fx@gnu.org>
14235         * diff-mode.el (diff-mouse-goto-source): New function.
14237         * vc-sccs.el: Doc fixes.
14238         (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
14240         * vc-rcs.el: Doc fixes.
14241         (vc-rcs-register-switches, vc-rcs-checkin-switches)
14242         (vc-rcs-checkout-switches, vc-rcs-header)
14243         (vc-rcs-master-templates): Add or change :version.
14245         * vc-cvs.el: Doc fixes.
14246         (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
14247         (vc-cvs-stay-local): Add :version.
14249         * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
14251 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
14253         * international/quail.el (quail-help): Fix previous change.
14255 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
14257         * faces.el (color-values): Doc fix.
14259         * faces.el (frame-set-background-mode): Use frame-parameter
14260         instead of frame-parameters.
14262         * frame.el (filtered-frame-list): Reduce consing.
14263         (frames-on-display-list): Call frame-parameter instead of
14264         frame-parameters.
14266 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
14268         * language/devan-util.el (devanagari-to-indian-region): In the
14269         loop, change the following char, not preceding char.
14271 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
14273         * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
14274         instead of frame-parameters.
14276         * faces.el (set-face-attribute): Simplify by calling
14277         internal-set-lisp-face-attribute with FRAME being 0.
14279         * vc.el: Remove `Id' version control keyword.
14281 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
14283         * help.el (help-make-xrefs): Adjusted for the change of
14284         help-xref-mule-regexp.
14285         (help-insert-xref-button): New function.
14287         * international/mule-cmds.el (help-xref-mule-regexp-template):
14288         Include the pattern for character set.
14289         (leim): New group.
14291         * international/quail.el: Don't require face.
14292         (quail): New group.
14293         (quail-other-command): Dummy command to make quail-help work better.
14294         (quail-keyboard-layout-alist): Add Keyboard type "jp106".
14295         (quail-keyboard-layout-substitution): New variable.
14296         (quail-update-keyboard-layout): New function.
14297         (quail-keyboard-layout-type): New customizable variable.
14298         (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
14299         (quail-keyboard-translate): Pay attention to
14300         quail-keyboard-layout-substitution.
14301         (quail-insert-kbd-layout): New function.
14302         (quail-show-keyboard-layout): New function.
14303         (quail-get-translation): If the definition is a vector of length
14304         1, and the element is a string of length 1, return the character
14305         in that string.
14306         (quail-update-current-translations): Fix the case of
14307         relative-index out of range.
14308         (quail-build-decode-map, quail-insert-decode-map): New Functions.
14309         (quail-help): Show keyboard layout by quail-insert-kbd-layout.
14310         Show key sequences for all available characters.
14311         (quail-help-insert-keymap-description): Don't show such verbose
14312         key bindings as quail-self-insert-command.
14314         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
14315         Format changed, and each element now have extra documentations.
14316         (tit-process-header): Delete invalid characters from TIT-PROMPT.
14317         Adjusted for the change of quail-cxterm-package-ext-info.
14319 2000-09-06  Gerd Moellmann  <gerd@gnu.org>
14321         * vc-hooks.el (toplevel): Don't require `vc' during compilation;
14322         requiring it leads to a recursive loading of vc.el and vc-hooks.el
14323         during bootstrap.
14325 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
14327         * vc.el: (toplevel): Don't require `dired' at run-time.
14328         (vc-dired-resynch-file): Remove autoload cookie.
14330 2000-09-05  Andre Spiegel  <spiegel@gnu.org>
14332         * vc.el: Made several backend functions optional.
14333         (vc-default-responsible-p): New function.
14334         (vc-merge): Use RET for first version to trigger merge-news, not
14335         prefix arg.
14336         (vc-annotate): Handle backends that do not support annotation.
14337         (vc-default-merge-news): Removed.  The existence of a merge-news
14338         implementation is now checked on caller sites.
14340         * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
14341         case.
14343         * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
14344         special case that has been removed from the default in vc-hooks.el.
14346 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
14348         * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
14350 2000-09-05  Andre Spiegel  <spiegel@gnu.org>
14352         * vc-hooks.el: Require vc during compilation.
14353         (vc-file-setprop): Use `vc-touched-properties' if bound by the new
14354         macro `with-vc-properties' in vc.el.
14355         (vc-file-getprop): Doc fix.
14356         (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
14358         * vc.el: Require dired-aux during compilation.
14359         (vc-name-assoc-file): Moved to vc-sccs.el.
14360         (with-vc-properties): New macro.
14361         (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
14362         vc-finish-steal): Use it.
14363         (vc-cancel-version): Moved RCS-specific code to vc-rcs.el.  The call
14364         to the backend-specific function is now supposed to do the checkout,
14365         too.
14366         (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
14368         * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
14369         set file properties; that gets done in the generic code now.
14371         * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
14372         Changed parameter list, added code from vc.el that does the
14373         checkout, possibly with a double-take.
14375         * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
14376         (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
14377         the above under the new name.
14378         (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'.  Changed
14379         parameter list, added checkout command.
14380         (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
14381         properties; that gets done in the generic code now.
14383 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
14385         * vc.el: Docstring fixes (courtesy of checkdoc).
14387 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
14389         * vc.el (vc-checkout-writable-buffer-hook)
14390         (vc-checkout-writable-buffer): Remove.
14391         (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
14392         (vc-log-mode): Make it into a clean derived major mode.
14393         (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
14394         vc-log-mode if log-edit is not available.
14395         (vc-dired-mode-map): Don't set-keymap-parent yet.
14396         (vc-dired-mode): Do set-keymap-parent here.
14397         (vc-dired-buffers-for-dir): Nop if dired is not loaded.
14399 2000-09-05  Gerd Moellmann  <gerd@gnu.org>
14401         * faces.el (set-face-attribute, face-spec-reset-face)
14402         (face-spec-set): Avoid consing by removing calls to `apply'.
14404         * frame.el (frame-parameter): Move to C code.
14406 2000-09-05  Dave Love  <fx@gnu.org>
14408         * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
14409         insert-before-markers-and-inherit.  Now checked systematically!
14411 2000-09-05  Alex Schroeder  <alex@gnu.org>
14413         * sql.el (sql-postgres): Use sql-postgres-options.
14414         (sql-postgres-options): New variable.
14416 2000-09-05  Alex Schroeder  <alex@gnu.org>
14418         * sql.el (sql-mode-menu): Work around missing variable mark-active
14419         in XEmacs.
14420         (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
14421         (sql-interactive-mode): Added call to easy-menu-add for XEmacs
14422         compatibility.
14424 2000-09-04  Gerd Moellmann  <gerd@gnu.org>
14426         * vc.el (vc-dired-resynch-file): Add autoload cookie.
14428         * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
14430         * Makefile.in (DONTCOMPILE): Fix typo in file name.
14432 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14434         * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
14435         don't support anything else under SCCS yet.
14437         * vc-hooks.el: Minor doc fixes.
14439 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14441         * vc.el (vc-next-action-on-file): Do not visit the file if it's
14442         not necessary.  If verbose in state `needs-patch', do the same as
14443         under `up-to-date'.  When NOT verbose and `needs-patch', check out
14444         latest version instead of `merge-news'.
14445         (vc-next-action-dired): Don't mess with default-directory here; it
14446         breaks other parts of dired.  It is the job of the
14447         backend-specific functions to adjust it temporarily if they need it.
14448         (vc-next-action): Remove a special CVS case.
14449         (vc-clear-headers): New optional arg FILE.
14450         (vc-checkin, vc-checkout): Set properties vc-state and
14451         vc-checkout-time properly.
14452         (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
14453         (vc-print-log): Use new backend function `show-log-entry'.
14454         (vc-cancel-version): Do the checks in a different order.  Added a
14455         FIXME concerning RCS-only code.
14457         * vc-rcs.el (vc-rcs-show-log-entry): New function.
14458         (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
14460         * vc-cvs.el (vc-cvs-show-log-entry): New function.
14462         * vc-hooks.el (vc-default-mode-line-string): Show state
14463         `needs-patch' as a `-' too.
14465 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14467         * vc.el (vc-responsible-backend): New optional arg REGISTER.
14468         (vc-default-could-register): New function.
14469         (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
14470         (vc-resynch-buffer): Call vc-dired-resynch-file.
14471         (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
14472         vc-resynch-buffer instead of vc-resynch-window.
14473         (vc-next-action-dired): Don't redisplay here, that gets done as a
14474         result of the individual file operations.
14475         (vc-retrieve-snapshot): Corrected prompt order.
14477         * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
14479         * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
14480         as well.
14481         (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p.  Handle
14482         hostname regexps.  Updated all callers.
14483         (vc-cvs-responsible-p): Handle directories as well.
14484         (vc-cvs-could-register): New function.
14485         (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
14486         properties up-to-date.
14488         * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
14489         user whether to create one.
14491 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14493         * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
14494         check out a non-existing file.
14496         * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
14497         workfile does not exist.
14499         * vc.el (vc-version-diff): Use `require' to check for existence of
14500         diff-mode.
14502 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14504         * vc-cvs.el (vc-cvs-registered): Use new function
14505         vc-cvs-parse-entry to do the actual work.
14507 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14509         * vc-hooks.el (vc-find-backend-function): If function doesn't
14510         exist, return nil instead of error.
14511         (vc-call-backend): Doc fix.
14513         * vc.el (vc-do-command): Doc fix.
14514         (vc-finish-logentry): When checking in from vc-dired, choose the
14515         right backend for logentry check.
14516         (vc-dired-mode-map): Inherit from dired-mode-map.
14517         (vc-dired-mode): Local value of dired-move-to-filename-regexp
14518         simplified.
14519         (vc-dired-state-info): Removed, updated caller.
14520         (vc-default-dired-state-info): Use parentheses instead of hyphens.
14521         (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
14522         (vc-dired-listing-switches): New variable.
14523         (vc-directory): Use it, instead of dired-listing-switches.
14525         * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
14526         (vc-cvs-dir-state): New function.
14527         (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
14528         (vc-cvs-parse-entry): New function, also to be used in
14529         vc-cvs-registered.
14531 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14533         * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
14534         *or* single-window-frames.
14536 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14538         * vc.el (vc-update-changelog): Split into generic part and default
14539         implementation.  Doc string adapted.
14540         (vc-default-update-changelog): New function.  Call the `rcs2log'
14541         script in exec-directory, to fix a long-standing nuisance.
14543         * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
14544         simply signals an error.
14546 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14548         * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
14549         control-flow more clear and to avoid running `cvs' twice.
14551         * vc.el (vc-next-action-on-file): Doc fix.
14552         (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
14553         (vc-print-log): Eval `file' before constructing the continuation.
14555 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14557         * vc.el (vc-next-action-on-file): Corrected several messages.
14558         (vc-merge): Add prefix arg `merge-news'; handle it.
14560         * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
14561         is not reached.  It is.
14562         (vc-cvs-merge): Set state to 'edited after merge.
14563         (vc-cvs-merge-news): Set workfile version to nil if not known.
14564         (vc-cvs-latest-on-branch-p): Recommented.  Candidate for removal.
14566         * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
14567         via stdout. (Merge from main line.)
14569 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14571         * vc.el (vc-finish-logentry): Thinko in the "same comment"
14572         detection.
14574 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14576         * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
14577         against kill-all-local-variables.
14578         (vc-log-edit): Don't save vc-parent-buffer any more.
14579         (vc-last-comment-match): Initialize to an empty string.
14580         (vc-post-command-functions): New hook.
14581         (vc-do-command): Run it.
14582         (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
14583         (vc-finish-logentry): Only add the comment to the ring if it's
14584         different from the last comment entered.
14585         (vc-new-comment-index): New function.
14586         (vc-previous-comment): Use it.  Make the minibuffer message
14587         slightly less terse.
14588         (vc-comment-search-reverse): Make it work forward as well.  Don't
14589         set vc-comment-ring-index if no match is found.  Use
14590         vc-new-comment-index.
14591         (vc-comment-search-forward): Use vc-comment-search-reverse.
14592         (vc-dired-mode-map): Don't inherit from dired-mode-map since
14593         define-derived-mode will do it for us.  Bind `v' to a keymap that
14594         inherits from vc-prefix-map so that we can bind `vt' without
14595         binding C-x v t.
14596         (vc-retrieve-snapshot): Parenthesis typo.
14598         * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
14599         to 1.  Make sure to switch to *vc* before looking for an error
14600         message.  Use vc-parse-buffer.
14602 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14604         * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
14605         and NAME.
14606         (vc-retrieve-snapshot): Split into two parts.
14607         (vc-default-retrieve-snapshot): New function.
14609         * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
14610         (vc-cvs-retrieve-snapshot): New function (untested).
14611         (vc-cvs-stay-local): Default to t.
14612         (vc-cvs-remote-p): New function and property.
14613         (vc-cvs-state): Stay local only if the above is t.
14614         (vc-handle-cvs): Removed.
14615         (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
14616         done via vc-handled-backends now.
14617         (vc-cvs-header): Escape Id.
14619 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14621         * vc.el (vc-do-command): Remove unused commands.
14622         (vc-version-diff): Make sure default-directory ends with a slash.
14623         Move the window commands into a vc-exec-after.
14624         (vc-print-log): Move more of the code into the `vc-exec-after'.
14626 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14628         * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
14629         (vc-print-log): Search current revision from beginning of buffer.
14630         (vc-revert-buffer): Clear echo area after the diff is finished.
14631         (vc-prefix-map): Removed definition of "t" for terse display in vc
14632         dired.
14633         (vc-dired-mode-map): Inherit from dired-mode-map.  Added
14634         definition of "vt" for terse display.
14635         (vc-dired-mode): Fix dired-move-to-filename-regexp.
14637 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14639         * vc.el (vc-exec-after): Avoid caddr.
14641 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14643         * vc.el (vc-exec-after): New function.
14644         (vc-do-command): Use it to add a termination message for async
14645         procs.
14646         (vc-checkout): Try to handle a missing-backend situation.
14647         (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
14648         of a directory with a backend using async diffs.
14649         (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
14650         present.
14652         * vc-sccs.el (vc-sccs-state-heuristic): Use
14653         file-ownership-preserved-p.
14655         * vc-rcs.el (vc-rcs-state-heuristic): Use
14656         file-ownership-preserved-p.
14657         (vc-rcs-checkout): Remove the error-handling for missing-rcs.
14659 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14661         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
14662         vc-do-command.
14664         * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
14665         when there are no changes.
14667 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14669         * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
14671         * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
14673 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14675         * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
14677         * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
14678         the `fset' outside of the defvar so that it works even if
14679         vc-prefix-map was already defined.
14680         (vc-setup-buffer): New function, split out of vc-do-command.
14681         (vc-do-command): Allow BUFFER to be t to mean `just use the
14682         current buffer without any fuss'.
14683         (vc-version-diff): Change the `diff' backend operation to just put
14684         the diff in the current buffer without erasing it.  Always use
14685         *vc-diff* even for directory-diffs.  Use vc-setup-buffer.  Protect
14686         shrink-window-if-larger-than-buffer.
14687         (vc-print-log): Change the `print-log' backend operation to just
14688         put the log in the current buffer without erasing it.  Protect
14689         shrink-window-if-larger-than-buffer.
14690         (vc-update-change-log): Fix setd typo.
14692         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
14693         (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
14695         * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
14696         (vc-rcs-diff): Insert in the current buffer and remove unused arg
14697         CMP.
14699         * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
14700         with-temp-file.  Use the new BUFFER=t argument to vc-do-command.
14701         (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
14703 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14705         * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
14706         not possible, use vc-BACKEND-workfile-unchanged-p.
14707         (vc-default-workfile-unchanged-p): New function.  Delegates to a
14708         full vc-BACKEND-diff.
14710         * vc-hooks.el (vc-simple-command): Removed.
14712         * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
14713         instead of vc-simple-command.
14714         (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
14715         avoid doing a diff when opening a file.
14716         (vc-rcs-state): Added check for unlocked-changes.
14717         (vc-rcs-header): Escape Id.
14718         (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
14719         (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
14720         version.
14722         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
14723         (vc-sccs-diff): Remove optional arg CMP.
14724         (vc-sccs-state): Call vc-workfile-unchanged-p, not the
14725         SCCS-specific function.
14727         * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
14728         vc-simple-command.
14730 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14732         * vc.el (vc-editable-p): Renamed from vc-writable-p.
14733         (with-vc-file, vc-merge): Use vc-editable-p.
14734         (vc-do-command): Remove unused var vc-file and fix the
14735         doubly-defined `status' var.  Add a user message when starting an
14736         async command.
14737         (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
14738         (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
14739         Use with-current-buffer.
14740         (vc-buffer-sync): Use unless.
14741         (vc-next-action-on-file): If the file is 'edited by read-only,
14742         make it read-write instead of trying to commit.
14743         (vc-version-diff, vc-update-change-log): Use `setq
14744         default-directory' rather than `cd'.
14745         (vc-log-edit): Don't forget to set default-directory in the
14746         buffer.
14748         * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
14749         (vc-sccs-state-heuristic): Use file-writable-p instead of
14750         comparing userids.
14751         (vc-sccs-checkout): Use `unless'.
14753         * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
14754         of comparing userids.
14755         (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
14756         Simplify the logic by eliminating unreachable code.
14757         (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
14758         just do a recursive call if we need to retry.
14759         (vc-rcs-checkout): Handle the case where rcs is missing by making
14760         the buffer read-write if requested and re-signalling the error.
14762         * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
14764 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14766         * vc-hooks.el (vc-handled-backends): Docstring change.
14767         (vc-ignore-vc-files): Mark obsolete.
14768         (vc-registered): Check vc-ignore-vc-files.
14769         (vc-find-file-hook, vc-file-not-found-hook): Don't check
14770         vc-ignore-vc-files.
14772         * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
14774 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14776         * vc.el (vc-checkout): Don't do anything special for ange-ftp
14777         files since ange-ftp already has vc-registered return nil.
14779         * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
14780         (vc-sccs-workfile-version): Use with-temp-buffer and new
14781         vc-parse-buffer and don't bother setting the property.
14782         (vc-sccs-add-triple): Use with-current-buffer and
14783         find-file-noselect.
14784         (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
14786         * vc-rcs.el (vc-rcs-find-most-recent-rev): New function.  The code
14787         derives from the old vc-parse-buffer but uses the revision number
14788         rather than the date (much easier to compare robustly).
14789         (vc-rcs-fetch-master-state): Use `with-temp-buffer'.  Adapt to the
14790         new vc-parse-buffer (and vc-rcs-find-most-recent-rev).  Find the
14791         locking-user more directly.  Check strict locking and set
14792         checkout-model appropriately.
14793         (vc-rcs-parse-locks): Remove.
14794         (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
14795         new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
14796         (vc-rcs-system-release): Use with-current-buffer and
14797         vc-parse-buffer.
14798         (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
14800         * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
14801         (vc-simple-command): Docstring fix.
14802         (vc-registered): Align the way the file-handler is called with the
14803         way the function itself works.
14804         (vc-file-owner): Remove.
14806         * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer.  Reorder
14807         extraction of fields and call to file-attributes because of a
14808         temporary bug in rcp.el.
14809         (vc-cvs-fetch-status): Use with-current-buffer.
14811 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14813         * vc.el (vc-do-command): Use file-relative-name.
14814         (vc-responsible-backend): Use vc-backend if possible.
14815         (vc-create-snapshot): Improve the `interactive' spec. Add support
14816         for branches and dispatch to backend-specific `create-snapshot'.
14817         (vc-default-create-snapshot): New function, containing the bulk of
14818         the old vc-create-snapshot.
14819         (vc-retrieve-snapshot): Improve the interactive spec.
14821         * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
14822         (vc-backend-hook-functions): Remove.
14823         (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
14824         (vc-backend): Reintroduce the test for `file = nil' now that I
14825         know why it was there (and added a comment to better remember).
14827         * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
14828         code from vc-sccs-hooks.el.
14829         (vc-sccs-release, vc-sccs-system-release): Remove.  Don't require
14830         'vc anymore.
14831         (vc-sccs-responsible-p): Use expand-file-name instead of concat
14832         and file-directory-p instead of file-exists-p.
14833         (vc-sccs-check-headers): Simplify the regexp.
14835         * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
14836         from vc-rcs-hooks.el.  Don't require 'vc anymore.
14837         (vc-rcs-responsible-p): Use expand-file-name instead of concat and
14838         file-directory-p instead of file-exists-p.
14840         * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
14841         from vc-cvs-hooks.el.
14842         (proto vc-cvs-registered): Require 'vc-cvs instead of
14843         'vc-cvs-hooks.  Don't require 'vc anymore.
14844         (vc-cvs-responsible-p): Use expand-file-name instead of concat and
14845         file-directory-p instead of file-exists-p.
14846         (vc-cvs-create-snapshot): New function, replacing
14847         vc-cvs-assign-name.
14848         (vc-cvs-assign-name): Remove.
14850 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14852         * vc-cvs.el (vc-cvs-header): New var.
14854         * vc-rcs.el (vc-rcs-exists): Remove.
14855         (vc-rcs-header): New var.
14857         * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
14858         `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
14859         (vc-sccs-header): New var.
14861         * vc.el (vc-do-command): Get rid of the `last' argument.
14862         (vc-header-alist): Remove, replaced by vc-X-header.
14863         (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
14864         (vc-dired-hook): Use expand-file-name instead of concat.
14865         (vc-directory): Use file-name-as-directory.
14866         (vc-snapshot-precondition, vc-create-snapshot)
14867         (vc-retrieve-snapshot): Allow the command to operate on any
14868         directory.
14870         * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
14871         just removing the 'WORKFILE argument or by removing the 'MASTER
14872         argument and replacing `file' with (vc-name file).
14874 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14876         * vc.el: Update Copyright and add a crude list of backend funs.
14877         (vc-writable-p): New function.
14878         (with-vc-file): Use vc-writable-p.
14879         (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
14880         (vc-register): Avoid vc-name.
14881         (vc-locking-user): Remove.
14882         (vc-steal-lock): Make the `owner' arg non-optional.
14883         (vc-merge): Use vc-writable-p instead of vc-locking-user and
14884         vc-checkout-model.
14885         (vc-default-dired-state-info): Use vc-state instead of
14886         vc-locking-user and return special strings for special states.
14887         (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
14888         and get rid of one of the special CVS cases.
14889         (vc-cancel-version): prettify error message with \\[...].
14890         (vc-rename-master): New function.
14891         (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
14892         use vc-rename-master) instead of vc-BACKEND-record-rename.  Make
14893         the CVS special case generic.
14894         (vc-default-record-rename): Remove.
14895         (vc-file-tree-walk-internal): Only call FUNC for files that are
14896         under control of some VC backend and replace `concat' with
14897         expand-file-name.
14898         (vc-file-tree-walk): Update docstring.
14899         (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
14900         (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
14902         * vc-sccs.el (vc-sccs-rename-file): Renamed from
14903         vc-sccs-record-rename.  Use `find-file-noselect' rather than
14904         `find-file' and call `vc-rename-master' to do the actual move.
14905         (vc-sccs-diff): Remove unused `backend' variable.
14907         * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
14908         to delay loading of vc-sccs until it is really used.
14909         (vc-sccs-master-templates): Preload.
14910         (vc-sccs-state): Update call to vc-sccs-parse-locks.
14911         (vc-sccs-project-dir): Remove (merged into
14912         vc-sccs-search-project-dir).
14913         (vc-sccs-search-project-dir): Rewrite using file name handling ops
14914         rather than `concat', make sure it is preloaded and don't bother
14915         to check that the file actually exists.
14916         (vc-sccs-parse-locks): Remove unused `file' argument, remove
14917         `locks' argument (use buffer's content instead) and eliminate n^2
14918         behavior.
14920         * vc-rcs.el: Update Copyright.
14921         (vc-rcs-rename-file): New function.
14922         (vc-rcs-diff): Remove unused `backend' variable.
14924         * vc-hooks.el: Update Copyright.
14925         (vc-backend): Don't accept a nil argument any more.
14926         (vc-up-to-date-p): Turn into a defsubst.
14927         (vc-possible-master): New function.
14928         (vc-check-master-templates): Use `vc-possible-master' and allow
14929         funs in vc-X-master-templates to return a non-existent file.
14931         * vc-cvs.el: Update Copyright.
14932         (vc-cvs-diff): Remove unused `backend' variable.
14933         (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
14935         * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
14937 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14939         * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
14940         since it can be called from vc-rcs.el.
14941         (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
14943 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
14945         * vc.el (vc-version-diff): Expand file name read from the
14946         minibuffer.  Handle the case when a previous version number can't
14947         be guessed.  Give suitable messages when there were no differences
14948         found.
14949         (vc-clear-headers): Call backend-specific implementation, if one
14950         exists.
14951         (vc-cancel-version): Made error checks generic.  When done, clear
14952         headers generically, too.
14954         * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
14955         from vc-clear-headers in vc.el.
14957         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
14958         correctly.
14959         (vc-rcs-latest-on-branch-p): Made second argument VERSION
14960         optional.  Handle the case when it's not there.
14962 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14964         * vc.el (vc-locking-user): Moved from vc-hooks.el.
14966 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14968         * vc-hooks.el (vc-loadup): Remove.
14969         (vc-find-backend-function): Use `require'.  Also, handle the case
14970         where vc-BACKEND-hooks.el doesn't exist.
14971         (vc-call-backend): Cleanup.
14973 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14975         * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
14976         vc-rcs-grab-templates)
14977         (vc-rcs-registered): Remove.  The default function works as well.
14978         * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
14979         vc-sccs-grab-templates)
14980         (vc-sccs-registered): Remove.  The default function works as well.
14982         * vc.el (vc-version-diff): Left out a vc- in call to
14983         vc-call-backend.
14984         (vc-default-dired-state-info, vc-default-record-rename)
14985         (vc-default-merge-news): Update for the new backend argument.
14987         * vc-hooks.el (vc-find-backend-function): Return a cons cell if
14988         using the default function.
14989         (vc-call-backend): If calling the default function, pass it the
14990         backend as first argument.  Update the docstring accordingly.
14991         (vc-default-state-heuristic, vc-default-mode-line-string): Update
14992         for the new backend argument.
14993         (vc-make-backend-sym): Renamed from vc-make-backend-function.
14994         (vc-find-backend-function): Use the new name.
14995         (vc-default-registered): New function.
14997 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
14999         * vc.el (vc-merge): Use vc-find-backend-function.
15001         * vc-hooks.el (vc-backend-functions): Remove.
15002         (vc-loadup): Don't setup 'vc-functions.
15003         (vc-find-backend-function): New function.
15004         (vc-call-backend): Use above fun and populate 'vc-functions
15005         lazily.
15006         (vc-backend-defines): Remove.
15008 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15010         * vc.el (vc-register): Put a FIXME note for a newly found bug.
15011         Call vc-call-backend without the leading vc-.
15012         (vc-responsible-backend, vc-finish-logentry, vc-annotate)
15013         (vc-check-headers): Call vc-call-backend without the leading vc-.
15014         (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
15015         (vc-annotate-display): Replace confusing use of `cond' with `or'.
15016         Call vc-call-backend without the leading vc-.
15018         * vc-cvs.el (tail): Provide vc-cvs.
15019         * vc-sccs.el (tail): Provide vc-sccs.
15020         * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
15022         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
15023         (vc-make-backend-function, vc-call): Pass names without leading
15024         `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
15025         (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
15026         (vc-call-backend): Always try to load vc-X-hooks.
15027         (vc-registered): Remove vc- in call to vc-call-backend.
15029 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15031         * vc.el (vc-process-filter): New function.
15032         (vc-do-command): Setup `vc-process-filter' for the async process.
15033         (vc-maybe-resolve-conflicts): New function to reduce
15034         code-duplication.  Additionally, it puts the buffer in
15035         `smerge-mode' if applicable.
15036         (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
15037         calling `merge-news'.
15038         (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
15039         (vc-log-edit): New function.  Replacement for `vc-log-mode' by
15040         interfacing to log-edit.el.
15041         (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
15042         log-edit is available.
15043         (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
15045 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15047         * vc.el (vc-register): Remove `vc-buffer-backend' setup.
15048         (vc-log-mode-map): New name for vc-log-entry-mode and merge the
15049         defvar and the initialization.
15050         (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
15052         * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
15053         (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
15055         * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
15057 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
15059         * vc.el (vc-file-clear-masterprops): Removed.
15060         (vc-checkin, vc-revert-buffer): Removed calls to the above.
15061         (vc-version-diff): Use buffer-size without argument.
15062         (vc-register): Heed vc-initial-comment.
15064         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
15065         default branch.
15067         * vc-rcs.el (vc-rcs-register): Parse command output to find master
15068         file name and workfile version.
15069         (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
15071         * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
15072         vc-file-clear-masterprops.
15074         * vc-sccs.el (vc-sccs-checkout): Removed call to
15075         vc-file-clear-masterprops.  If writable, set vc-state to 'edited
15076         rather than user login name.
15079 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15081         * vc.el (vc-workfile-unchanged-p): Remove unused argument
15082         `want-differences-if-changed' and simplify.
15083         (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
15084         (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
15085         output (which is invalid for async vc-diff) to decide whether to
15086         do the revert silently or not.
15088 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15090         * vc-hooks.el (vc-loadup): Load files quietly.
15091         (vc-call-backend): Oops, brain fart.
15093 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15095         * vc-cvs.el (vc-cvs-state): Typo.
15096         (vc-cvs-merge-news): Return the status code rather than the error msg.
15098 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
15100         * vc.el (with-vc-file, vc-next-action, vc-version-diff)
15101         (vc-dired-mark-locked): Replaced usage of vc-locking-user with
15102         vc-state or vc-up-to-date-p.
15103         (vc-merge): Use vc-backend-defines to check whether merging is
15104         possible.  Set state to 'edited after successful merge.
15106         * vc-hooks.el (vc-locking-user): If locked by the calling user,
15107         return that name.  Redocumented.
15109 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15111         * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
15112         new `vc-state' semantics.
15113         (vc-finish-steal): Set 'vc-state to 'edited rather than setting
15114         'vc-locking-user to the current user.
15115         (vc-merge): Inline vc-backend-merge.  Comment out code that I
15116         don't understand and hence can't adapt to the new `vc-state' and
15117         `vc-locking-user' semantics.
15118         (vc-backend-merge): Remove.
15120         * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
15121         rather than 'vc-locking-user.
15123         * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
15125         * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
15126         (vc-state): Don't use 'reserved any more.  Just use the same
15127         convention as the one used for vc-<backend>-state where the
15128         locking user (as a string) is returned.
15129         (vc-locking-user): Update, based on the above convention. The
15130         'vc-locking-user property has disappeared.
15131         (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
15133         * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
15134         with a heuristic one.
15135         (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
15136         (vc-cvs-checkin): Do a trivial parse to set the state in case of
15137         error.  That allows us to get to 'needs-merge even in the
15138         stay-local case.  There's still no way to detect 'needs-patch in
15139         such a setup (or to force an update for that matter).
15140         (vc-cvs-logentry-check): Remove, the default works as well.
15142 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15144         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
15146         * vc.el (vc-do-command): kill-all-local-variables, to reset any
15147         major-mode in which the buffer might have been put earlier.  Use
15148         `remove' and `when'.  Allow `okstatus' to be `async' and use
15149         `start-process' in this case.
15150         (vc-version-diff): Handle the case where the diff looks empty
15151         because of the use of an async process.
15153 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
15155         * vc.el (vc-next-action-on-file): Removed optional parameter
15156         `simple'.  Recompute state unconditionally.
15157         (vc-default-toggle-read-only): Removed.
15159         * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
15160         (vc-toggle-read-only): Undid prev change.
15162         * vc-cvs.el (vc-cvs-stay-local): Renamed from
15163         vc-cvs-simple-toggle.  Redocumented.
15164         (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
15165         (vc-cvs-toggle-read-only): Removed.
15167 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15169         * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
15170         (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
15171         (vc-release-greater-or-equal-p): Move to vc-rcs.el.
15172         (vc-file-clear-masterprops): Braindead "fix".  It was a nop and
15173         still is. So maybe it should be removed.
15174         (vc-head-version, vc-find-binary): Remove.
15175         (vc-recompute-state): Move from vc-hooks.el.
15176         (vc-next-action-on-file): Add a `simple' argument to allow
15177         avoiding the `recompute' step (use for vc-cvs-simple-toggle).
15178         (vc-default-toggle-read-only, vc-default-record-rename): New funs.
15179         (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
15180         (vc-dired-mode-map): Properly defvar it.
15181         (vc-print-log): Call log-view-mode if available.
15182         (small-temporary-file-directory): defvar instead of use boundp.
15183         (vc-merge-news): Moved to vc-cvs.el.
15184         (vc-default-merge-news): New function.
15186         * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
15187         (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
15188         (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
15189         unknown `vc-latest-version' function.  It should probably refer to
15190         vc-workfile-version or somesuch, but it's very unclear to me and I
15191         don't have SCCS to test things.
15193         * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
15194         (vc-sccs-state-heuristic): Fix typo.
15195         (vc-sccs-workfile-unchanged-p): Add missing argument.
15197         * vc-rcs.el: Require vc and vc-rcs-hooks.
15198         (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
15199         (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
15200         (vc-release-greater-or-equal-p): Move from vc.
15201         (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
15202         vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
15203         (vc-rcs-checkout): Add a missing `new-version' argument in the
15204         call to vc-rcs-latest-on-branch-p.  Hopefully that was the right one.
15206         * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
15207         (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
15208         (vc-rcs-latest-on-branch-p): Use the `version' argument rather
15209         than the apparently unbound `workfile-version'.
15211         * vc-hooks.el (vc-master-templates): Def the obsolete var.
15212         (vc-file-prop-obarray): Use `make-vector'.
15213         (vc-backend-functions): Add new hookable functions
15214         vc-toggle-read-only, vc-record-rename and vc-merge-news.
15215         (vc-loadup): If neither backend nor default functions exist, use
15216         the backend function rather than nil.
15217         (vc-call-backend): If the function if not bound yet, try to load
15218         the non-hook file to see if it provides it.
15219         (vc-call): New macro plus use it wherever possible.
15220         (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
15221         nor `vc-find-binary' since it's only called from
15222         vc-mistrust-permission which is only used once the backend is known.
15223         (vc-checkout-model): Fix parenthesis.
15224         (vc-recompute-state, vc-prefix-map): Move to vc.el.
15226         * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
15227         (vc-cvs-release, vc-cvs-system-release): Remove.
15228         (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
15229         (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
15230         status symbols.
15231         (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
15232         (vc-cvs-toggle-read-only): First cut at a function to allow a
15233         cvs-status-free vc-toggle-read-only.
15234         (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
15235         (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
15236         vc-cvs-status.  Also set vc-state rather than vc-locking-user.
15237         (vc-cvs-checkout): Modify access rights directly if the user
15238         requested not to use `cvs edit'.  And refresh the mode line.
15240         * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
15241         (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
15243 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
15245         * vc-cvs.el (vc-cvs-checkout): Docstring fix.  Added a `(if
15246         workfile' that got lost when the code was extracted from vc.el.
15247         And merged the tail with the rest of the code (not possible in the
15248         old vc.el where the tail was shared among all backends).  And
15249         explicitly set the state to 'edited if `writable' is set.
15251         * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
15252         (vc-cvs-state): Be careful to return the value from
15253         vc-cvs-parse-state.
15254         (vc-cvs-parse-status): Use expand-file-name.  Don't set 'vc-state
15255         property but return it instead.  Also be careful to handle a nil
15256         or "" `rev' when workfile is non-nil (it was handled properly when
15257         workfile was nil).
15259         * vc.el: Removed those pesky unnecessary `(function' quotes.
15260         (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
15261         directly in the defvar.
15262         (vc-do-command): Bind inhibit-read-only so as to properly handle
15263         the case where the destination buffer has been made read-only.
15264         (vc-diff): Delegate to vc-version-diff in all cases.
15265         (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
15266         (vc-annotate-mode-variables): Removed (code moved partly to
15267         defvars and partly to vc-annotate-add-menu).
15268         (vc-annotate-mode): Turned into a derived-mode.
15269         (vc-annotate-add-menu): Moved in code in
15270         vc-annotate-mode-variables.
15271         (vc-update-change-log): Use make-temp-file if available.
15273 2000-09-04  Martin Lorentzson  <martinl@delysid.gnu.org>
15275         * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
15276         `vc-checkout-model' updated to `vc-cvs-update-model'.
15278 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15280         * vc.el (vc-next-action-on-file): Added handling of state
15281         `unlocked-changes'.
15282         (vc-checkout-carefully): Is now practically obsolete, unless the
15283         above is too slow to be enabled unconditionally.
15284         (vc-update-change-log): Fixed typo.
15286         * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
15288         * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
15289         Now handles state `unlocked-changes'.
15290         (vc-sccs-workfile-unchanged-p): New function, to support the above.
15292         * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
15294         * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
15295         (vc-rcs-fetch-master-state): Bug fixes.  Recognize state
15296         `unlocked-changes'.
15297         (vc-rcs-workfile-unchanged-p): Renamed from
15298         `vc-rcs-workfile-unchanged'.  This is not a real backend-specific
15299         function yet, but supposed to become one soon.
15301         * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
15302         `vc-steal-lock'.
15303         (vc-call-backend): Changed error message.
15304         (vc-state): Added description of state `unlocked-changes'.
15306 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15308         * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
15309         always return t in CVS-controlled directories.
15311         * vc.el (vc-responsible-backend): New function.
15312         (vc-register): Largely rewritten.
15313         (vc-admin): Removed (implementation moved into vc-register).
15314         (vc-checkin): Redocumented.
15315         (vc-finish-logentry): If no backend defined yet (because we are in
15316         the process of registering), use the responsible backend.
15318         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
15319         Updated function lists.
15320         (vc-call-backend): Fixed typo.
15322         * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
15323         New functions.
15324         (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
15325         Removed query option.  Redocumented.
15327 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15329         * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
15331         * vc.el: Updated callers of `vc-checkout-required' to use
15332         `vc-checkout-model'.
15334 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15336         * vc-rcs.el (vc-rcs-backend-release-p): function added.  other
15337         stuff updated to reference this function instead of the old
15338         `vc-backend-release-p'.
15340 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15342         * vc-sccs-hooks.el (vc-uses-locking): Renamed to
15343         vc-checkout-model.  Return appropriate values.  Updated callers.
15345 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15347         * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
15348         (vc-backend-revert): Function moved into `vc-revert';
15349         `vc-next-action' must be updated to accomodate this change.
15350         (vc-backend-steal): Function moved into `vc-finish-steal'.
15351         (vc-backend-logentry-check): Function moved into
15352         `vc-finish-logentry'.
15353         (vc-backend-printlog): Function moved into `vc-print-log'.
15354         (vc-backend-uncheck): Function moved into `vc-cancel-version'.
15355         (vc-backend-assign-name): Function moved into
15356         `vc-create-snapshot'.
15358 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15360         * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
15361         Rename to vc-checkout-model.  Return appropriate values.
15362         Update callers.
15364         * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
15365         to vc-checkout-model.
15366         (vc-checkout-required): Rename to vc-checkout-model.
15367         Re-implement and re-comment.
15368         (vc-after-save): Use vc-checkout-model.
15370 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15372         * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
15373         Update to use the vc-BACKEND-diff functions instead.
15374         `vc-diff' is now working.
15376         * vc-rcs.el (vc-rcs-logentry-check): New function.
15378         * vc-cvs.el (vc-cvs-logentry-check): New function.
15380         * vc-sccs.el (vc-sccs-diff): Function changed name from
15381         `vc-backend-diff'.  This makes `vc-diff' work.
15383         * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
15384         of functions possibly implemented in a vc-BACKEND library.
15385         (vc-checkout-required): Fix bug that caused an error to be
15386         signaled during `vc-after-save'.
15388         * vc.el: Fix typo.
15389         This checkin is made with our new VC code base for the very first time.
15390         A simple `(vc-checkin (buffer-file-name))' was used to perform it.
15392         * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
15393         `vc-checkout-required' updated to `vc-cvs-uses-locking'.
15395         * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
15396         updated to `vc-uses-locking'.
15397         (vc-checkout-required): Call to backend function.
15398         `vc-checkout-required' updated to `vc-uses-locking' instead.
15400         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
15401         `vc-checkout-required' updated to `vc-rcs-uses-locking'.
15403         * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
15404         to match the split into various backends.
15405         (vc-backend-checkin): Remove.  Merge with `vc-checkin'.
15406         (vc-retrieve-snapshot): Bug fix.
15408 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15410         * vc-sccs.el (vc-sccs-release): Doc fix.
15412 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15414         * vc.el (vc-next-action-on-file): Bug found and fixed.
15415         (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
15416         (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
15418         * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
15419         (vc-rcs-checkout): Name space cleaned up.  No more revision number
15420         crunching function names that are not prefixed with vc-rcs.
15421         (vc-rcs-checkout-model): Function added.  References to
15422         `vc-checkout-model' replaced.
15424 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15426         * vc.el (vc-next-action-on-file): Rewritten for the new state model.
15427         (vc-backend-merge-news): Renamed to `vc-merge-news'.  (Specific parts
15428         still need to be split, and implemented for RCS).
15430 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15432         * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
15434         * vc-sccs.el (vc-sccs-admin): Added the query-only option as
15435         required by the vc.el file.
15437         * vc-rcs.el (vc-rcs-admin): Added the query-only option as
15438         required by the vc.el file.
15439         (vc-rcs-exists): Function added.
15441         * vc-cvs.el (vc-cvs-admin): Added the query-only option as
15442         required by the vc.el file.
15444         * vc.el (vc-admin): Updated to handle selection of appropriate
15445         backend.  Current implementation is crufty and need re-thinking.
15447         * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
15449 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15451         * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
15452         beginning of annotate buffers correctly.
15454         * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
15455         (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
15456         functionality updated quite a lot to support multiple backends.
15457         Variables `vc-annotate-mode', `vc-annotate-buffers',
15458         `vc-annotate-backend' added.
15460         * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
15461         `vc-annotate-difference' added to supported backend functions.
15463 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15465         * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
15466         Use with-temp-file instead of /bin/sh.  Merged from mainline
15468 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15470         * vc-sccs-hooks.el (vc-sccs-registered): Updated.
15472         * vc-rcs-hooks.el (vc-rcs-registered): Updated.
15474         * vc-cvs-hooks.el (vc-cvs-registered): Updated.
15476 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15478         * vc-hooks.el: vc-state-heuristic added to
15479         vc-backend-hook-functions.
15481         * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
15483         * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
15485         * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
15486         `vc-uses-locking' to `vc-checkout-required'.  Rename the `locked'
15487         state to `reserved'.
15489         * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
15490         `vc-checkout-required'.  Rename the `locked' state to `reserved'.
15492 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15494         * vc-rcs-hooks.el: Implement new state model.  Hardly anything
15495         untouched.
15497         * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
15499         * vc.el (vc-update-change-log): Use small-temporary-file-directory,
15500         if defined.  (Merged from main line, slightly adapted.)
15502         * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
15503         millenium problem (merged from mainline).
15505 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15507         * vc-cvs.el: Split the annotate feature into a BACKEND-specific
15508         part and moved the non-BACKEND stuff to vc.el.
15510         * vc.el: Split the annotate feature into a BACKEND specific part
15511         and moved it from the vc-cvs.el file to this one.
15513 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15515         * vc-hooks.el: Implement new state model.
15516         (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
15517         (vc-locking-user): Simplify.  Now only needed if the file is
15518         locked by somebody else.
15519         (vc-lock-from-permissions): Remove.  Functionality is in
15520         vc-sccs-hooks.el and vc-rcs-hooks.el now.
15521         (vc-mode-line-string): New name for former vc-status.  Adapted.
15522         (vc-mode-line): Adapt to use the above.  Remove optional parameter.
15524         * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
15525         Various simplifications and adaptations all over the place.
15527         * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
15528         Simplify and adapt the rest.
15530         * vc.el (vc-resynch-window): Add TODO comment: check for
15531         interaction with view mode according to recent RCS change.
15532         (vc-backend-merge-news): Merge "CMUP" patch from mainline.
15534 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15536         * vc.el: Convert the remaining function comments to docstrings.
15538 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15540         * vc.el (vc-backend-release, vc-release-greater-or-equal)
15541         (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
15542         (vc-minor-part, vc-previous-version): Functions that operate and
15543         compare revision numbers got proper documentation.  Comments added
15544         about their possible removal.
15546 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15548         * vc.el (vc-latest-on-branch-p): Function removed and replaced in
15549         the vc-backend.el files.
15551         * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
15553         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
15554         (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
15555         (vc-rcs-previous-version): Functions added.
15557         * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
15559         * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
15561 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15563         * vc-hooks.el (vc-master-templates): Is really obsolete.
15564         Comment out the definition for now.  What is the right procedure
15565         to get rid of it?
15566         (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
15567         rewritten.
15568         (vc-default-registered): Remove.
15569         (vc-check-master-templates): New function; does mostly what the
15570         above did before.
15571         (vc-locking-user): Don't rely on the backend to set the property.
15573         * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
15574         Rewrite documentation.
15575         (vc-rcs-templates-grabbed): New variable.
15576         (vc-rcs-grab-templates): New function.
15577         (vc-rcs-registered): Rewrite to use above mechanism.
15579         * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
15580         Rewrite documentation.
15581         (vc-sccs-templates-grabbed): New variable.
15582         (vc-sccs-grab-templates): New function.
15583         (vc-sccs-registered): Rewrite to use above mechanism.
15584         (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
15585         Don't throw the result, simply return it.
15587         * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
15588         (vc-cvs-find-master): Remove.  Code is now in vc-cvs-registered.
15589         (vc-cvs-registered): Does the check itself now.  Simplify.
15591         * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
15592         from main line.
15594 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15596         * vc-cvs.el (vc-cvs-diff): New function.
15598         * vc-sccs.el (vc-sccs-diff): New function.
15600         * vc-rcs.el (vc-rcs-diff): New function.
15601         (vc-rcs-checkout): Bug (typo) found and fixed.
15602         (vc-rcs-register-switches): New variable.
15604         * vc.el (vc-backend-diff): Function removed and placed in the
15605         backend files.
15607 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15609         * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
15611         * vc.el (vc-backend-checkout): Function removed and replaced in
15612         the vc-backend.el files.
15614         * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
15616         * vc.el (vc-backend-admin): Removed and replaced in the
15617         vc-backend.el files.
15619         * vc.el (Martin): Removed all the annotate functionality since it
15620         is CVS backend specific.
15622 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15624         * spec.txt: Added specification of vc-state.
15626         * vc-sccs-hooks.el (vc-sccs-master-properties):
15627         Remove handling of vc-latest-version and
15628         vc-your-latest-version.  What used to be vc-latest-version, is now
15629         returned as vc-workfile-version.
15630         (vc-sccs-workfile-version): Adapt.
15632 2000-09-04  Dave Love  <fx@gnu.org>
15634         * vc.el: [Merged from mainline.]
15635         (vc-dired-mode): Make the dired-move-to-filename-regexp
15636         regexp match the date, to avoid treating date as file size.
15637         Add YYYY S option to WESTERN/
15639 2000-09-04  Dave Love  <fx@gnu.org>
15641         * vc.el: Require `compile' when compiling.
15642         (vc-logentry-check-hook): New option.
15643         (vc-steal-lock): Use compose-mail.
15644         (vc-dired-mode-map): Defvar when compiling.
15645         (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
15646         vc-sccs.el and renamed.  Callers changed.
15647         (vc-backend-checkout, vc-backend-logentry-check)
15648         (vc-backend-merge-news): Doc fix.
15649         (vc-default-logentry-check): New function.
15650         (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
15651         (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
15652         (vc-backend-merge): Doc fix.  Use backend functions.
15653         (vc-check-headers): Use backend functions.
15655         * vc-cvs.el: Require vc when compiling.
15656         (vc-cvs-register-switches): Doc fix.
15657         (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
15658         (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
15659         (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
15660         New functions (code from vc.el).
15661         (vc-annotate-display-default): Fix interactive spec.
15662         (vc-annotate-time-span): Doc fix.
15664         * vc-rcs.el: Require vc when compiling.
15665         (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
15666         (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
15667         (vc-rcs-checkin): New functions (code from vc.el).
15668         (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
15669         Doc fix.
15670         (vc-rcs-release): Deleted.  (Duplicated vc-rcs-system-release).
15672         * vc-sccs.el: Require vc when compiling.
15673         (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
15674         (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
15675         (vc-sccs-revert)
15676         (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
15677         from vc.el).
15678         (vc-sccs-add-triple, vc-sccs-record-rename)
15679         (vc-sccs-lookup-triple): Moved from vc.el and renamed.
15680         (vc-sccs-admin): Doc fix.
15682 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
15684         * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
15685         (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
15686         (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
15687         from vc.el.
15689         * vc-sccs.el (vc-admin-sccs): Added from vc.el
15691         * vc-cvs.el: Moved the annotate functionality from vc.el.
15692         (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
15694 2000-09-04  Dave Love  <fx@gnu.org>
15696         * vc.el (vc-backend-release): Call vc-system-release.
15698         * vc-sccs.el (vc-sccs-system-release):
15699         Renamed from vc-sccs-backend-release.
15701         * vc-rcs.el (vc-rcs-system-release):
15702         Renamed from vc-rcs-backend-release.
15704         * vc-cvs.el (vc-cvs-system-release):
15705         Renamed from vc-cvs-backend-release.
15707 2000-09-04  Dave Love  <fx@gnu.org>
15709         * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
15710         backend files.
15711         (vc-backend-release): Dispatch to backend functions.
15712         (vc-backend-release-p): Don't mention CVS, RCS.  [The SCCS case
15713         probably needs attention.]
15715         * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
15716         (vc-sccs-backend-release): New function.
15718         * vc-cvs.el (vc-cvs-release): Moved from vc.el.
15719         (vc-cvs-backend-release): New function.
15721         * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
15722         Doc fix.
15723         (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
15724         (vc-default-dired-state-info): New function.
15725         (vc-dired-state-info): Dispatch to backends.
15726         (vc-dired-hook): Doc fix.  Simplify, pending removal of CVS specifics.
15728         * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
15729         from vc.el and renamed.
15731 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15733         * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
15734         (vc-version-other-window, vc-backend-assign-name): Removed
15735         references to vc-latest-version; sometimes changed into
15736         vc-workfile-version.
15738         * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
15739         vc-rcs-master-workfile-version.
15740         (vc-rcs-workfile-version): Use the above.  Don't call
15741         vc-latest-version (that was unreachable code, anyway).
15742         (vc-rcs-fetch-master-properties): Doc fix.
15744         * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
15745         (vc-backend-hook-functions): Removed them from this list, too.
15746         (vc-fetch-properties): Removed.
15747         (vc-workfile-version): Doc fix.
15749         * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
15750         (vc-rcs-workfile-version, vc-rcs-locking-user)
15751         (vc-rcs-uses-locking): Use it.
15753         * vc-hooks.el (vc-consult-rcs-headers):
15754         Moved into vc-rcs-hooks.el, under the name
15755         vc-rcs-consult-headers.
15757         * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
15758         headers.
15759         (vc-cvs-find-master): Use this name only; correct different
15760         versions of the name.
15762         * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
15763         New functions.
15764         (vc-sccs-locking-user): Use the latter.
15766         * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
15767         New functions.
15769         * vc-hooks.el (vc-master-locks, vc-master-locking-user):
15770         Moved into both
15771         vc-rcs-hooks.el and vc-sccs-hooks.el.  These properties and access
15772         functions are implementation details of those two backends.
15774 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15776         * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
15777         (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
15779         * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
15780         (vc-sccs-parse-locks): SCCS-specific code moved here from
15781         vc-hooks.
15783         * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
15784         code moved here from vc-hooks.
15786         * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
15787         into back-end specific parts and removed.  Callers not updated
15788         yet; because I guess these callers will disappear into back-end
15789         specific files anyway.
15791 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15793         * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
15794         (vc-backend-checkout): Changed calls to `vc-checkout-model' to
15795         `vc-uses-locking'.
15797         * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
15798         Store yes/no in the property, and return t/nil.  Updated all
15799         callers.
15801         * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
15802         vc-sccs-uses-locking.  Don't set property.
15803         (vc-sccs-locking-user): Don't set property.
15805         * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
15806         vc-cvs-uses-locking.  Don't set property here; leave that to
15807         vc-hooks.
15808         (vc-cvs-locking-user): Reflect above change.  Streamlined.
15810         * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
15811         vc-rcs-uses-locking.
15812         (vc-rcs-locking-user): Reflect above change.
15814 2000-09-04  Dave Love  <fx@gnu.org>
15816         * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
15818         * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
15820         * vc-hooks.el (vc-checkout-model): Punt to backends.
15822         * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
15824         * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
15826         * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
15827         New functions.
15829         * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
15830         New functions.
15832         * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
15833         (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
15835         * vc-hooks.el (vc-default-locking-user): New function.
15836         (vc-locking-user, vc-workfile-version): Punt to backends.
15838 2000-09-04  Dave Love  <fx@gnu.org>
15840         * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
15841         (vc-master-workfile-version): Moved from vc-hooks.
15843         * vc-rcs-hooks.el: Fix duplicate code in last change.
15845         * vc-rcs-hooks.el: Require vc-hooks when compiling.
15846         (vc-rcs-master-templates): Improve :type.
15847         (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
15848         vc-master-workfile-version): Moved from vc-hooks.
15850         * vc-sccs-hooks.el: Require vc-hooks when compiling.
15851         (vc-sccs-master-templates): Improve :type.
15852         (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
15854         * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
15856         * vc-cvs-hooks.el: Require vc-hooks when compiling.
15857         (vc-cvs-master-templates): Improve :type.  Use
15858         vc-cvs-find-cvs-master.
15859         (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
15860         from vc-hooks.
15861         (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
15863         * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
15864         Moved to vc-cvs-hooks.
15866         * vc-hooks.el: Add doc strings in various places.  Simplify the
15867         minor mode setup.
15868         (vc-handled-backends): New user variable.
15869         (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
15870         simplification.
15872 2000-09-04  Dave Love  <fx@gnu.org>
15874         * vc.el: Some doc fixes for autoloaded and interactive functions.
15875         Fix compilation warnings from ediff stuff.
15876         (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
15878         * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
15880         * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
15882         * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
15884 2000-09-04  Dave Love  <fx@gnu.org>
15886         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
15887         New variable.
15888         (vc-make-backend-function, vc-loadup, vc-call-backend)
15889         (vc-backend-defines): New functions.
15891         * vc-hooks.el: Various doc fixes.
15892         (vc-default-back-end, vc-follow-symlinks): Custom fix.
15893         (vc-match-substring): Function removed.  Callers changed to use
15894         match-string.
15895         (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
15896         Simplify.
15898 2000-09-04  Dave Love  <fx@gnu.org>
15900         * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
15901         type.
15902         (vc-sccs-project-dir, vc-search-sccs-project-dir)
15903         (vc-sccs-registered): Doc fix.
15905         * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
15906         (vc-cvs-registered): Doc fix.
15908         * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
15909         (vc-rcs-registered): Doc fix.
15911 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15913         * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
15915         * vc-hooks.el: vc-registered has been renamed
15916         vc-default-registered.  Some functions have been moved to the
15917         backend specific files.  they all support the
15918         vc-BACKEND-registered functions.
15920 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
15922         * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
15924         * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
15926 2000-09-04  Dave Love  <fx@gnu.org>
15928         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
15929         menu-bar-update-hook.
15931         * help.el (help-manyarg-func-alist): Add
15932         find-operation-coding-system.
15934         * wid-edit.el (widget-sexp-validate): Fix garbled code.
15936         * custom.el (custom-set-variables): Print message about errors in
15937         setting.
15939 2000-09-03  Andrew Innes  <andrewi@gnu.org>
15941         * makefile.w32-in: Change to DOS line endings.
15943 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
15945         * mouse.el (mouse-popup-menubar): Supply the prompt string for
15946         minor-mode keymaps, if they don't have one.
15948 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
15950         * eshell/esh-module.el (eval-when-compile): Don't lose if
15951         esh-module.el's file name is truncated to DOS 8+3 limits.
15953 2000-09-01  John Wiegley  <johnw@gnu.org>
15955         * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
15956         predicate, which caused entries in the completion list to be
15957         doubled.
15959 2000-08-30  John Wiegley  <johnw@gnu.org>
15961         * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
15962         sending to subprocesses.  Also, hook pre-command-hook if
15963         `eshell-send-direct-to-subprocesses' is non-nil.
15964         (eshell-send-direct-to-subprocesses): New config variable.  If t,
15965         subprocess input is send immediately.
15966         (eshell-toggle-direct-send): New function.
15967         (eshell-self-insert-command): New function.
15968         (eshell-intercept-commands): New function.
15969         (eshell-send-input): If direct subprocess sending is enabled,
15970         don't echo any input to the Eshell buffer.  Let the subprocess
15971         handle that.  This requires "stty echo" in bash, for example.
15973 2000-08-28  John Wiegley  <johnw@gnu.org>
15975         * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
15976         completion function for Eshell's implementation of `unset'.
15978 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
15980         * info.el (Info-directory-list): Doc fix.
15982 2000-08-31  Peter Breton  <pbreton@ne.mediaone.net>
15984         * filecache.el (file-cache-add-directory-using-find): Don't quote
15985         wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
15987 2000-08-31  Kenichi Handa  <handa@etl.go.jp>
15989         * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
15990         coding systems.
15992 2000-08-30  Andrew Innes  <andrewi@gnu.org>
15994         * timer.el (run-with-idle-timer): Undo last change, so that timer
15995         is not activated immediately if Emacs is already idle.  Some
15996         existing code relies on this behaviour.
15998 2000-08-30  Miles Bader  <miles@gnu.org>
16000         * frame.el (set-frame-font): Do completion of font-name for
16001         interactive use.
16003 2000-08-30  Kenichi Handa  <handa@etl.go.jp>
16005         * international/quail.el (quail-start-translation): Bind locally
16006         last-command-event, last-command, and this-command.
16007         (quail-start-conversion): Likewise.
16008         (quail-self-insert-command): Fix docstring.
16010 2000-08-29  Gerd Moellmann  <gerd@gnu.org>
16012         * progmodes/executable.el
16013         (executable-make-buffer-file-executable-if-script-p): Check that
16014         buffer contains at least 2 characters.
16016 2000-08-29  Eli Zaretskii  <eliz@is.elta.co.il>
16018         * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
16020 2000-08-29  Dave Love  <fx@gnu.org>
16022         * diff-mode.el (diff-mode) <defgroup>: Add :version.
16023         (diff-mode-shared-map): Bind mouse-2.
16024         (diff-imenu-generic-expression): New variable.
16025         (diff-mode): Use it.
16027         * mouse.el (mouse-major-mode-menu): Use local-key-binding.
16028         (mouse-popup-menubar): Add minor mode menus.
16029         (popup-menu): Check for lookup-key returning number.
16031 2000-08-29  Miles Bader  <miles@gnu.org>
16033         * comint.el (comint-send-input): Create overlays using the proper
16034         front/read-advance arguments.
16036 2000-08-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
16038         * ps-print.el: Even/odd pages printing.  Doc fix.
16039         (ps-print-version): New version number (6.0).
16040         (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
16041         (ps-background, ps-begin-file, ps-begin-job): Code fix.
16042         (ps-print-duplex-feature): Variable eliminated.
16043         (ps-even-or-odd-pages): New variable.
16045         * progmodes/ebnf2ps.el: Doc fix.
16046         (ebnf-version): New version (3.3).
16047         (ebnf-user-arrow): Change variable customization to sexp.
16048         (ebnf-user-arrow): Function eliminated.
16049         (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
16051 2000-08-29  Kenichi Handa  <handa@etl.go.jp>
16053         * help.el (help-xref-mule-regexp): New variable.
16054         (help-make-xrefs): Handle help-xref-mule-regexp.
16056         * international/mule-cmds.el (help-xref-mule-regexp-template): New
16057         variable.
16058         (describe-input-method): Temporarily activate the specfied input
16059         method to display the information.
16060         (describe-language-environment): Hyperlinks to mule related items.
16062         * international/mule-diag.el (charset-multibyte-form-string): New
16063         function.
16064         (list-character-sets-1): Use charset-multibyte-form-string.
16065         (describe-character-set): New function.
16066         (describe-coding-system): Hyperlinks to safe character sets.
16068         * international/quail.el (quail-help): New arg PACKAGE.
16069         Hyperlinks to mule related items.
16070         (quail-help-insert-keymap-description): Use
16071         substitute-command-keys instead of describe-bindings.
16072         (quail-translation-help): Hyperlinks to mule related items.
16074 2000-08-28  John Wiegley  <johnw@gnu.org>
16076         * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
16077         have a defsubst call itself.  Made `eshell-flatten-list' back into
16078         a function again.
16080         * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
16081         catch, in case re-centering point at bottom messes up the display.
16082         This happens frequently in Emacs 21, due I believe to variable
16083         line heights.
16085         * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
16086         to call `find-tag-interactive'.
16088         * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
16089         the list of remember directories.
16091 2000-08-28  John Wiegley  <johnw@gnu.org>
16093         * align.el: Test align-region-separate to see if it's a symbol.
16095 2000-08-28  John Wiegley  <johnw@gnu.org>
16097         * eshell/esh-util.el (eshell-flatten-list): Made this function
16098         into a defsubst form.  It gets used very frequently, although
16099         calls don't occur all that often.
16101         * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
16102         examining it.
16104         * eshell/esh-cmd.el (eshell-rewrite-while-command):
16105         (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
16106         `eshell-protect'.
16107         (eshell-copy-handles): Created a new macro for duplicating the
16108         current set of open handles.  This is needed by the looping
16109         functions.
16110         (eshell-do-eval): Fixed while and if, so that the eshell-test-body
16111         is not incorrectly stomped on.
16113         * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
16114         declaration for pcomplete-use-paring.
16115         (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
16116         value of eshell-cmpl-use-paring.
16117         * pcomplete.el (pcomplete-use-paring): New config variable, to
16118         indicate whether paring should be used.
16119         (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
16120         completion alternatives that have already been used.
16122         * eshell/esh-mode.el (eshell-repeat-argument): Added function,
16123         bound to C-c C-y, which will repeat the previous N arguments
16124         (based on prefix argument).
16125         (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
16127         * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
16128         if there is no *Help* buffer.  This is for XEmacs, which renames
16129         its help buffers uniquely.  TODO: Find out what the current buffer
16130         name to delete is.
16132         * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
16133         first entry that correlates to a passwd/group number.  Later
16134         entries (used for group/user name aliasing to multiple IDs) are
16135         ignored.
16137         * eshell/em-xtra.el (eshell/expr):
16138         * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
16139         (eshell-grep, eshell/diff, eshell/locate):
16140         * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
16141         argument list, before passing it to the system command.
16143         * eshell/esh-mode.el (eshell-find-tag): Added a special version of
16144         `find-tag' for use at final position in Eshell buffers (which
16145         otherwise triggers an error on Emacs 21).
16146         (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
16147         buffer, if it is currently bound to `find-tag'.
16149         * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
16150         in the list of matched Makefile names.
16151         (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
16152         directory, prefer its contents to Makefile.
16154         * eshell/em-dirs.el (eshell/cd): cd commands that look up
16155         directory parts (like "cd old new", or "cd =regexp"), are now case
16156         sensitive on non-Windows/DOS platforms.
16158         * eshell/esh-mode.el (eshell-parse-command-input): When a user
16159         types RET after an open delimiter (like "), display a message
16160         indicating that Eshell is waiting for the closing delimiter.
16162         * eshell/esh-var.el (eshell/unset): Added a command for unsetting
16163         environment variables.
16165         * eshell/em-unix.el (eshell/diff): Added logic to fail more
16166         gracefully if the user enters incorrect arguments.
16168         * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
16169         Eshell buffers.
16171         * eshell/esh-var.el (eshell-interpolate-variable):
16172         * eshell/esh-mode.el (eshell-move-argument):
16173         * eshell/em-unix.el (eshell-du-sum-directory):
16174         * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
16175         * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
16176         (not (= ...)).
16178         * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
16179         to ensure the `preserve' flag gets propagated when doing recursive
16180         directory copies.
16182 2000-08-28  Stefan Monnier  <monnier@cs.yale.edu>
16184         * eshell/em-hist.el (eshell-put-history, eshell-get-history):
16185         Don't convert \n into \0177 in memory.
16186         (eshell-read-history, eshell-write-history): Convert \n to \0177,
16187         and back again, when reading and writing.
16189 2000-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
16191         * eshell/esh-util.el (eshell-processp): Added to relieve constant
16192         testing of `fboundp' on `processp'.
16194         * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
16195         (eshell/jobs): Don't call process-list if it is not bound.
16196         (eshell-gather-process-output): Support systems where async
16197         subprocesses aren't supported.
16198         (eshell-scratch-buffer, eshell-last-sync-output-start): New
16199         variables.
16201         * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
16202         eshell-do-eval returns t.
16203         (eshell-do-pipelines-synchronously): New defmacro.
16204         (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
16205         when async subprocesses aren't supported.
16206         (eshell-do-eval): Use eshell-processp.  Don't throw eshell-defer
16207         if async subprocesses aren't supported.
16208         (eshell-resume-command): Don't assume STATUS is a string.
16210         * eshell/em-unix.el (eshell/rm): Use eshell-processp.
16212         * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
16213         (eshell-close-target, eshell-get-target): Use eshell-processp.
16214         (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
16215         fix.
16216         (eshell-get-target, eshell-create-handles): Doc fix.
16218 2000-08-28  Miles Bader  <miles@lsi.nec.co.jp>
16220         * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
16221         criterion to include commands that output something, as long as it
16222         leaves both the command and the end-of-buffer visible when the
16223         command has exited.
16224         (eshell-review-quick-commands): Adjust the help doc string
16225         accordingly.
16227 2000-08-28  Peter Breton  <pbreton@ne.mediaone.net>
16229         * locate.el (locate): Cleaned up locate command's interactive prompting
16230         Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
16232         * filecache.el (file-cache-case-fold-search): New variable
16233         (file-cache-assoc-function): New variable
16234         (file-cache-minibuffer-complete): Use file-cache-assoc-function.
16235         Use file-cache-case-fold-search variable
16236         (file-cache-add-file): Use file-cache-assoc-function
16237         (file-cache-delete-file): likewise
16238         (file-cache-directory-name): likewise
16239         (file-cache-debug-read-from-minibuffer): likewise
16241 2000-08-28  Gerd Moellmann  <gerd@gnu.org>
16243         * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
16244         (abbrev-table-name): New function.
16245         (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
16246         If non-nil list local abbrev, only.
16248 2000-08-28  Stanislav Shalunov  <shalunov@internet2.edu>
16250         * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
16251         from Gnus support code, and use special article copy buffer
16252         `(gnus-original-article-buffer)' instead.  This allows to get rid
16253         of article-hide-headers usage (which breaks in the latest Gnus
16254         version).  Thanks to Detlev Zundel.
16256 2000-08-28  Kenichi Handa  <handa@etl.go.jp>
16258         * international/quail.el (quail-use-package): Hide "... loaded"
16259         message.
16260         (quail-start-translation, quail-start-conversion): Likewise.
16262         * international/kkc.el (kkc-region): Hide "... loaded" message.
16264 2000-08-27  Dave Love  <fx@gnu.org>
16266         * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
16268 2000-08-27  Miles Bader  <miles@gnu.org>
16270         * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
16272 2000-08-27  Kenichi Handa  <handa@etl.go.jp>
16274         * international/ja-dic-cnv.el (skkdic-convert): Insert (require
16275         'ja-dic-cnv), not (require 'skkdic-cnv).
16277 2000-08-26  Miles Bader  <miles@gnu.org>
16279         * faces.el (face-x-resources): Add entry for :inherit.
16280         * cus-face.el (custom-face-attributes): Add support for :inherit
16281         attribute.  Add support for relative face heights.
16282         (custom-face-attributes-get): Treat `nil' as being a default value
16283         for :inherit (as well as `unspecified').
16285         * faces.el (set-face-attribute): Update doc string.
16286         (face-attribute-name-alist): Add :inherit.
16287         (face-valid-attribute-values): Handle :inherit.
16288         (face-read-string): Rephrase prompt to be less confusing.
16289         Assume that DEFAULT is a string, since we must return a string.
16290         (face-read-integer): Use `format' to turn DEFAULT into an
16291         acceptable default for face-read-string.  Match NEW-VALUE against
16292         the string "unspecified", not the symbol `unspecified', since
16293         that's what face-read-string returns.
16294         (read-face-attribute): Lookup a name for old-value in valid, and
16295         use it as a default if we find one.  Treat all values from
16296         face-read-string as strings.  If the default is used, don't do any
16297         more processing on the value, just use the old value directly.
16298         (read-face-and-attribute, modify-face): Tweak prompt.
16299         (read-face-name): Don't assume prompt ends with a space.
16301         * faces.el (describe-face): Add support for :inherit attribute.
16303 2000-08-25  Kenichi Handa  <handa@etl.go.jp>
16305         * terminal.el (terminal-emulator): Fix args to `concat'.  Now
16306         concat doesn't accept interger.
16308         * international/kkc.el: Remove SKK from Keywords.  Require
16309         ja-dic-utl instead of skkdic-utl.
16311         * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
16312         Provide ja-dic-cnv instead of skkdic-cnv.
16313         (ja-dic-filename): Renamed from skkdic-filename.  Referers changed
16314         (iso-2022-7bit-short): Add safe-charsets property.
16315         (skkdic-convert-postfix): Search Japanese chou-on character in
16316         addition to Hiragana character.
16317         (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
16318         (skkdic-convert): Change file names from skkdic.el to ja-dic.el
16319         (batch-skkdic-convert): Likewise.
16321         * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
16322         Provide ja-dic-utl instead of skkdic-utl.
16323         (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
16325 2000-08-24  Dave Love  <fx@gnu.org>
16327         * disp-table.el (standard-display-default): Make the test of `l'
16328         useful.
16330         * language/european.el ("Latin-8", "Latin-9"): Add input methods,
16331         mod sample text.
16333         * international/iso-ascii.el: Make pilcrow convenient string
16334         consistent with section.
16335         (iso-ascii-display): Set up multibyte characters as well as
16336         unibyte.
16338 2000-08-24  Kenichi Handa  <handa@etl.go.jp>
16340         * international/mule-cmds.el (reset-language-environment): Set
16341         default-process-coding-system to '(undecided . iso-latin-1), which
16342         makes process I/O almost consistent with file I/O.   Call this
16343         function when mule-cmds.el[c] is loaded.
16345 2000-08-22  Andrew Innes  <andrewi@gnu.org>
16347         * makefile.w32-in: New file.
16349 2000-08-22  Miles Bader  <miles@lsi.nec.co.jp>
16351         * comint.el (comint-output-filter): Compare end of
16352         comint-last-output-overlay with the start of the newly inserted
16353         text, not the end, when deciding whether to extend it.
16354         Set saved-point's insertion type to advance after insertion.
16356         * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
16357         since this is now done independently of font-lock mode.
16359 2000-08-21  Gerd Moellmann  <gerd@gnu.org>
16361         * server.el (server-kill-new-buffers): New user option.
16362         (server-existing-buffer): New buffer-local variable.
16363         (server-visit-files): When using an existing buffer, set
16364         server-existing-buffer to t.
16365         (server-buffer-done): If server-kill-new-buffers is t, kill the
16366         buffer, unless it was already present before visiting it with
16367         Emacs server.
16369 2000-08-21  Eli Zaretskii  <eliz@is.elta.co.il>
16371         * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
16372         even if the display doesn't support colors: some displays will
16373         support bold/underline faces.
16375 2000-08-21  Gerd Moellmann  <gerd@gnu.org>
16377         * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
16379         * startup.el (command-line): If user's init file had an error,
16380         add explanatory text to *Messages*.
16382 2000-08-21  Kenichi Handa  <handa@etl.go.jp>
16384         * man.el (Man-getpage-in-background): Decode the process output by
16385         the system locale coding system.
16387 2000-08-20  Dave Love  <fx@gnu.org>
16389         * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
16390         Don't test x-popup-menu.
16391         (function) <complete-function>: Complete only fbound symbols.
16392         <validate, value>: New.
16393         (variable) <complete-function>: Complete only bound symbols.
16394         (coding-system): Add :base-only, :complete-function, :validate,
16395         :value, :prompt-match.
16396         (widget-coding-system-prompt-value): Use read-coding-system and
16397         act on :base-only.
16398         (editable-field): Add :help-echo.
16399         (widget-push-button-gui, widget-push-button-cache)
16400         (widget-gui-action, widget-editable-list-gui): COmment out, along
16401         with uses.
16402         (widget-at): Make arg optional.
16403         (widget-echo-help): Adjust for current help-echo calling sequence.
16404         (widget-specify-field, widget-specify-button)
16405         (widget-specify-insert, widget-get-sibling, widget-image-find)
16406         (widget-convert, widget-insert, widget-leave-text)
16407         (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
16408         (widget-setup, widget-field-find, widget-before-change)
16409         (widget-after-change, widget-default-complete)
16410         (widget-default-create, widget-default-delete)
16411         (widget-push-button-value-create, editable-field)
16412         (widget-field-prompt-value, widget-field-validate)
16413         (widget-choice-value-create, widget-choice-action)
16414         (widget-choice-validate, widget-checklist-add-item)
16415         (widget-radio-add-item, widget-radio-chosen)
16416         (widget-radio-value-inline, widget-editable-list-value-create)
16417         (widget-editable-list-entry-create)
16418         (widget-documentation-link-add)
16419         (widget-documentation-string-value-create)
16420         (widget-regexp-validate, widget-file-complete)
16421         (widget-sexp-validate, widget-plist-convert-widget)
16422         (widget-plist-convert-widget, widget-alist-convert-widget)
16423         (widget-alist-convert-widget, widget-color-complete): Simplify,
16424         particularly to avoid bindings which aren't optimized out.
16426         * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
16427         Doc fix.
16428         (down-list, backward-up-list, up-list, kill-sexp)
16429         (backward-kill-sexp, mark-sexp): Make arg optional.
16430         (lisp-complete-symbol): Add optional arg PREDICATE.
16432         * cus-start.el: Add display-buffer-reuse-frames,
16433         file-coding-system-alist.
16435 2000-08-20  Gerd Moellmann  <gerd@gnu.org>
16437         * startup.el (command-line): Clear realized faces after
16438         modifying TTY color mappings.
16440 2000-08-20  Miles Bader  <miles@gnu.org>
16442         * faces.el (face-attr-match-p): Don't return true if ATTRS are
16443         merely a subset of FACE's attributes.
16445 2000-08-19  Miles Bader  <miles@gnu.org>
16447         * comint.el (comint-output-filter): Save the point with a marker,
16448         not just a buffer position.
16450         * international/mule.el (set-buffer-process-coding-system): Make
16451         interactive prompt less confusing.
16453 2000-08-19  Gerd Moellmann  <gerd@gnu.org>
16455         * hilit-chg.el: General cleanup of doc strings, comments and
16456         code formatting.
16458 2000-08-19  Miles Bader  <miles@gnu.org>
16460         * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
16461         Compiler macro removed; beginning-of-line is no longer always
16462         equivalent to forward-line, in the presence of fields.
16464         * comint.el (comint-output-filter): Remove ad-hoc saving of
16465         restriction, and just use save-restriction, now that it works
16466         correctly.  Don't adjust comint-last-input-start to account for
16467         our insertion; it shouldn't have moved because we don't use
16468         insert-before-markers anymore.  Comment out call to
16469         `force-mode-line-update'; why is it here?
16471         * gud.el (gud-basic-call): Temporarily widen gud comint buffer
16472         while checking for prompt to delete.  Use `forward-line 0'
16473         instead of beginning-of-line.
16474         (gud-filter): Temporarily widen gud comint buffer while
16475         examining output.
16477 2000-08-18  Stefan Monnier  <monnier@cs.yale.edu>
16479         * progmodes/sh-script.el: Big bag of typos.
16481         * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
16482         check since ispell-process is not bound when ispell is not yet loaded.
16484 2000-08-18  Dave Love  <fx@gnu.org>
16486         * image.el (find-image): Copy `spec' before using plist-put.
16488 2000-08-18  Gerd Moellmann  <gerd@gnu.org>
16490         * textmodes/ispell.el (ispell-dictionary-alist-6): Add
16491         `portugues'.
16493         * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
16494         backward-kill-sexp, analogous to kill-sexp.
16496         * progmodes/icon.el (icon-indent-line)
16497         (icon-is-continuation-line): Handle comments specially.
16499 2000-08-17  Ken Stevens <k.stevens@ieee.org>
16501         * ispell.el: Set to standard author/maintainer/keyword fields.
16502         Fine tuning to menu map appearance and operation, and added help.
16503         Remove `start' and `end' error messages when compiling.
16504         (ispell-choices-win-default-height): Fixed comment string.
16505         (ispell-dictionary-alist-1): Fixed regexp in castellano and
16506         castellano8 dictionaries.
16507         (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
16508         (ispell-dictionary-alist-4): Fixed regexp in francais-tex
16509         dictionary, added italiano dictionary.
16510         (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
16511         word character
16512         (ispell-tex-skip-alists): Added psfig support.
16513         (ispell-skip-html): Renamed from ispell-skip-sgml.
16514         (ispell-begin-skip-region-regexp, ispell-skip-region)
16515         (ispell-minor-check): Improved html skipping support to skip across
16516         code, and recognize `&' commands without propper `;' syntax;
16517         (ispell-process-line): Fix alignment error when manually
16518         correcting spelling.
16519         (ispell): Fix comment string.
16520         (ispell-add-per-file-word-list): Always put word list on new line.
16522 2000-08-17  Gerd Moellmann  <gerd@gnu.org>
16524         * format.el (format-encode-run-method): Fix error message to say
16525         `encode' instead of `decode'.  Use save-window-excursion around
16526         shell-command-on-region as in format-decode-run-method because
16527         shell-command-on-region can display a buffer with error output.
16528         (format-decode): Don't record undo information for the decoding.
16529         (format-annotate-function): Add parameter FORMAT-COUNT.  Make
16530         that number part of the temporary buffer name so that more than
16531         one decoding using a temporary buffer can happen safely.
16533         * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
16534         of `A-z' in the regexp.
16536         * hilit-chg.el: Fix typos in commentary.
16538         * help.el (view-emacs-news): Rewritten for new naming scheme
16539         for old NEWS files.
16541         * startup.el (command-line): Pop to *Messages* in case an error
16542         is signaled while loading user-init-file.
16544 2000-08-17  Andreas Schwab  <schwab@suse.de>
16546         * files.el (insert-directory): Don't lose original file name,
16547         undoing an undocumented change.
16549 2000-08-17  Alex Schroeder  <alex@gnu.org>
16551         * sql.el (sql-magic-go): Use comint-bol.
16552         (sql-copy-column): Use comint-line-beginning-position.
16553         (comint-line-beginning-position): Define a replacement for
16554         comint-line-beginning-position if it is not fboundp.
16556 2000-08-17  Alex Schroeder  <alex@gnu.org>
16558         * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
16559         it didn't have any effect anyway.
16561 2000-08-17  Alex Schroeder  <alex@gnu.org>
16563         * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
16564         --pset and pager=off instead of sending \\o|cat at the beginning
16565         of the session.
16567 2000-08-17  Miles Bader  <miles@gnu.org>
16569         * progmodes/octave-inf.el: Add compatibility definition of
16570         comint-line-beginning-position.
16572 2000-08-17  Kenichi Handa  <handa@etl.go.jp>
16574         * startup.el (normal-top-level): Look in each dir in load-path for
16575         a leim-list.el file too.  This assures of loading leim-list.el
16576         that is created at Emacs installation time even if a user have his
16577         own leim-list.el.
16579 2000-08-17  Miles Bader  <miles@gnu.org>
16581         * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
16582         foreground color to black if the background is dark.
16584 2000-08-16  Stefan Monnier  <monnier@cs.yale.edu>
16586         * loadhist.el (unload-feature): Typo.
16588         * finder.el (finder-compile-keywords):
16589         * cus-dep.el (custom-make-dependencies): Add local-variable settings
16590         to the generated file.
16592         * mail/mh-e.el (mh-make-local-vars):
16593         Replace make-variable-buffer-local with make-local-variable.
16595         * play/landmark.el:
16596         * options.el (Edit-options-{set,toggle,t,nil}):
16597         * mail/mailabbrev.el (mail-abbrevs-mode):
16598         * textmodes/tex-mode.el (tex-expand-files):
16599         * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
16601         * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
16603         * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
16604         (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
16605         Allow going past the last element.
16606         * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
16607         (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
16608         (cvs-mouse-toggle-mark): Don't move point.
16609         (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
16611         * progmodes/compile.el (grep): Provide a default set of files.
16612         (next-error): Docstring fix.
16613         (compilation-find-file): Avoid find-file (fails in a dedicated window).
16615         * emacs-lisp/easy-mmode.el (define-minor-mode):
16616         Use `symbol-value' to keep the byte-compiler quiet.
16618         * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
16619         (diff-find-source-location): New fun, extracted from diff-goto-source.
16620         (diff-goto-source): Use it.
16621         (diff-next-complex-hunk, diff-filter-lines): New function.
16622         (diff-apply-hunk): New command.
16624         * smerge-mode.el (smerge-mode-menu): Doc fix.
16626         * msb.el (msb-mode): Define it in terms of define-minor-mode.
16628 2000-08-16  Dave Love  <fx@gnu.org>
16630         * windmove.el (windmove) <defgroup>: Add :version.
16632         * net/goto-addr.el: Don't require browse-url.  Require thingatpt.
16633         (goto-address-fontify-p, goto-address-highlight-p)
16634         (goto-address-url-face, goto-address-url-mouse-face)
16635         (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
16636         (goto-address-url-regexp): Use thing-at-point-url-regexp.
16637         (goto-address-fontify, goto-address-at-mouse): Simplify,
16638         (goto-address-at-point): browse-url-url-at-point,
16639         goto-address-find-address-at-point can return nil.
16640         (goto-address-find-address-at-point): Return nil on failure.
16642         * align.el (align) <defgroup>: Add :version.
16644         * calculator.el (calculator): Add :version.
16645         (calculator): Use two lines for calculator window if `modeline'
16646         face is boxed.
16648         * play/5x5.el: Doc fixes.
16649         (5x5) <defgroup>: Add :version.
16651         * play/fortune.el (fortune) <defgroup>: Add :version.
16652         (fortune-append): Fix error message.
16653         (fortune-from-region): Doc fix.
16655         * play/pong.el (pong): Doc fix.
16657         * play/morse.el: Keywords, commentary, autoloads.
16659 2000-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
16661         * desktop.el (desktop-save): Don't look at symbol-value of a
16662         member of minor-mode-alist, unless it is boundp.
16664 2000-08-16  Sam Steingold  <sds@gnu.org>
16666         * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
16667         `while'; use `with-current-buffer' instead of `save-excursion'.
16668         Removed unnecessary kludges now that "*Buffer List*" is excluded.
16670 2000-08-16  Kenichi Handa  <handa@etl.go.jp>
16672         * international/ccl.el (declare-ccl-program): Docstring modified.
16673         (ccl-execute-with-args): Likewise.
16675 2000-08-16  Miles Bader  <miles@gnu.org>
16677         * progmodes/sql.el: Add compatibility definition of
16678         comint-line-beginning-position.
16680 2000-08-15  Gerd Moellmann  <gerd@gnu.org>
16682         * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
16683         'buffer-menu' property.
16684         (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
16685         fails.
16686         (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
16687         buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
16688         wasn't killed.
16690         * buff-menu.el (list-buffers-noselect): Don't display the
16691         *Buffer List* buffer.
16693         * font-lock.el: Require jit-lock to prevent a very late
16694         `Loading jit-lock' message.
16696         * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
16697         * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
16698         mail address.
16700 2000-08-15  Miles Bader  <miles@gnu.org>
16702         * textmodes/ispell.el (ispell-graphic-p): New constant.
16703         (ispell-choices-win-default-height, ispell-help): Use
16704         `ispell-graphic-p' instead of `xemacsp'.
16706 2000-08-15  Dave Love  <fx@gnu.org>
16708         * simple.el: Autoload widget-convert when compiling.
16709         (mail-user-agent): Doc fix.
16711         * help.el (function-called-at-point, variable-at-point): Use
16712         with-syntax-table.
16713         (help-manyarg-func-alist): Add insert-and-inherit.
16715         * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
16717         * delsel.el (delsel-unload-hook): New function.
16719         * find-file.el: Doc fixes.  Move provide to end.
16720         (ff) <defgroup>: Add :link.
16721         (ff-goto-click): Deleted.
16722         (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
16723         Use mouse-set-point.
16725         * textmodes/tildify.el: Doc fixes.
16726         (tildify) <defgroup>: Add:version.
16728         * progmodes/glasses.el (glasses) <defgroup>: Add :version.
16729         (glasses-custom-set): Use set-default, not set.
16730         (minor-mode-alist): Propertize the lighter.
16731         (glasses-mode): Provide optional arg.
16733         * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
16734         (global-cwarn-mode): Don't make it a user option.  Unquote lambda.
16735         (cwarn-font-lock-feature-keywords-alist): Don't make it a user
16736         option.  Provide :type.
16737         (cwarn-configuration): Provide :type.
16738         (cwarn-mode): Doc fix.
16740         * add-log.el (change-log-merge): Doc fix.
16741         (change-log-redate): New command.
16743         * net/browse-url.el (browse-url-filename-alist): Add a clause for
16744         Doze and Dog.
16745         (browse-url): Use dolist, not mapcar.
16746         (browse-url-at-point): Check for null url.
16747         (browse-url-event-buffer, browse-url-event-point): Functions
16748         deleted.
16749         (browse-url-at-mouse, browse-url-netscape): Simplify.
16751         * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
16752         modes.
16753         (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
16754         Fix previous change to mapcan.
16755         (msb--init-file-alist, msb--add-separators)
16756         (msb--make-keymap-menu): Simplify.
16757         (msb--choose-file-menu): Use copy-sequence.
16758         (msb-mode-map): Add title to keymap.
16759         (msb-unload-hook): New function.
16761         * bs.el: Fix indentation.
16762         (bs) <defgroup>: Add :links.
16763         (bs-show): Doc fix.
16764         (bs-apply-sort-faces): Don't use window-system.
16765         (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
16767 2000-08-15  Eli Zaretskii  <eliz@is.elta.co.il>
16769         * calendar/timeclock.el (timeclock-file): Run .timelog through
16770         convert-standard-filename.
16772 2000-08-14  Gerd Moellmann  <gerd@gnu.org>
16774         * emacs-lisp/authors.el: New file.
16776         * paren.el (show-paren-priority): New user option.
16777         (show-paren-function): Set overlay priorities to
16778         show-paren-priority.
16780 2000-08-14  Miles Bader  <miles@gnu.org>
16782         * comint.el (comint-bol): Use `forward-line 0' instead of calling
16783         beginning-of-line with inhibit-field-text-motion bound.
16785 2000-08-14  Gerd Moellmann  <gerd@gnu.org>
16787         * calendar/timeclock.el: New file.
16789 2000-08-14  David Ponce  <david@dponce.com>
16791         * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
16792         `widget-button-click'. so that one can use left mouse button to
16793         click on dialog buttons.
16795 2000-08-14  Emmanuel Briot  <briot@gnat.com>
16797         * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
16798         identifiers, since XML is case sensitive
16800 2000-08-12  Miles Bader  <miles@gnu.org>
16802         * comint.el (comint-output-filter): Don't bother frobbing
16803         window-start, it doesn't seem to be necessary.
16805         * comint.el (comint-send-string, comint-send-region): Make into
16806         real functions.  Snapshot the prompt before sending.
16808 2000-08-11  Eli Zaretskii  <eliz@is.elta.co.il>
16810         * info.el (Info-find-emacs-command-nodes): Rewrite to use
16811         technique similar to Info-index, instead of relying on specific
16812         names of relevant Index nodes.
16813         (Info-goto-emacs-command-node): Bind Info-history to nil when
16814         going to the first node found by Info-find-emacs-command-nodes.
16816 2000-08-11  Eli Zaretskii  <eliz@is.elta.co.il>
16818         * menu-bar.el (menu-bar-help-menu): Add a :help string.
16820 2000-08-10  Miles Bader  <miles@gnu.org>
16822         * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
16824 2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
16826         * info.el (Info-file-list-for-emacs): More elements for the
16827         autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
16828         and woman manuals.
16830 2000-08-10  Miles Bader  <miles@lsi.nec.co.jp>
16832         * comint.el (comint-send-input): Make the newline boundary overlay
16833         rear-nonsticky.  Use `insert' instead of `insert-before-markers'.
16834         (comint-output-filter): Use `insert' instead of
16835         `insert-before-markers'.  Extend comint-last-output-overlay when
16836         necessary since we can't rely on insert-before-markers to do it.
16837         * gud.el (gud-filter): Use `with-current-buffer' instead of
16838         save-excursion when inserting the output, so that point gets
16839         updated correctly; the old method relied on a rather dodgy
16840         side-effect of comint-output-filter to avoid the effect of
16841         save-excursion.
16843 2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
16845         * files.el (recover-file): Call insert-directory instead of
16846         invoking `ls' directly.
16848 2000-08-10  Miles Bader  <miles@gnu.org>
16850         * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
16851         (comint-last-prompt-overlay): New variables.
16852         (comint-output-filter): Implement prompt highlighting.
16853         (comint-snapshot-last-prompt): New function.
16854         (comint-send-input): Snapshot the last prompt.
16855         Use comint-highlight-input-face.
16856         (comint-highlight-input-face): Renamed from `comint-highlight-face'.
16857         Use defface instead of defcustom.
16858         (send-invisible, comint-send-eof): Snapshot the last prompt.
16859         (comint-delchar-or-maybe-eof): Use comint-send-eof.
16860         (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
16862 2000-08-09  Stefan Monnier  <monnier@cs.yale.edu>
16864         * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
16865         (regexp-opt-group): Use a list of chars for `letters'.
16866         (regexp-opt-charset): `chars' is now a list of chars.
16867         Use a char-table rather than a vector so it works for multibyte chars.
16869         * pcvs.el (cvs-menu): Don't move point.  Use popup-menu.
16870         Set cvs-minor-current-files to the selected fileinfo.
16871         (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
16872         (cvs-mode-insert): Manually macroexpand `ignore-errors'.
16874 2000-08-09  Eli Zaretskii  <eliz@is.elta.co.il>
16876         * files.el (insert-directory): Don't call access-file on
16877         directories on DOS and Windows.
16879 2000-08-09  Kenichi Handa  <handa@etl.go.jp>
16881         * international/ccl.el (ccl-embed-data): Make ccl-program-vector
16882         longer if necessary.
16883         (ccl-embed-code): Call ccl-embed-data to store CODE in
16884         ccl-program-vector.
16886 2000-08-09  Miles Bader  <miles@gnu.org>
16888         * comint.el (comint-output-filter): Properly handle the case where
16889         the text surrounded by comint-last-output-overlay was deleted.
16891 2000-08-08  Gerd Moellmann  <gerd@gnu.org>
16893         * info.el (Info-insert-dir): Use Info-additional-directory-list if
16894         non-nil.
16895         (Info-file-list-for-emacs): Remove "info" from the list because
16896         that leads to trying to use the documentation from file `info'
16897         in various situations where it isn't appropriate, for instance
16898         C-h C-k C-h i.
16900         * ffap.el (ffap-read-file-or-url-internal): Handle case that
16901         DIR and/or STRING are nil.
16903         * progmodes/compile.el (compilation-setup): Make variable
16904         compilation-error-screen-columns buffer-local, as some comment
16905         in the code suggests it should be.
16907         * files.el (auto-mode-interpreter-regexp): New variable.
16908         (set-auto-mode): Use it.
16910         * indent.el (indent-for-tab-command): Doc fix.
16912         * mouse-sel.el (mouse-sel-mode): Doc fix.
16914         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
16915         labels.
16917         * help.el (print-help-return-message): When
16918         display-buffer-reuse-frames is set, let the help window been quit,
16919         instead of deleting it, which might delete a reused frame.
16921 2000-08-08  Eli Zaretskii  <eliz@is.elta.co.il>
16923         * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
16924         rename a directory to a name that differs only by its letter case.
16926 2000-08-08  Kenichi Handa  <handa@etl.go.jp>
16928         * international/quail.el (quail-define-rules): Handle Quail decode
16929         map correctly.  Add code for supporting annotations.
16930         (quail-install-decode-map): New function.
16931         (quail-defrule-internal): New optional arguments decode-map and
16932         props.
16933         (quail-advice): New function.
16935 2000-08-07  Sam Steingold  <sds@gnu.org>
16937         * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
16938         `defconst', `define-condition', `with-slots'.
16939         * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
16941 2000-08-03  Miles Bader  <miles@gnu.org>
16943         * comint.el (comint-use-prompt-regexp-instead-of-fields):
16944         New variable.
16945         (comint-prompt-regexp, comint-get-old-input): Document dependence on
16946         comint-use-prompt-regexp-instead-of-fields.
16947         (comint-send-input): Add `input' field property to stuff we send to
16948         the process, if comint-use-prompt-regexp-instead-of-fields is nil.
16949         (comint-output-filter): Add `output' field property to process
16950         output, if comint-use-prompt-regexp-instead-of-fields is nil.
16951         (comint-replace-by-expanded-history)
16952         (comint-get-old-input-default, comint-show-output)
16953         (comint-backward-matching-input, comint-forward-matching-input)
16954         (comint-next-prompt, comint-previous-prompt):  Use field
16955         properties if comint-use-prompt-regexp-instead-of-fields is nil.
16956         (comint-line-beginning-position): New function.
16957         (comint-bol): Use comint-line-beginning-position.  Make ARG optional.
16958         (comint-replace-by-expanded-history-before-point): Use
16959         comint-line-beginning-position and line-end-position.
16960         (comint-last-output-overlay): New variable.
16961         (comint-mode): Make `comint-last-output-overlay' buffer-local.
16963         * shell.el (shell-prompt-pattern): Doc change.
16964         (shell-backward-command): Use line-beginning-position.
16966         * gud.el (gud-gdb-complete-command): Use
16967         comint-line-beginning-position.
16969         * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
16970         comint-bol doesn't actually go to the beginning of the line.
16972         * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
16973         if comint-use-prompt-regexp-instead-of-fields is non-nil.
16974         (try-expand-line-all-buffers): Likewise.
16976         * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
16977         explicitly matching comint-prompt-regexp.
16978         (sql-copy-column): Use comint-line-beginning-position instead of
16979         explicitly matching comint-prompt-regexp.
16981         * progmodes/octave-inf.el (inferior-octave-complete): Use
16982         comint-line-beginning-position.
16984         * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
16986         * progmodes/idlw-shell.el (idlwave-shell-send-command): When
16987         looking for a prompt, use `forward-line 0' instead of
16988         `beginning-of-line', to avoid getting caught by an input field.
16990 2000-08-07  Gerd Moellmann  <gerd@gnu.org>
16992         * files.el (shell-quote-wildcard-pattern): Make sure to return
16993         PATTERN, in the Unix case.
16995 2000-08-07  Eli Zaretskii  <eliz@is.elta.co.il>
16997         * play/zone.el (zone): Discard any pending input before running
16998         the randomly-chosen pgm.
17000 2000-08-07  Kenichi Handa  <handa@etl.go.jp>
17002         * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
17003         checking the existence of any multibyte characters.
17005 2000-08-06  Gerd Moellmann  <gerd@gnu.org>
17007         * help.el (describe-mode): Test minor-mode symbol for being
17008         bound before testing its value for being nil.
17010         * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
17011         `first', `second', and `third'.
17013         * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
17014         (second): Make it an alias for `cadr'.
17016 2000-08-06  Eli Zaretskii  <eliz@is.elta.co.il>
17018         * bs.el (bs-apply-sort-faces): Don't use window-system, since all
17019         types of display support faces now.
17021 2000-08-05  Gerd Moellmann  <gerd@gnu.org>
17023         * pcvs.el (require): Require `cl' during compilation, only.
17025         * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
17026         (toplevel): Remove `remq' and `remove' from autoloads.
17027         (cl-fake-autoloads): New variable.  If set, arrange for an error
17028         when CL functions etc. are autoloaded.
17030 2000-08-04  Eli Zaretskii  <eliz@is.elta.co.il>
17032         * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
17034         * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
17035         popped up, but the user clicks outside the menu, return an empty
17036         regexp (that causes unhighlight-regexp to have no effect).
17038         * menu-bar.el (menu-bar-games-menu): Add Zone.
17040         * hi-lock.el (toplevel): Require font-lock.
17042 2000-08-03  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
17044         * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
17045         (ebnf-8-bit-chars): New var for bug fix.
17046         (ebnf-string): Bug fix.
17048 2000-08-03  Sam Steingold  <sds@gnu.org>
17050         * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
17051         instead of `buffer-string'.
17052         (require 'cl): Always, not just when compiling.
17053         `ignore-errors' in `interactive', `list*', `defun*' &c make this
17054         necessary.
17056 2000-08-03  Eli Zaretskii  <eliz@is.elta.co.il>
17058         * international/mule-cmds.el (select-safe-coding-system): Make
17059         the message text about selecting a safe coding system more clear.
17061 2000-08-02  Gerd Moellmann  <gerd@gnu.org>
17063         * hi-lock.el: New file.
17065         * play/zone.el: New file.
17067         * replace.el (occur): Set tab-width in the *Occur* buffer to the
17068         value of tab-width in the original buffer.  Choose a line number
17069         format that's a multiple of the original buffer's tab width, so
17070         that lines appear right.
17072         * textmodes/ispell.el (ispell): New function, replacing an alias.
17073         Spell-check active region if in transient-mark-mode and mark
17074         is active; otherwise spell-check buffer.
17076 2000-08-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
17078         * ps-mule.el: Fix a customization problem on
17079         ps-mule-font-info-database-default.
17081 2000-08-02  Eli Zaretskii  <eliz@is.elta.co.il>
17083         * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
17084         display-mouse-p instead of window-system.
17085         (ebrowse-member-mode-map): Ditto.
17087 2000-08-01  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
17089         * progmodes/ebnf2ps.el: Update ps-print functions call.
17090         Indentation fix.  Doc fix.
17091         (ebnf-version): New version number (3.2).
17092         (ebnf-format-color, ebnf-begin-job): Code fix.
17094 2000-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
17096         * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
17097         font lock support on window-system.
17098         (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
17100         * textmodes/ispell.el (ispell-highlight-spelling-error): Use
17101         display-color-p, if fboundp, instead of window-system.
17103 2000-07-31  Eli Zaretskii  <eliz@is.elta.co.il>
17105         * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
17106         instead of window-system.
17108         * wid-edit.el (widget-choose): Use display-mouse-p instead of
17109         window-system.
17110         (widget-choice-mouse-down-action): Use display-popup-menus-p
17111         instead of window-system.
17113         * strokes.el (strokes-file): Run the file name through
17114         convert-standard-filename.
17115         (strokes-mode): Call display-mouse-p instead of looking at
17116         window-system.  Change the error message accordingly.
17118         * progmodes/cpp.el (toplevel): Support faces on tty's.
17120         * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
17121         (lm-plot-square, lm-init-display): Don't use window-system.
17123         * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
17124         (gomoku-plot-square, gomoku-init-display): Don't use window-system.
17126         * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
17127         instead of looking at window-system.
17129 2000-07-30  Gerd Moellmann  <gerd@gnu.org>
17131         * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
17132         of testing if iswitchb-prepost-hooks is bound, because the
17133         latter will always be true when invoking a recursive minibuffer
17134         from an active Iswitchb buffer.
17136 2000-07-30  Eli Zaretskii  <eliz@is.elta.co.il>
17138         * files.el (shell-quote-wildcard-pattern): New function.
17139         (insert-directory): Call it.  Only prepend "\" to command on Unix
17140         and GNU/Linux systems.
17142 2000-07-30  Gerd Moellmann  <gerd@gnu.org>
17144         * eshell/esh-groups.el: Change custom :link file names
17145         from `eshell.info' to `eshell'.
17147 2000-07-30  Francis Wright  <fjw@maths.qmw.ac.uk>
17149         * dired.el (dired-build-subdir-alist): Expand subdirectory names
17150         correctly in recursive ange-ftp listings.
17152 2000-07-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
17154         * ps-print.el: Fix bug 1: if ps-font-size-internal,
17155         ps-header-font-size-internal and
17156         ps-header-title-font-size-internal variables are not set,
17157         ps-nb-pages and ps-line-lengths-internal crashes.  Fix bug 2: if
17158         face text property is (foreground-color . COLOR) or
17159         `(background-color . COLOR)', ps-print crashes.  Doc fix.
17160         (ps-print-version): New version number (5.2.4).
17161         (ps-plot-region): Code fix.
17162         (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
17163         (ps-face-attribute-list, ps-face-attributes, ps-face-background):
17164         Bug fix 2.
17166 2000-07-30  Milan Zamazal  <pdm@freesoft.cz>
17168         * glasses.el (glasses-make-readable): Fix uncapitalization of
17169         identifiers like `myXMLDocument'.
17171 2000-07-28  Karl Fogel  <kfogel@red-bean.com>
17173         * mail/mail-hist.el (mail-hist-previous-input)
17174         (mail-hist-next-input): Do the obvious code factorization.
17175         (mail-hist-retrieve-and-insert): New func, contains common
17176         code of above two.
17177         If inserting a message body, leave point at top.
17179 2000-07-28  Sam Steingold  <sds@gnu.org>
17181         * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
17182         Use `<=', not `<' to compare times!
17183         (ange-ftp-ls): Remove.
17185 2000-07-27  Gerd Moellmann  <gerd@gnu.org>
17187         * play/cookie1.el: Add explanation of how to make cookie.el
17188         compatible with strfile(1) to comment.
17190         * subr.el (remove, remq): New functions.
17192         * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
17193         escape `*' in regexps.
17194         (midnight-find): Reverse order of arguments in the funcall of
17195         TEST.
17197         * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
17198         and `.class'.
17200         * play/meese.el: Add Commentary section.
17202 2000-07-27  Alex Schroeder  <alex@gnu.org>
17204         * sql.el (sql-ms): Added autoload cookie.
17205         (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
17206         (sql-oracle): Ditto.
17207         (sql-help): Doc change.
17209         (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
17210         types and exceptions.
17212 2000-07-27  Alex Schroeder  <alex@gnu.org>
17214         * sql.el (sql-placeholder-history): New variable.
17215         (sql-query-placeholders-and-send): New function that will query
17216         the user and replace placeholders with user input.
17217         (sql-oracle): If running on NT, set comint-input-sender to
17218         sql-query-placeholders-and-send.
17220         (sql-stop): If in the SQLi buffer, insert stop notification, else
17221         present it as a message.
17223 2000-07-27  Alex Schroeder  <alex@gnu.org>
17225         * sql.el (sql-input-ring-separator): Doc change.
17226         (sql-input-ring-file-name): Doc change.
17227         (sql-interactive-mode): Use `sql-input-ring-separator' and
17228         `sql-input-ring-file-name' to set the comint-mode equivalents
17229         without making them local variables.
17230         (sql-stop): Don't bind `sql-input-ring-separator' and
17231         `sql-input-ring-file-name' dynamically to their comint-mode
17232         equivalents.
17234 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
17236         * international/mule.el (register-char-codings): New function.
17237         (make-coding-system): Handle `safe-chars' specification in the arg
17238         PROPERTY.
17240         * international/mule-cmds.el
17241         (find-coding-systems-region-subset-p): This function deleted.
17242         (sort-coding-systems-predicate): New variable.
17243         (sort-coding-systems): New function.
17244         (find-coding-systems-region): Use
17245         find-coding-systems-region-internal.
17246         (find-coding-systems-string): Use find-coding-systems-region.
17247         (find-coding-systems-for-charsets): Check
17248         char-coding-system-table.
17249         (select-safe-coding-system-accept-default-p): New variable.
17250         (select-safe-coding-system): Mostly rewritten.  New argument
17251         ACCEPT-DEFAULT-P.
17252         (select-message-coding-system): Call select-safe-coding-system
17253         with ACCEPT-DEFAULT-P arg.
17254         (reset-language-environment): Reset default-sendmail-coding-system
17255         to the default value iso-latin-1.
17256         (set-language-environment): Don't set the obsolete variable
17257         charset-origin-alist.
17259         * international/codepage.el (cp-coding-system-for-codepage-1):
17260         Give `safe-chars' property to make-coding-system.
17262         * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
17263         calling select-message-coding-system twice.
17265         * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
17266         instead of `safe-charsets'.
17267         (cyrillic-alternativnyj): Likewise.
17268         (ccl-encode-alternativnyj): Don't check the charset
17269         cyrillic-iso8859-5.
17271 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
17273         * composite.el (compose-chars-after): Preserve match data.
17275 2000-07-26  Sam Steingold  <sds@gnu.org>
17277         * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
17278         (ange-ftp-real-file-newer-than-file-p): New function.
17279         (ange-ftp-verify-visited-file-modtime): Use `float-time'.
17280         (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
17282         * tooltip.el (tooltip-float-time): Removed (use `float-time').
17283         * midnight.el (midnight-float-time): Ditto.
17285 2000-07-26  Andreas Schwab  <schwab@suse.de>
17287         * files.el (normal-backup-enable-predicate): Correct
17288         interpretation of the return value of compare-strings.
17290 2000-07-26  Gerd Moellmann  <gerd@gnu.org>
17292         * isearch.el (isearch-resume): New function.
17293         (isearch-done): Add something to command-history to resume
17294         the search.
17295         (isearch-yank-line, isearch-yank-word): Use
17296         buffer-substring-no-properties instead of buffer-substring.
17298         * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
17299         of flyspell-mouse-map.
17301         * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
17302         duplicate definition.
17303         (makefile-mode): Remove duplicate setting of local-abbrev-table.
17305         * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
17306         (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
17308 2000-07-25  Sam Steingold  <sds@gnu.org>
17310         * net/ange-ftp.el: Get modtime over the net.
17311         (ange-ftp-file-modtime): New function.
17312         (ange-ftp-write-region, ange-ftp-insert-file-contents)
17313         (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
17314         Use it.
17315         (ange-ftp-dot-to-slash): New function.
17316         (ange-ftp-fix-name-for-vms): Use it.
17318         * midnight.el (midnight-buffer-display-time): Use
17319         `with-current-buffer'.
17321 2000-07-25  Gerd Moellmann  <gerd@gnu.org>
17323         * find-dired.el: Update copyright notice.
17324         (find-dired): Offer to kill a running `find'.
17326         * enriched.el (enriched-face-ans): For a `foreground-color'
17327         property, return '(("x-color" COLOR))' so that COLOR will be
17328         output as a parameter of the x-color annotation.  Likewise for the
17329         `background-color' property.  In the case of normal face
17330         properties, don't return annotations for unspecified foreground
17331         and background face attributes.
17333 2000-07-25  Kenichi Handa  <handa@etl.go.jp>
17335         * language/japan-util.el (japanese-katakana-region): Fix handling
17336         HANKAKU argument.
17338 2000-07-25  Miles Bader  <miles@gnu.org>
17340         * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
17341         constrain-to-field.  Pass nil ESCAPE-FROM-EDGE argument to
17342         constrain-to-field.
17344 2000-07-24  Andrew Innes  <andrewi@gnu.org>
17346         * timer.el (timer-activate-when-idle): Add optional parameter
17347         DONT-WAIT.  Update docstring.
17348         (run-with-idle-timer): Specify extra parameter to
17349         timer-activate-when-idle, so that timer will be activated
17350         immediately if Emacs is already idle.
17352         * w32-fns.el (w32-using-nt): Fix docstring.
17354 2000-07-24  Dave Love  <fx@gnu.org>
17356         * mouse.el (popup-menu): Set last-command-event.
17357         (mouse-major-mode-menu-prefix): Declare.
17359 2000-07-24  Gerd Moellmann  <gerd@gnu.org>
17361         * textmodes/flyspell.el: Update to author's version 1.5d.
17363         * progmodes/hideshow.el: Update copyright notice.
17365         * vcursor.el: Set maintainer to FSF, since author cannot
17366         be reached.
17368 2000-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
17370         * info.el (Info-goto-emacs-key-command-node): Leave a space after
17371         the prompt.
17373         * mouse.el (popup-menu): Run the keymap through indirect-function,
17374         in case it was defined with define-prefix-key.  If the menu is a
17375         list of keymaps, look up the binding of user's choice in each one
17376         of the keymaps.
17377         (mouse-popup-menubar): If the global and local menu-bar keymaps
17378         don't have a prompt string, create one and insert it into the
17379         keymap.  Don't barf if current-local-map returns nil.
17381 2000-07-24  Francis Wright  <fjw@maths.qmw.ac.uk>
17383         * dired.el (dired-sort-R-check): Added to allow recursive listing
17384         to be undone.
17385         (dired-sort-other): Use it.
17387 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17389         * Release of cc-mode 5.27
17391 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17393         * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
17394         c-beginning-of-statement-1 that caused a bad case of recursion
17395         which could consume a lot of CPU in large classes in languages
17396         that have in-expression classes (i.e. Java and Pike).
17398         * cc-engine.el (c-guess-basic-syntax): Check for in-expression
17399         statements before top level constructs (i.e. case 6 is moved
17400         before case 5 and is now case 4) to catch in-expression
17401         classes in top level expressions correctly.
17403 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17405         * cc-engine.el (c-guess-basic-syntax): Less naive handling of
17406         objc-method-intro. Case 4 removed and case 5I added.
17408         * cc-langs.el (c-append-paragraph-start): New variable used by
17409         c-common-init to get paragraph-start correct.
17410         * cc-langs.el (c-common-init): Use c-append-paragraph-start to
17411         initialize paragraph-start to make it correct both with and
17412         without the javadoc special case.
17414         * cc-mode.el (java-mode): Use c-append-paragraph-start to
17415         initialize paragraph-start for javadoc markup.
17417         * cc-vars.el (c-style-variables-are-local-p): Incompatible
17418         change by defaulting this to t.  It's motivated by the
17419         confusing behavior that otherwise arise from the style system
17420         when editing both java and non-java files at the same time
17421         (see the comments about style setting in c-common-init).
17423 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17425         * cc-cmds.el (c-indent-new-comment-line): Added a kludge
17426         similar to the one in c-fill-paragraph to check the fill
17427         prefix from the adaptive fill function for sanity.
17429 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17431         * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
17432         defun block.
17434 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17436         * cc-align.el (c-lineup-multi-inher): Handle lines with
17437         leading comma nicely. Extended to handle member initializers
17438         too.
17440         * cc-engine.el: (c-beginning-of-inheritance-list,
17441         c-guess-basic-syntax): Fixed recognition of inheritance lists
17442         when the lines begins with a comma.
17444         * cc-vars.el (c-offsets-alist): Changed default for
17445         member-init-cont to c-lineup-multi-inher since it now handles
17446         member initializers and indents better for leading commas.
17448 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17450         * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
17451         handling that caused class open lines to be recognized as
17452         statement-conts in some cases.
17454         * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
17455         guessed by the adaptive fill function unless point is on the
17456         first line of a block comment.
17458         * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
17459         when the buffer ends with a macro continuation char.
17461         * cc-engine.el (c-guess-basic-syntax): Added support for
17462         function definitions as statements in Pike.  The first
17463         statement in a lambda block is now labeled defun-block-intro
17464         instead of statement-block-intro.
17466         * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
17467         so that the class surrounding point is selected, not the one
17468         innermost in the state.
17470         * cc-engine.el (c-guess-basic-syntax): Fixed bug in
17471         recognition of switch labels having hanging multiline
17472         statements.
17474         * cc-engine.el (c-beginning-of-member-init-list): Broke out
17475         some code in c-guess-basic-syntax to a separate function.
17476         * cc-engine.el (c-just-after-func-arglist-p): Fixed
17477         recognition of member inits with multiple line arglists.
17478         * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
17479         member-init-cont when the commas are in funny places.
17481 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17483         * cc-defs.el (c-auto-newline): Removed this macro since it's
17484         not used anymore.
17486         * cc-engine.el (c-looking-at-bos): New helper function.
17487         * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
17488         inexpr and toplevel classes apart in Pike.
17490         * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
17491         of case 9A.
17493         * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
17494         constant, since "class" can introduce an in-expression class
17495         in Pike nowadays.
17497 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17499         * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
17500         indentation on cpp-macro lines.
17502         * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
17503         a syntax modifier like comment-intro, to make it possible to
17504         get syntactic indentation for preprocessor directives.  It's
17505         incompatible wrt to lineup functions on cpp-macro, but it has
17506         no observable effect in the 99.9% common case where cpp-macro
17507         is set to -1000.
17509 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17511         * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
17512         member-init-cont when the preceding arglist is several lines.
17514 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17516         * cc-styles.el (c-style-alist): The basic offset for the BSD
17517         style corrected to 8.
17519 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17521         * cc-styles.el (c-style-alist): Adjusted the indentation of
17522         brace list openers in the gnu style.
17524 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17526         * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
17528         * cc-cmds.el (c-electric-brace, c-electric-slash,
17529         c-electric-star, c-electric-semi&comma, c-electric-colon,
17530         c-electric-lt-gt, c-electric-paren): Don't reindent old lines
17531         when c-syntactic-indentation is nil.
17533         * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
17534         we were left at comments preceding the first statement when
17535         reaching the beginning of the buffer.
17537         * cc-vars.el (c-syntactic-indentation): New variable to turn
17538         off all syntactic indentation.
17540 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17542         * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
17543         between the text and the block comment ender when it hangs,
17544         depending on how many there are before the fill.
17546 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17548         * cc-engine.el (c-beginning-of-closest-statement): New helper
17549         function to go back to the closest preceding statement start,
17550         which could be inside a conditional statement.
17551         * cc-engine.el (c-guess-basic-syntax): Use
17552         c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
17554         * cc-engine.el (c-guess-basic-syntax): Better handling of
17555         arglist-intro, arglist-cont-nonempty and arglist-close when
17556         the arglist is nested inside parens.  Cases 7A, 7C and 7F
17557         changed.
17559         * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
17560         up-to-date with javadoc 1.2.
17562 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17564         * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
17565         multiline Pike type decls.
17567 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17569         * cc-cmds.el (c-indent-new-comment-line): Always break
17570         multiline comments in multiline mode, regardless of
17571         comment-multi-line.
17573 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17575         * cc-engine.el (c-guess-basic-syntax): Fixed bug with
17576         fully::qualified::names in C++ member init lists.  Preamble in
17577         case 5D changed.
17579 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17581         * cc-langs.el (c-common-init): Handling of obsolete variables
17582         moved to c-initialize-cc-mode.  More compatible style override
17583         when using global style variables.
17584         * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
17585         variables moved here.
17587         * cc-styles.el (c-make-styles-buffer-local): Flag style
17588         variable localness in c-style-variables-are-local-p to make
17589         the compatibility measure in c-common-init work well.
17591         * cc-styles.el (c-set-style-1): c-special-indent-hook can no
17592         longer contain set-from-style.
17593         * cc-styles.el (c-initialize-builtin-style): Don't check for
17594         set-from-style on c-special-indent-hook.
17595         * cc-styles.el (c-copy-tree): Obsolete.  The standard function
17596         copy-alist is sufficient now.
17598         * cc-styles.el (c-set-style, c-set-style-1,
17599         c-get-style-variables): Fixes to variable initialization so
17600         that duplicate entries in styles have the same effect
17601         regardless of DONT-OVERRIDE.
17603         * cc-styles.el (c-set-style-2): Fixed bug where the
17604         initialization of inheriting styles failed when the
17605         dont-override flag is set.
17607         * cc-vars.el (c-special-indent-hook): Don't use set-from-style
17608         on this.
17610 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
17612         * cc-defs.el (c-forward-comment): Removed the workaround
17613         introduced in 5.38 since it had worse side-effects.  If a line
17614         contains the string "//\"", it regarded the // as a comment
17615         start since the \ temporarily doesn't have escape syntax.
17617 2000-07-17  Emmanuel Briot  <briot@act-europe.fr>
17619         * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
17620         ada-xref.el before ada-prj.el, so that the Project menu is created
17621         when ada-prj tries to add to it.
17622         (ada-activate-keys-for-case): Suppress the characters that are not
17623         part of the Ada syntax. Better compatibility with else-mode
17624         (ada-adjust-case-interactive): When auto-casing is not active,
17625         correctly insert newlines (used to insert only ^M).  Prevent the
17626         syntax table from being changed in case of an error
17627         (or '_' becomes part of a word and some commands are confused).
17628         Do nothing if ada-auto-case is nil.
17629         (ada-after-keyword-p): Ignore keywords that are also attributes
17630         (ada-batch-reformat): Update usage comment
17631         (ada-call-from-contextual-menu): New function
17632         (ada-case-read-exceptions): Reinitialize the casing exception list
17633         first to nil first, so that the casing exception file can be
17634         shared.
17635         (ada-check-defun-name): Handles "configure" keyword for gnatdist
17636         files.
17637         (ada-compile-goto-error): Fix regexp used to detect a file:line
17638         anywhere in the error message
17639         (ada-contextual-menu-last-point): New variable
17640         (ada-create-keymap): If the variable delete-key-deletes-forward is
17641         t on XEmacs, it means that DEL should delete one character
17642         forward.
17643         (ada-create-menu): Use :included instead of :visible for XEmacs.
17644         New submenu "Options".
17645         (ada-end-stmt-re): Correctly indent "select ... then abort"
17646         statements.
17647         (ada-fill-comment-paragraph): Correctly delete all leading '--'
17648         even if they don't match ada-fill-comment-prefix Fix handling of
17649         paragraphs on the first or last line of a file.
17650         (ada-format-paramlist): Fix handling of default parameter values.
17651         (ada-get-body-name): New function.
17652         (ada-get-current-indent): Optimized by searchling directly for an
17653         existing generic part or a statement outside of it.  Handle
17654         ada-indent-align-comments when indenting comments Replaced some
17655         regexps by testing directly the next character. This results in a
17656         huge speedup on some files.  New indentation scheme for renames
17657         statements.  Stop looking for the 'while' or 'for' associated with
17658         a 'loop' at the first semicolon encountered.  A "return" can also
17659         match an anonymous access subprogram declaration.
17660         (ada-get-indent-noindent): Ignore strings and comments when
17661         looking for the keywords "record" and "private".
17662         (ada-goto-matching-decl-start): When matching "if", make sure we
17663         are not in fact seeing "end if".  Ignore "when" statements except
17664         when initial keyword was "begin".  Fix handling of nested
17665         procedures.  Add a recursive call to this function to skip over
17666         other 'end' statmts.  Fix indentation for "when .. => begin"
17667         (ada-in-open-paren-p): Fix indentation for complex boolean
17668         expressions, where 'and then', 'or else' and parenthesis
17669         statements are mixed up.
17670         (ada-in-paramlist-p): Skip comments while searching for the
17671         beginning Fix handling of operator declarations.
17672         (ada-indent-align-comments): New variable
17673         (ada-indent-current): Change the syntax table only in the
17674         protected section, so that we are sure it is restored correctly.
17675         (ada-indent-on-previous-lines): Use ada-use-indent and
17676         ada-with-indent Correctly indent "select ... then"
17677         (ada-indent-region): Slight speedup.
17678         (ada-indent-renames): New variable.
17679         (ada-last-which-function-subprog, ada-last-which-function-line):
17680         New variables
17681         (ada-looking-at-semi-private): Correctly indent the 'private'
17682         keyword when it is the first word in a package declaration.
17683         (ada-loose-case-word): Stop searching if at the end of the buffer.
17684         (ada-loose-case-word, ada-capitalize-word): Recase the whole word
17685         even if point is not initially at the end of the word.
17686         (ada-matching-decl-start-re): Add "when".
17687         (ada-mode): Add support for abbrev-mode, outline-mode and
17688         which-func-mode Override the old find-file.el entry in
17689         ff-special-constructs since it is using the obsolete
17690         ada-spec-suffix variable
17691         (ada-no-auto-case): New function
17692         (ada-scan-paramlist): When parsing the argument type, accept
17693         spaces (as in "X 'Class", generated by Rational Rose).
17694         (ada-other-file-name): No longer loads the other file.
17695         (ada-popup-menu): Save and restore the current buffer and cursor
17696         position before and after displaying the menu.
17697         (ada-search-ignore-complex-boolean): New function.
17698         (ada-uncomment-region): Emacs21 already knows how to delete
17699         comments not starting in the first column.
17700         (ada-use-indent): New variable
17701         (ada-which-function): New function.
17702         (ada-with-indent): New variable
17703         (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
17704         can be batch-compiled from the command line.
17706         * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
17707         Add to the menu when the file is loaded, not in ada-mode-hook.
17708         Add -toolbar to the default ddd command Switches moved from
17709         ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
17710         ada-prj-default-comp-opt
17711         (ada-add-ada-menu): Remove the map and name parameters Add the Ada
17712         Reference Manual to the menu
17713         (ada-check-current): rewritten as a call to ada-compile-current
17714         (ada-compile): Removed.
17715         (ada-compile-application, ada-compile-current, ada-check-current):
17716         Set the compilation-search-path so that compile.el automatically
17717         finds the sources in src_dir.  Automatic scrollong of the
17718         compilation buffer.  C-uC-cC-c asks for confirmation before
17719         compiling
17720         (ada-compile-current): New parameter, prj-field
17721         (ada-complete-identifier): Load the .ali file before doing
17722         processing
17723         (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
17724         conform to gnatmake's behavior.
17725         (ada-find-file-in-dir): New function
17726         (ada-find-references): Set the environment variables for gnatfind
17727         (ada-find-src-file-in-dir): New function.
17728         (ada-first-non-nil): Removed
17729         (ada-gdb-application): Add support for jdb, the java debugger.
17730         (ada-get-ada-file-name): Load the original-file first if not done
17731         yet.
17732         (ada-get-all-references): Handles the new ali syntax (parent types
17733         are found between <>).
17734         (ada-initialize-runtime-library): New function
17735         (ada-mode-hook): Always load a project file when a file is opened,
17736         so that the casing exceptions are correctly read.
17737         (ada-operator-re): Add all missing operators ("abs", "rem", "**").
17738         (ada-parse-prj-file): Use find-file-noselect instead of find-file
17739         to open the project file, since the latter does not work with
17740         speedbar Get default values before loading the prj file, or the
17741         default executable file name is wrong.  Use the absolute value of
17742         src_dir to initialize ada-search-directories and
17743         compilation-search-path,...  Add the standard runtime library to
17744         the search path for find-file.
17745         (ada-prj-default-debugger): Was missing an opening '{'
17746         (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
17747         variables.
17748         (ada-prj-default-gnatmake-opt): New variable
17749         (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
17750         buffers, the project file is the default one Save the windows
17751         configuration before displaying the menu.
17752         (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
17753         (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
17754         ...)  regexp-quote identifiers names to support operators +,
17755         -,... in regexps.
17756         (ada-remote): New function.
17757         (ada-run-application): Erase the output buffer before starting the
17758         run Support remote execution of the application.  Use
17759         call-process, or the arguments are incorrectly parsed
17760         (ada-set-default-project-file): Reread the content of the active
17761         project file, not the one from the current buffer When a project
17762         file is set as the default project, all directories are
17763         automatically associated with it.
17764         (ada-set-environment): New function
17765         (ada-treat-cmd-string): New special variable ${current}
17766         (ada-treat-cmd-string): Revised.  The substitution is now done for
17767         any ${...} substring
17768         (ada-xref-current): If no body was found, compiles the spec
17769         instead.  Setup ADA_{SOURCE,OBJECTS}_PATH before running the
17770         compiler to get rid of command line length limitations.
17771         (ada-xref-get-project-field): New function
17772         (ada-xref-project-files): New variable
17773         (ada-xref-runtime-library-specs-path)
17774         (ada-xref-runtime-library-ali-path): New variables
17775         (ada-xref-set-default-prj-values): Default run command now does a
17776         cd to the build directory.  New field: main_unit Provide a default
17777         file name even if the current buffer has no prj file.
17779         * ada-prj.el:
17780         Rewritten to show a tabbed-dialog.
17781         (ada-prj-add-ada-menu): Remove the map and name parameters.
17782         (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
17783         New function
17784         (ada-prj-load-directory, ada-prj-subdirs-of): New functions
17785         (ada-prj-load-from-file): New function
17786         (ada-prj-save): Always save fields that depend on the current buffer
17787         (ada-prj-show-value): New function
17789         * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
17790         Ada mode. This will allow us to display the Ada menu in any buffer
17791         we want (for project items).
17792         (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
17793         number of spaces in the header.
17795 2000-07-24  Dave Love  <fx@gnu.org>
17797         * ediff-init.el (ediff-region-help-echo): Bind face-help.
17799 2000-07-23  Noah Friedman  <friedman@splode.com>
17801         * type-break.el (type-break): perform autosave.
17802         Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
17803         (type-break-do-query): Cancel query schedule while performing
17804         actual query, to avoid possibility of a second query being made
17805         while first one is already in progress.
17806         (type-break-time-stamp-format): New variable.
17807         (type-break-time-stamp): New function.
17808         (type-break-time-warning): Use it.
17809         (type-break-keystroke-warning): Use it.
17810         (type-break-noninteractive-query): Use it.
17812         * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
17813         cookie.
17814         Use add-minor-mode to set minor-mode-alist, if available.
17815         (eldoc-echo-area-use-multiline-p): New user option.
17816         (eldoc-echo-area-multiline-supported-p): New variable.
17817         (eldoc-docstring-format-sym-doc): Use them.
17818         (eldoc-mode): If not using idle timers, append to local post and
17819         pre command hooks.  Suggested by David Byers <davby@ida.liu.se>.
17820         (eldoc-display-message-no-interference-p): Don't interfere with
17821         edebug.
17822         Add autoload cookie for eldoc-mode minor-mode-alist initialization.
17823         (eldoc-function-arglist): New function.
17824         (eldoc-function-argstring): Use it.
17826         * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
17827         auto save directory exists before calling directory-files.
17829 2000-07-23  Dave Love  <fx@gnu.org>
17831         * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
17832         ^o, ^u.
17834 2000-07-21  Dave Love  <fx@gnu.org>
17836         * ediff-init.el (ediff-region-help-echo): Modify to use overlay
17837         now passed to the function.  It now works properly.
17839         * smerge-mode.el (smerge-mode-menu): Fill it out.
17841 2000-07-20  Gerd Moellmann  <gerd@gnu.org>
17843         * info-look.el (info-lookup): If *info* is shown in another frame
17844         on the same display, select that frame, instead of switching to
17845         the Info buffer in another window of the selected frame.
17847         * simple.el (universal-argument-map): Bind numeric keypad keys
17848         kp-0 to kp-9 and kp-subtract.
17849         (digit-argument): Handle these keys.
17851 2000-07-20  Dave Love  <fx@gnu.org>
17853         * net/goto-addr.el (goto-address-fontify): Don't bother with
17854         buffer-modified and read-only stuff -- irrelevant with overlays.
17855         Put an extra property on the overlays and use it to clean up in
17856         case goto-address is re-run.
17858 2000-07-19  Richard M. Stallman  <rms@gnu.org>
17860         * timer.el (run-with-idle-timer): Doc fix.
17862         * mail/mail-utils.el (mail-strip-quoted-names):
17863         Handle case where <...> appears inside "...".
17864         Use replace-match to edit the string more simply.
17865         (rmail-dont-reply-to): Cope with an unmatched ".
17867 2000-07-19  Dave Love  <fx@gnu.org>
17869         * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
17870         implementation.
17872         * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
17873         (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
17874         (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
17876 2000-07-19  Gerd Moellmann  <gerd@gnu.org>
17878         * textmodes/refer.el: Correct maintainer's email address.
17880         * progmodes/hideif.el: Correct author's email address.
17881         Fix typo in comment.
17883         * xml.el: New file.
17885         * mail/mailheader.el: Correct author's mail address.
17887         * gnus/parse-time.el: Correct author's mail address.
17889 2000-07-19  Colin Walters <walters@cis.ohio-state.edu>
17891         * comint.el (comint-highlight-input, comint-highlight-face):
17892         New user options.
17893         (comint-input-ring-file-name): Change custom type.
17894         (comint-mode-map): Bind mouse-2.
17895         (comint-insert-clicked-input): New function.
17896         (comint-send-input): Handle input highlighting.
17898 2000-07-18  Stefan Monnier  <monnier@cs.yale.edu>
17900         * mouse.el (popup-menu): New function.
17901         (mouse-major-mode-menu): Use it.
17903 2000-07-18  Dave Love  <fx@gnu.org>
17905         * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
17906         improvements.
17908 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
17910         * faces.el (face-font-selection-order)
17911         (face-font-family-alternatives): Add custom type.
17913 2000-07-18  Dave Love  <fx@gnu.org>
17915         * cus-edit.el (custom-variable-reset-saved)
17916         (custom-variable-reset-standard): Remove unused bindings.
17918         * rect.el (open-rectangle-line): Remove unused let.
17920         * hl-line.el (hl-line-highlight): Check hl-line-mode.
17922 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
17924         * cdl.el: Fix `Maintainer' keyword.
17926         * play/pong.el: Add author's email address.
17928 2000-07-17  Sam Steingold  <sds@gnu.org>
17930         * files.el (insert-directory): Call `split-string' instead of
17931         re-implementing it.
17933 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
17935         * mail/vms-pmail.el: Change maintainer to FSF.
17937         * net/goto-addr.el: Change maintainer to FSF.
17939         * info.el (Info-title-face-alist): Removed.
17941 2000-07-18  David Ponce  <david@dponce.com>
17943         * recentf.el (recentf-open-files): New command that works like
17944         `recentf-open-more-files', but shows the whole list of files (not just
17945         those omitted from the menu). Useful if you don't use a menu-bar!
17946         (recentf-open-more-files) Modified to use `recentf-open-files'.
17948         (recentf-open-files, recentf-open-more-files)
17949         (recentf-edit-list): Dialogs use `recentf-dialog-mode'
17951         (recentf-dialog-mode): New mode for dialogs. You can now just type
17952         "q" to cancel the dialogs.
17954 2000-07-18  David Ponce  <david@dponce.com>
17956         * recentf.el: This is a major update of recentf.el. It adds new
17957         features to better organize the recentf menu and "More..." buffer.
17959         Using new provided menu filtering functions you can now organize the
17960         recent files list:
17962         - by major modes
17963         - by directories
17964         - by user defined rules
17966         Finally, with the new `recentf-filter-changer' customizable filter you
17967         can define a ring of filters and dynamically (via the menu) cycle on
17968         each menu organization in the ring (a la msb).
17970 2000-07-18  Eli Zaretskii  <eliz@is.elta.co.il>
17972         * eshell/eshell.el (eshell): Replace links to eshell.info with
17973         links to eshell, to avoid problems on systems where the manual is
17974         installed as `eshell'.
17975         * eshell/esh-cmd.el (eshell-cmd): Ditto.
17976         * eshell/em-smart.el (eshell-smart): Ditto.
17977         * eshell/em-banner.el (eshell-banner): Ditto.
17978         * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
17980         * eshell/em-unix.el (eshell-shuffle-files): Don't disable
17981         same-file check in the MS-DOS version (it does support inodes).
17983         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
17985         * eshell/eshell.el (eshell-directory-name):
17986         Run default directory name through convert-standard-filename.
17988 2000-07-18  Kenichi Handa  <handa@etl.go.jp>
17990         * international/mule-cmds.el (select-safe-coding-system):
17991         Fix typo in the comment.
17993         * language/european.el (compound-text):
17994         Force katakana-jisx0201 to be designated to G1.
17996         * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
17997         Don't translate some national variant characters of latin-jisx0201.
17998         (x-ctext): Force katakana-jisx0201 to be designated to G1.
18000         * international/kkc.el (kkc-after-update-conversion-functions):
18001         New variable.
18002         (kkc-update-conversion): Run functions in it at the tail.
18004 2000-07-16  John Wiegley  <johnw@gnu.org>
18006         * lisp/align.el (align-newline-and-indent):
18007         Adding new function.  for auto-aligning blocks of code on RET.
18008         (align-region): Fixed badly formatted minibuffer message.
18010 2000-07-17  Kenichi Handa  <handa@etl.go.jp>
18012         * international/kkc.el (kkc-show-conversion-list-count): Customize it.
18013         (kkc-region): Update kkc-next-count and kkc-prev-count here.  Show
18014         the conversion list at first if appropriate.
18015         (kkc-next): Don't update kkc-next-count here.
18016         (kkc-prev): Don't update kkc-prev-count here.
18017         (kkc-show-conversion-list-update): Fix setting up of conversion
18018         list message.
18020 2000-07-16  Stefan Monnier  <monnier@cs.yale.edu>
18022         * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
18024 2000-07-16  Dave Love  <fx@gnu.org>
18026         * cus-edit.el (custom-buffer-create-internal): Use a help-echo
18027         function to be more specific.
18029         * wid-edit.el (widget-specify-field, widget-specify-button): Allow
18030         non-string help-echo.
18031         (widget-types-convert-widget): Defsubst it.
18032         (widget-echo-help): Try to cope with a help-echo function of two
18033         possible sorts.
18035 2000-07-15  Jason Rumney  <jasonr@gnu.org>
18037         * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
18038         Declare as obsolete.
18040         * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
18042 2000-07-14  Gerd Moellmann  <gerd@gnu.org>
18044         * hilit-chg.el: Fix typo.
18046 2000-07-14  Dave Love  <fx@gnu.org>
18048         * info.el (Info-mode-menu): Fix use of :help, :enable.
18050 2000-07-14  Stefan Monnier  <monnier@cs.yale.edu>
18052         * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
18054 2000-07-13  Dave Love  <fx@gnu.org>
18056         * emacs-lisp/easymenu.el: Doc fixes.
18057         (easy-menu-remove): Defalias to ignore.
18059         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
18060         Call throw correctly.
18062 2000-07-13  Gerd Moellmann  <gerd@gnu.org>
18064         * faces.el (frame-background-mode): Doc fix.
18066         * simple.el (eval-expression-print-length): Change custom type to
18067         allow entering nil as value.
18069 2000-07-13  Dave Love  <fx@gnu.org>
18071         * progmodes/fortran.el (fortran-imenu-generic-expression):
18072         Change definition layout.
18073         (fortran-mode-menu): Reinstate customize entries.
18075         * cus-edit.el (custom-group-menu-create, customize-menu-create):
18076         Use :filter, per old XEmacs code.
18078 2000-07-12  Gerd Moellmann  <gerd@gnu.org>
18080         * term.el (term-send-raw-meta): Strip modifiers from the keyboard
18081         event when deciding what to send to the terminal.
18083 2000-07-12  Dave Love  <fx@gnu.org>
18085         * cus-start.el: Add optional version as 4th element of specs and
18086         use it for several things new in v21.  Remove load-path.  Fix type
18087         of line-number-display-limit.
18089 2000-07-11  Dave Love  <fx@gnu.org>
18091         * progmodes/fortran.el: Don't require easymenu.
18092         Use repeat counts in various regexps.
18093         (fortran-mode-syntax-table): Defvar directly.
18094         (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
18095         (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
18096         Use defvar, not defconst.
18097         (fortran-mode-map): Change locals in `let'.  Use `fortran-auto-fill'.
18098         (fortran-mode): Set fortran-comment-line-start-skip,
18099         fortran-comment-line-start-skip, dabbrev-case-fold-search.
18100         (fortran-comment-indent): Use defsubst.
18101         (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
18102         Use fortran-comment-indent, not fortran-comment-indent-function.
18103         (fortran-comment-region, fortran-electric-line-number): Simplify.
18104         (fortran-auto-fill): New function.
18105         (fortran-do-auto-fill): Deleted.
18106         (fortran-find-comment-start-skip):
18107         Check for non-null comment-start-skip.
18108         (fortran-auto-fill-mode, fortran-fill-statement):
18109         Use fortran-auto-fill.
18110         (fortran-fill): Use fortran-auto-fill.  Check for null
18111         comment-start-skip.  Simplify final clause and use end-of-line finally.
18113         * widget.el (widget-plist-member): New alias.
18115 2000-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
18117         * eshell/esh-module.el (toplevel): Reference
18118         byte-compile-current-file only if it is bound.
18120 2000-07-10  Gerd Moellmann  <gerd@gnu.org>
18122         * dired.el: Don't require `dired-aux'.
18124 2000-07-10  Miles Bader  <miles@lsi.nec.co.jp>
18126         * dired-aux.el (dired-show-file-type): New function.
18127         * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
18128         (dired-show-file-type): Add autoload.
18130 2000-07-10  Kenichi Handa  <handa@etl.go.jp>
18132         * international/mule-diag.el (describe-font): Adjusted for the
18133         change of fontset-info.
18134         (print-fontset): Likewise.
18136 2000-07-09  Stefan Monnier  <monnier@cs.yale.edu>
18138         * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
18140 2000-07-07  Gerd Moellmann  <gerd@gnu.org>
18142         * bindings.el: Bind `[delete]' to delete-char.
18144         * dired.el (dired-find-alternate-file): New function.
18145         (dired-mode-map): Bind `a' to dired-find-alternate-file.
18146         (toplevel): Require dired-aux when compiling.
18147         (dired-buffers): Move defvar within file to avoid compiler warning.
18149         * info.el (Info-last-search): Variable removed.
18150         (Info-search-history): New variable.
18151         (Info-search): New Info-search-history.
18153         * battery.el, info-look.el: Change author's mail address.
18155 2000-07-07  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
18157         * mail/rmail.el (rmail-clear-headers): Don't throw an error
18158         if rmail-ignored-headers is nil.
18159         (rmail-retry-failure): Bind rmail-ignored-headers and
18160         rmail-displayed-headers to nil.
18162 2000-07-06  Gerd Moellmann  <gerd@gnu.org>
18164         * lpr.el (lpr-page-header-switches): Add `-h' switch.
18165         (print-region-1): Don't hard code `-h' here.
18167         * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
18169 2000-07-01  Francesco Potorti`  <pot@gnu.org>
18171         * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
18172         exim can use "your message" instead of "the message".
18174 2000-07-06  Stefan Monnier  <monnier@cs.yale.edu>
18176         * facemenu.el: Docstrings fixes.
18177         (facemenu-get-face): Don't use internal-find-face.
18178         (facemenu-iterate): Rename arg to match the docstring.
18180         * newcomment.el (uncomment-region): Be more careful when skipping
18181         backwards over `=' not to bump into BOBP.
18183 2000-07-05  Michael Kifer  <kifer@cs.sunysb.edu>
18185         * ediff-diff.el (ediff-wordify): Use syntax table.
18186         * ediff-init.el (ediff-has-face-support-p): Use
18187         ediff-color-display-p.
18188         (ediff-color-display-p): Use display-color-p, changed to defun
18189         from defsubst.
18190         Got rid of special cases for NeXT and OS/2.
18191         * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
18192         face.
18194 2000-07-05  Stefan Monnier  <monnier@cs.yale.edu>
18196         * emacs-lisp/lucid.el: Require CL.
18197         (copy-tree, remprop): Remove, it's provided by CL.
18198         (map-keymap): Define in terms of cl-map-keymap.
18199         (extent-property, set-extent-end-glyph): New functions.
18201         * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
18203 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
18205         * Makefile.in (DONTCOMPILE): Add comment that the name may
18206         not be changed without changing the make-dist script.
18208         * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
18209         (cl-mapc): Use mapc instead of cl-old-mapc.
18211 2000-07-05  Andrew Innes  <andrewi@gnu.org>
18213         * makefile.nt: Add support for `bootstrap' and related targets.
18215 2000-07-05  Stefan Monnier  <monnier@cs.yale.edu>
18217         * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
18218         (easy-menu-do-define): Use `menu-item' format.
18219         Handle case where easy-menu-create-menu returns a symbol.
18220         Manually call the potential top-level filter in the function binding.
18221         (easy-menu-filter-return): New arg NAME.
18222         Convert to a keymap if MENU is an XEmacs menu.
18223         (easy-menu-convert-item-1): New.  Extracted from easy-menu-do-add-item.
18224         (easy-menu-converted-items-table, easy-menu-convert-item):
18225         New var and fun to memoize easy-menu-convert-item-1.
18226         (easy-menu-do-add-item): Use it.
18227         (easy-menu-create-menu): Use easy-menu-convert-item.
18228         Wrap easy-menu-filter-return around any :filter specification.
18229         Don't convert the menu if a filter was specified.
18230         Tell easy-menu-make-symbol not to check for MENU being an expression.
18231         (easy-menu-make-symbol): New arg NOEXP.
18233 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
18235         * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
18236         EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
18237         (eval-defun): If called with prefix arg, instrument code for
18238         Edebug.
18240         * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
18241         similar to that of eval-defun.
18243 2000-07-04  Dave Love  <fx@gnu.org>
18245         * hl-line.el (hl-line-overlay): Make it permanent-local.
18247         * calendar/todo-mode.el: Replaced with a working version, based on
18248         1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
18250 2000-07-03  Miles Bader  <miles@lsi.nec.co.jp>
18252         * paths.el (prune-directory-list): New function.
18253         (Info-default-directory-list): Rewritten to more methodically
18254         enumerate a big list of possible info directories (based on the
18255         list used by the standalone info reader).
18257         * info.el (info-initialize): Use prune-directory-list to remove
18258         non-existent directories from Info-directory-list.
18260         * paths.el (Info-default-directory-list): Try a list of possible
18261         info-directories instead of a single one.  Add the possible
18262         info directory "/usr/share/info".
18264         * woman.el (woman-man.conf-path): Explicitly include the debian
18265         man-db config file "/etc/manpath.config".
18266         (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
18267         are present in `manpath.config'.
18268         (woman-manpath): Include "/usr/share/man".
18270 2000-07-03  Gerd Moellmann  <gerd@gnu.org>
18272         * frame.el (blink-cursor-mode): Don't hide cursor initially.
18274         * startup.el (command-line): Initialize blink-cursor based
18275         on window-system.
18277         * frame.el (blink-cursor): Default to nil if not running under
18278         a window-system.
18280         * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
18281         (face-x-resources): Remove duplicate entry for :font.
18283         * textmodes/refer.el (refer-find-entry-internal): Use some-window
18284         instead of cycling through windows with next-window.
18286         * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
18287         of cycling through windows with next-window.
18289         * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
18290         of cycling through windows with next-window.
18292         * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
18293         (edebug-get-displayed-buffer-points): Use walk-windows/some-window
18294         instead of cycling through windows with next-window.
18296         * calendar/appt.el (appt-select-lowest-window): Use walk-windows
18297         instead of cycling through windows with next-window.
18299         * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
18300         of cycling through windows with next-window.
18302         * terminal.el (te-process-output): Use walk-windows instead of
18303         cycling through windows with next-window.
18305         * server.el (server-switch-buffer): Use some-window instead of
18306         cycling through windows with next-window.
18308         * window.el (some-window): New function.
18309         (walk-windows): Remove reference to walk-windows-start.
18311         * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
18313 2000-07-03  Richard Stallman  <rms@gnu.org>
18315         * window.el (walk-windows): Guarantee termination by keeping a list
18316         of all the windows already handled.
18318 2000-06-28  Eli Zaretskii  <eliz@is.elta.co.il>
18320         * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
18321         window-system.
18323         * man.el (Man-notify-when-ready): Don't use window-system.  If
18324         Man-notify-method is newframe, and the display is not
18325         multi-frame, select the frame created for the man page.
18326         (Man-init-defvars): Doc fix.
18328 2000-06-28  Gerd Moellmann  <gerd@gnu.org>
18330         * faces.el (region): Change background color for light background.
18332         * ediff-wind.el (ediff-setup-control-frame): Remove :box
18333         attribute from mode-line face of Ediff control frame.
18335         * replace.el (query-replace-map): Bind `e' like `E'.
18337 2000-06-28  Eli Zaretskii  <eliz@is.elta.co.il>
18339         * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
18340         Change name to "Select All".
18342         * dos-fns.el (convert-standard-filename): Fix last change.
18344 2000-06-27  Gerd Moellmann  <gerd@gnu.org>
18346         * help.el (describe-variable): Don't insert a second `'s' in front
18347         of the string `value is shown below'.  Since the syntax-table is
18348         set to emacs-lisp-mode-syntax-table, forward-sexp skips over
18349         an existing `'s', so that this won't be deleted.
18351         * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
18352         * pcmpl-unix.el: New files.
18354 2000-06-26  Stefan Monnier  <monnier@cs.yale.edu>
18356         * wid-edit.el (widget-member): Use the new plist-member.
18358 2000-06-26  Gerd Moellmann  <gerd@gnu.org>
18360         * replace.el (perform-replace): Undo change of 2000-04-04.
18361         Instead, move backward 1 character at the end of the loop when
18362         necessary.
18364         * faces.el (fringe): Change face for different backgrounds.
18366         * eshell/esh-module.el (toplevel): Load defgroup's differently;
18367         patch from John.
18369         * eshell/*.el: Change spelling of the Free Software Foundation.
18371         * eshell/esh-toggle.el: Removed.
18373         * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
18375         * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
18376         interactively.
18378 2000-06-26  Alex Schroeder  <alex@gnu.org>
18380         * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
18381         `define-key'; instead of checking `(emacs-version)' check for
18382         `set-keymap-parent' and `set-keymap-name' directly.  Add entries
18383         for `;' and `o' which might be electric.
18385         (sql-electric-stuff): New user option.
18386         (sql-magic-go): New function which uses `sql-electric-stuff'.
18387         (sql-magic-semicolon): New function which uses
18388         `sql-electric-stuff'.
18390         (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
18391         is not fboundp.
18393         (sql-oracle-options): New variable.
18394         (sql-oracle): Use it.
18396         (sql-imenu-generic-expression): Doc change.
18397         (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
18398         is used.
18400         (sql-informix): Added command line parameter "-" to force
18401         sql-informix-program to use stdout.
18403 2000-06-25  Eli Zaretskii  <eliz@is.elta.co.il>
18405         * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
18406         (cp864-decode-table): Doc fix.
18407         (cp720-decode-table): New variable, supports the Arabic OEM
18408         codepage used by Windows.
18409         (cp737-decode-table): New, Greek OEM codepage used by Windows.
18411 2000-06-23  Dave Love  <fx@gnu.org>
18413         * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
18414         (font-lock-fontify-anchored-keywords): Use
18415         line-beginning-position.
18416         (global-font-lock-mode): Use mapc.
18418 2000-06-23  Stefan Monnier  <monnier@cs.yale.edu>
18420         * eshell/esh-module.el: Require CL when compiling.
18422 2000-06-23  Gerd Moellmann  <gerd@gnu.org>
18424         * comint.el (comint-substitute-in-file-name): Call replace-match
18425         with second and third arg t.
18427         * cus-edit.el (custom-button-face, custom-button-pressed-face):
18428         Specify foreground color.
18430         * faces.el (tool-bar, mode-line, header-line): Specify foreground
18431         color.
18433         * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
18435         * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
18436         cddr instead of cdddr.
18438         * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
18439         instead of copy-list.
18441         * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
18442         of copy-list.
18444         * subdirs.el: Add eshell subdirectory.
18446         * eshell: New subdirectory containing the Eshell package.
18448         * pcomplete.el: New file.
18450 2000-06-23  Paul Eggert  <eggert@twinsun.com>
18452         * mail/mailpost.el (post-mail-send-it): Make sure file has
18453         proper permissions from birth.
18455         * files.el (basic-save-buffer-2): When temporarily setting
18456         file modes, set them to current modes plus 0200, not to 0777.
18458         * emerge.el (emerge-make-temp-file): Make sure file has proper
18459         permissions from birth.
18461 2000-06-22  Eli Zaretskii  <eliz@is.elta.co.il>
18463         * files.el (make-backup-file-name-1): On DOS/Windows, run the
18464         backup file name through convert-standard-filename.
18466         * dos-fns.el (convert-standard-filename): Convert leading
18467         directories as well.  When long file names are supported, convert
18468         characters that are invalid in Windows file names.
18470 2000-06-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18472         * ps-print.el: Fix bug: if ^L is the very first buffer character,
18473         ps-print crashes.  New feature: page selection for printing.  Create
18474         raw-text-unix coding system for XEmacs.  Doc fix.
18475         (ps-print-version): New version number (5.2.3).
18476         (ps-plot-region): Bug fix.
18477         (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
18478         (ps-header-sheet, ps-generate, ps-end-job): Code fix.
18479         (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
18480         funs.
18481         (ps-selected-pages, ps-last-selected-pages, ps-first-page)
18482         (ps-last-page): New vars.
18484 2000-06-21  Gerd Moellmann  <gerd@gnu.org>
18486         * progmodes/sh-script.el (sh-while-getopts): Fix handling of
18487         empty option string.
18489 2000-06-21  Eli Zaretskii  <eliz@is.elta.co.il>
18491         * man.el (man): Doc fix.
18493 2000-06-21  Kenichi Handa  <handa@etl.go.jp>
18495         * international/mule-cmds.el (set-language-info-alist): Docstring
18496         fixed.
18498 2000-06-20  Gerd Moellmann  <gerd@gnu.org>
18500         * version.el (emacs-version): Use ISO date format.
18502         * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
18503         instead of `M-backspace'.
18505         * simple.el (turn-off-auto-fill): New function.
18507 2000-06-20  Stefan Monnier  <monnier@cs.yale.edu>
18509         * jit-lock.el (with-buffer-prepared-for-jit-lock):
18510         Renamed from with-buffer-prepared-for-font-lock and use
18511         inhibit-modification-hooks rather than setting *-change-functions.
18512         Update all functions to use the new name.
18513         (jit-lock-first-unfontify-pos): New semantics (and doc).
18514         (jit-lock-mode): Make non-interactive.
18515         Don't automatically turn on font-lock.
18516         Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
18517         Always use jit-lock-after-change.
18518         Remove and restore font-lock-after-change-function.
18519         (turn-on-jit-lock, jit-lock-after-fontify-buffer)
18520         (jit-lock-after-unfontify-buffer): Remove.
18521         (jit-lock-stealth-fontify):
18522         Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
18523         (jit-lock-after-change): Set the `fontified' text-prop to nil.
18525 2000-06-20  Sam Steingold  <sds@gnu.org>
18527         * emacs-lisp/cl-indent.el (toplevel): Indent
18528         `print-unreadable-object' properly.  Untabify.
18530 2000-06-14  Carsten Dominik  <dominik@strw.leidenuniv.nl>
18532         * textmodes/reftex.el (reftex-find-citation-regexp-format):
18533         Support for bibentry.
18534         (reftex-compile-variables): Fixed problem with end of section-re.
18536         * texmodes/reftex-dcr.el (reftex-view-crossref,
18537         reftex-view-crossref-from-bibtex):
18538         Deal with changed `reftex-find-citation-regexp-format'.
18539         (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
18540         Replaced `remprop' with `put'.
18541         (reftex-view-crossref, reftex-view-crossref-when-idle):
18542         Support for bibentry.
18544         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
18545         New entry for bibentry package.
18547         * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
18548         Regexp also matches "\nobibliography".
18550         * textmodes/reftex-global.el (reftex-renumber-simple-labels):
18551         Call `reftex-ensure-write-access' before doing anything.
18552         (reftex-ensure-write-access): New function.
18554 2000-06-14  Carsten Dominik  <dominik@strw.leidenuniv.nl>
18556         * progmodes/idlwave.el: File re-installed (update to version 4.2)
18558         * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
18560         * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
18562         * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
18565 2000-06-20  Dave Love  <fx@gnu.org>
18567         * faces.el (frame-background-mode): Use set-default, not set, in
18568         setter.
18569         (frame-update-faces, frame-update-face-colors): Define with
18570         defalias.
18572         * enriched.el (enriched-decode-foreground)
18573         (enriched-decode-background): Don't use internal-find-face.
18575         * apropos.el: Doc fixes.
18577         * cus-edit.el (customize-changed-options): Check arg.
18578         (customize-version-lessp): Don't require decimal point.
18580         * custom.el (defcustom, defgroup): Doc fix.
18582         * newcomment.el (comment) <defgroup>: Add :version.
18583         (comment-multi-line): Doc fix.
18585         * emulation/mlsupport.el (define-hooked-local-abbrev,
18586         define-hooked-global-abbrev): Fix, using define-abbrev.
18588 2000-06-19  Gerd Moellmann  <gerd@gnu.org>
18590         * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
18591         the whole buffer.
18593 2000-06-19  Dave Love  <fx@gnu.org>
18595         * menu-bar.el (menu-bar-options-save): New function.
18596         (menu-bar-options-menu): Use it.
18597         (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
18598         Simplify.
18600 2000-06-19  Andreas Schwab  <schwab@suse.de>
18602         * progmodes/etags.el (tags-query-replace): Put new parameters
18603         START and END at the end, for backward compatibility.
18605 2000-06-19  Kenichi Handa  <handa@etl.go.jp>
18607         * international/codepage.el:
18608         (cp-coding-system-for-codepage-1): Delete special codes for
18609         generating xxx-dos coding system because now a CCL based coding
18610         system can handle EOL conversion by default.
18612         * international/mule.el (make-coding-system): Generate subsidiary
18613         coding systems for EOL handling variants even for a CCL based
18614         coding system.
18616 2000-06-19  Kenichi Handa  <handa@etl.go.jp>
18618         * international/isearch-x.el (isearch-minibuffer-input-method)
18619         (isearch-minibuffer-input-method-function): These variables
18620         deleted.
18621         (isearch-with-input-method): Don't use the above variables.
18622         (isearch-process-search-multibyte-characters): Likewise.  Call
18623         read-string with the arg INHERIT-INPUT-METHOD t.
18625 2000-06-17  Stefan Monnier  <monnier@cs.yale.edu>
18627         * font-lock.el (font-lock-after-fontify-buffer)
18628         (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
18630         * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
18631         Use consistent make-local-variable style for font-lock-fontified.
18632         (jit-lock-fontify-buffer):
18633         Don't bother checking for font-lock-mode and jit-lock-mode.
18635         * time.el: Remove trailing ^M that prevent CVS-merging.
18637 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
18639         * Makefile.in (distclean): New target.
18641 2000-06-16  Stefan Monnier  <monnier@cs.yale.edu>
18643         * Makefile.in (srcdir): Define for update-subdirs.
18645 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
18647         * find-lisp.el: New file.
18649 2000-06-16  Andrew Innes  <andrewi@gnu.org>
18651         * time.el (display-time-mail-function): New variable, to allow
18652         external packages to indicate when new mail is available.
18653         (display-time-update): Use it.
18655 2000-06-16  Kenichi Handa  <handa@etl.go.jp>
18657         * international/mule.el (mule-version): Change version name to
18658         SAKAKI.  AOI has already been used by Meadow.
18660         * international/quail.el (quail-show-guidance-buf): To find the
18661         bottom window (but minibuffer), pay attention to the height of
18662         minibuffer.
18664 2000-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
18666         * arc-mode.el (archive-mode-map): Use the new menu-item format for
18667         menu-bar menus.  Add help strings.  Don't remove the Edit menu
18668         from the menu bar, as the menu bar has enough space now.
18670         * Makefile.in (SHELL): Make sure /bin/sh is used.
18672         * woman.el (woman-man-buffer): Fix bold and underlined CJK
18673         characters, which use series of two ^H characters instead of one.
18675 2000-06-15  Gerd Moellmann  <gerd@gnu.org>
18677         * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
18678         (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
18679         functions.
18680         (Info-find-node-2): Try a case-sensitive search first, then
18681         do a case-insensitive search.
18683         * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
18684         tutorials.
18686         * complete.el (PC-env-vars-alist): New variable.
18687         (PC-complete-as-file-name): New function.
18688         (partial-completion-mode): Initialize PC-env-vars-alist from
18689         process-environment.
18690         (PC-do-completion): Handle completion of env vars.
18692         * info.el (Info-set-mode-line): Show file name in mode line,
18693         use `*Info*' instead of `Info:'.
18695         * startup.el (command-line-1): Change copyright messages to year
18696         2000.
18698 2000-06-15  Dave Love  <fx@gnu.org>
18700         * net/goto-addr.el (goto-address-fontify): Use keymap property,
18701         not local-map.
18703 2000-06-15  Kenichi Handa  <handa@etl.go.jp>
18705         * international/mule.el (set-buffer-file-coding-system): Almost
18706         rewritten to handle `undecided' as no-op.
18708 2000-06-14  Gerd Moellmann  <gerd@gnu.org>
18710         * Makefile.in: New file.
18712         * Makefile: Removed.
18714         * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
18715         (goto-address-highlight-keymap): Bind C-c RET.
18717 2000-06-14  Kenichi Handa  <handa@etl.go.jp>
18719         * mail/sendmail.el (sendmail-send-it): The temporary buffer
18720         inherits buffer-file-coding-system of the current buffer.
18722         * tar-mode.el (tar-extract): For goto-char, use (point-min), not
18723         0.  Give correct argument to set-auto-coding-function.
18724         (tar-expunge): For goto-char, use (point-min), not 0.
18725         (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
18726         (tar-subfile-save-buffer): Likewize.
18728         * international/mule.el
18729         (after-insert-file-set-buffer-file-coding-system): Call
18730         set-buffer-file-coding-system with the arg FORCE t.
18732 2000-06-13  Gerd Moellmann  <gerd@gnu.org>
18734         * mail/sendmail.el (mail-specify-envelope-from): Initialize to
18735         nil.  Contemporary sendmails issue an X-Authentication-Warning if
18736         the sender is set with `-f'.
18738 2000-06-13  Dave Love  <fx@gnu.org>
18740         * help.el (describe-function-1): Kluge around cases of functions
18741         fset to subrs whose doc doesn't match their symbol-name.
18743         * image.el (insert-image): Default STRING to a space.
18745         * info.el Doc fixes.
18746         (Info-build-node-completions): Match Ref tags.
18748 2000-06-13  Eli Zaretskii <eliz@is.elta.co.il>
18750         * frame.el (display-multi-frame-p, display-multi-font-p): New
18751         defaliases for display-graphic-p.
18753         * hl-line.el: Fixed a typo in commentary.
18755 2000-06-13  Kenichi Handa  <handa@etl.go.jp>
18757         * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
18758         fixed.
18760 2000-06-12  Dave Love  <fx@gnu.org>
18762         * image.el (insert-image): Save a little consing.
18764 2000-06-12  Kenichi Handa  <handa@etl.go.jp>
18766         * language/tibet-util.el: Convert all tibetan-1-column characters
18767         to the corresponding tibetan characters.
18768         (tibetan-add-components): Delete code for the special treatment of
18769         'a chung.
18771         * language/tibetan.el (tibetan-composable-pattern): Fix previous
18772         change.
18773         (tibetan-vowel-transcription-alist): More rules added.
18774         (tibetan-composite-vowel-alist): New variable.
18775         (tibetan-precomposition-rule-alist): More rules added.
18777 2000-06-12  Stefan Monnier  <monnier@cs.yale.edu>
18779         * startup.el (command-line): Only call menu-bar-mode if interactive.
18781         * thingatpt.el (toplevel symbol-properties):
18782         * textmodes/makeinfo.el (makeinfo-compile):
18783         * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
18784         * progmodes/hideif.el (hif-compress-define-list)
18785         (hide-ifdef-use-define-alist):
18786         * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
18787         (ange-ftp-vms-add-file-entry):
18788         * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
18789         * man.el (Man-build-man-command):
18790         * mail/rnewspost.el (news-reply-header-hook):
18791         * info.el (Info-insert-dir):
18792         * emulation/mlconvert.el (backward-word, forward-word, setq):
18793         * emacs-lisp/gulp.el (gulp-send-requests):
18794         * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
18795         (byte-optimize-inline-handler, byte-optimize-form-code-walker)
18796         (byte-optimize-apply, end of file):
18797         * emacs-lisp/advice.el (ad-advice-class-completion-table)
18798         (ad-make-freeze-definition):
18799         * startup.el (command-line, command-line-1): Don't quote lambdas.
18801         * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
18802         (cvs-cleanup-removed): New function.
18803         (cvs-cleanup-functions): New var.
18804         (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
18805         some flexibility in specifying additional entries to auto-cleanup.
18806         (cvs-quickdir): New function.
18807         (cvs-mode-insert): Use cvs-fileinfo-from-entries.
18808         (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
18809         (cvs-mode-find-file): Check that we are on a filename or dirname
18810         when invoked through a mouse-click.
18811         (cvs-full-path): Remove.
18812         (cvs-dired-action): Re-introduced.
18813         (cvs-dired-noselect): Use it.
18814         (vc-post-command-functions): use this new hook if available.
18816         * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
18817         (cvs-status-map): Don't inherit from cvs-mode-map anymore.
18818         (cvs-filename-map, cvs-dirname-map): Remove.
18819         (cvs-default-action): Remove.
18820         (cvs-add-face): Use `keymap' rather than `local-map' property, and only
18821         if the arg is really a keymap.
18822         (cvs-fileinfo-pp): Don't use any special map for file and dir names.
18823         Don't hardcode the mapping from state (aka type) to face, but check
18824         the var cvs-fi-<type>-face instead.
18825         (cvs-fileinfo-from-entries): New function.
18827         * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
18828         Docstring fix.
18829         (cvs-find-file-and-jump): Change default to be safer.
18830         (cvs-mode-diff-map): Define it as a function as well.
18831         (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
18832         Bind mouse-2 in this global map rather than with text-properties.
18834         * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
18835         file to resolve the ambiguity between C(conflict) and C(need-merge).
18837 2000-06-12  Kenichi Handa  <handa@etl.go.jp>
18839         * international/mule.el (set-buffer-file-coding-system): If
18840         CODING-SYSTEM is nil, set buffer-file-coding-system to nil
18841         unconditionally.
18843 2000-06-12  Dave Love  <fx@gnu.org>
18845         * wid-edit.el (widget-specify-button): Really suppress the face if
18846         required.
18848 2000-06-11  Gerd Moellmann  <gerd@gnu.org>
18850         * term/x-win.el (x-colors): Add colors from recent rgb.txt.
18852 2000-06-11  Stefan Monnier  <monnier@cs.yale.edu>
18854         * imenu.el (imenu-generic-expression): Docstring fix.
18856         * composite.el (composition-function-table): Move the `put'
18857         below the autoload cookie so we can load the file before loaddefs.
18859         * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
18861         * emacs-lisp/autoload.el (make-autoload): Use `cond'.
18862         Handle easy-mmode-define-global-mode.
18863         For complex macros like define-minor-mode that can generate
18864         several autoload entries, try to autoload entries in the
18865         macroexpanded code.
18867         * emacs-lisp/easy-mmode.el (define-minor-mode):
18868         If KEYMAP is a symbol, just use it.
18869         Use byte-compile-current-file and load-file-name to infer the
18870         proper :require to pass to defcustom.
18871         Wrap the hook var into `progn' so as not to autoload it.
18872         Add a :autoload-end cookie.
18873         Be more careful about the evaluation of KEYMAP.
18874         (easy-mmode-define-global-mode): Add a :autoload-end cookie.
18875         (define-derived-mode): Move define-abbrev-table outside of defvar.
18877 2000-06-10  Stefan Monnier  <monnier@cs.yale.edu>
18879         * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
18880         (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
18881         (backup-compiled-files): Ignore errors during `tar'.
18882         (bootstrap): Make autoloads before elc files.
18884 2000-06-10  Kenichi Handa  <handa@etl.go.jp>
18886         * international/mule.el (set-buffer-file-coding-system): If one of
18887         undecided-XXX is specified, change only EOL conversion.
18889         * international/mule-conf.el (unix): New alias for the coding
18890         system undecided-unix.
18892 2000-06-09  Dave Love  <fx@gnu.org>
18894         * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
18896         * progmodes/executable.el: Byte compile dynamic.
18897         (executable-insert): Change custom type.
18898         (executable-find): Add autoload cookie.
18899         (executable-make-buffer-file-executable-if-script-p): New
18900         function.  After Noah Friedman.
18902         * files.el (after-save-hook): Customize, with
18903         executable-make-buffer-file-executable-if-script-p as an option.
18905 2000-06-09  Kenichi Handa  <handa@etl.go.jp>
18907         * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
18908         "tib24p-mule.bdf" for Tibetan.
18910         * composite.el (decompose-composite-char): Declare it as obsolete.
18912         * man.el (Man-fontify-manpage): Pay attention to underline and
18913         overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
18915 2000-06-08  Gerd Moellmann  <gerd@gnu.org>
18917         * thingatpt.el (forward-thing): Use functionp instead of fboundp.
18918         Set maintainer to FSF since author isn't reachable.
18920 2000-06-08  Dave Love  <fx@gnu.org>
18922         * international/mule-cmds.el (select-safe-coding-system): If
18923         DEFAULT-CODING-SYSTEM is not specified, also check the most
18924         preferred coding-system if buffer-file-coding-system is
18925         `undecided'.  From Handa.
18927 2000-06-08  Kenichi Handa  <handa@etl.go.jp>
18929         * international/mule.el
18930         (after-insert-file-set-buffer-file-coding-system): If the buffer
18931         size is greater than INSERTED, judget that we are not visiting.
18933 2000-06-07  Rajesh Vaidheeswarran  <rv@gnu.org>
18935         * whitespace.el (defgroup whitespace): Comment out `:version'.
18936         XEmacs 20.4 has problems defining the group with this present.
18937         We'll have this commented out till get resolve the problem.
18939 2000-06-07  John Wiegley  <johnw@gnu.org>
18941         * align.el (align-dq-string-modes, align-sq-string-modes)
18942         (align-open-comment-modes): Add pyhton-mode.
18943         (align-rules-list): Use get-text-property instead of
18944         text-properties-at.
18945         (align-rules-list): Add python-assignment.
18946         (align-rules-list): Change perl-comma-delimiter to
18947         basic-comma-delimiter.  Use if for Perl modes and python-mode.
18948         (align-rules-list): Add python-chain-logic and
18949         basic-line-continuation.
18951 2000-06-07  Jari Aalto  <jari.aalto@poboxes.com>
18953         * apropos.el (apropos-mode-hook): New user variable.
18954         (apropos-mode): Run apropos-mode-hook.
18956 2000-06-07  David Ponce  <david@dponce.com>
18958         * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
18959         commands.  Require `wid-edit' at run-time.
18961 2000-06-07  David Ponce  <david@dponce.com>
18963         * recentf.el: Added some "Commentary".
18964         (recentf-open-more-files, recentf-edit-list): Minor changes to
18965         move the point at the top of the file list.  This behaviour is
18966         consistent with the menu one when the list contains a lot of
18967         files.
18968         (recentf-cleanup): Now displays the number of items removed from
18969         the list.
18970         (recentf-relative-filter) New menu filter to show filenames
18971         relative to `default-directory'.
18973 2000-06-07  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18975         * ps-print.el: XEmacs compatibility.  Doc fix.  Can select page size
18976         with/without giving an error if PostScript printer doesn't have this
18977         kind of page size.  Zebra Stripe continues or restarts on next page.
18978         Manual/automatic paper feeding.  Switch or not the header.
18979         (ps-print-version): New version number (5.2.2).
18980         (ps-windows-system): Include emx as a Windows system.
18981         (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
18982         (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
18983         (ps-background-text): Code fix.
18984         (ps-error-handler-message, ps-user-defined-prologue)
18985         (ps-print-prologue-header, ps-printer-name)
18986         (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
18987         (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
18988         (ps-use-face-background): Customization fix.
18989         (ps-n-up-database): Data fix.
18990         (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
18991         (ps-switch-header): New vars.
18992         (ps-xemacs-color-name, ps-face-foreground-name)
18993         (ps-face-background-name, ps-boolean-constant): New funs.
18995 2000-06-07  Dave Love  <fx@gnu.org>
18997         * allout.el: New version from Manheimer.
18999 2000-06-07  Kenichi Handa  <handa@etl.go.jp>
19001         * textmodes/fill.el (fill-find-break-point): Check the validity of
19002         charset.
19004 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
19006         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
19007         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
19008         Call display-color-p and display-mouse-p instead of looking at
19009         window-system.
19011 2000-06-06  Dave Love  <fx@gnu.org>
19013         * image.el (find-image): Doc fix.  Return nil if image not found.
19014         (put-image, insert-image): Make STRING arg optional.
19016 2000-06-06  Kenichi Handa  <handa@etl.go.jp>
19018         * language/vietnamese.el: Remove eval-when-compile.
19019         (viet-viscii-nonascii-translation-table): Define it as a
19020         translation table made from viet-viscii-decode-table.
19021         (viet-viscii-encode-table): Define it as a translation table made
19022         from the reverse map of above.
19023         (viet-vscii-nonascii-translation-table): Define it as a
19024         translation table made from viet-vscii-decode-table.
19025         (viet-vscii-encode-table): Define it as a translation table made
19026         from the reverse map of above.
19027         (ccl-decode-viscii): Use translate-character.
19028         (ccl-encode-viscii, ccl-encode-viscii-font)
19029         (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
19030         Likewize.
19032         * language/cyrillic.el: Remove eval-when-compile.
19033         (cyrillic-koi8-r-nonascii-translation-table): Define it as a
19034         translation table made from cyrillic-koi8-r-decode-table.
19035         (cyrillic-koi8-r-encode-table): Define it as a translation table
19036         made from the reverse map of above.
19037         (ccl-decode-koi8): Use translate-character.
19038         (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
19039         (cyrillic-alternativnyj-nonascii-translation-table): Define it as
19040         a translation table made from cyrillic-alternativnyj-decode-table.
19041         (cyrillic-alternativnyj-encode-table): Define it as a translation
19042         table made from the reverse map of above.
19043         (ccl-decode-alternativnyj): Use translate-character.
19044         (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
19045         Likewize
19047         * international/mule-diag.el (non-iso-charset-alist): Specify
19048         translation table symbol instead of translation table itself.
19049         (list-block-of-chars): CHARSET may be a translation table symbol.
19051         * international/mule.el (make-coding-system): If CODING-SYSTEM
19052         already exists, override it.
19054         * international/fontset.el: Use family `proportional' for Tibetan
19055         fonts.
19057         * international/ccl.el (ccl-compile-translate-character): Don't
19058         check if Rrr has property translation-table.
19059         (ccl-compile-map-multiple): Modified to avoid compiler warning.
19061 2000-06-05  Gerd Moellmann  <gerd@gnu.org>
19063         * info.el: Bind case-fold-search to t when searching in case
19064         a user sets it to nil in a hook.
19066 2000-06-05  Stefan Monnier  <monnier@cs.yale.edu>
19068         * autoarg.el (autoarg-mode, autoarg-kp-mode):
19069         * hl-line.el (hl-line-mode): Use the new :global key argument.
19071         * tar-mode.el (tar-header-block-recompute-checksum): Remove.
19072         (tar-clip-time-string): Prepend a space.
19073         (tar-grind-file-mode): Construct a string rather than modifying one.
19074         (tar-header-block-summarize): Fix docstring.
19075         Use `format' rather than an error-prone set of copy-loops.
19077         * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
19078         (diff-goto-source, diff-unified->context, diff-context->unified)
19079         (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
19080         understand the format output by the `-p' argument to diff.
19082         * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
19083         (sh-re-done): Use defconst.
19084         (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
19085         (sh-help-string-for-variable, sh-guess-basic-offset):
19086         Don't quote lambdas.
19087         (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
19088         (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
19090         * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
19091         (mh-letter-mode): Derive from text-mode.
19092         This implicitly means that it now calls kill-all-local-variables.
19093         Also remove the Emacs-18 compatibility code.
19095         * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
19096         Make use of symbol-property doc-string-elt.
19097         Use memq rather than a sequence of eq.
19098         (doc-string-elt): Fix the wrong or missing previously unused values.
19099         (autoload-print-form): New function extracted from
19100         generate-file-autoloads to allow recursion when handling progn
19101         so that defvar's and defun's docstrings are properly printed.
19102         (generate-file-autoloads): Use it.
19104         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
19105         Use find-file-hooks in the minor-mode function.
19106         Be careful not to loop indefinitely in the post-command-hook function.
19108 2000-06-05  Michael Kifer  <kifer@cs.sunysb.edu>
19110         * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
19111         tty's.
19112         * ediff-diff.el (ediff-exec-process): Use --binary for fine
19113         differences whenever appropriate.
19114         * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
19115         * viper.el (find-file, find-file-other-window): Get viper to do
19116         wildcards.
19118 2000-06-04  Stefan Monnier  <monnier@cs.yale.edu>
19120         * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
19121         (jit-lock-fontify-buffer): New function for JIT refontification.
19122         (jit-lock-mode): Fix docstring.
19123         Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
19124         Remove jit-lock-after-change from the _local_ hook.
19125         (jit-lock-function-1): Fix docstring.
19127         * info.el (Info-on-current-buffer): Initialize info.
19129         * newcomment.el (comment-indent): Ignore comment-indent-hook.
19131         * progmodes/tcl.el (tcl-indent-for-comment):
19132         Ignore comment-indent-hook.
19134         * emacs-lisp/easy-mmode.el: Require CL during compilation.
19135         (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
19136         (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
19137         and improve to use the lighter to guess the capitalization.
19138         (define-minor-mode): Inline code from easy-mmode-define-toggle.
19139         Add keyword arguments to specify global-ness or the custom group.
19140         Add local-map and help-echo properties to the lighter.
19141         (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
19142         (easy-mmode-define-global-mode): New macro.
19144 2000-06-02  Dave Love  <fx@gnu.org>
19146         * wid-edit.el: byte-compile-dynamic since we typically don't use
19147         all the widgets.  Don't require cl or widget.  Remove
19148         eval-and-compile.  Don't autoload finder-commentary.  Doc fixes.
19149         (widget-read-event): Removed.  Callers changed to use read-event.
19150         (widget-button-release-event-p): Renamed from
19151         button-release-event-p.
19152         (widget-field-add-space, widget-field-use-before-change):
19153         Uncustomize.
19154         (widget-specify-field): Use keymap property, not local-map.
19155         (widget-specify-button): Obey :suppress-face.
19156         (widget-specify-insert): Use modern backquote syntax.
19157         (widget-image-directory): Renamed from widget-glyph-directory.
19158         (widget-image-enable): Renamed from widget-glyph-enable.
19159         (widget-image-find): Replaces widget-glyph-find.
19160         (widget-button-pressed-face): Move defvar.
19161         (widget-image-insert): Replaces widget-glyph-insert.
19162         (widget-convert): Use keywordp.
19163         (widget-leave-text, widget-children-value-delete): Use mapc.
19164         (widget-keymap): Remove XEmacs stuff.
19165         (widget-field-keymap, widget-text-keymap): Define all inside defvar.
19166         (widget-button-click): Don't set point at the click, but re-centre
19167         if we scroll out of window.  Rewritten for images v. glyphs &c.
19168         (widget-tabable-at): Use POS arg, not point.
19169         (widget-beginning-of-line, widget-end-of-line)
19170         (widget-item-value-create, widget-sublist, widget-princ-to-string)
19171         (widget-sexp-prompt-value, widget-echo-help): Simplify.
19172         (widget-default-create): Use widget-image-insert; some rewriting.
19173         (widget-visibility-value-create)
19174         (widget-push-button-value-create, widget-toggle-value-create): Use
19175         widget-image-insert.
19176         (checkbox): Create on and off images dynamically.
19177         (documentation-link): Change :help-echo.
19178         (widget-documentation-link-echo-help): Remove.
19180 2000-06-02  Stefan Monnier  <monnier@cs.yale.edu>
19182         * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
19184         * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
19185         (easy-mmode-define-toggle, define-minor-mode): Use it.
19186         (easy-mmode-define-keymap): Docstring fix.
19187         (define-derived-mode): Default PARENT to fundamental-mode.
19188         Add the derived-mode-parent symbol-property.
19189         (easy-mmode-derived-mode-p): New function.
19191 2000-06-02  Dave Love  <fx@gnu.org>
19193         * files.el (convert-standard-filename): Doc fix.
19194         (normal-backup-enable-predicate): New function.
19195         (backup-enable-predicate): Use it to replace the lambda form.
19197         * calendar/todo-mode.el: [This needs more work on the outline
19198         stuff.]  Doc fixes.
19199         (todo) <defgroup>: Add :version.
19200         (todo-add-category): Don't use pushnew.
19201         (todo-cmd-raise): Fix typo.
19202         (todo-top-priorities): Change temp buffer name.
19203         (todo-category-alist): Avoid redundant lambda.
19204         (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
19205         Use outline-next-heading.
19207         * autoarg.el: Rewritten to use define-minor-mode.
19208         (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
19209         (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
19211 2000-06-02  Kenichi Handa  <handa@etl.go.jp>
19213         * isearch.el (isearch-other-meta-char): Fix previous change.
19215 2000-06-01  Stefan Monnier  <monnier@cs.yale.edu>
19217         * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
19218         (log-edit-done): Only add the comment to the ring if it's different
19219         from the last comment entered.
19221         * isearch.el (isearch-highlight): Turn internal-find-face into facep.
19223 2000-06-01  Dave Love  <fx@gnu.org>
19225         * hl-line.el: Rewritten using define-minor-mode.
19227         * help.el (describe-function-1): Distinguish special form from
19228         builtin function.  Sanity-check presence of arglist for builtins.
19230 2000-06-01  Kenichi Handa  <handa@etl.go.jp>
19232         * international/characters.el: Fix syntax/category setting of
19233         Tibetan characters.
19235         * language/tibet-util.el (tibetan-add-components): Fixes for new
19236         encoding of Tibetan characters.
19237         (tibetan-decompose-precomposition-alist): New variable.
19238         (tibetan-decompose-region): Convert precomposed characters to
19239         non-precomposed characters.
19240         (tibetan-decompose-string): Likewise.
19241         (tibetan-composition-function): Fix args to
19242         thibetan-compose-string.
19244         * language/tibetan.el (tibetan-composable-pattern): More
19245         characters included.
19246         (tibetan-consonant-transcription-alist): Rule for "R" added.
19247         (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
19248         "+R" added.
19249         (tibetan-base-to-subjoined-alist): Rule for "RA" added.
19251         * language/lao-util.el (lao-composition-function): Fix args to
19252         compose-string.
19254         * language/thai-util.el (thai-composition-function): Fix args to
19255         compose-string.
19257         * isearch.el (isearch-update): Set disable-point-adjustment to t
19258         to prevent the point moving to the end of a composition when a
19259         part of a composition is searched.
19260         (isearch-other-meta-char): If the key invoking this command can be
19261         mapped by function-key-map to a printing char, call
19262         isearch-process-search-char directly.
19264 2000-06-01  Stefan Monnier  <monnier@cs.yale.edu>
19266         * emacs-lisp/bytecomp.el:
19267         * frame.el:
19268         * international/mule-cmds.el:
19269         * international/mule-util.el:
19270         * international/mule.el:
19271         * mouse.el:
19272         * subr.el:
19273         * faces.el: Update calls to make-obsolete with a WHEN argument.
19275         * byte-run.el (make-obsolete, make-obsolete-variable):
19276         Add an optional WHEN argument and change the format of the
19277         symbol-property information.
19278         * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
19279         (byte-compile-obsolete, byte-compile-variable-ref): Understand the
19280         new obsolete-symbol-property format and print WHEN if it is provided.
19282 2000-05-31  Dave Love  <fx@gnu.org>
19284         * loadhist.el (loadhist-hook-functions): Remove
19285         before-change-function, after-change-function.
19286         (unload-feature): Deal with symbols which are both bound and
19287         fbound.
19289         * mouse.el (mouse-save-then-kill-delete-region): Don't bind
19290         before-change-function, after-change-function.
19292         * simple.el (newline): Don't bind before-change-function,
19293         after-change-function.
19295 2000-05-31  Rajesh Vaidheeswarran <rv@gnu.org>
19297         * whitespace.el (whitespace-rescan-timer-time): Update interval
19298         set to 600 seconds (10 minutes) instead of 60 seconds since
19299         a large number of whitespace buffers causes emacs to `freeze'
19300         for a considerable amount of time.
19302         * whitespace.el: Updated email address
19304 2000-05-31  Dave Love  <fx@gnu.org>
19306         * add-log.el (change-log-font-lock-keywords) <function>: Add
19307         pattern for function of change.
19308         (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
19309         acknowledgements patterns.
19311 2000-05-31  Kenichi Handa  <handa@etl.go.jp>
19313         * isearch.el (isearch-printing-char): If keyboard coding system is
19314         being used, call isearch-process-search-multibyte-characters.
19316         * international/isearch-x.el: Mostly rewritten.
19318         * international/quail.el (quail-start-conversion): Don't include
19319         unhandled events in the returned events, but set them in
19320         unread-command-events.  Exit if all inputs are deleted.
19322 2000-05-30  Jason Rumney  <jasonr@gnu.org>
19324         * w32-fns.el (w32-charset-info-alist): Add each charset separately.
19326         * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
19327         Reenable code to create initial fontsets.
19328         Use set-fontset-font in place of put-charset-property.
19330 2000-05-30  Gerd Moellmann  <gerd@gnu.org>
19332         * progmodes/perl-mode.el (perl-indent-line): When looking for a
19333         label, ensure that the first colon isn't followed by another.
19335         * paths.el (Info-default-directory-list): Doc fix.
19337         * net/net-utils.el (finger-X.500-host-regexps): New user-option.
19338         (finger): If HOST matches a regexp from finger-X.500-host-regexps,
19339         send a query containing USER only, not USER@HOST.
19341         * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
19342         and rmail-msgend to compute the restriction at the end, instead of
19343         computing it.
19345 2000-05-29  Gerd Moellmann  <gerd@gnu.org>
19347         * dabbrev.el (dabbrev-expand): Don't display messages in the
19348         echo area if the minibuffer window is active.
19350         * jit-lock.el (jit-lock-mode): Add after change function to
19351         local hook.
19353 2000-05-29  Christoph Wedler  <Christoph.Wedler@sap.com>
19355         * antlr-mode.el: New commands: hide/unhide actions,
19356         upcase/downcase literals.
19357         (antlr-tiny-action-length): New user option.
19358         (antlr-hide-actions): New command.  Suggested by
19359         Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
19360         (antlr-mode-map): New binding [C-c C-v].
19361         (antlr-mode-menu): New entries.
19362         (antlr-downcase-literals): New command.
19363         (antlr-upcase-literals): Ditto.
19365         * antlr-mode.el: Minor changes: indendation, mode-name.
19366         (antlr-indent-line): Indent cpp directive at column 0.
19367         (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
19369         * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
19370         (antlr-font-lock-additional-keywords): Workaround for intentional
19371         bug in XEmacs version of font-lock.
19372         (antlr-mode): Set symbol property `mode-name' to "Antlr".  Could
19373         be used by a smarter version of `buffers-menu-grouping-function'.
19375 2000-05-29  Gerd Moellmann  <gerd@gnu.org>
19377         * tmm.el (tmm-prompt): Recognize menu item definitions of the for
19378         `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
19380 2000-05-29  Kenichi Handa  <handa@etl.go.jp>
19382         * international/encoded-kb.el
19383         (encoded-kbd-iso2022-designation-map): Pay attention to that
19384         charset-iso-final-char return -1 for eight-bit-control and
19385         eight-bit-graphic.
19387 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
19389         * speedbar.el (speedbar-use-images, speedbar-update-flag)
19390         (speedbar-easymenu-definition-base): Use display-graphic-p where
19391         available, instead of window-system.
19393 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
19395         * international/codepage.el (cp-coding-system-for-codepage-1): Add
19396         eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
19397         coding systems.
19399 2000-05-26  Dave Love  <fx@gnu.org>
19401         * disp-table.el (standard-display-underline): Don't use
19402         internal-find-face.
19404         * mail/reporter.el: Maintainer change.  Doc fixes.
19405         (reporter-version): Deleted.
19407         * emacs-lisp/elp.el: Maintainer change.
19408         (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
19410 2000-05-26  Stefan Monnier  <monnier@cs.yale.edu>
19412         * add-log.el (add-change-log-entry): Merge the current entry with the
19413         previous one if the previous one is empty.
19415 2000-05-26  Dave Love  <fx@gnu.org>
19417         * loadhist.el (unload-feature): Fix interactive spec [from
19418         lijnzaad@ebi.ac.uk].
19420         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
19421         subr-arity to check primitives.
19422         (byte-compile-flush-pending, byte-compile-file-form-progn)
19423         (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
19424         (byte-compile-insert, byte-compile-funcall): Use mapc instead of
19425         mapcar.
19427 2000-05-26  Kenichi Handa  <handa@etl.go.jp>
19429         * international/fontset.el: Set family names of non-latin charsets
19430         in default fontset to "*".
19432         * international/mule-diag.el (print-fontset): Combine family part
19433         and registry part of the fontname by "-*-" instead of "-".
19435         * international/mule-cmds.el (encode-coding-char): Make strings
19436         multibyte before calling encode-coding-string.
19438 2000-05-25  Stefan Monnier  <monnier@cs.yale.edu>
19440         * derived.el: Fix keywords.
19441         (define-derived-mode): Only define if needed.
19443         * simple.el (fill-comment, comment-column, comment-start)
19444         (comment-start-skip, comment-end, comment-indent-function)
19445         (block-comment-start, block-comment-end, indent-for-comment)
19446         (set-comment-column, kill-comment, comment-padding, comment-region)
19447         (comment-multi-line, indent-new-comment-line): Remove.
19449         * bindings.el (esc-map): Change ; to comment-dwim and use the new
19450         function names for comment operations.
19452         * newcomment.el: Add abundant autoload cookies.
19453         (comment-style): Don't depend on runtime data at compile-time.
19454         (comment-indent-hook): Remove.
19455         (comment-indent): Check if comment-indent-hook is bound.
19456         (comment-region): Docstring fix.
19458 2000-05-25  Dave Love  <fx@gnu.org>
19460         * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
19461         byte-code-function-p.
19463         * mail/rmailsum.el: Add provide.
19465         * net/goto-addr.el (goto-address-fontify): Add help-echo property.
19467         * smerge-mode.el (smerge-diff-switches): Don't use list* in
19468         defcustom.
19470 2000-05-25  Michael Kifer  <kifer@cs.sunysb.edu>
19472         * ediff-diff.el (ediff-exec-process): delete --binary option from
19473         non-buffer ediff jobs.
19475 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
19477         * hilit-chg.el (highlight-changes-mode): Ask about color or
19478         grayscale support, not about window-system.
19480         * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
19481         window-system.
19482         (ffap-highlight): Always default to t.
19484         * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
19485         display-popup-menus-p instead of looking at window-system.
19487         * disp-table.el (standard-display-g1, standard-display-graphic):
19488         Only refuse to use string glyphs on X and MS-Windows.
19490         * avoid.el: Remove window-system from commentary, suggest to use
19491         display-*-p instead.
19493         * apropos.el (apropos-print): Use display-mouse-p instead of
19494         window-system.
19496 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
19498         * international/codepage.el (cp-decoding-vector-for-codepage):
19499         Fill up unsupported characters with their own codes.  From Kenichi
19500         Handa.
19502 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
19504         * international/mule-diag.el (describe-char-after): Use
19505         display-graphic-p instead of window-system, so that this function
19506         works on MS-DOS.
19508 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
19510         * international/codepage.el (cp-make-coding-systems-for-codepage):
19511         Remove the eight-bit-graphic and eight-bit-control charsets from
19512         the list of charsets which we convert into `?'.
19514 2000-05-25  Kenichi Handa  <handa@etl.go.jp>
19516         * international/mule-conf.el: Specify CHARSET-ID explicitely for
19517         private charsets.
19518         (mule-unicode-0100-24ff, japanese-jisx0213-1,
19519         japanese-jisx0213-2): New charsets.
19521         * international/fontset.el: Setup default fontset for new charsets.
19523 2000-05-24  Dave Love  <fx@gnu.org>
19525         * info.el (Info-find-node-2): Restructure [following "Vadim
19526         S. Solomin" <sovs@uic.nnov.ru>].
19528         * icomplete.el: Fix header for Finder.
19530 2000-05-24  Eric M. Ludlam  <zappo@ultranet.com>
19532         * rmailout.el (rmail-output-to-rmail-file): Added optional param
19533         STAY.
19535         * rmail.el (rmail-automatic-folder-directives): New user variable.
19536         (rmail-show-message): Add call to `rmail-auto-file' during
19537         display.
19538         (rmail-auto-file): New function.
19540 2000-05-24  Michael Kifer  <kifer@cs.sunysb.edu>
19542         * ediff-diff.el (ediff-forward-word): Take syntactic word class into
19543         account.
19544         (ediff-test-utility,ediff-diff-mandatory-option)
19545         (ediff-reset-diff-options): Utilities for proper initialization of
19546         ediff-diff-options and ediff-diff3-options on Windows.
19548         * ediff-init.el (ediff-merge-filename-prefix): New customizable
19549         variable.
19551         * ediff-mult.el (ediff-filegroup-action): Use
19552         ediff-merge-filename-prefix.
19554 2000-05-24  Michael Kifer  <kifer@cs.sunysb.edu>
19556         * viper-ex.el (ex-write): Set selective display to nil.
19558 2000-05-24  Eli Zaretskii  <eliz@is.elta.co.il>
19560         * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
19561         aliases for hebrew-iso-8bit.
19563 2000-05-24  Eli Zaretskii  <eliz@is.elta.co.il>
19565         * woman.el: New version from Francis J. Wright
19566         <F.J.Wright@Maths.QMW.ac.uk>.
19567         (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
19568         names in environment variables regardless of the path separator.
19569         (woman-topic-all-completions-1): Don't call file-name-directory-p
19570         on all files, since woman-file-regexp already filters out any
19571         directories.
19573 2000-05-24  Kenichi Handa  <handa@etl.go.jp>
19575         * international/quail.el (quail-start-translation): Don't change
19576         modified-p of the current buffer.
19577         (quail-start-conversion): Likewise.
19579         * international/kkc.el (kkc-region): Don't change modified-p of
19580         the current buffer.
19582         * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
19583         conform to RFC1468.
19584         (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
19586 2000-05-23  Eric M. Ludlam  <zappo@ballista.ultranet.com>
19588         * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
19589         (speedbar-insert-button): Invisible text property fix.
19590         (speedbar-directory-plus): Renamed from speedbar-directory-+
19591         (speedbar-directory-minus): Renamed from speedbar-directory--
19592         (speedbar-page-plus): Renamed from speedbar-file-+
19593         (speedbar-page-minus): Renamed from speedbar-file--
19594         (speedbar-page): Renamed from speedbar-file-
19595         (speedbar-tag): Renamed from speedbar-tag-
19596         (speedbar-tag-plus): Renamed from speedbar-tag-+
19597         (speedbar-tag-minus): Renamed from speedbar-tag--
19598         (speedbar-expand-image-button-alist): Use above renames.
19600         * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
19601         * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
19602         * sb-pg-plus.xpm: Renamed from sb-file+.xpm
19603         * sb-pg-minus.xpm: Renamed from sb-file-.xpm
19604         * sb-pg.xpm: Renamed from sb-file.xpm
19605         * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
19606         * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
19608 2000-05-24  Kenichi Handa  <handa@etl.go.jp>
19610         * international/quail.el (quail-show-guidance-buf): Set
19611         current-input-method of the guidance buffer to the name of the
19612         curren input method.
19614 2000-05-23  Stefan Monnier  <monnier@cs.yale.edu>
19616         * progmodes/compile.el (compile-internal): Style typo.
19618         * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
19619         quote vars and functions in the docstring.
19621         * newcomment.el (comment-make-extra-lines): Don't use `assert'.
19623         * completion.el (dynamic-completion-mode, dynamic-completion-mode):
19624         Don't quote lambdas.
19626         * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
19628 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
19630         * startup.el (command-line): Determine source file of compiled
19631         user init file differently.  Warn if compiled user init file
19632         is older than its source file.
19634         * ffap.el (ffap-url-regexp): Add `https'.
19636 2000-05-23  Eli Zaretskii  <eliz@is.elta.co.il>
19638         * files.el (make-backup-file-name-1): Replace slashes with `!'
19639         rather than `|' (which is not allowed on Windows).  Replace the
19640         drive letters with a string "drive_X".
19642 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
19644         * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
19646         * files.el (interpreter-mode-alist): Add `bash2'.
19648 2000-05-22  Dave Love  <fx@gnu.org>
19650         * loadhist.el (feature-symbols, file-provides, file-requires): Use
19651         mapc.
19652         (feature-file): Avoid calling symbol-name.  Doc fix.
19653         (file-set-intersect, file-dependents): Use dolist, not mapcar.
19654         (loadhist-hook-functions): Add mouse-position-function.
19655         (unload-feature): Change uses of mapcar.
19657         * files.el (parse-colon-path): Doc fix.
19658         (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
19659         (set-auto-mode): Use mapc.
19661         * complete.el (PC-look-for-include-file): Use :alnum: character
19662         class.
19663         (partial-completion-mode): Add autoload cookie.
19665 2000-05-22  Sam Steingold  <sds@gnu.org>
19667         * info.el (Info-fontify-node): Fixed the call to
19668         `add-text-properties' (bug introduced on 2000-05-18).
19670 2000-05-22  Dave Love  <fx@gnu.org>
19672         * bindings.el: Remove debug-ignored-errors set in other files.
19674         * progmodes/etags.el: Add to debug-ignored-errors.
19675         (visit-tags-table-buffer): Clear out buffers holding old tables
19676         when making a new list.
19677         (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
19678         mapc.
19680         * completion.el: Doc fixes.  Add to debug-ignored-errors.  Don't
19681         quote keywords.
19682         (cmpl-string-case-type): Use character classes.
19684         * comint.el:
19685         * textmodes/ispell.el:
19686         * imenu.el:
19687         * mail/mh-e.el:
19688         * progmodes/compile.el: Add to debug-ignored-errors.
19690         * dabbrev.el: Add to debug-ignored-errors.
19691         (dabbrev-completion): Use mapc.
19693 2000-05-22  Eli Zaretskii  <eliz@is.elta.co.il>
19695         * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
19696         (woman-mapcan, woman-parse-man.conf)
19697         (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
19698         (woman-reset-emulation, woman-select-symbol-fonts): New functions.
19699         (woman-parse-colon-path): Call woman-mapcan.  Recognize Cygwin
19700         path syntax better.
19701         (woman-man.conf-path, woman-use-own-frame): New defcustoms.
19702         (woman-manpath): Call woman-parse-man.conf.
19703         (woman-emulation): New defcustom, defaults to nroff.
19704         (woman-font-support): New defconst.
19705         (woman-use-symbol-font): New defcustom.
19706         (woman-menu): Add new menu items: "Colored/BW", "Advanced",
19707         "Emulation".
19708         Many functions: Doc fix.
19710 2000-05-22  Kenichi Handa  <handa@etl.go.jp>
19712         * international/quail.el (quail-simple-translation-keymap): Map
19713         128..255 to quail-self-insert-command.
19714         (quail-keyboard-layout-alist): Add definition for "pc102-de".
19716 2000-05-22  Stefan Monnier  <monnier@cs.yale.edu>
19718         * help.el (help-manyarg-func-alist): Typo.
19720         * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
19721         intervals which makes it heaps simpler.
19723         * newcomment.el (comment-region-internal): Go back to BEG after quoting
19724         the nested comment markers.
19726         * subr.el (remove-hook): Don't turn the hook's value into a list.
19728 2000-05-21  Dave Love  <fx@gnu.org>
19730         * edmacro.el (edmacro-parse-keys): Return vector if any elements
19731         are invalid characters.
19733         * international/mule-util.el (detect-coding-with-priority): Use
19734         mapc.  Remove redundant lambda.
19736         * international/mule-diag.el (list-non-iso-charset-chars)
19737         (describe-fontset): Remove redundant lambda.
19739         * emulation/crisp.el (brief-mode): New alias.
19741         * emacs-lisp/ring.el (ring-elements): New function.
19743         * emacs-lisp/easymenu.el (easy-menu-create-menu)
19744         (easy-menu-do-add-item): Use keywordp.
19746         * emacs-lisp/byte-opt.el: Update side-effect free function lists.
19748         * replace.el: Doc and error message fixes.
19749         (replace-highlight): Use facep, not internal-find-face.
19751 2000-05-20  Stefan Monnier  <monnier@cs.yale.edu>
19753         * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
19755         * log-edit.el (log-edit-done): Cleanup trailing empty lines.
19756         (log-edit-insert-changelog): Drop `:' as well.
19758         * log-view.el: Fix file description.
19759         (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
19760         available.
19761         (log-view-font-lock-keywords): Only use cvs-filename-face if present.
19762         (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
19764         * emacs-lisp/easy-mmode.el: Update copyright and commentary.
19765         (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
19766         Print a status message if the toggle is called interactively.
19767         (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
19768         for global minor modes and use `defcustom' for them.
19769         Use add-minor-mode.
19770         (easy-mmode-define-derived-mode): Remove.
19771         (define-derived-mode): Fancier default docstring.
19772         (easy-mmode-define-navigation): Signal an error rather than (ding).
19774         * newcomment.el (comment-styles): New `box-multi'.
19775         (comment-normalize-vars): Better default for comment-continue to
19776         avoid whitespace-only continuations.
19777         (comment-search-forward): Always move even in the no-syntax case.
19778         (comment-padright): Only obey N if it's only obeyed for padleft.
19779         (comment-make-extra-lines): Better handling of empty continuations.
19780         Use `=' for the filler if comment-start has only one character.
19781         (uncomment-region): Try handling the special `=' filler.
19782         (comment-region): Allow LINES even if MULTI is nil.
19783         (comment-box): Choose box style based on comment-style.
19785 2000-05-20  Kenichi Handa  <handa@etl.go.jp>
19787         * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
19788         (ccl-compile-write-repeat): If ARG is string, make it unibyte.
19790 2000-05-20  Kenichi HANDA  <handa@etl.go.jp>
19792         * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
19793         and insert, not subst-char-in-region.
19795         * international/mule-diag.el (list-character-sets-1): Handle
19796         charsets eight-bit-control and eight-bit-graphic.
19797         (list-iso-charset-chars): Likewise.
19798         (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
19799         charactes as is.  Use indent-to to align characters.
19801         * international/mule-cmds.el (find-multibyte-characters): Never
19802         exclude charsets eight-bit-control and eight-bit-graphic.
19804 2000-05-19  Stefan Monnier  <monnier@cs.yale.edu>
19806         * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
19807         Don't quote lambdas.
19809         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
19811 2000-05-19  Gerd Moellmann  <gerd@gnu.org>
19813         * gud.el (gud-jdb-directories): Doc fix.
19815 2000-05-19  Stefan Monnier  <monnier@cs.yale.edu>
19817         * newcomment.el: New file.
19819 2000-05-19  Gerd Moellmann  <gerd@gnu.org>
19821         * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
19823 2000-05-18  Andreas Schwab  <schwab@suse.de>
19825         * dired.el (dired-between-files): Also skip lines beginning with
19826         `used'.
19828 2000-05-18  Gerd Moellmann  <gerd@gnu.org>
19830         * msb.el (msb-menu-cond): Add choice `user'.
19832 2000-05-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
19834         * ps-print.el: Compatibility, customization and doc fix.
19835         (ps-printer-name-option): Replace defconst by defvar.
19836         (ps-postscript-code-directory): XEmacs compatibility.
19837         (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
19838         fix.
19839         (ps-user-defined-prologue, ps-print-prologue-header)
19840         (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
19841         compatibility and code fix.
19842         (ps-print-background-image, ps-print-background-text):
19843         Customization fix.
19844         (ps-line-number-start, ps-n-up-on): New vars.
19846 2000-05-18  Espen Skoglund  <esk@ira.uka.de>
19848         * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
19849         the indent-comment function to just return the appropriate indent.
19851 2000-05-18  Eric M. Ludlam  <zappo@ultranet.com>
19853         * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
19854         sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
19855         sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
19857 2000-05-18  Dave Love  <fx@gnu.org>
19859         * info.el (Info-fontify-node): Add intangible property as well as
19860         invisible.
19862         * calendar/appt.el (appt-make-list): Match all lines of entry.
19863         From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
19865 2000-05-18  Kenichi Handa  <handa@etl.go.jp>
19867         * international/mule-diag.el (describe-char-after): Call
19868         internal-char-font, not char-font.  If internal-char-font returns
19869         nil, display "-- none --".
19871 2000-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
19873         * image.el (image-type-available-p): Don't reference image-types
19874         if it isn't bound.
19876 2000-05-17  Stefan Monnier  <monnier@cs.yale.edu>
19878         * autoarg.el (autoarg-mode): Typo in the :set argument.
19880 2000-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
19882         * startup.el (command-line-1): Don't signal an error if the
19883         directory for auto-save-list files does not yet exist.
19885 2000-05-17  Kenichi Handa  <handa@etl.go.jp>
19887         * international/mule-conf.el (arabic-iso8859-6): Fix typo.
19889 2000-05-16  Stefan Monnier  <monnier@cs.yale.edu>
19891         * subr.el (remove-hook): `setq' hook-value, not `set'.
19893 2000-05-16  Sam Steingold  <sds@gnu.org>
19895         * info.el (debug-ignored-errors): More errors to ignore.
19897 2000-05-16  Dave Love  <fx@gnu.org>
19899         * cus-edit.el: Don't require cl or easymenu.
19900         (custom-variable-prompt): Test standard-value property, not
19901         user-variable-p.
19903 2000-05-16  Sam Steingold  <sds@gnu.org>
19905         * subr.el (add-hook): `setq' hook-value, not `set'.
19907 2000-05-16  Gerd Moellmann  <gerd@gnu.org>
19909         * startup.el (command-line-1): Mention the FAQ in the startup
19910         message.
19912         * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
19914         * progmodes/compile.el (compilation-parse-errors): Collect
19915         `nomessage' regexps last.
19917         * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
19919         * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
19920         to the function name.
19922 2000-05-15  Dave Love  <fx@gnu.org>
19924         * speedbar.el (speedbar-recenter): Typo.
19925         (speedbar-expand-line): Make arg optional.
19926         (speedbar-mode): Avoid a compiler warning.
19928 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
19930         * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
19931         user-specified option string is empty.
19933         * mouse.el (mouse-yank-at-click): Doc fix.
19935 2000-05-15  Eli Zaretskii  <eliz@is.elta.co.il>
19937         * term/internal.el (IT-character-translations): More updates of
19938         latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
19939         documents.
19941 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
19943         * env.el (getenv): New function, interactively callable.
19944         (setenv, getenv): Remove autoload cookies.
19946         * loadup.el: Load `env'.
19948         * progmodes/f90.el: Change author's mail address.
19950 2000-05-14  Dave Love  <fx@gnu.org>
19952         * mail/rmail.el (rmail-show-message-hook): Customize and offer
19953         goto-addr as an option.
19955         * help.el (help-xref-stack): Doc fix.
19956         (help-xref-following): New variable.
19957         (help-make-xrefs): Use it.
19958         (help-xref-go-back): Use position information from stack element.
19959         (help-follow): Make position in stack element a pair.  Use
19960         help-xref-following.
19962         * autoarg.el: New file.
19964         * faces.el: Declare more functions obsolete.
19966         * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
19967         * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
19968         * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
19969         * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
19970         Remove all the setup-...-environment functions.
19972 2000-05-13  Eric M. Ludlam  <zappo@ultranet.com>
19974         * speedbar.el: Updated the commentary section.  xemacs20p now uses
19975         >= when detecting.  Require `defimage' safely.
19976         (speedbar-easymenu-definition-base): Add toggle for images.
19977         (speedbar-easymenu-definition-special): Add flush cache & expand.
19978         (speedbar-visiting-tag-hook): Set new defaults.  Added options.
19979         (speedbar-reconfigure-keymaps-hook): New variable.
19980         (speedbar-frame-parameters): Updated documentation.
19981         (speedbar-use-imenu-flag): Updated custom tag
19982         (speedbar-dynamic-tags-function-list): New variable.
19983         (speedbar-tag-hierarchy-method): Updated doc & custom.
19984         (speedbar-indentation-width, speedbar-indentation-width) New
19985         variables.
19986         (speedbar-hide-button-brackets-flag): Customizable.
19987         (speedbar-vc-indicator): Doc update.
19988         (speedbar-ignored-path-expressions): Updated default value.
19989         (speedbar-supported-extension-expressions): Updated default value.
19990         (speedbar-syntax-table): Remove {} paren status.
19991         (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
19992         as "+".  Added overlay aliases.
19993         (speedbar-mode): Use `speedbar-mode-line-update' instead of
19994         `force-mode-line-update'.
19995         (speedbar-mode, speedbar-quick-mouse, speedbar-click)
19996         (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
19997         `mouse-set-point'
19998         (speedbar-reconfigure-keymaps): Run configure keymap hooks.
19999         (speedbar-item-info-tag-helper): Revamped to handle a wider range
20000         of arbitrary text, and new helper functions.
20001         (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
20002         filename finder.
20003         (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
20004         (speedbar-directory-buttons): Update path search/expansion.
20005         (speedbar-make-tag-line): Pay attention to
20006         `speedbar-indentation-width'.  Use more care w/ invisible
20007         properties.
20008         (speedbar-change-expand-button-char): Call
20009         `speedbar-insert-image-button-maybe'.
20010         (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
20011         (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
20012         (speedbar-trim-words-tag-hierarchy)
20013         (speedbar-simple-group-tag-hierarchy): New functions
20014         (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
20015         (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
20016         functions.
20017         (speedbar-mouse-set-point): New function
20018         (speedbar-power-click): Updated documentation.
20019         (speedbar-line-token, speedbar-goto-this-file): Handle more types
20020         of tag prefix text.
20021         (speedbar-expand-line, speedbar-contract-line): Make more robust
20022         to strange text.
20023         (speedbar-expand-line): Takes universal argument to flush the
20024         cache.
20025         (speedbar-flush-expand-line): New function.
20026         (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
20027         Use new generator insertion method.
20028         (speedbar-fetch-dynamic-tags): New function.
20029         (speedbar-fetch-dynamic-imenu): Removed code now handled in
20030         `speedbar-fetch-dynamic-imenu'.
20031         (speedbar-fetch-dynamic-etags): Fix current buffer problem.
20032         (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
20033         "Revert Buffer" menu items.
20034         (speedbar-buffer-buttons-engine): Be smarter when creating a
20035         filename tag (for expansion purposes.).
20036         (speedbar-highlight-one-tag-line,
20037         (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
20038         (speedbar-recenter): New functions.
20039         (defimage-speedbar): Image loading abstraction.
20040         (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
20041         (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
20042         (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
20043         (speedbar-tag-type, speedbar-tag-mail): New images.
20044         (speedbar-expand-image-button-alist): New variable.
20045         (speedbar-insert-image-button-maybe): Insert an image over some
20046         buttons.
20048 2000-05-13  Kenichi Handa  <handa@etl.go.jp>
20050         * international/mule-cmds.el (encode-coding-char): An ASCII
20051         character is always encodable.
20053         * international/mule-conf.el: Add more information in descriptions
20054         of character sets.
20056         * international/mule-diag.el (describe-char-after): New function.
20057         (describe-font-internal): Adjusted for the change of font-info.
20058         (describe-font): Likewise.
20059         (print-fontset): Rewritten for the new fontset implementation.
20060         (describe-fontset): Include fontset alias names in completion.
20061         (list-fontsets): Adjusted for the change of print-fontset.
20063         * simple.el (what-cursor-position): If DETAIL is non-nil, call
20064         describe-char-after instead of displaying the detail in the echo
20065         area.
20066         (syntax-code-table): Format changed.
20067         (string-to-syntax): Adjusted for the above change.
20069 2000-05-12  Stefan Monnier  <monnier@cs.yale.edu>
20071         * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
20073 2000-05-12  Dave Love  <fx@gnu.org>
20075         * calendar/todo-mode.el: Remove some compatibility stuff and CL
20076         dependence.  Use line-{beginning,end}-position, not
20077         point-at{b,e}ol.  Some doc fixes.
20078         (todo-position): New function.  Fix callers of position to use it.
20079         (todo-save-top-priorities, todo-print): Use with-temp-buffer.
20081 2000-05-12  Gerd Moellmann  <gerd@gnu.org>
20083         * time.el (display-time-mail-icon): Use `:ascent center'.
20085         * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
20086         handling FTP security extensions.
20088 2000-05-11  Dave Love  <fx@gnu.org>
20090         * calendar/todo-mode.el: New file.
20092 2000-05-11  Gerd Moellmann  <gerd@gnu.org>
20094         * comint.el (comint-read-input-ring): Move reference to
20095         comint-input-ring-size outside of the save-excursion.  It was
20096         causing the default value to be the only one ever seen.
20098         * font-lock.el: Update copyright.  Remove Simon Marshall's email
20099         address on request from him.
20101         * subr.el (substitute-key-definition): Add comment describing
20102         the meaning of PREFIX.
20104 2000-05-10  Stefan Monnier  <monnier@cs.yale.edu>
20106         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
20108         * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
20109         (add-minor-mode): Don't make the variable buffer-local and add a
20110         reference to define-minor-mode in the docstring.
20112         * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
20113         HEADER/FOOTER and fix bug with trailing empty directory.
20114         (cvs-append-to-ignore): Use vc-editable-p if available.
20115         (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
20116         (vc-do-command): Tweak advice to handle the new VC.
20118         * log-view.el (log-view-goto-rev): New function for the new VC.
20119         (log-view-minor-wrap): Use mark-active.
20121         * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
20122         (log-edit-changelog-full-paragraphs): New var.
20123         (log-edit-insert-changelog): Remove a lonely leading `* file'.
20124         (log-edit-narrow-changelog, log-edit-changelog-paragraph)
20125         (log-edit-changelog-subparagraph, log-edit-changelog-entry)
20126         (log-edit-changelog-ours-p, log-edit-changelog-entries)
20127         (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
20128         Replace the `cvs' prefix with `log-edit'.
20130         * iswitchb.el (iswitchb-completion-help): Unquote lambda.
20132         * diff-mode.el (diff-font-lock-keywords): Recognize comments.
20133         (diff-font-lock-defaults): Explicitly turn off multiline.
20134         (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
20135         (diff-ediff-patch): Fix call to ediff-patch-file.
20136         (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
20137         Handle comments.
20139         * frame.el (automatic-hscrolling): Typo.
20141         * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
20143 2000-05-09  Sam Steingold  <sds@goems.com>
20145         * apropos.el (apropos-print): use `describe-face' instead of
20146         `customize-face-other-window'.
20148 2000-05-09  Dave Love  <fx@gnu.org>
20150         Changes mostly following Richard Sharman <rsharman@wave.home.com>.
20152         * help.el (describe-variable): Have customize button pop the
20153         help-xref stack when invoked.
20154         (help-xref-symbol-regexp): Add `face'.
20155         (help-make-xrefs): Check for quoted face names and adapt regexp
20156         submatch numbers to cope.
20157         (help-xref-interned): Maybe insert face doc too.  Separate
20158         sections with a line of hyphens.
20160         * faces.el:  Some doc fixes.  Declare some functions obsolete.
20161         (describe-face): Add customize button.  Return the help
20162         text.  Fix prompt.
20164 2000-05-09  Eli Zaretskii  <eliz@is.elta.co.il>
20166         * term/internal.el (IT-character-translations): Fix last change.
20168 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
20170         * woman.el: New file
20171         (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
20173 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
20175         * term/internal.el (IT-character-translations): Update ASCII
20176         simulations for greek-iso8859-7, add latin-iso8859-14 and
20177         latin-iso8859-15.
20179         * international/mule-cmds.el (set-language-info-alist): Call
20180         define-prefix-command with 3 arguments, to make the map suitable
20181         for a menu.
20183 2000-05-07  Dave Love  <fx@gnu.org>
20185         * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
20187 2000-05-05  Dave Love  <fx@gnu.org>
20189         * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
20190         list in doc string.  Don't quote keyword symbols.
20191         * emacs-lisp/cl.el: Likewise
20192         * emacs-lisp/cl-seq.el: Likewise
20194 2000-05-05  Gerd Moellmann  <gerd@gnu.org>
20196         * abbrev.el (abbrev-mode): Make ARG optional.
20198 2000-05-04  Gerd Moellmann  <gerd@gnu.org>
20200         * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
20202         * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
20204         * subr.el (substitute-key-definition): Clarify documentation.
20206 2000-05-04  Milan Zamazal  <pdm@freesoft.cz>
20208         * glasses.el (glasses-convert-to-unreadable): Use
20209         `glasses-separator' instead of the hard-wired "_".
20210         (glasses-mode): Call `glasses-make-unreadable' only in a single
20211         place.
20213 2000-05-04  Eli Zaretskii  <eliz@is.elta.co.il>
20215         * term/internal.el (cjk-codepages-alist): Add associations for
20216         Chinese and Korean codepages.  Remove FIXME comment.
20218 2000-05-03  Dave Love  <fx@gnu.org>
20220         * time.el (display-time-mail-face, display-time-use-mail-icon):
20221         New option.
20222         (display-time-mail-icon): New variable.
20223         (display-time-string-forms): Use the above.  Fix the local-map.
20225 2000-05-03  Gerd Moellmann  <gerd@gnu.org>
20227         * replace.el (query-replace-map): Add binding for `E'.
20228         (query-replace-help): Extend help text.
20229         (perform-replace): Allow editing the replacement string.
20231         * make-mode.el (makefile-mode-abbrev-table): New variable.
20232         (makefile-mode): Set local abbrev table to
20233         makefile-mode-abbrev-table.
20234         (makefile-font-lock-keywords): Fontify includes and conditionals.
20236         * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
20237         set TOGGLE's value.
20239         * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
20240         mail-interactive-insert-alias.
20241         (mail-abbrev-complete-alias): New command.
20242         (mail-mode-map): Bind it to `M-TAB'.
20244 2000-05-03  Kenichi Handa  <handa@etl.go.jp>
20246         * language/lao-util.el (lao-compose-region): New function.
20248 2000-05-02  Gerd Moellmann  <gerd@gnu.org>
20250         * files.el (recover-session): Make directories as necessary
20251         if they don't exist yet.
20253         * calendar/cal-french.el
20254         (french-calendar-multibyte-special-days-array)
20255         (french-calendar-special-days-array): Change French text.
20256         (calendar-french-date-string): Change output.
20257         (calendar-goto-french-date): Likewise.
20259 2000-05-02  Per Abrahamsen  <abraham@dina.kvl.dk>
20261         * wid-edit.el (widget-default-active): Obey `:always-active'.
20262         (widget-documentation-string-value-create): Set `:always-active'.
20264 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
20266         * startup.el (auto-save-list-file-prefix): For ms-dos, set the
20267         default prefix to `~/_emacs.d/auto-save.list/_s'.
20268         (normal-top-level): Create the directory for auto-save files, if
20269         it doesn't already exist (in the ms-dos case only).
20271 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
20273         * international/mule-cmds.el (set-language-environment): Don't
20274         concat an integer (dos-codepage), use format instead.
20276 2000-05-02  Dave Love  <fx@gnu.org>
20278         * help.el (help-xref-on-pp): Check for constant symbols.
20280 2000-04-29  Gerd Moellmann  <gerd@gnu.org>
20282         * startup.el (normal-top-level): Put a condition-case around
20283         the code loading subdirs.el.
20285 2000-04-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
20287         * ps-print.el: Upside-down and face background color printing,
20288         line number step, doc fix.
20289         (ps-print-version): New version number (5.2).
20290         (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
20291         (ps-face-attribute-list, ps-plot-with-face): Code fix.
20292         (ps-spool-config): Var fix.
20293         (ps-printer-name-option): Const fix.
20294         (ps-print-upside-down, ps-use-face-background)
20295         (ps-line-number-step): New vars.
20296         (ps-window-system, ps-lp-system): New consts.
20297         (ps-face-background): New fun.
20299 2000-04-28  Richard Stallman  <rms@gnu.org>
20301         * files.el (make-auto-save-file-name):
20302         Apply auto-save-file-name-transforms to visited file name
20303         before generating auto save file name.
20304         (auto-save-file-name-transforms): New variable.
20306         * files.el (backup-enable-predicate):
20307         Correctly test for a file under a temporary directory.
20309 2000-04-28  Gerd Moellmann  <gerd@gnu.org>
20311         * subr.el (add-minor-mode): Rewritten.
20313 2000-04-28  Kenichi Handa  <handa@etl.go.jp>
20315         * mail/sendmail.el (sendmail-send-it): Set
20316         buffer-file-coding-system to the selected coding system for MIME
20317         header.
20319 2000-04-27  Gerd Moellmann  <gerd@gnu.org>
20321         * dired.el (dired-move-to-filename-regexp): Allow format where
20322         YYYY is followed by two spaces.
20324         * progmodes/etags.el (etags-tags-completion-table): Add a `:'
20325         in the second character class of the regexp.
20327         * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
20328         mh-etc, too.
20330         * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
20331         nil.
20333         * subr.el (add-minor-mode): Use `set' instead of `setq'.
20335         * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
20336         argument.
20338 2000-04-27  Sen Nagata <sen@eccosys.com>
20340         * emacs-lisp/crm.el (crm-completion-table): New variable.
20341         (crm-collection-fn, crm-test-completion)
20342         (completing-read-multiple): Use it.
20344 2000-04-27  Dave Love  <fx@gnu.org>
20346         * help.el (locate-library): Use mapc.
20347         (help-manyarg-func-alist): Add call-process-region.
20349 2000-04-26  Gerd Moellmann  <gerd@gnu.org>
20351         * subr.el (add-minor-mode): Make argument MAP optional.
20353         * desktop.el (desktop-save): Save list of minor modes.
20354         (desktop-create-buffer): Restore minor modes.
20355         (desktop-minor-mode-table): New user-option.
20357         * subr.el (add-minor-mode): New function.
20359         * image.el (find-image): New function.
20360         (defimage): Rewritten to find image at load time.
20362         * startup.el (normal-top-level-add-to-load-path): Handle
20363         case that the default directory is not in load-path.
20365         * help.el: Old patch from Stefan Monnier.
20366         (help-xref-on-pp): New function.
20367         (describe-variable): Use it to display xrefs in a symbol's value.
20369 2000-04-26  Stefan Monnier  <monnier@cs.yale.edu>
20371         * cus-edit.el (custom-face): Fix parenthesis.
20373 2000-04-26  Kenichi Handa  <handa@etl.go.jp>
20375         * mail/rmail.el (rmail-expunge): When there are no deleted
20376         messages, do nothing.
20378 2000-04-26  Dave Love  <fx@gnu.org>
20380         * international/mule-cmds.el (locale-translation-file-name):
20381         Defvar to nil.
20382         (set-locale-environment): Set it here (at runtime).
20384 2000-04-25  Gerd Moellmann  <gerd@gnu.org>
20386         * replace.el (perform-replace): Add parameters START and END.  Use
20387         them instead of the check for a region in Transient Mark mode.
20388         (query-replace-read-args): Return two more list elements for the
20389         start and end of the region in Transient Mark mode.
20390         (query-replace, query-replace-regexp, query-replace-regexp-eval)
20391         (map-query-replace-regexp, replace-string, replace-regexp): Add
20392         optional last arguments START and END and pass them to
20393         perform-replace.
20395         * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
20396         form with additional arguments for perform-replace.
20398         * progmodes/etags.el (tags-query-replace): Add parameters START
20399         and END.  Construct a form with additional arguments for
20400         perform-replace.
20402         * simple.el (shell-command): Set default directory for "*Shell
20403         Command Output" buffer.
20405         * language/european.el (iso-latin-4): Fix typo.
20407         * emacs-lisp/crm.el: New file.
20409 2000-04-24  Dave Love  <fx@gnu.org>
20411         * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
20412         (Custom-reset-saved, Custom-reset-standard)
20413         (custom-group-value-create, custom-group-set, custom-group-save)
20414         (custom-group-reset-current, custom-group-reset-saved)
20415         (custom-group-reset-standard): Use mapc.
20416         (custom-buffer-create-internal): Disable undo when creating items.
20417         Use mapc.
20418         (custom-face): Avoid redundant lambda.
20420 2000-04-24  Gerd Moellmann  <gerd@gnu.org>
20422         * startup.el (auto-save-list-file-prefix): Set default to
20423         `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
20425 2000-04-24  Sam Steingold  <sds@gnu.org>
20427         * time-stamp.el (time-stamp-string-preprocess): Always convert
20428         `field-result' to a string.
20430 2000-04-24  Gerd Moellmann  <gerd@gnu.org>
20432         * frame.el (scrolling): New group.
20433         (automatic-hscrolling): New user-option.
20435         * startup.el (command-line-x-option-alist): Add `-lsp' and
20436         `--line-spacing'.
20438 2000-04-19  Dave Love  <fx@gnu.org>
20440         * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
20441         (cl-mapc): Rename from mapc.  Fix the funcall.
20443 2000-04-19  Gerd Moellmann  <gerd@gnu.org>
20445         * simple.el (clone-indirect-buffer-other-window): New command.
20446         (clone-indirect-buffer): Add optional arg NORECROD.
20447         (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
20449         * help.el (resize-temp-buffer-window): Use count-screen-lines.
20451         * window.el (count-screen-lines): New function.
20452         (shrink-window-if-larger-than-buffer): Use count-screen-lines
20453         instead of window-buffer-height.
20455         * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
20456         non-existing variable comint-input-sentinel.
20457         (inferior-lisp-args-to-list): Removed.
20458         (inferior-lisp): Use split-string instead of
20459         inferior-lisp-args-to-list.
20461         * hexl.el (hexl-insert-hex-string): New command.
20463         * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
20464         instead of concat.
20466 2000-04-18  Gerd Moellmann  <gerd@gnu.org>
20468         * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
20469         at the start of an existing but empty folder.
20471 2000-04-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
20473         * ps-mule.el: Customization fix, doc fix.
20474         (ps-multibyte-buffer): Customization fix.
20476 2000-04-17  Richard M. Stallman  <rms@gnu.org>
20478         * subr.el (read-passwd): Use read-char-exclusive.
20480 2000-04-17  Gerd Moellmann  <gerd@gnu.org>
20482         * textmodes/texinfo.el (texinfo-insert-@email)
20483         (texinfo-insert-@emph, texinfo-insert-@quotation)
20484         (texinfo-insert-@strong, texinfo-insert-@url): New functions.
20485         (texinfo-mode-map): Add key bindings for them.
20487         * files.el (basic-save-buffer-2): Use a template with `$'
20488         instead of `#' for VMS.
20490         * simple.el (clone-indirect-buffer): New function.
20492 2000-04-16  Stephen Eglen  <stephen@gnu.org>
20494         * iswitchb.el (iswitchb-case): New function.  If the user input
20495         contains any upper-case characters, the search is made
20496         case-sensitive.
20498 2000-04-17  Stefan Monnier  <monnier@cs.yale.edu>
20500         * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
20501         comment-end.
20502         (texinfo-font-lock-syntactic-keywords): New var.
20503         (texinfo-font-lock-keywords): Remove comment regexp.
20504         (texinfo-insert-block): New function.
20505         (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
20506         (texinfo-mode): Use define-derived-mode.  Tweak comment-start-skip
20507         and font-lock-defaults.  Use regexp-opt for outline-regexp.
20508         (texinfo-environments): New var.
20509         (texinfo-environment-regexp): Use regexp-opt and
20510         texinfo-environments.
20512         * textmodes/ispell.el (ispell-menu-map-needed): Check that
20513         ispell-process is bound since this might be eval'd before ispell
20514         is loaded.
20515         (ispell-message): Use a tiny bit less magic and a bit more hard
20516         data to figure out what kind of sc-cite-regexp to use.
20518         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
20520         * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
20521         (insert-cyclic-diary-entry): Unquote the lambda.
20523         * gud.el (gud-jdb-build-source-files-list): Fix typo.
20525         * files.el (backup-enable-predicate): Unquote the lambda.
20527         * cus-edit.el (custom-face, face): Unquote the lambda.
20529 2000-04-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
20531         * ps-print.el: Check for line-beginning-position definition.
20533         * ps-print.el: Fix counting lines in a region.
20534         (ps-print-version): New version number (5.1.5).
20535         (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
20536         (ps-printing-region): Fun code fix.
20538 2000-04-15  Gerd Moellmann  <gerd@gnu.org>
20540         * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
20541         to file-directory-p.
20543 2000-04-14  Gerd Moellmann  <gerd@gnu.org>
20545         * gud.el (gud-jdb-build-source-files-list): Check that directory
20546         exists before calling directory-files.
20548 2000-04-13  Dave Love  <fx@gnu.org>
20550         * emacs-lisp/trace.el: Change maintainer.  Use new backquote
20551         syntax.
20553         * emacs-lisp/cl-specs.el: Remove when, unless.
20555         * emacs-lisp/cl-extra.el: Don't quote keywords.
20556         (cl-old-mapc): New variable.
20557         (mapc): Use it.
20558         (cl-map-intervals): Use with-current-buffer.  Don't check for
20559         next-property-change.
20560         (cl-map-overlays): Use with-current-buffer.
20561         (cl-expt): Remove.
20562         (copy-tree, remprop): Define unconditionally.
20564         * emacs-lisp/cl-compat.el (keywordp): Remove.
20566         * emacs-lisp/edebug.el (edebug-keywordp): Remove.  Change callers
20567         to use keywordp.
20568         (edebug-spec): Enable keywordp.
20570         * cus-edit.el (custom-sort-items): Avoid symbol-name with new
20571         string-lessp.
20573         * cus-start.el: Use keywordp.
20575 2000-04-13  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
20577         * diary-lib.el (include-other-diary-files): Fix the fix of
20578         2000-02-18 by doing a save-excursion.
20580 2000-04-13  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
20582         * ps-print.el: Customization fix, doc fix.
20583         (ps-print-version): New version number (5.1.4).
20584         (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
20585         (ps-print-preprint): Adjust code.
20586         (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
20587         (ps-print-prologue-header, ps-print-control-characters)
20588         (ps-spool-config): Customization fix.
20590 2000-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
20592         * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
20593         converted to the new menu-item format, names silightly changed,
20594         help strings added.
20596         Support for spelling without async subprocesses:
20598         * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
20599         (ispell-session-buffer): New variables.
20600         (ispell-start-process, ispell-process-status,
20601         ispell-accept-output, ispell-send-string): New functions, for
20602         Ispell invocation when async subprocesses aren't supported.
20603         (ispell-word, ispell-pdict-save, ispell-command-loop,
20604         ispell-process-line, ispell-buffer-local-parsing): Replace calls
20605         to process-send-string with calls to ispell-send-string, and
20606         accept-process-output with ispell-accept-output.
20607         (ispell-init-process): Call ispell-process-status instead of
20608         process-status with.
20609         (ispell-init-process): Call ispell-start-process.  Call
20610         ispell-accept-output and ispell-send-string.  Don't call
20611         process-kill-without-query and kill-process if they are unbound.
20612         (ispell-async-processp): New function.
20614 2000-04-12  Dave Love  <fx@gnu.org>
20616         * info.el: Add debug-ignored-errors.
20617         (Info-mode-menu): Add some items.
20618         (Info-directory): Add autoload cookie.
20620         * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
20621         Modify `truncate-lines'.  Make `describe-language-environment'
20622         always visible and add help.  Modify `describe-key' help.  Invoke
20623         Info-directory from `info'.  New entry `emacs-manual'.
20625 2000-04-10  Gerd Moellmann  <gerd@gnu.org>
20627         * progmodes/ebrowse.el (ebrowse-tree-mode):
20628         Use propertized-buffer-identification.
20629         (ebrowse-update-member-buffer-mode-line): Likewise.
20630         (ebrowse--mode-strings): Removed.
20631         (ebrowse--mode-line-props): Removed.
20633         * files.el (auto-mode-alist): Add `EBROWSE'.
20635         * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
20636         space before testing for end of buffer.
20637         (ebrowse-load): Removed.
20638         (ebrowse-revert-tree-buffer-from-file): Rewritten.
20639         (ebrowse-create-tree-buffer): Rewritten.
20640         (ebrowse-tree-mode): Read tree from buffer.
20642         * progmodes/ebrowse-ffh.el: Removed.
20644 2000-04-10  Kenichi Handa  <handa@etl.go.jp>
20646         * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
20648 2000-04-10  Gerd Moellmann  <gerd@gnu.org>
20650         * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
20651         at the wrong place.
20653 2000-04-09  Dave Love  <fx@gnu.org>
20655         * files.el (backup-enable-predicate):
20656         Use temporary-file-directory, small-temporary-file-directory.
20657         (make-backup-file-name-function, backup-directory-alist): New vars.
20658         (make-backup-file-name-1): New function.
20659         (make-backup-file-name): Use it.
20660         (find-backup-file-name): Likewise.  Use format for clarity, not concat.
20661         (file-newest-backup): Use make-backup-file-name.
20663 2000-04-09  Gerd Moellmann  <gerd@gnu.org>
20665         * progmodes/ebrowse-ffh.el: New file.
20667         * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
20668         Moved to ebrowse-ffh.el.
20669         (ebrowse-load): Add autoload.
20671         * finder.el (finder-commentary): Add autoload cookie.
20673         * mail/rfc2368.el: Correct author's email address.
20675         * progmodes/ebrowse.el: New file.
20677         * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
20678         item help string.
20679         (easy-menu-do-add-item): Ditto.
20680         (easy-menu-define): Extend doc string.
20682         * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
20683         (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
20684         (jit-lock-function, jit-lock-stealth-fontify): Don't use
20685         with-buffer-unmodified.
20687 2000-04-08  Dave Love  <fx@gnu.org>
20689         * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
20690         unless, when.
20692 2000-04-07  Mikio Nakajima  <minakaji@osaka.email.ne.jp>
20694         * viper-util.el (viper-put-on-search-overlay): New subroutine.
20695         (viper-flash-search-pattern): No operation when using Emacs
20696         doesn't support face.
20697         Use `viper-put-on-search-overlay'.
20699 2000-04-04  Gerd Moellmann  <gerd@gnu.org>
20701         * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
20702         like C-r.
20704         * progmodes/make-mode.el: Some doc fixes.
20705         (makefile-mode-abbrev-table): New variable.
20706         (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
20707         (makefile-font-lock-keywords): Fontify includes and conditionals.
20708         (toplevel): Require `dabbrev' and `add-log' when compiling.
20710         * replace.el (perform-replace): Don't move forward one char
20711         when MATCH-AGAIN is nil, and REGEXP-FLAG is t.  We don't want
20712         to do that because it leaves point 1 position after the last
20713         replacement, after everything has been replaced.
20715         * jit-lock.el (with-buffer-unmodified): New macro.
20716         (with-buffer-prepared-for-font-lock): Don't preserve buffer's
20717         modified state.
20718         (jit-lock-function-1): Extracted from jit-lock-function; not
20719         preserving buffer's modified state.
20720         (jit-lock-function, jit-lock-stealth-fontify):
20721         Call jit-lock-function-1.
20723         * mail/rfc2368.el: Remove supernumerary copyright line.
20725 2000-04-04  Milan Zamazal  <pdm@freesoft.cz>
20727         * glasses.el: Provide facilities for inserting space before left
20728         parentheses and uncapitalization of identifiers.
20729         (glasses-mode): Try to remove old overlays in all cases.
20731 2000-04-03  Gerd Moellmann  <gerd@gnu.org>
20733         * progmodes/compile.el (compile-internal): Display the compilation
20734         buffer in a different frame, if it's already displayed there.
20736         * mail/rfc2368.el: New file.
20738         * simple.el (sendmail-user-agent-compose): Recognize a `body'
20739         header and insert its value as mail body.
20741         * subr.el (member-ignore-case): New function.
20743         * dabbrev.el (dabbrev-ignored-regexps): New user-option.
20744         (dabbrev--find-expansion): Ignore buffers matching a regexp
20745         from dabbrev-ignored-regexps.
20747         * jka-compr.el (jka-compr-compression-info-list): Add `.z'
20748         to extensions handled by gzip.
20750 2000-04-03  Richard M. Stallman  <rms@gnu.org>
20752         * files.el (insert-directory): List the total free space
20753         along with the used space.
20755         * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
20756         line is followed by one that matches CITATION-REGEXP, end the
20757         paragraph.
20759 2000-04-03  Markus Rost  <rost@delysid.gnu.org>
20761         * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
20762         (rmail-make-basic-summary-line): Use that option.
20764 2000-04-03  Kenichi Handa  <handa@etl.go.jp>
20766         * international/mule-cmds.el (encoded-string-description):
20767         Rewritten.   Try pretty description for ISO 2022 escape sequences
20768         only if CODING-SYSTEM is based on ISO 2022.  Use uppercase letters
20769         for hexadecimal format.
20771 2000-04-01  Dave Love  <fx@gnu.org>
20773         * cpp.el: Change customization group to `c' from `C'.
20775         * vcursor.el (vcursor-move): Use display-color-p.
20777         * international/mule-util.el: Provide mule-utils.
20778         (string-to-sequence): Simplify and speed up.
20780         * international/mule.el (make-coding-system): Purecopy doc-string.
20782         * international/mule-cmds.el: Various menu changes.
20783         (describe-specified-language-support): Handle `Default'.
20784         (set-language-info): Purecopy `info'.
20786 2000-03-31  Andrew Innes  <andrewi@gnu.org>
20788         * vc.el (vc-backend-diff): Return the correct status if we had to
20789         retry the rcsdiff command without the --brief option.
20791 2000-03-31  Dave Love  <fx@gnu.org>
20793         * help.el (help-manyarg-func-alist): Correct several omissions.
20795         * add-log.el: Don't require cl, fortran.
20796         (add-log-current-defun-function): Doc fix.
20797         (change-log-version-number-regexp-list): Remove SCCS part.  Doc fix.
20798         (change-log-version-rcs): Function deleted.
20799         (change-log-version-number-search): Doc fix.
20800         Use vc-workfile-version. Avoid CL dolist.
20801         (add-change-log-entry): Just call add-log-current-defun to get
20802         defun.  Simplify somewhat.
20803         (change-log-get-method-definition-1): Likewise.
20804         (add-log-current-defun): Return nil if calling
20805         add-log-current-defun-function does so.  Move Fortran stuff to
20806         fortran.el.  Return string without properties.
20808         * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
20809         and :alpha: char classes.
20811         * mail/supercite.el: Defvar curline when compiling.
20812         (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
20813         (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
20814         rather than a-zA-Z0-9 to allow non-ASCII characters.
20816 2000-03-31  Gerd Moellmann  <gerd@gnu.org>
20818         * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
20820         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20821         Re-enable new code.
20823         * lpr.el (print-region-1): Use -d to specify printer name for
20824         systems `usg-unix-v*, `dgux', `hpux', `irix'.
20826 2000-03-31  Dave Love  <fx@gnu.org>
20828         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
20829         Look for function definition in symbol's function value slot first
20830         instead of first consulting byte-compile-function-environment.
20832 2000-03-31  Kenichi Handa  <handa@etl.go.jp>
20834         * language/european.el ("Polish"): New language environment.
20835         (setup-polish-environment): New function.
20837 2000-03-30  Gerd Moellmann  <gerd@gnu.org>
20839         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20840         Disable new code.
20842         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
20843         trying to `load' the symbol of an autoload instead of the file
20844         recorded in the autoload.  Fix error messages.
20846 2000-03-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
20848         * ps-print.el: PostScript programming fix for ghostview, doc fix.
20849         (ps-print-version): New version number (5.1.3).
20850         (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
20851         (ps-insert-file, ps-output-boolean, ps-plot-with-face)
20852         (ps-generate-postscript-with-faces): Code fix.
20853         (ps-color-values): XEmacs compatibility.
20854         (ps-print-background-image, ps-print-background-text, ps-printer-name)
20855         (ps-default-fg, ps-default-bg): Adjust customization.
20856         (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
20857         (ps-color-scale): Renaming old ps-color-value fun.
20858         (ps-print-headers): Replace ps-print-header group to avoid conflict
20859         with ps-print-header variable.
20860         (ps-print-miscellany): New group.
20861         (ps-format-color, ps-rgb-color): New funs.
20862         (ps-default-foreground): New var.
20863         (ps-printer-name-option): New const.
20865 2000-03-30  Peter Breton  <pbreton@ne.mediaone.net>
20867         * net/net-utils.el:
20868         (network-connection-host, network-connection-service): New variables
20869         (network-connection-mode): New mode, derived from comint-mode
20870         (network-connection-mode-setup): New function, saves host and
20871         service information in local variables.
20873         * lisp/locate.el:
20874         (locate-word-at-point): Added this function
20875         (locate): Default to using locate-word-at-point as input
20876         Run dired-mode-hook
20878 2000-03-29  Dave Love  <fx@gnu.org>
20880         * calendar/appt.el: Doc fixes.
20881         (appt-check): Convert min-to-app to a string before passing to
20882         appt-disp-window-function or concat.
20883         (appt-delete-window): Remove test for frame-root-window.
20884         (appt-select-lowest-window, appt-convert-time): Simplify.
20886         * emacs-lisp/bytecomp.el: Doc fixes.
20887         (byte-compile-file-form-autoload):
20888         Update byte-compile-function-environment.
20890 2000-03-29  Andreas Schwab  <schwab@suse.de>
20892         * emacs-lisp/autoload.el: Also print defsubst doc string specially.
20894         * dired.el (dired-insert-directory): If dired-free-space-program
20895         failed just delete its output.
20897 2000-03-29  Dave Love  <fx@gnu.org>
20899         * international/iso-cvt.el: Move provide to end.  Doc fixes.
20900         (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
20901         (iso-iso2sgml, iso-sgml2iso): New functions.
20902         (iso-cvt-define-menu): Fix some entries and use backquote for
20903         clarity.
20905         * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
20907 2000-03-28  Gerd Moellmann  <gerd@gnu.org>
20909         * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
20910         ISO-DATE.  If non-nil, return date in ISO 8601 format.
20912 2000-03-26  Stefan Monnier  <monnier@cs.yale.edu>
20914         * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
20915         if it ever becomes used.
20916         (log-edit-mode-hook): Default to vc-log-mode-hook.
20917         (log-edit-mode): Fix the docstring.
20919         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
20920         the code.
20922 2000-03-26  Dave Love  <fx@gnu.org>
20924         * net/browse-url.el (browse-url): Re-fix case of
20925         browse-url-browser-function being an alist.
20926         (browse-url): Add :link to defgroup.
20928         * files.el: Doc fixes.
20929         (file-truename): Include `[' in wildcard characters.
20930         (automount-dir-prefix): Customize.
20931         (find-file-wildcards): Add :version.
20932         (find-file-noselect): Simplify a mapcar call.
20934         * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
20935         compatible with inf-lisp version.
20936         (eval-defun-1): Fix custom-declare-variable case.
20938 2000-03-25  Stefan Monnier  <monnier@cs.yale.edu>
20940         * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
20942 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
20944         * Makefile (COMPILE_FIRST): New macro.
20945         (compile-files): Compile files from COMPILE_FIRST first.
20947         * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
20949         * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
20950         matching open parenthesis in column 0 to defun-prompt-regexp
20951         only if open-paren-in-column-0-is-defun-start is set.
20953         * sun-curs.el: Require CL at compile-time only.
20955         * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
20956         instead of copy-list which is a function from CL.
20957         (msb--choose-menu, msb--mode-menu-cond)
20958         (msb--create-buffer-menu-2): Use dolist instead of mapc.
20959         (msb--init-file-alist): Use mapcar instead of mapcan.
20960         (msb--aggregate-alist): Use mapcar instead of mapcan.
20961         Fix `(' in column 0 in doc string.
20962         (msb--add-separators): Use mapcar instead of mapcan.
20964         * cus-dep.el: Require CL at compile-time only.
20966 2000-03-24  Stefan Monnier  <monnier@cs.yale.edu>
20968         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
20969         (byte-compile-warnings): New warning `noruntime'.
20970         (byte-compile-constants, byte-compile-variables): Fix docstring.
20971         (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
20972         execute `eval-whenc-compile's body.
20973         (byte-compile-unresolved-functions): Fix docstring.
20974         (byte-compile-eval): New function.
20975         (byte-compile-callargs-warn): Check if the function will be available
20976         at runtime (via property `byte-compile-noruntime').
20977         (byte-compile-print-syms): New function.
20978         (byte-compile-warn-about-unresolved-functions): Also warn about
20979         `noruntime' functions (and use `byte-compile-print-syms').
20980         (byte-compile-file): Capitalize the message.
20982 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
20984         * mail/rmail.el (rmail-confirm-expunge): New user-option.
20985         (rmail-expunge): Ask for confirmation depending on the setting
20986         of rmail-confirm-expunge.
20988 2000-03-23  Gerd Moellmann  <gerd@gnu.org>
20990         * Makefile (bootstrap-clean): If $(emacs) exists, build
20991         loaddefs.el first.  A loaddefs.el that's not up-to-date might
20992         cause a bootstrap failure because things don't autoload as expected.
20994 2000-03-23  Dave Love  <fx@gnu.org>
20996         * net/browse-url.el: Restore previous use of
20997         browse-url-maybe-new-window.
20999 2000-03-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
21001         * ps-print.el: Skip banner page fix.
21002         (ps-print-version): New version number (5.1.2).
21003         (ps-begin-file, ps-end-file, ps-generate): Code fix.
21005 2000-03-23  Dave Pearson  <davep@davep.org>
21007         * net/quickurl.el Changed the type of parameter passed to the
21008         function defined by `quickurl-format-function'. Before only the
21009         text of the URL was passed. Now the whole URL structure is passed
21010         and the function is responsible for extracting the parts it requires.
21011         Changed the default of `quickurl-format-function' accordingly.
21012         (quickurl-insert): Changed the `funcall' of
21013         `quickurl-format-function' to match the above change.
21014         (quickurl-list-insert): Changed the `url' case so that it makes
21015         use of `quickurl-format-function', previous to this the format was
21016         hard wired.
21018 2000-03-22  Gerd Moellmann  <gerd@gnu.org>
21020         * startup.el: Change some spellings for the X Window System.
21022 2000-03-22  Stefan Monnier  <monnier@cs.yale.edu>
21024         * progmodes/make-mode.el (makefile-warn-suspicious-lines):
21025         Clean up the code and the regexp and make sure the cursor is
21026         temporarily moved to the suspicious line while querying the user.
21028 2000-03-22  Jason Rumney  <jasonr@gnu.org>
21030         * w32-fns.el (w32-charset-info-alist): Initialize.
21032 2000-03-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
21034         * ps-print.el: N-up last page fix.
21035         (ps-print-version): New version number (5.1.1).
21036         (ps-end-file, ps-end-job, ps-generate): Code fix.
21038 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
21040         * files.el (find-file-run-dired): Update docstring.
21041         (find-directory-functions): New hook.
21042         (find-file-noselect): Run find-directory-functions rather than
21043         calling dired directly.
21045         * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
21047         * pcvs.el: Add a minimal leading commentary.
21048         (cvs-make-cvs-buffer): Change the header part by removing the startup
21049         message and adding a `Module' entry.  Also replace the FOOTER and
21050         HEADER special fileinfos with the new support in ewoc for updating
21051         its own footer and header.
21052         (cvs-update-header): Update to use the header/footer of the ewoc.
21053         (cvs-mode): Use define-derived-mode and set truncate-lines to t.
21054         (cvs-is-within-p): New function.
21055         (cvs-mode-run): Take advantage of `save-some-buffers's new ability
21056         to only examine some subset of the buffers.
21058         * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
21059         `format' instead of our own ad-hoc functions.
21060         Remove HEADER and FOOTER cases, now handled in the EWOC.
21061         (cvs-fileinfo<): Remove HEADER and FOOTER cases.
21063         * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
21064         output to avoid scaring the user.
21065         (cvs-parse-table): Catch message for non-up-to-date commits.
21067         * pcvs-defs.el (cvs-startup-message): Remove.
21068         (cvs-global-menu): New autoloaded menu.
21070         * pcvs-util.el (cvs-string-fill): Remove.
21072         * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
21073         (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
21074         PP part of it and also make it work for footers and headers.
21075         (ewoc-create): Drop POS and BUFFER arguments.
21076         Use the DLL's dummy node to store the end-of-footer position.
21077         (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
21078         (ewoc-refresh): Remove unused `header' variable.
21079         (ewoc-(get|set)-hf): New functions.
21081         * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
21082         log-view-*-(message|file) and use easy-mmode-define-navigation.
21083         (log-view-message-re): Match SCCS format as well.
21084         And match the revision line rather than the dashed separator line.
21085         (log-view-mode): Use the new define-derived-mode.
21086         (log-view-current-tag): Fill in with an actual implementation.
21088         * cvs-status.el (cvs-status-(prev|next)): Rename from
21089         cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
21090         (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
21091         to let the output "breathe" a little more (more readable).
21092         (cvs-status-mode): Use the new define-derived-mode.
21094         * smerge-mode.el (smerge-auto-leave): New function and variable.
21095         (smerge-basic-map): Rename from smerge-basic-keymap.
21096         Change the bindings for smerge-diff-*.
21097         (smerge-*-map): Use easy-mmode-defmap.
21098         (smerge-(next|prev)): Use easy-mmode-define-navigation.
21099         (smerge-keep-*): Use smerge-auto-leave.
21101 2000-03-21  Jason Rumney  <jasonr@gnu.org>
21103         * cus-edit.el (custom-button-face): Use 3D look for w32.
21104         (custom-button-pressed-face): Likewise.
21106 2000-03-21  Gerd Moellmann  <gerd@gnu.org>
21108         * progmodes/etags.el (tags-case-fold-search): New user-option.
21109         (tags-loop-eval): New function.  Bind case-fold-search around eval
21110         depending on the value of tags-case-fold-search.
21111         (tags-loop-continue): Use tags-loop-eval.
21112         (find-tag-in-order): Bind case-fold-search depending on the value
21113         of tags-case-fold-search.
21115 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
21117         * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
21118         (diff-end-of-hunk): Return the end position for use in
21119         `easy-mmode-define-navigation'.
21120         (diff-recenter): Remove.
21121         (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
21122         of `easy-mmode-define-navigation'.
21123         (diff-kill-*): Rename `diff-*-kill' (for consistency with the
21124         previous renaming) and fix to use new names.
21125         (diff-merge-strings): Use \n as separator: simpler, faster.
21126         (diff-mode): Use `define-derived-mode'.
21128         * derived.el (define-derived-mode): Don't autoload anymore.
21129         Prefer the macro-only version provided by easy-mmode.el.
21131         * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
21132         `easy-mmode-define-derived-mode'.  Use `combine-run-hooks'.
21133         (easy-mmode-define-navigation): New macro.
21135         * subr.el (combine-run-hooks): New function.
21137 2000-03-21  Kenichi HANDA  <handa@etl.go.jp>
21139         * term/x-win.el: Fontsets related initialization is simplified.
21141         * international/mule-diag.el (describe-font): Don't refer to
21142         global-fontset-alist, instead call font-list.
21143         (describe-fontset, list-fontsets, mule-diag): Likewise.
21144         (print-fontset): Adjusted for the change of fontset implementation.
21146         * international/fontset.el (x-charset-registries): Variable removed,
21147         instead the corresponding data is stored in the default fontset.
21148         (register-alternate-fontnames): Function removed.
21149         (resolved-ascii-font): Variable removed.
21150         (x-compose-font-name): Ignore the second argument REDOCE.
21151         (x-complement-fontset-spec): Complement only an ASCII font and
21152         element for those charsets than can use that ASCII font.
21153         (generate-fontset-menu): Don't refer to global-fontset-alist,
21154         instead call fontset-list.
21155         (uninstantiated-fontset-alist): Variable removed.
21156         (x-style-funcs-alist): Likewise.
21157         (fontset-default-styles): Likewise.
21158         (x-modify-font-name): Function removed.
21159         (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
21160         (create-fontset-from-ascii-font): Docsting adjusted for the above
21161         change.
21162         (instantiate-fontset, resolve-fontset-name): Functions removed.
21163         (fontset-list): Now implemented by C code.
21165         * faces.el (read-face-font): Fix TABLE arg to completing-read.
21166         (describe-face): Include `font' attribute in the description.
21168 2000-03-21  Kenichi Handa  <handa@etl.go.jp>
21170         * international/quail.el (quail-set-keyboard-layout): Typo fixed.
21172 2000-03-20  Gerd Moellmann  <gerd@gnu.org>
21174         * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
21175         ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
21176         zone-mode.el, snmp-mode.el: Moved to net subdirectory.
21178         * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
21179         about behavior of set-buffer-modified-p wrt redisplay.
21181 2000-03-19  Richard M. Stallman  <rms@gnu.org>
21183         * view.el (view-mode-disable): Kill local binding of view-read-only.
21185 2000-03-18  Gerd Moellmann  <gerd@gnu.org>
21187         * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
21188         is a string, convert it to a syntax cell using string-to-syntax.
21190         * simple.el (syntax-code-table, syntax-flag-table): New variables.
21191         (string-to-syntax): New function.
21193         * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
21194         (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
21195         try to use passive ftp mode.
21197 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
21199         * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
21201         * simple.el (append-to-buffer): Update point of windows after
21202         insertion.
21204         * abbrev.el (inverse-add-abbrev): Identify word by first moving
21205         forward then moving backward.  Reindent.
21207         * frame.el (other-frame): Call x-focus-frame only if
21208         focus-follows-mouse is off.
21210 2000-03-17  Dave Love  <fx@gnu.org>
21212         * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
21214 2000-03-17  Stefan Monnier  <monnier@cs.yale.edu>
21216         * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
21217         regexp for labels cannot span several lines.
21219         * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
21220         `(setq :<key> ':<key>)' to the macro expansion.
21222 2000-03-16  Dave Love  <fx@gnu.org>
21224         * progmodes/f90.el (f90): Put custom group under `languages', not
21225         `fortran'.
21226         (f90-mode-hook): Customize.
21227         (f90-mode): Set add-log-current-defun-function.
21228         (f90-current-defun): New function.
21230 2000-03-16  Gerd Moellmann  <gerd@gnu.org>
21232         * cus-edit.el (custom-variable-tag-face): Handle case that
21233         default face's height is not a number.
21234         (custom-face-tag-face, custom-group-tag-face-1)
21235         (custom-group-tag-face): Ditto.
21236         (custom-group-tag-face-1): Add :group.
21238         * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
21240 2000-03-15  Gerd Moellmann  <gerd@gnu.org>
21242         * pcvs-defs.el (toplevel): Remove autoload cookie for form
21243         requiring easymenu.
21245 2000-03-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
21247         * ps-print.el: PostScript user-defined prologue, PostScript error
21248         handler, doc fix.
21249         (ps-print-version): New version number (5.1).
21250         (ps-user-defined-prologue, ps-error-handler-message)
21251         (ps-print-prologue-0, ps-error-handler-alist): New vars.
21252         (ps-setup, ps-begin-file, ps-begin-job): Code fix.
21253         (ps-insert-string): New function.
21255 2000-03-15  Kenichi Handa  <handa@etl.go.jp>
21257         * international/ccl.el (ccl-compile-expression): Don't generate
21258         invalid self-assignment code.
21260 2000-03-14  Dave Love  <fx@gnu.org>
21262         * subr.el (replace-regexp-in-string): Renamed from
21263         replace-regexps-in-string.  Doc fix.
21265 2000-03-12  Dave Love  <fx@gnu.org>
21267         * cus-edit.el: Doc fixes.
21268         (customize-set-variable, customize-save-variable): Rename args for doc.
21269         (custom-variable-tag-face, custom-face-tag-face)
21270         (custom-group-tag-face-1, custom-group-tag-face): Modify from
21271         style which user identify as hyperlink.
21272         (hook): Don't add undefined functions to the hook.
21273         (debug-ignored-errors): Transfer message from bindings.el.
21275 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
21277         * recentf.el (recentf-keep-non-readable-files-p):
21278         Remove double/nested definition.
21280 2000-03-12  Dave Love  <fx@gnu.org>
21282         * facemenu.el (facemenu-get-face): Use display-color-p.
21283         * enriched.el (enriched-decode-foreground): Likewise.
21284         (enriched-decode-background): Likewise.
21285         * isearch.el (isearch-highlight): Likewise.
21286         * info-look.el (info-lookup): Likewise.
21287         * simple.el (completion-setup-function): Likewise.
21289         * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
21290         :options.
21292         * bindings.el (mode-line-format): Fix line-number and
21293         column-number items.  Add help-echo for the background.
21294         (mode-line-mule-info): Modify help-echo.
21296         * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
21298         * files.el (load-file): Allow completion to .elc.
21300         * man.el: Doc fixes.
21301         (Man-init-defvars): Use display-color-p to set fontification.
21303         * play/hanoi.el (hanoi-internal): Don't use oddp.
21305 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
21307         * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
21309         * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
21311 2000-03-12  Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
21313         * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
21314         Fix comment.
21316 2000-03-10  Stefan Monnier  <monnier@cs.yale.edu>
21318         * font-lock.el (font-lock-keywords): Fix the doc now that
21319         regexp-opt-depth is unnecessary.
21320         (save-buffer-state): Set an edebug spec.
21321         (font-lock-fontify-anchored-keywords): Properly handle the case when
21322         the matcher goes past the limit.
21324         * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
21325         pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
21327         * emacs-lisp/ewoc.el: New file.  This is a merge of elib-node.el,
21328         dll.el and cookie.el (from Elib) with heavy renaming and other
21329         massaging.
21331         * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
21332         Autoload the functions used.
21333         (easy-mmode-define-syntax): Fix CL typo.
21334         (easy-mmode-define-derived-mode): Improve the docstring generation.
21336 2000-03-10  Gerd Moellmann  <gerd@gnu.org>
21338         * textmodes/texinfo.el (texinfo-version): Variable and function
21339         removed.
21341 2000-03-09  Stefan Monnier  <monnier@cs.yale.edu>
21343         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
21344         allow more flexibility.
21345         (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
21346         (easy-mmode-defmap, easy-mmode-defsyntax)
21347         (easy-mmode-define-derived-mode): New macros.
21349 2000-03-09  Didier Verna  <didier@xemacs.org>
21351         * rect.el (replace-rectangle): New function.
21353 2000-03-09  Dave Love  <fx@gnu.org>
21355         * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
21356         (fortran-comment-line-start-skip): Don't match cpp stuff.
21357         (font-lock-keywords): Add * to comment-chars.  Grok cpp stuff.
21358         (fortran-mode-map): Remove over-eager custom-menu-create for now.
21359         (fortran-mode): Don't set fortran-comment-line-start-skip,
21360         fortran-comment-line-start here.  Set comment-start,
21361         add-log-current-defun.
21362         (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
21363         (fortran-current-defun): New function.
21365 2000-03-09  Gerd Moellmann  <gerd@gnu.org>
21367         * emacs-lisp/re-builder.el: New file.
21369         * mouse.el (mouse-drag-region): Don't run up-event handler
21370         if hscroll has changed.
21372         * octave-mod.el (octave-font-lock-keywords): To font-lock the
21373         builtin operators, use `font-lock-builtin-face' for Emacs and
21374         `font-lock-preprocessor-face' otherwise.
21376         * font-lock.el (lisp-font-lock-keywords-1): Highlight
21377         `(defun (setf foo)' differently.
21379 2000-03-08  Stefan Monnier  <monnier@cs.yale.edu>
21381         * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
21382         (regexp-opt): Update comment and adapt the code the new meaning of
21383         the `paren' argument of regex-opt-group for shy-groups.
21384         (regexp-opt-depth): Handle shy groups as well as backslashed
21385         backslashes.
21386         (regexp-opt-group): Turn the leading comment into a docstring.
21387         Allow `paren' to be a string (the string to use to open a group).
21388         Remove open-presuf and close-presuf.  Instead of checking for `all
21389         one-char' and then later on check for `several one-char', handle
21390         both cases close together.  Also apply a more generic algorithm
21391         for suffixes (the mirror image of the algorithm used for
21392         prefixes).  Use shy-groups.  Use nreverse rather than reverse.
21393         (regexp-opt-try-suffix): Removed.
21395         * cmuscheme.el (inferior-scheme-mode-map): Define it independently
21396         from comint-mode-map, so we can just inherit from it.  Also, move
21397         the initialization into the `defvar' since there's no docstring
21398         anyway and it's fairly short.
21399         (inferior-scheme-mode): Define it as derived-mode: the code is
21400         shorter and this way we inherit from comint-mode-map rather than
21401         copying it.
21403         * subr.el (replace-regexps-in-string): Properly handle the case
21404         where we match an empty string.
21406         * comint.el (comint-exec-1): Add the current-dir to the exec-path
21407         when the command has a directory component (such as "./testml").
21408         Also fix a typo in the comment.
21410 2000-03-08  Gerd Moellmann  <gerd@gnu.org>
21412         * Makefile (compile-files): Compile files one by one because
21413         that's the only way to ensure a clean compilation environment for
21414         each individual file.
21416         * frame.el (other-frame): Call x-focus-frame.
21418 2000-03-07  Dave Love  <fx@gnu.org>
21420         * recentf.el (recentf-keep-non-readable-files-p): Add :set,
21421         :require to defcustom.
21423         * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
21425         * files.el (auto-mode-alist): Add configure.in.
21427         * progmodes/autoconf.el: New file.
21429 2000-03-07  Gerd Moellmann  <gerd@gnu.org>
21431         * mail/mh-e.el: Change maintainer to `none'.
21433         * recentf.el (recentf-keep-non-readable-files-p): Quote args
21434         to remove-hook and add-hook.
21436 2000-03-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
21438         * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
21439         it as the default.
21440         (mail-send): Test mail-send-nonascii also for the new `mime' value.
21441         (sendmail-send-it): Conditionally add MIME headers specifying the
21442         used character set.
21444 2000-03-07  Dave Love  <fx@gnu.org>
21446         * winner.el: Fix keywords, autoload cookies.
21447         Split eval-when-compile form to avoid compilation failure.
21449 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
21451         * international/mule.el: Modify comment about coding system
21452         property `coding-category'.
21453         (make-coding-system): New argument EOL-TYPE.  Pay attention to
21454         coding-category property of PROPERTIES.
21456         * international/mule-conf.el (coding-category-utf-8)
21457         (coding-category-utf-16-be, coding-category-utf-16-le): New coding
21458         categories.  Include them in the argument for set-coding-priority.
21460         * international/mule-cmds.el (reset-language-environment):
21461         Include coding-category-utf-8, coding-category-utf-16-be, and
21462         coding-category-utf-16-le in the argument for set-coding-priority.
21463         (reset-language-environment): Initialize coding-category-utf-8,
21464         coding-category-utf-16-be, and coding-category-utf-16-le to nil.
21466 2000-03-06  Karl Fogel  <kfogel@red-bean.com>
21468         * bookmark.el (bookmark-file-or-variation-thereof): New func, for
21469         code abstracted out of `bookmark-jump-noselect'.  Now tries info
21470         extensions as well as compression extensions.
21471         (bookmark-jump-noselect): Use above new func.
21473 2000-03-03  Gerd Moellmann  <gerd@gnu.org>
21475         * strokes.el: Change maintainer's mail address.
21477 2000-03-03  Kenichi Handa  <handa@etl.go.jp>
21479         * international/mule-diag.el (list-character-sets): Make help-echo
21480         string by substitute-command-keys.
21481         (list-character-sets): Likewise.
21482         (sort-listed-character-sets): Call help-setup-xref.
21484 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
21486         * time.el (display-time-mail-file): Add `none' to the list of choices.
21488 2000-03-01  Dave Love  <fx@gnu.org>
21490         * help.el (help-xref-go-back): Don't try to set position.
21492         * international/mule-diag.el (list-character-sets):
21493         Call help-setup-xref.  Add help-echo to xrefs.
21494         (list-character-sets-1): Add help-echo to xrefs.
21496 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
21498         * frame.el (blink-cursor-mode): Switch cursor on when turning
21499         the mode off.
21501         * add-log.el (add-log-current-defun): Add support for
21502         Autoconf mode.
21504         * mail/rmail.el (rmail-quit-hook): New variable.
21506 2000-03-01  Dave Love  <fx@gnu.org>
21508         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
21510         * help.el (help-xref-button): Add help-echo arg.
21511         (describe-function-1, describe-variable, help-make-xrefs): Use it.
21513         * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
21515         * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
21517 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
21519         * image.el (defimage): Look for image files in load-path.
21521         * frame.el (busy-cursor-delay-seconds): Change type to `number'.
21523 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
21525         * recentf.el (recentf): Added version tag to the defgroup of recentf.
21527 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
21529         * recentf.el (recentf-cleanup): Changed to remove excluded file too.
21530         (recentf-edit-list-action): `recentf-edit-list' checkbox widget
21531         action to select/unselect a file.
21532         (recentf-edit-list): Code cleanup and improvement.
21533         (recentf-open-more-files-action): `recentf-open-more-files' button
21534         widget action to open a file.
21535         (recentf-open-more-files): No more use standard completion but widgets.
21536         (recentf-more-collection): Deleted.
21537         (recentf-more-history): Deleted.
21538         (recentf-setup-more-completion): Deleted.
21540 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
21542         * recentf.el (recentf-mode): No more needs that Emacs is running
21543         under a window-system.
21545 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
21547         * recentf.el (recentf-edit-list): New command to edit the recent
21548         list which allow the user to remove files.
21549         (recentf-edit-selected-items): New global variable, used by
21550         `recentf-edit-list' to hold the list of files to be removed from
21551         the recent list.
21552         (recentf-make-menu-items): Updated to display a "Edit list..."
21553         menu item.  Minor code cleanup.
21555 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
21557         * recentf.el (recentf-open-more-files): New command to open files
21558         that are not displayed in the menu.
21559         (recentf-more-collection): New global variable holding the set of
21560         permissible completions used by `recentf-open-more-files'.
21561         (recentf-more-history): New global variable holding the history list
21562         used by `recentf-open-more-files' completion.
21563         (recentf-setup-more-completion): New function to setup completion for
21564         `recentf-open-more-files'.
21565         (recentf-make-menu-items): Updated to display a "More..." menu item.
21567 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
21569         * recentf.el (recentf-menu-action): Doc fixed.
21571 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
21573         * recentf.el (recentf-menu-filter): Doc updated.
21574         (recentf-update-menu-hook): Allow menu filters to force menu update.
21575         (recentf-make-menu-items): New menu filter handling.
21576         (recentf-make-menu-item): New helper function.
21577         (recentf-menu-elements): New menu handling function.
21578         (recentf-sort-ascending): Updated to new menu filter handling.
21579         (recentf-sort-descending): Updated to new menu filter handling.
21580         (recentf-sort-basenames-ascending): New menu filter function.
21581         (recentf-sort-basenames-descending): New menu filter function.
21582         (recentf-show-basenames): New menu filter function.
21583         (recentf-show-basenames-ascending): New menu filter function.
21584         (recentf-show-basenames-descending): New menu filter function.
21586 2000-02-29  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
21588         * diary-lib.el (list-diary-entries): Don't try to go forward at
21589         the end of the buffer.
21591 2000-02-29  Kenichi Handa  <handa@etl.go.jp>
21593         * international/mule-diag.el (list-character-sets):
21594         Completely rewritten.
21595         (sort-listed-character-sets): New function.
21596         (list-character-sets-1): Completely rewritten.
21597         (list-character-sets-2): New function.
21598         (non-iso-charset-alist): New variable.
21599         (decode-codepage-char): New function.
21600         (charset-history): New variable.
21601         (read-charset) (list-block-of-chars)
21602         (list-iso-charset-chars)
21603         (list-non-iso-charset-chars)
21604         (list-charset-chars): New functions.
21605         (mule-diag): Call list-character-sets-2, not list-character-sets-2.
21606         (dump-charsets): Likewise.
21608 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
21610         * dired-x.el (dired-filename-at-point): Add `@' to valid
21611         file name characters.
21612         (dired-filename-at-point): Handle ange-ftp file names.
21614         * frame.el (frame-notice-user-settings): Use assq-delete-all
21615         instead of assoc-delete-all.
21616         (frame-notice-user-settings): Ditto.
21618         * subr.el (assq-delete-all): Renamed from assoc-delete-all.
21619         Don't copy alist.
21621 2000-02-28  Eli Barzilay  <eli@cs.cornell.edu>
21623         * calculator.el (calculator-use-menu): New option.
21624         (calculator-initial-bindings): Changed some bindings to work as macros.
21625         (calculator-forced-input): Removed.
21626         (calculator-restart-other-mode): New variable.
21627         (calculator-mode-map): Set up menu.
21629 2000-02-28  Jari Aalto  <jari.aalto@poboxes.com>
21631         * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
21633 2000-02-28  Michael Kifer  <kifer@cs.sunysb.edu>
21635         * viper-cmd.el (viper-envelop-ESC-key): Add the option to
21636         translate all ESC key sequences.
21637         (viper-goto-mark-subr): Restore markers for files for which
21638         they were saved.
21639         * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
21640         * viper-util.el (viper-set-replace-overlay-glyphs)
21641         (viper-set-replace-overlay): Always check if the replacement
21642         overlay is live.
21643         * viper.el (viper-vi-state-mode-list): Add major modes.
21644         * ediff-wind.el: Minor comment changes.
21645         * ediff.el: Copyright notice date fix.
21647 2000-02-27  Jason Rumney  <jasonr@gnu.org>
21649         * faces.el (face-font-family-alternatives): Add arial to helv.
21650         (mode-line, header-line, tool-bar): Same default as x for w32.
21651         (fixed-pitch, variable-pitch): Remove wildcard as it prevents
21652         face-font-family-alternatives from working.
21653         * term/w32-win.el (mouse-set-font): Do not build fontset from
21654         chosen font.
21656 2000-02-25  Sam Steingold  <sds@goems.com>
21658         * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
21659         properly.
21661 2000-02-25  Richard M. Stallman  <rms@gnu.org>
21663         * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
21665 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
21667         * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
21669         * frame.el (busy-cursor-delay-seconds): New option.
21671 2000-02-24  Gerd Moellmann  <gerd@gnu.org>
21673         * frame.el (show-cursor-in-non-selected-windows): New option.
21675 2000-02-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
21677         * diary-lib.el (include-other-diary-files): Undo the selective
21678         display in any included file and don't kill it.
21680 2000-02-24  Eli Zaretskii  <eliz@is.elta.co.il>
21682         * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
21683         Menu items converted to (menu-item format, help strings added.
21684         [downcase, upcase]: Don't enable on MS-DOS.
21685         [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
21686         [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
21688 2000-02-23  Dave Love  <fx@gnu.org>
21690         * simple.el (zap-to-char, kill-line, kill-region, kill-word)
21691         (backward-kill-word): Revert addition of * to interactive spec --
21692         it's a feature.
21694         * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
21695         (backward-kill-sentence, kill-sentence): Likewise.
21697         * gud.el (gud-jdb-build-class-source-alist): Prepend space to
21698         scratch buffer name.
21699         (gud-format-command): Use int-to-string in ?l case.  Simplify slightly.
21701         * term/w32-win.el (internal-face-interactive): Update prompt for
21702         new read-face-name.
21704         * mail/footnote.el (footnote): Add :version to defgroup.
21705         (footnote-section-tag-regexp): Customize.
21706         (footnote-start-tag, footnote-end-tag): New option.
21707         (footnote-latin-regexp): New variable.
21708         (Footnote-latin): New function.
21709         (footnote-style-alist): Add element for latin style.
21710         (footnote-style): Moved.
21711         (Footnote-goto-footnote): Use eq to test arg.
21713         * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
21715         * emacs-lisp/byte-opt.el: Change old backquote syntax.
21716         (byte-compile-trueconstp): Include keywords.
21717         (byte-optimize-quote, byte-optimize-lapcode):
21718         Use byte-compile-const-symbol-p.
21719         (byte-optimize-char-before): New optimization.
21721         * emacs-lisp/bytecomp.el: Change old backquote syntax.
21722         (byte-compile-const-symbol-p): New function.
21723         (byte-compile-constp, byte-compile-out-toplevel)
21724         (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
21725         Use it.
21727         * subr.el (define-key-after): Default AFTER to t.  Doc fix.
21729 2000-02-23  Kenichi Handa  <handa@etl.go.jp>
21731         * international/encoded-kb.el: Be sure to update minor-mode-alist
21732         and minor-mode-map-alist.
21733         (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
21734         codes SS2 and SS3 correctly.
21735         (encoded-kbd-self-insert-ccl): New function.
21736         (encoded-kbd-setup-keymap): New function.
21737         (encoded-kbd-mode): Handle CCL based coding system.  Setup keymap
21738         by calling encoded-kbd-setup-keymap.
21740         * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
21741         (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
21743 2000-02-22  Dave Love  <fx@gnu.org>
21745         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
21746         (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
21747         (lisp-mode-syntax-table): Set up for #|...|# comments.
21748         (lisp-imenu-generic-expression): Purecopy strings.  Use syntax
21749         classes.  Match `defface'.
21750         (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
21751         (eval-defun-1): Fix for defcustom.
21752         (lisp-indent-region): Doc fix.
21754         * subr.el (when, unless, split-string): Doc fix.
21755         (read-passwd): Move call of clear-this-command-keys to the right place.
21756         (replace-regexps-in-string): New function.
21758 2000-02-22  Gerd Moellmann  <gerd@gnu.org>
21760         * help.el (describe-variable): Set syntax table to
21761         emacs-lisp-mode-syntax-table when moving forward over the
21762         symbol's name.
21764 2000-02-22  Dave Love  <fx@gnu.org>
21766         * xt-mouse.el: Doc fixes.
21767         (xterm-mouse-position-function): New function, replacing advice of
21768         mouse-position.
21769         (xterm-mouse-mode): Use it.  Don't turn on under a window system.
21771         * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
21773 2000-02-21  Gerd Moellmann  <gerd@gnu.org>
21775         * format.el (format-annotate-single-property-change):
21776         Handle properties.with dotted-list values.
21777         (format-proper-list-p): New function.
21779         * enriched.el (enriched-face-ans): Handle '(foreground-color
21780         . COLOR) and (background-color . COLOR).
21782 2000-02-20  Dave Love  <fx@gnu.org>
21784         * textmodes/flyspell.el (flyspell-mouse-map): Change definition
21785         and assignments to it.
21786         (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
21787         current local map.
21788         (make-flyspell-overlay): Use it.
21789         (flyspell-correct-word/mouse-keymap): Change XEmacs test.
21791         * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
21792         (lm-get-header-re): Defun, not defsubst.
21793         (lm-get-package-name): Defun, not defsubst.  Simplify.
21794         (lm-version): Doc fix.  Simplify.
21795         (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
21796         (lm-crack-address, lm-last-modified-date, lm-commentary)
21797         (lm-verify, lm-synopsis): Simplify.
21798         (lm-report-bug): Require emacsbug.  Use compose-mail.
21800 2000-02-20  Gerd Moellmann  <gerd@gnu.org>
21802         * dired.el (dired-mode): Call propertized-buffer-identification
21803         to set mode-line-buffer-identification to something having
21804         the right text properties.
21806         * bindings.el (propertized-buffer-identification): New function.
21808 2000-02-20  Dave Love  <fx@gnu.org>
21810         * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
21811         check for t-mouse too.
21813         * cus-start.el: Make echo-keystrokes `number'.
21815 2000-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
21817         * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
21818         Don't call ring-empty-p unless tags-location-ring is bound.
21819         From Noah Friedman <friedman@splode.com>.
21821 2000-02-18  Thien-Thi Nguyen  <ttn@gnu.org>
21823         * progmodes/hideshow.el (hs-flag-region): No longer use
21824         `intangible' overlay property.
21826         (hs-toggle-hiding): New command.
21827         (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
21829         (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
21830         Fix omission bug: Run `hs-minor-mode-hook' for both activation
21831         and deactivation.
21833 2000-02-18  Gerd Moellmann  <gerd@gnu.org>
21835         * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
21837 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
21839         * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
21841         * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
21842         of `*' to handle `(* ... *)' comments.
21844 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
21846         * faces.el (list-faces-display): Use display-mouse-p instead of
21847         window-system.
21849         * menu-bar.el (global-map): Menu-bar items converted to the new
21850         format (menu-item..., rearranged for better CUA compliance, and
21851         their names changed for better clarity.  Help strings added.
21853         * international/mule-cmds.el (mule-menu-keymap)
21854         (describe-language-environment-map, set-coding-system-map)
21855         (setup-language-environment-map): Convert to new (menu-item...
21856         form, add help strings.  Change names of menu items for better clarity.
21857         "Mule" menu-bar item removed (it's now in the "Options" submenu).
21859 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
21861         * dired-aux.el (dired-do-copy): Remove spurious character.`n'
21862         within the code.
21864 2000-02-16  Dave Love  <fx@gnu.org>
21866         * faces.el: Don't require custom.  Add more specific :groups to
21867         various deffaces.
21868         (set-face-attribute): Purecopy args.
21869         (read-face-name): Default to name at point and use it in prompt.
21870         Remove colon from arg in all callers.
21871         (list-faces-display): Hyperlink to face descriptions and customize
21872         buffers.
21874 2000-02-16  Per Abrahamsen  <abraham@dina.kvl.dk>
21876         * wid-edit.el (widget-match-inline): An atom never matches a list.
21878 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
21880         * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
21881         at ':' characters by call to split-string.
21883 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
21885         * textmodes/bibtex.el: Added RCS version identification.
21887 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
21889         * textmodes/bibtex.el: Some temporary comments removed.
21890         (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
21891         (bibtex-field-const): Allow capital letters.
21892         (bibtex-start-of-string): Deleted because unused.
21894         * textmodes/bibtex.el: Unified some nomenclature.  We no longer
21895         use the term 'reference' to describe a bibtex entry as a whole.
21896         Further, reference keys are no longer called 'labels'.
21897         (bibtex-keys): Renamed to bibtex-reference-keys.
21898         (bibtex-reformat-previous-labels): Renamed to
21899         bibtex-reformat-previous-reference-keys.
21900         (bibtex-reference-type): Renamed to bibtex-entry-type.
21901         (bibtex-reference-head): Renamed to bibtex-entry-head.
21902         (bibtex-reference-maybe-empty-head): Renamed to
21903         bibtex-entry-maybe-empty-head.
21904         (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
21905         (bibtex-search-reference): Renamed to bibtex-search-entry.
21906         (bibtex-enclosing-reference-maybe-empty-head): Renamed to
21907         bibtex-enclosing-entry-maybe-empty-head.
21908         (bibtex-entry-field-alist, bibtex-entry-head)
21909         (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
21910         (bibtex-map-entries, bibtex-search-entry)
21911         (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
21912         (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
21913         (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
21914         (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
21915         (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
21916         (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
21917         (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
21919 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
21921         * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
21922         comment.
21923         (bibtex-format-field-delimiters): New function, functionality
21924         extracted from bibtex-format-entry.
21925         (bibtex-autokey-get-yearfield-digits): New function, functionality
21926         extracted from bibtex-autokey-get-yearfield.
21928         * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
21929         entries in order to avoid stack overflow in the regexp matcher if
21930         field contents become large.
21931         (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
21932         (bibtex-field-string-part-not-braced)
21933         (bibtex-field-string-part-no-inner-braces)
21934         (bibtex-field-string-part-1-inner-brace)
21935         (bibtex-field-string-part-2-inner-braces)
21936         (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
21937         (bibtex-field-string-quoted, bibtex-field-string)
21938         (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
21939         (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
21940         (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
21941         Deleted as parsing is now performed by the following functions.
21942         (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
21943         (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
21944         (bibtex-parse-field-string, bibtex-search-forward-field-string)
21945         (bibtex-parse-association, bibtex-field-name-for-parsing)
21946         (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
21947         (bibtex-search-forward-field, bibtex-search-backward-field)
21948         (bibtex-start-of-field, bibtex-end-of-field)
21949         (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
21950         (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
21951         (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
21952         (bibtex-parse-string, bibtex-search-forward-string)
21953         (bibtex-search-backward-string, bibtex-start-of-string)
21954         (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
21955         (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
21956         (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
21957         entries.  Instead of reporting the results of the parsing by
21958         match-beginning or match-end, these functions return data structures
21959         that hold the corresponding positions.
21960         (bibtex-enclosing-field): Changed to also report field boundaries by
21961         return values rather than by match-beginning or match-end.
21962         The following functions have been adapted to use the new
21963         parsing functions.
21964         (bibtex-skip-to-valid-entry, bibtex-search-reference)
21965         (bibtex-enclosing-field, bibtex-format-entry)
21966         (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
21967         (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
21968         (bibtex-print-help-message, bibtex-end-of-entry)
21969         (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
21970         (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
21971         (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
21972         Use the new method for parsing.
21973         (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
21974         (bibtex-map-entries, bibtex-flash-head)
21975         (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
21976         (bibtex-autokey-change, bibtex-autokey-get-namefield)
21977         (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
21978         (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
21979         (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
21980         (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
21981         (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
21982         order to make the new binding of case-fold-search immediately visible.
21984 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
21986         * textmodes/bibtex.el: Copyright notice is up to date.
21987         Added constant 'bibtex-maintainer-salutation.
21989         * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
21990         than make-temp-name, use match-string-no-properties and eliminate
21991         a quadratic behavior when building bibtex-strings.
21993         * bibtex.el (bibtex-reference-key): Accept string entries whose
21994         reference key contains upper case letters.
21996 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
21998         * bibtex.el (bibtex-reference-head): Allow entries to start with
21999         a new line.
22001 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
22003         * bibtex.el: Hiding of entry bodies is not longer provided by
22004         bibtex.el directly.  Instead the hideshow package can be used.
22005         Added a special bibtex entry to hs-special-modes-alist.
22006         (bibtex-hs-forward-sexp): Added for hideshow.el.
22008 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
22010         * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
22011         proceedings entry type (for cross referencing). Thanks to Wagner
22012         Toledo Correa for the suggestion.
22014         * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
22016 2000-02-14  Kenichi Handa  <handa@etl.go.jp>
22018         * international/characters.el: Setup case table for Vietnamese.
22020 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
22022         * uniquify.el (toplevel): Require CL at compile time.
22023         (uniquify-push): Removed.
22025         * shadowfile.el (shadow-when): Removed.
22027         * tempo.el (tempo-dolist, tempo-mapc): Removed.
22028         (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
22030         * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
22031         regexp for paragraph-start.
22033         * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
22034         commas as well.
22036 2000-02-10  Dave Love  <fx@gnu.org>
22038         * wid-edit.el: (widgets) [defgroup]: Remove url link.
22039         (widget-color-choice-list, widget-color-history, widget-mouse-help):
22040         Deleted.
22041         (widget-specify-field, widget-specify-button): Don't use
22042         widget-mouse-help as help-echo property.
22043         (default): Use #'ignore for :validate and :mouse-down-action.
22044         (checkbox): Add help-echo.
22045         (widget-sexp-validate): Rewritten to clarify error messages.
22046         (character): Use char-valid-p in :match function.
22047         (widget-color-complete): Use facemenu-color-alist.
22048         (widget-color-action): Use facemenu-read-color.
22050         * emacs-lisp/cl-macs.el: Don't bother testing for defalias.  Don't
22051         set up `caar' &c that we now have.
22053 2000-02-09  Ray Blaak  <blaak@gnu.org>
22055         * delphi.el: Make resourcestring a declaration region, like const
22056         and var.
22058 2000-02-09  Dave Love  <fx@gnu.org>
22060         * bindings.el (mode-line-input-method-map): New variable.
22061         (mode-line-mule-info): Use it; fix last change.
22062         (mode-line-mode-menu): Move definition.
22063         (mode-line-mouse-sensitive-p): Deleted.
22064         (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
22065         (make-mode-line-mouse-sensitive): Deleted.  Body moved to top level.
22067         * startup.el (command-line-1): Don't call
22068         make-mode-line-mouse-sensitive.
22070 2000-02-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
22072         * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
22073         before rmail-toggle-header, because the former toggles headers.
22075 2000-02-06  Stefan Monnier  <monnier@cs.yale.edu>
22077         * diff-mode.el (diff-kill-junk): New interactive function.
22078         (diff-reverse-direction): Use delete-and-extract-region.
22079         (diff-post-command-hook): Restrict the area so that the hook also works
22080         outside of any diff hunk.  This is necessary for the minor-mode.
22081         (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
22082         (diff-minor-mode): Setup the hooks for header-hunk rewriting.
22084         * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
22085         (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
22086         so that it can be used more easily in <foo>-mode-hook.  Also make sure
22087         to avoid duplicate entries.
22088         (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
22089         (font-lock-remove-keywords): Just as was done for `add', allow it to
22090         work even if font-lock-mode is nil.  Also make sure we don't modify
22091         any pre-existing list by forcing a copy-sequence.  Finally rename
22092         `major-mode' to `mode'.
22093         (font-lock-fontify-syntactic-anchored-keywords)
22094         (font-lock-fontify-anchored-keywords)
22095         (font-lock-fontify-keywords-region): Use line-end-position.
22096         Don't make `font-lock-multiline' local (it's now done in
22097         font-lock-set-defaults).
22098         (font-lock-set-defaults): Make `font-lock-multiline' local.
22099         Move the `font-lock-fontified' creation to inside the `unless'.
22101 2000-02-06  Andrew Innes  <andrewi@gnu.org>
22103         * term/w32-win.el (x-handle-args): Comment out call to message,
22104         which occurs before window system is initialized.
22106         * makefile.nt: Add support for recompiling lisp code.
22108 2000-02-04  Dave Love  <fx@gnu.org>
22110         * bindings.el (mode-line-mule-info): Fix/extend last change.
22112         * completion.el: Replace completion-dolist with dolist.
22114         * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
22116 2000-02-04  Carsten Dominik  <dominik@strw.leidenuniv.nl>
22118         * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
22119         environment names before they go into the section regexp.
22121         * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
22122         char class in regexp.
22124         * textmodes/reftex-parse.el (reftex-with-special-syntax):
22125         Bind `case-fold-search' to nil.
22127         * progmodes/idlwave.el (idlwave-template):
22128         Respect `idlwave-abbrev-change-case'.
22129         (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
22130         (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
22131         (idlwave-while): Respect `idlwave-reserved-word-upcase'.
22132         (idlwave-rw-case): New function.
22133         (idlwave-statement-match): Fixed problem with assignment regexp.
22134         (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
22135         (idlwave-surround): New argument LENGTH to support padding of
22136         operators longer than 1 char.
22138         * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
22139         idlwave-shell-expression-overlay.  Implemented printing of
22140         expressions on higher levels of the calling stack.
22141         (idlwave-shell-display-level-in-calling-stack): Restore stack level.
22142         (idlwave-retrieve-expression-from-level): New function.
22143         (idlwave-shell-last-calling-stack): Variable removed.
22144         (idlwave-shell-reset): Argument action reversed (`visible' to
22145         `hidden').  Also remove stop-line overlay.
22146         (idlwave-shell-calling-stack-routine): New variable.
22147         (idlwave-shell-parse-stack-and-display): Messages now display
22148         negative level numbers.
22149         (idlwave-shell-mode): Set `modeline-format'.
22150         (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
22151         (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
22152         (idlwave-shell-print-expression-function): New option.
22154         * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
22155         (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
22156         `tool-bar' instead of `toolbar'.
22158 2000-02-02  Dave Love  <fx@gnu.org>
22160         * emacs-lisp/cl.el: Use bytecomp-load-hook, not
22161         emacs-lisp-mode-hook.  Don't check for defalias being defined.
22163         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
22164         (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
22165         Use the new builtins directly.
22167         * whitespace.el (whitespace): Add :version to defgroup.
22169         * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
22170         Doc fix.
22172         * thingatpt.el (sexp-at-point, symbol-at-point)
22173         (number-at-point, list-at-point): Add autoload cookie.
22175         * recentf.el (recentf): Add :version to defgroup.
22177         * quickurl.el (quickurl): Add :version to defgroup.
22179         * elide-head.el (elide-head): Use point-marker more.
22181         * bs.el (bs): Add :version to defgroup.
22183         * autorevert.el (global-auto-revert-mode): Add autoload cookie.
22185         * progmodes/delphi.el (delphi): Add :version to defgroup.
22187 2000-02-02  Gerd Moellmann  <gerd@gnu.org>
22189         * ange-ftp.el (ange-ftp-write-region): Handle case that
22190         succeeding process operation sets a different coding system.
22192         * calculator.el: New file.
22194 2000-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
22196         * frame.el (frames-on-display-list, framep-on-display): New functions.
22197         (display-mouse-p, display-popup-menus-p, display-graphic-p)
22198         (display-selections-p, display-screens, display-pixel-width)
22199         (display-pixel-height, display-mm-width, display-mm-height)
22200         (display-backing-store, display-save-under, display-planes)
22201         (display-color-cells, display-visual-class): New functions.
22203         * term/tty-colors.el (tty-color-gray-shades): New function.
22205         * faces.el (display-color-p): Use framep-on-display.
22206         (display-grayscale-p): New function.
22208 2000-01-31  Dave Love  <fx@gnu.org>
22210         * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
22211         (create-fontset-from-x-resource): Don't concat integers.
22213 2000-01-31  Inge Frick  <inge@nada.kth.se>
22215         * view.el: Some changes in documentation.  Removed some trailing
22216         whitespace. Changed some parameter names to agree with documentation.
22217         (view-mode-exit): Keep entry in `view-return-to-alist' only when a
22218         window is not deleted.  Modifies change 1998-04-26.
22220 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
22222         * windmove.el: New file.
22224         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
22225         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
22226         progmodes/ebnf-yac.el: Update copyright and license info.
22228         * jit-lock.el (jit-lock-function): Widen before calculating
22229         end position.
22230         (jit-lock-stealth-chunk-start): Rewritten.
22232         * info.el (Info-title-face-alist): Removed.
22233         (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
22234         (Info-fontify-node): Use these faces.
22236 2000-01-30  Gerd Moellmann  <gerd@gnu.org>
22238         * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
22239         (cl-macro-list1): Recognize `&allow-other-keys' instead of
22240         `&allow-other-keywords'.
22242         * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
22243         the list of directories scanned heuristically.
22245         * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
22247 2000-01-30  Jason Rumney  <jasonr@gnu.org>
22249         * w32-fns.el: Define w32-tty-standard-colors.
22251         * startup.el (command-line): Use w32-tty-standard-colors when in
22252         w32 console mode.
22254 2000-01-30  Dave Love  <fx@gnu.org>
22256         * jka-compr.el (jka-compr-load): Fix up load-history.
22258         * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
22260         * emacs-lisp/cl-macs.el: Revert previous change.
22262 2000-01-29  Dave Love  <fx@gnu.org>
22264         * facemenu.el: Purecopy various strings.
22266         * timezone.el (timezone-fix-time): Window against 69 for two-digit
22267         years.  Deal with three-digit years.
22269         * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
22270         Use defconst, purecopy.
22271         (help-back-label): Purecopy it.
22273 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
22275         * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
22276         variable. If non-nil, order the buffer list according to the
22277         currently selected frame.
22278         (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
22279         non-nil, pass the selected frame to function buffer-list.
22281 2000-01-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
22283         * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
22285 2000-01-28  Dave Love  <fx@gnu.org>
22287         * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
22289         * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
22290         Don't use lisp-indent-hook property.
22291         (cl-abs): Remove.
22293         * subr.el: Move out indent and edebug specs for when and unless.
22295         * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
22296         when, unless.
22298         * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
22299         unless, when.
22301 2000-01-28  Gerd Moellmann  <gerd@gnu.org>
22303         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
22304         `collecting' as synonym for `collect'.
22306         * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
22307         for the case it contains spaces.
22309         * simple.el (what-cursor-position): Change formatting of messages.
22311         * frame.el (delete-other-frames): New function.
22312         (toplevel): Bind it to C-x 5 1.
22314         * sort.el (sort-numeric-base): New option.
22315         (sort-numeric-fields): If number starts with `0' or `0[xX[',
22316         interpret it as octal or hexadecimal.  Use sort-numeric-base
22317         as default base.
22319         * progmodes/glasses.el: New file.
22321 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
22323         * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
22324         userids differently.
22326         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
22327         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
22328         progmodes/ebnf-yac.el: New files.
22330 2000-01-26  Dave Love  <fx@gnu.org>
22332         * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
22333         on a function with an empty body.  [From Eric Ludlam.]
22335 2000-01-25  Andre Spiegel  <spiegel@gnu.org>
22337         * vc.el (vc-version-diff): Make sure file name is expanded.
22339 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
22341         * scroll-bar.el (scroll-bar-timer): Variable removed.
22342         (scroll-bar-toolkit-scroll): Don't use a timer.
22344 2000-01-25  Kenichi Handa  <handa@etl.go.jp>
22346         * language/thai-util.el (thai-composition-function):
22347         Delete superfluous `a'.
22349 2000-01-24  Dave Love  <fx@gnu.org>
22351         * fortran.el (fortran-mode): Use beginning-of-defun-function,
22352         end-of-defun-function.
22354         * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
22356 2000-01-22  Jason Rumney  <jasonr@gnu.org>
22358         * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
22359         conflicts with new face support.
22361 2000-01-22  Richard M. Stallman  <rms@gnu.org>
22363         * replace.el (query-replace): Rename last arg to DELIMITED.
22364         (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
22365         (query-replace-regexp): Likewise.
22367 2000-01-20  Richard M. Stallman  <rms@gnu.org>
22369         * subr.el (with-syntax-table): Use make-symbol, not gensym.
22371         * emacs-lisp/lisp.el (beginning-of-defun-function):
22372         Variable renamed from beginning-of-defun.
22373         Do not call make-variable-buffer-local.
22374         (beginning-of-defun-raw): Use new variable name; doc fix.
22375         (beginning-of-defun): Doc fix.
22376         (end-of-defun-function): Variable renamed from end-of-defun.
22377         Do not call make-variable-buffer-local.
22378         (end-of-defun): Use new variable name; doc fix.
22380         * subr.el (dolist, dotimes): Copied from cl-macs.el
22381         and made to work.
22383         * mail/undigest.el (rmail-digest-end-regexps):
22384         Variable replaces rmail-digest-end-regexp.
22385         Allows multiple regexps for detecting the end line.
22386         (undigestify-rmail-message): Corresponding changes.
22388 2000-01-19  Dave Love  <fx@gnu.org>
22390         * files.el (user-init-file): Don't declare here -- is primitive.
22392         * startup.el (command-line): Check for compiled user-init-file and
22393         set to uncompiled version if necessary.
22395 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
22397         * mail/undigest.el (rmail-digest-end-regexp): New user option.
22398         (undigestify-rmail-message): Use it.
22400         * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
22402 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
22404         * tmm.el (tmm-goto-completions): Adapt to prompt being part
22405         of mini-buffer.
22407 2000-01-14  Gerd Moellmann  <gerd@gnu.org>
22409         * emacs-lisp/copyright.el (copyright-update): Removed the
22410         requirement for a trailing space from `copyright-regexp', to
22411         support copyrights with owner specified on a separate line..
22413         * align.el: New file.
22415         * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
22417         * net/eudc.el (toplevel): Define EUDC menu for Emacs.
22419 2000-01-13  Dave Love  <fx@gnu.org>
22421         * ph.el: Removed.  (Obsoleted by EUDC.)
22423 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
22425         * net/eudc.el (toplevel): Remove autoloaded code installing
22426         menu with easymenu, because that causes build problems.
22428         * frame.el (frame-notice-user-settings): New variable.
22429         (frame-notice-user-settings): Don't modify frame parameters
22430         if called a second time.
22432 2000-01-13  Richard M. Stallman  <rms@gnu.org>
22434         * frame.el (frame-notice-user-settings):
22435         Notice default-frame-parameters even for non-window frames.
22437 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
22439         * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
22440         for Emacs.
22441         (eudc-bob-can-display-inline-images): Extend for Emacs.
22442         (eudc-bob-toggle-inline-display): Ditto.
22443         (eudc-bob-display-jpeg): Ditto.
22445 2000-01-12  Gerd Moellmann  <gerd@gnu.org>
22447         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
22448         net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
22449         net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
22451         * add-log.el (add-change-log-entry): Fix error trying an
22452         `(insert nil)'.
22454         * subdirs.el: Add `net' directory.
22456         * net: New directory.
22458         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
22459         eval-last-sexp.  Don't bind debug-on-error here.
22460         (eval-last-sexp): New function.  Bind debug-on-error if
22461         eval-expression-debug-on-error is non-nil.
22462         (eval-defun-2, eval-defun): Likewise.
22464         * simple.el (eval-expression): Don't bind debug-on-error if
22465         eval-expression-debug-on-error is nil.  Detect changed
22466         debug-on-error, and propagate new value to global binding, if
22467         eval-expression-debug-on-error is non-nil,
22468         (eval-expression-debug-on-error): Change doc string.
22470 2000-01-11  Richard M. Stallman  <rms@gnu.org>
22472         * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
22474         * emacs-lisp/lisp-mode.el (with-syntax-table):
22475         Set up lisp-indent-function property.
22477         * subr.el (with-syntax-table): Moved from simple.el.
22479         * simple.el (with-syntax-table): Moved to subr.el.
22481 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
22483         * tmm.el (tmm-shortcut): Delete region after prompt instead
22484         of erasing buffer.
22486         * textmodes/fill.el (fill-common-string-prefix): New function.
22487         (fill-context-prefix): Use the longest common prefix of first
22488         and second line fill prefix, if there is one.
22490 2000-01-11  Richard M. Stallman  <rms@gnu.org>
22492         * array.el (array-mode): Don't use make-variable-buffer-local.
22493         Use make-local-variable for `truncate-lines'.
22495 2000-01-11  Jari Aalto  <jari.aalto@poboxes.com>
22497         * add-log.el (add-log-current-defun): Handle user-defined
22498         add-log-current-function returning nil,
22500         * add-log.el (add-change-log-entry): Insert version number
22501         if having found a current function
22503         * add-log.el (add-log-current-defun):
22504         Call `add-log-current-defun-function'.  Try matches at level 0 and
22505         level 1.  Strip whitespace from defun found.
22507 2000-01-10  John Wiegley  <johnw@gnu.org>
22509         * allout.el (isearch-done/outline-provisions): Added `edit'
22510         argument to correspond with the current definition of `isearch-done'.
22512 2000-01-10  Dave Love  <fx@gnu.org>
22514         * elide-head.el (elide-head): Use point-marker, not point.
22516 2000-01-10  Gerd Moellmann  <gerd@gnu.org>
22518         * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
22519         before and after the year 2000.
22521         * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
22522         Add ispell- prefix.
22524 2000-01-10  Ken Stevens  <k.stevens@ieee.org>
22526         * ispell.el:  Only define dictionaries in menus when they exist.
22527         (version18p): New variable.
22528         (version20p): New variable.
22529         (xemacsp): New variable.
22530         (ispell-choices-win-default-height): Fix for XEmacs visibility.
22531         (ispell-dictionary-alist1): Added Brasileiro dictionary.
22532         (ispell-dictionary-alist6): Russian command lines no longer accept
22533         run-together words.
22534         (ispell-local-dictionary-alist): Add koi8-r to customize definition.
22535         (ispell-dictionary-alist): Add koi8-r to customize definition.
22536         (check-ispell-version): Added documentation string.  Return library
22537         path when called non-interactively.
22538         (ispell-menu-map-needed): Uses new variables.
22539         (ispell-library-path): New variable.
22540         (ispell-decode-string): XEmacs fix for bogus variable bindings.
22541         (ispell-word): Improved documentation string.  Test for valid
22542         character mappings.  Correctly check typed in word changes that can
22543         result in single words split into multiple words.
22544         Return replacement word.
22545         (ispell-command-loop): Fixes XEmacs display bugs.  Show word to
22546         replace in recursive query replace mode.  Help message for
22547         recursive edit mode.
22548         (ispell-show-choices): Protect against bad framepop bindings.
22549         (ispell-help): Fix to work with XEmacs.
22550         (ispell-highlight-spelling-error): Use new variables.
22551         (ispell-overlay-window): Fix to work with XEmacs.
22552         (ispell-parse-output): Passed and returns location information
22553         tracking spelling corrections.  Doesn't recheck same word on
22554         current line.
22555         (ispell-init-process): Protect against bogus XEmacs variable binding.
22556         Fix call to single argument in sleep-for.  Use new variables.
22557         (ispell-region): Passed and returns location information tracking
22558         spelling corrections.  Doesn't check same word on current line.
22559         Improved documentation string.  Doesn't resend a line already
22560         checked to the ispell process - fixes bug in LaTeX parsing.
22561         (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
22562         (ispell-skip-region): No longer skips <TT> in SGML.
22563         (ispell-process-line): Tracks location information with spelling
22564         corrections.  Added documentation string.  Accounts for words
22565         already accepted on this line.  Don't allow query-replace on line
22566         starting with math characters.  Doesn't resend a line already sent
22567         to ispell process.  Fixes alignment error bug.
22569 2000-01-10  Richard M. Stallman  <rms@gnu.org>
22571         * dired-x.el (dired-guess-shell-alist-default):
22572         Suggest xloadimage, which is free, not xv, which isn't.
22574         * ange-ftp.el (ange-ftp-file-name-nondirectory):
22575         Don't ever include the host name or user name in the value.
22577 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
22579         * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
22580         of a real newline.
22582 2000-01-09  Stephen Eglen  <stephen@gnu.org>
22584         * dired-x.el (dired-guess-shell-alist-default): Suggest xv
22585         for .png files.
22587 2000-01-09  Per Abrahamsen  <abraham@dina.kvl.dk>
22589         * cus-edit.el (custom-hook-convert-widget): Fix comment.
22591 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
22593         * progmodes/cperl-mode.el: Replace ^F with ^L.
22595         * sendmail.el (toplevel): Provide `sendmail' when compiling before
22596         `require'ing rmail and mailalias to prevent infinite recursion.
22598 2000-01-08  Dave Love  <fx@gnu.org>
22600         * emacs-lisp/backquote.el: Remove inappropriate customization
22601         (allowing custom.el to use backquote).
22603 2000-01-07  Dave Love  <fx@gnu.org>
22605         * add-log.el (add-log-debugging): Deleted.
22606         (add-change-log-entry): Treat a backup FILE-NAME as its parent
22607         file.  Remove debugging code.
22608         (change-log-get-method-definition, change-log-name): Add doc.
22609         (change-log-sortable-date-at): New function.
22610         (change-log-merge): New command.
22612         * time.el (display-time-string-forms): Make the Mail string active.
22613         (display-time-update): Provide help-echo for load average.
22615         * bindings.el (make-mode-line-mouse2-map): New function.
22616         (mode-line-modified): Use it and simplify.
22617         (mode-line-mule-info): Provide help-echo info.
22618         (minor-mode-alist): Activate the strings.
22619         (make-mode-line-mouse-sensitive): Simplify for
22620         mode-line-buffer-identification.
22622 2000-01-07  Gerd Moellmann  <gerd@gnu.org>
22624         * play/pong.el: New file.
22626 2000-01-06  Dave Love  <fx@gnu.org>
22628         * array.el: Assorted cleanups for compiler warnings, doc strings,
22629         `array-' prefix for symbols.
22631 2000-01-05  Dave Love  <fx@gnu.org>
22633         * textmodes/outline.el (outline-mode-menu-bar-map):
22634         Add outline-headers-as-kill.
22635         (outline-mode): Define imenu-generic-expression.
22636         (outline-headers-as-kill): New command.
22638         * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
22639         from paragraph-start.
22640         (paragraph-indent-minor-mode): New command.
22642         * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
22643         M-C-e, M-C-h, C-j, C-xnd, TAB.
22644         (fortran-mode): Set beginning-of-defun, end-of-defun.
22645         (fortran-column-ruler): Simplify.
22646         (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
22647         (fortran-with-subprogram-narrowing): Likewise.
22648         (fortran-indent-subprogram): Call mark-defun.
22649         (fortran-check-for-matching-do): Change narrowing.
22651         * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
22652         (cl-lucid-hash-tag): Delete.
22653         (cl-hash-table-p): Correct test for native table.
22654         (cl-hash-table-count): Use hash-table-count.
22656         * browse-url.el (browse-url): Fix case of
22657         browse-url-browser-function being an alist.
22659 2000-01-05  Carsten Dominik  <cd@gnu.org>
22661         * textmodes/reftex-vars.el (reftex-parse-file-extension)
22662         (reftex-index-phrase-file-extension): New options.
22664         * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
22665         Use new option `reftex-index-phrase-file-extension'.
22667         * textmodes/reftex.el (reftex-access-parse-file): Use new option
22668         `reftex-parse-file-extension'.
22670 2000-01-05  Dave Love  <fx@gnu.org>
22672         * emacs-lisp/lisp.el (beginning-of-defun): New variable.
22673         (beginning-of-defun-raw): Use it.
22674         (end-of-defun): New variable.
22675         (end-of-defun): Use it.
22676         (check-parens): New command.
22678 2000-01-05  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
22680         * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
22681         (hs-show-block): Don't use `mapcar' when not accumulating.
22683         Fix buglet in local variables initialization.
22685 2000-01-05  Andreas Schwab  <schwab@suse.de>
22687         * hscroll.el (hscroll): Doc fix.
22689 2000-01-05  Carsten Dominik  <cd@gnu.org>
22691         * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
22692         Require idlw-toolbar.
22694         * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
22695         file idlw-rinfo.el.
22696         (idlwave-customize): Load must read file idlw-shell.el.
22697         (idlwave-create-customize-menu): Load must read file idlw-shell.el.
22699 2000-01-05  Carsten Dominik  <dominik@astro.uva.nl>
22701         * progmodes/idlw-shell.el: Also provide idlwave-shell
22702         * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
22703         * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
22705         * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
22706         both reftex-dcr and reftex-vcr.
22708         * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
22710 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
22712         * ps-print.el: PostScript code now is in separate files, doc fix.
22713         (ps-print-version): New version number (5.0.3).
22714         (ps-header-lines, ps-left-header, ps-right-header): No more buffer
22715         local.
22716         (ps-spool-config): Initialization fix.
22717         (ps-print-prologue-1, ps-print-prologue-2)
22718         (ps-print-duplex-feature): PostScript code moved to separated file.
22719         (ps-background-image): Little code reformating.
22720         (ps-begin-file, ps-begin-job): Fix code.
22721         (ps-postscript-code-directory, ps-mark-code-directory): New vars.
22722         (ps-prologue-file): New fun.
22724 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
22726         * ps-vars.el: Eliminated.
22728         * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
22729         `;;;###autoload'.
22731         * ps-print.el: ps-vars eliminated, doc fix.
22732         (ps-print-version): New version number (5.0.2).
22733         (ps-spool-config): Initialization fix.
22734         (ps-print-customize): New fun.
22736 2000-01-04  Gerd Moellmann  <gerd@gnu.org>
22738         * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
22740 2000-01-04  Dave Love  <fx@gnu.org>
22742         * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
22743         menu items.
22745 2000-01-03  Dave Love  <fx@gnu.org>
22747         * elide-head.el (elide-head) [defgroup]: Add :version.
22749         * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
22750         (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
22751         Use `cl-hash-table-p', not `hash-table-p'.
22752         (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
22754 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
22756         * faces.el (face-read-integer, read-face-attribute)
22757         (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
22759 2000-01-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
22761         * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
22762         at comment end, and re-insert them after filling.
22764 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
22766         * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
22767         * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
22768         progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
22770 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
22772         * term/x-win.el (xw-defined-colors): Call color-supported-p,
22773         the new name of face-color-supported-p.
22775         * term/w32-win.el (xw-defined-colors): Likewise.
22777 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
22779         * simple.el (completion-setup-function): Count completion-size
22780         from minibuffer-prompt-end, not from point-min.
22782 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
22784         * faces.el (read-face-attribute, defined-colors, color-defined-p):
22785         Pass the frame to tty-color-* functions.
22786         (display-color-p, frame-set-background-mode): Pass the frame to
22787         tty-display-color-p.
22789         * term/tty-colors.el (tty-defined-color-alist): Renamed from
22790         tty-color-alist.
22791         (tty-color-alist, tty-modify-color-alist): New functions.
22792         (tty-color-define,  tty-color-clear, tty-color-approximate)
22793         (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
22794         optional parameter FRAME.
22796 2000-01-01  Gerd Moellmann  <gerd@gnu.org>
22798         * image.el (create-image, defimage): Don't assume image data is
22799         a string.
22801         * image.el (defimage): Handle specifications containing :data
22802         instead of :file.
22803         (image-type-from-data): New function.
22804         (image-type-from-file-header): Use it.
22805         (create-image): Add parameter DATA-P.
22807 See ChangeLog.8 for earlier changes.
22809 ;; Local Variables:
22810 ;; coding: iso-2022-7bit
22811 ;; End:
22813     Copyright (C) 2000, 2001 Free Software Foundation, Inc.
22814   Copying and distribution of this file, with or without modification,
22815   are permitted provided the copyright notice and this notice are preserved.