(focus-follows-mouse): Doc fix.
[emacs.git] / lisp / ChangeLog
blobc1976d346a0344d41d4b223fbe294dc45bdea7eb
1 2002-02-25  Richard M. Stallman  <rms@gnu.org>
3         * frame.el (focus-follows-mouse): Doc fix.
5 2002-02-26  Miles Bader  <miles@gnu.org>
7         * mwheel.el (mouse-wheel-mode): Pass vectors instead of symbols
8         to `define-key', since it no longer accepts the latter.
10 2002-02-25  Jason Rumney  <jasonr@gnu.org>
12         * term/w32-win.el (mouse-wheel-scroll-line): Use car of
13         mouse-wheel-scroll-amount.
15         * w32-vars.el (mouse-wheel-scroll-amount): Use same definition as
16         mwheel.el.
18         * language/japanese.el (iso-2022-jp-2): Add init-bol flag.
20 2002-02-25  Andre Spiegel  <spiegel@gnu.org>
22         * vc.el (vc-diff-switches-list): Fix prev change, making the macro
23         consistent with the others that take a backend name as a symbol.
25         * vc-{cvs,rcs,sccs}.el: Update callers to the above.
27 2002-02-25  Kim F. Storm  <no-spam@cua.dk>
29         * comint.el (comint-replace-by-expanded-filename): Do nothing if
30         comint-match-partial-filename returns nil.
32         * shell.el (shell-pcomplete-setup-done): New variable.
33         (shell-pcomplete): Use it instead of shell-pcomplete-setup-p.
34         (shell-pcomplete-reverse): Ditto.
36 2002-02-25  Per Abrahamsen  <abraham@dina.kvl.dk>
38         * ps-print.el (ps-print-printer): Added `lpr' customize group
39         member. 
41 2002-02-25  Juanma Barranquero  <lektu@terra.es>
43         * subr.el (save-match-data): Doc fix.
45         * ielm.el (ielm-prompt): Allow customization; make it read-only.
47 2002-02-25  Kim F. Storm  <storm@cua.dk>
49         * shell.el (shell-mode-map): Add "Complete" header so completion
50         menu is shown on the menu bar in shell mode.
52 2002-02-25  Stefan Monnier  <monnier@cs.yale.edu>
54         * ielm.el (ielm-match-data): New var.
55         (inferior-emacs-lisp-mode): Make it buffer-local.
56         (ielm-eval-input): Use it to preserve match-data between inputs.
58 2002-02-24  Juanma Barranquero  <lektu@terra.es>
60         * ielm.el (inferior-emacs-lisp-mode): Use hexl for the dummy process.
62 2002-02-24  Per Abrahamsen  <abraham@dina.kvl.dk>
64         * cus-edit.el (custom-unlispify-remove-prefixes): Add to
65         `custom-buffer' customize group.
67 2002-02-23  Kim F. Storm  <storm@cua.dk>
69         * help.el (where-is): Use remap-command.
71         * help-fns.el (describe-function-1): Use remap-command.
73         * subr.el (global-set-key, local-set-key): Undo 2002-02-06
74         change (no longer accept a symbol for the KEY argument).
76 2002-02-23  Colin Walters  <walters@debian.org>
78         * calc/calcalg3.el (calc-invent-variables): Convert integer to string.
79         * calc/calcalg2.el (math-solve-get-sign): Ditto.
81         * ibuffer.el (ibuffer-compile-format): Don't uselessly bind `pt'
82         in generated function.
84         * ibuf-ext.el (ibuffer-old-time): Change to hours.
85         (ibuffer-mark-old-buffers): Handle it.
87         * shell.el (shell-pcomplete, shell-pcomplete-reverse): New functions.
88         (toplevel): Bind them.
89         (shell-mode): Don't set `comint-dynamic-complete-functions'; it is
90         not necessary now that we use pcomplete.
92         * comint.el: Document how use new pcomplete completion facility.
94 2002-02-23  Richard M. Stallman  <rms@gnu.org>
96         * mail/rmailsum.el (rmail-summary-output): Properly advance
97         to next message, by calling rmail-summary-goto-msg.
99         * net/browse-url.el (browse-url-galeon): Specify --existing
100         for an existing window.  Use --noraise rather than --no-raise.
101         Don't use -x.
103 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
105         * progmodes/etags.el (find-tag-noselect, find-tag)
106         (find-tag-other-window, find-tag-other-frame, find-tag-regexp):
107         Fix a typo in doc strings.
109 2002-02-20  Deepak Goel  <deego@glue.umd.edu>
111         * play/snake.el (snake-velocity-queue, snake-update-velocity)
112         (snake-final-x-velocity, snake-final-y-velocity):
113         New variable and functions.  Store user's keypresses
114         into a queue and pop from the queue each subsequent turn.
115         (snake-update-game, snake-move-left)
116         (snake-move-right, snake-move-up, snake-move-down, snake-active-p)
117         (snake-start-game): Use that queue.
118         (snake-use-glyphs-flag): Renamed from snake-use-glyphs.
119         (snake-use-color-flag): Likewise.
120         (snake-mode): Rename uses of those variables.
122 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
124         Support for ICCCM  Extended Segments in X selections:
126         * international/mule-conf.el (ctext-no-compositions): New coding
127         system.
128         (compount-text-no-extensions): Renamed from compound-text.
129         (x-ctext-no-extensions, ctext-no-extensions): Aliases for
130         compound-text-no-extensions.
131         (compound-text): Redefined using post-read and pre-write conversions.
133         * international/mule.el (non-standard-icccm-encodings-alist)
134         (non-standard-designations-alist): New variables.
135         (ctext-post-read-conversion, ctext-pre-write-conversion):
136         New functions.
138 2002-02-21  Andre Spiegel  <spiegel@gnu.org>
140         Patch by Jonathan Kamens <jik@kamens.brookline.ma.us>.
142         * vc.el (vc-default-init-version): Update documentation to
143         indicate that the backend can override the default init version.
144         (vc-register): Use the backend init-version function, if it
145         exists, to determine the initial version of a file.
146         (vc-diff-switches-list): Don't symbol-quote backend, since it's
147         already a symbol.  Don't fail if vc-BACKEND-diff-switches isn't bound.
149         * vc-hooks.el (vc-mode-line): Set vc-mode to nil if the file is
150         not version-controlled.  This is necessary, e.g., if the file has
151         just been reverted, and thus was previously under version control
152         but isn't any longer.
153         (vc-find-file-hook): Likewise.
155 2002-02-21  Andre Spiegel  <spiegel@gnu.org>
157         Patch by Martin.Lorentzson@telia.com.
159         * vc-cvs.el (vc-cvs-sticky-date-format-string): New variable.
160         (vc-cvs-sticky-tag-display): New variable.
161         (vc-cvs-mode-line-string): Add sticky-tag to the mode-line.
162         (vc-cvs-checkin): If the input revision is a valid symbolic tag
163         name, we create it as a branch, commit and switch to it.
164         (vc-cvs-retrieve-snapshot): Set file-property sticky-tag.
165         (vc-cvs-valid-symbolic-tag-name-p): New function.
166         (vc-cvs-parse-sticky-tag): New function.
167         (vc-cvs-parse-entry): Added parsing of sticky tags.
169 2002-02-21  Per Abrahamsen  <abraham@dina.kvl.dk>
171         * toolbar/tool-bar.el (tool-bar-mode): Revert the :init-value to
172         nil, and then explicitly set the standard-value to t.
174 2002-02-20  Sam Steingold  <sds@gnu.org>
176         * textmodes/flyspell.el (flyspell-mode): Autoload the variable
177         since it is used in the menu bar.
179 2002-02-20  Richard M. Stallman  <rms@gnu.org>
181         * simple.el (shell-command-on-region): Display the exit status
182         when a command fails.
184         * subr.el (add-hook): Doc fix.
186         * frame.el (other-frame): Doc fix.
188         * simple.el (yank): Clear `field' property.
190 2002-02-20  Tom Tromey  <tromey@cachet>
192         * progmodes/tcl.el (tcl-do-fill-paragraph): Find and fill on more
193         natural paragraph boundaries.  Don't fail at beginning of buffer.
195 2002-02-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
197         * tar-mode.el (tar-next-line, tar-previous-line): Add doc string,
198         call the argument "arg" to match plain next-line and
199         previous-line.  From Kevin Ryde <user42@zip.com.au>.
201 2002-02-19  Sam Steingold  <sds@gnu.org>
203         * mwheel.el (mouse-wheel-scroll-amount): Can specify different
204         scroll amounts for different modifiers now.
205         (mwheel-scroll): Handle the new `mouse-wheel-scroll-amount'
206         format properly.
207         (mouse-wheel-mode): Ditto.
209 2002-02-19  Eli Zaretskii  <eliz@is.elta.co.il>
211         * textmodes/bibtex.el (bibtex-parse-keys): Put save-match-data
212         around function body.
214         * net/browse-url.el (browse-url-maybe-new-window): Reverse the
215         sense of the comparison, to match the doc strings of functions
216         that use this macro.
218 2002-02-19  Per Abrahamsen  <abraham@dina.kvl.dk>
220         * facemenu.el (describe-text-mode-map): Removed bootstrap kludge.
222         * toolbar/tool-bar.el (tool-bar-mode): Made the standard value t.
223         * menu-bar.el (menu-bar-mode): Ditto.
225 2002-02-18  Andreas Schwab  <schwab@suse.de>
227         * replace.el (query-replace-regexp-eval): Doc fix.
229 2002-02-18  Colin Walters  <walters@verbum.org>
231         * calc/calcalg2.el (math-solve-get-int): Convert return value from
232         `math-get-from-counter' to a string before calling `concat' on it.
234         * calc/calc-maint.el (calc-split-manual): Look for calc.texi.
235         (calc-public-autoloads): Obsolete; remove.
236         (calc-private-autoloads): Ditto.
237         (calc-add-autoloads): Ditto.
239         * calc/calc-macs.el (calc-with-default-simplification): Use &rest
240         for body.
242 2002-02-17  Jason Rumney  <jasonr@gnu.org>
244         * w32-win.el (x-option-alist, x-long-option-alist)
245         (x-switch-definitions): Remove, use command-line-x-option-alist
246         instead to be consistent with X.
247         (x-handle-initial-switch): New function.
249 2002-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
251         * faces.el (mode-line-inactive, header-line): Add the :inherit
252         attribute for the tty case.
254 2002-02-17  stanislav shalunov  <shalunov@internet2.edu>
256         * mail/uce.el (uce-reply-to-uce): Fix incorrect behavior when
257         invoked from Rmail with full headers displayed.
259 2002-02-17  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
261         * emacs-lisp/lisp.el (mark-defun): Don't leave multiple marks
262         when repeated.
263         * textmodes/paragraphs.el (mark-paragraph): Ditto.
265 2002-02-17  Per Abrahamsen  <abraham@dina.kvl.dk>
267         * menu-bar.el (menu-bar-showhide-menu): Added speedbar.
268         (menu-bar-tools-menu): Removed speedbar.
270         * textmodes/ispell.el (ispell-menu-map): Added `customize-ispell'
271         and `flyspell-mode' entries.
273         * textmodes/flyspell.el (flyspell): Add to ispell group.
275 2002-02-17  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
277         * emacs-lisp/lisp.el (mark-sexp): Don't leave multiple marks when
278         repeated.
279         (mark-defun): Mark more if repeated.
281 2002-02-17  Colin Walters  <walters@verbum.org>
283         * ibuf-ext.el (ibuffer-toggle-sorting-mode): Make it work.
285         * ibuffer.el (ibuffer-truncate-lines): New option.
286           (ibuffer-mode):  Use it.
288 2002-02-17  Kim F. Storm  <storm@cua.dk>
290         * cus-start.el: Add mouse-highlight.
292 2002-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
294         * Makefile.in (DONTCOMPILE): Remove cus-start.el.
296         * cus-start.el: Add automatic-hscroll-margin and
297         automatic-hscroll-step.
299 2002-02-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
301         * cus-start.el (x-autoselect-window): Allow customization.
303         * eshell/em-alias.el (eshell-alias-initialize): Do not use
304         make-local-hook.
306         * eshell/em-cmpl.el (eshell-cmpl-initialize): Likewise.
308         * eshell/em-dirs.el (eshell-dirs-initialize): Likewise.
310         * eshell/em-glob.el (eshell-glob-initialize): Likewise.
312         * eshell/em-hist.el (eshell-hist-initialize): Likewise.
314         * eshell/em-pred.el (eshell-pred-initialize): Likewise.
316         * eshell/em-prompt.el (eshell-prompt-initialize): Likewise.
318         * eshell/em-rebind.el (eshell-rebind-initialize): Likewise.
320         * eshell/em-smart.el (eshell-smart-initialize): Likewise.
322         * eshell/em-unix.el (eshell-unix-initialize): Likewise.
324         * eshell/esh-cmd.el (eshell-cmd-initialize): Likewise.
326         * eshell/esh-ext.el (eshell-ext-initialize): Likewise.
328         * eshell/esh-io.el (eshell-io-initialize): Likewise.
330         * eshell/esh-mode.el (eshell-mode): Likewise.
332         * eshell/esh-test.el (eshell-show-usage-metrics): Likewise.
334         * eshell/esh-var.el (eshell-var-initialize): Likewise.
336         * progmodes/idlw-shell.el (idlwave-shell-mode): Likewise.
338         * progmodes/idlwave.el (idlwave-mode): Likewise.
340         * textmodes/reftex-sel.el (reftex-select-label-mode)
341         (reftex-select-bib-mode): Likewise.
343 2002-02-16  John Wiegley  <johnw@gnu.org>
345         * eshell/em-hist.el (eshell-hist-initialize): When in the
346         minibuffer, use the global value of `eshell-history-ring', and
347         never save it to disk, or ask to save it to disk.  This allows
348         users of session.el to control whether its global state should be
349         persisted or not.
350         (eshell-add-command-to-history): Don't write Eshell's history out
351         to disk, let the governing mode control that upon exit.
353 2002-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
355         * eshell/eshell.el (eshell-command): Before reading from the
356         minibuffer, add eshell-add-command-to-history to
357         minibuffer-exit-hook, and remove it after read-from-minibuffer
358         returns.
360         * eshell/em-hist.el (eshell-add-input-to-history): New function,
361         with most of the code from eshell-add-to-history.
362         (eshell-add-command-to-history): New function, to record in
363         eshell-history the commands run via eshell-command.
364         (eshell-add-to-history): Call eshell-add-command-to-history to do
365         most of the work.
367 2002-02-16  John Wiegley  <johnw@gnu.org>
369         * eshell/esh-ext.el (eshell-external-command): Added a fix for
370         XEmacs' new dired.el, which adds a global entry in the
371         `file-name-handler-alist'.
373 2002-02-16  John Wiegley  <johnw@gnu.org>
375         * align.el (align-region): Added a missing name argument.
377 2002-02-16  John Wiegley  <johnw@gnu.org>
379         * eshell/esh-ext.el (eshell-script-interpreter): Allow whitespace
380         after the #! of a shell interpretor specification.
382 2002-02-15  Richard M. Stallman  <rms@gnu.org>
384         * help.el (describe-key-briefly): Make output in INSERT case
385         look just like what is displayed in the normal case.
387 2002-02-15  Andreas Schwab  <schwab@suse.de>
389         * textmodes/tex-mode.el (tex-font-lock-keywords-2): Require
390         non-letter after specials.
392 2002-02-15  Eli Zaretskii  <eliz@is.elta.co.il>
394         * menu-bar.el (menu-bar-tools-menu): Add an item for Calculator.
396 2002-02-15  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
398         * simple.el (mark-word): Mark more if repeated.
399         * textmodes/paragraphs.el (mark-paragraph): Ditto.
400         (mark-end-of-sentence): Ditto.
402 2002-02-15  Per Abrahamsen  <abraham@dina.kvl.dk>
404         * wid-edit.el (widgetp): Made it more robust.
406 2002-02-14  Per Abrahamsen  <abraham@dina.kvl.dk>
408         * facemenu.el (describe-text-done): New function.
409         (describe-text-mode-map): New variable.
410         (describe-text-mode-hook): New option.
411         (describe-text-mode): New function.
412         (describe-text-widget): New function.
413         (describe-text-sexp): New function.
414         (describe-text-properties): New function.
415         (describe-text-category): New command.
416         (describe-text-at): New command.
417         (facemenu-menu): Replace `list-text-properties-at' with
418         `describe-text-at' in the menu.
420         * wid-edit.el (widgetp): New function.
421         * wid-edit.el (widget-keymap, widget-insert, widget-setup):
422         Autoloaded.
424         * emacs-lisp/pp.el (pp-to-string): Autoloaded.
426         * wid-browse.el: Removed version and x-url keywords.
428 2002-02-13  Kim F. Storm  <storm@cua.dk>
430         * cus-start.el (mode-line-in-non-selected-windows):
431         Allow customization.
433 2002-02-13  Richard M. Stallman  <rms@gnu.org>
435         * textmodes/bibtex.el (bibtex-parse-buffers-stealthily):
436         Tell bibtex-parse-keys to output no progress messages.
438         * international/mule-diag.el (list-input-methods):
439         Use help-input-method, not describe-input-method, for button type.
441         * register.el (describe-register-1): Access register contents here.
443         * textmodes/text-mode.el (text-mode-hook-identify):
444         Restore previous definition.  Add to text-mode-hook again.
446         * mail/mailabbrev.el (define-mail-abbrev): Define as system abbrev.
447         (mail-abbrev-in-expansion-header-p): Copy the code of mail-header-end
448         to avoid needing sendmail.el at run time.
450         * bindings.el (mode-line-minor-mode-keymap): Definition moved up.
451         Initialization moved up too.
452         (mode-line-modes): Use :propertize.
453         (mode-line-mode-menu-keymap): Var deleted.
454         (mode-line-copied-mode-name): Var deleted.
455         (mode-line-mode-name): Function deleted.
456         (mode-line-mode-menu): Each item now shows its mode line lighter.
457         (minor-mode-alist): Don't call propertize here.
459 2002-02-12  Eli Zaretskii  <eliz@is.elta.co.il>
461         * progmodes/pascal.el (pascal-imenu-generic-expression):
462         Add menu-title and fix parentheses.
464 2002-02-12  Per Abrahamsen  <abraham@dina.kvl.dk>
466         * menu-bar.el (menu-bar-options-save): Removed `truncate-lines'.
467         (menu-bar-options-menu): Don't set default value for `truncate-lines'.
469 2002-02-12  Per Abrahamsen  <abraham@dina.kvl.dk>
471         * menu-bar.el (menu-bar-options-save): Only save
472         `current-language-environment' and `default-input-method' when
473         marked as customized.
475         * international/mule-cmds.el
476         (setup-specified-language-environment):
477         Mark `current-language-environment' as customized.
478         (set-input-method): Mark `default-input-method' as customized when
479         called interactively.
480         (toggle-input-method): Ditto.
482 2002-02-11  Colin Walters  <walters@verbum.org>
484         * ibuffer.el (ibuffer-switch-format): Supply required argument for
485         `ibuffer-current-formats'.
487 2002-02-11  Miles Bader  <miles@gnu.org>
489         * faces.el (mode-line-inactive): Add dark-background variant.
491 2002-02-11  Per Abrahamsen  <abraham@dina.kvl.dk>
493         * toolbar/tool-bar.el (tool-bar-mode): Removed standard value.
494         * menu-bar.el (menu-bar-mode): Ditto.
495         * cus-edit.el (customize-mark-to-save): Always save variables
496         without a standard value.
498         * menu-bar.el (menu-bar-make-toggle): Made it aware of customize.
499         (menu-bar-options-save): Ditto.
500         (menu-bar-showhide-menu): Ditto.
501         (menu-bar-options-menu): Ditto.
502         (menu-bar-scroll-bar-right, menu-bar-scroll-bar-left)
503         (menu-bar-scroll-bar-none): Remove.
504         (menu-bar-showhide-scroll-bar-menu): Use customize aware lambda
505         expressions instead.
507         * cus-edit.el (customize-set-value): Return value.
508         (customize-set-variable): Ditto.
509         (customize-save-variable): Ditto.
510         (customize-set-variable): Load dependencies before setting value.
511         (custom-load-symbol): Autoload it.
512         (customize-mark-as-set): New function.
514 2002-02-11  Eli Zaretskii  <eliz@is.elta.co.il>
516         * cus-start.el: Don't warn about "x-*" symbols when building a
517         non-GUI version.
519 2002-02-11  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
521         * strokes.el (strokes-do-stroke, strokes-do-complex-stroke):
522         Doc fix.
523         (strokes-help): Do not use doubled with-output-to-temp-buffer.
524         Fix the help string.
525         (strokes-prompt-user-save-strokes): Fix typo.
526         (strokes-list-strokes): Use proper exit-action argument for
527         view-buffer.  Update copyright notice.
529         * international/mule-diag.el: Various doc and message fixes.
530         (non-iso-charset-alist): Add mac-roman.  Don't add entries for
531         codepages already present.
532         (list-block-of-chars): Display space for null entries in
533         translation table.  Display tab specially.
534         (list-non-iso-charset-chars): Check for null charsets.  Use pop
535         for clarity.  Don't break 8-bit sets into sections between ranges.
536         (list-charset-chars): Avoid indent-tabs-mode.
537         (describe-char-after): Maybe use the text property for syntax
538         table information.  Maybe report char-code-property-table info.
539         Maybe report character's unicode.  Tweak printing of list info.
540         (list-input-methods): Add xref buttons.
541         (dump-charsets, dump-codings): Deleted (obsolete).
542         From Dave Love <fx@gnu.org>.
544 2002-02-10  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
546         * menu-bar.el (menu-bar-showhide-menu): Rename functions for toggling.
548 2002-02-10  Michael Kifer  <kifer@cs.stonybrook.edu>
550         * viper-util.el (viper-read-key-sequence): Fix so it'll read
551         fast key sequences in emacs native mode
552         (viper-events-to-keys): Delete.
554         * viper.el (describe-key, describe-key-briefly): Get rid of
555         viper-events-to-keys.
557         * ediff-init.el (ediff-has-gutter-support): Steven Turnbull's patch.
559         * ediff-wind.el (ediff-setup-control-frame):
560         Use ediff-has-gutter-support.
562         * ediff-util.el (ediff-dispose-of-variant-according-to-user):
563         check if buff is alive.
565         * ediff.el: Typo in comment.
567 2002-02-09  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
569         * menu-bar.el (menu-bar-options-save): Take care of
570         line-number-mode and column-number-mode variables.
571         (menu-bar-showhide-menu): New menu-items "Show Line Number" and
572         "Show Column Number" in "Show/Hide" menu.
574 2002-02-09  Richard M. Stallman  <rms@gnu.org>
576         * mail/mailabbrev.el (mail-mode-map): Use eval-after-load to change it.
578 2002-02-09  Kim F. Storm  <storm@cua.dk>
580         * faces.el (mode-line-inactive): New face for mode-line for
581         non-selected windows.
582         (mode-line): Doc fix: Only used for selected window.
584 2002-02-08  Eli Zaretskii  <eliz@is.elta.co.il>
586         * calendar/cal-menu.el (calendar-mode-map): Change the menu item's
587         name to "Insert Diary Entry".
589 2002-02-08  Stefan Monnier  <monnier@cs.yale.edu>
591         * font-lock.el (save-buffer-state): Use restore-buffer-modified-p.
592         (c-font-lock-syntactic-face-function): Accept doxygen-style comments.
594 2002-02-08  Richard M. Stallman  <rms@gnu.org>
596         * textmodes/text-mode.el (text-mode-hook-identify): Define as no-op.
598 2002-02-08  Andreas Schwab  <schwab@suse.de>
600         * calc/calc.el (calcDigit-key): Use minibuffer-prompt-end instead
601         of point-min.
603 2002-02-08  Eli Zaretskii  <eliz@is.elta.co.il>
605         * net/ange-ftp.el (ange-ftp-process-handle-line)
606         (ange-ftp-set-xfer-size): If the file's size is a float, divide
607         by 1024 instead of using ash.
609         * international/mule-cmds.el (select-safe-coding-system):
610         State the buffer's name in the message popped in the *Warning* buffer,
611         and make sure the offending buffer is displayed.
613 2002-02-07  Markus Rost  <rost@math.ohio-state.edu>
615         * ffap.el (ffap-newsgroup-p): Test for non-nil symbol-value of htb.
617 2002-02-07  Richard M. Stallman  <rms@gnu.org>
619         * terminal.el (terminal-map): Define [menu-bar] so global def is seen.
621         * register.el (list-registers): New command.
622         (describe-register-1): New subroutine, taken out of view-register.
624         * emacs-lisp/copyright.el (copyright-regexp):
625         Delete the unibyte copyright symbol; it's redundant.
626         Fix a spazz in the multibyte encoding here.
628 2002-02-07  Dave Love  <fx@gnu.org>
630         * language/cyril-util.el (cyrillic-encode-koi8-r-char)
631         (cyrillic-encode-alternativnyj-char): Get translation tables from
632         symbol properties, not as variables.
633         (standard-display-cyrillic-translit): Include unicodes.
635 2002-02-06  Kim F. Storm  <storm@cua.dk>
637         * help.el (where-is): Report remapped commands.
639         * help-fns.el (describe-function-1): Ditto.
641         * subr.el (global-set-key, local-set-key): Accept a symbol for the
642         KEY argument (like define-key).
644 2002-02-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
646         * textmodes/flyspell.el (flyspell-insert-function): Doc fix.
648 2002-02-06  Richard M. Stallman  <rms@gnu.org>
650         * mail/mailabbrev.el: Require sendmail only at compile time.
651         (mail-mode-header-syntax-table): Var deleted.
652         (mail-abbrev-syntax-table): Init to nil, will compute when needed.
653         (sendmail-pre-abbrev-expand-hook): Only temporarily change
654         local-abbrev-table and the syntax table.
655         Compute mail-abbrev-syntax-table if that has not been done.
657         * progmodes/compile.el (grep-compute-defaults): Definition moved up.
659         * emacs-lisp/debug.el (debugger-frame-offset): Var deleted.
660         (debugger-frame-number): Figure out the offset directly.
661         (debugger-setup-buffer): Don't use debugger-frame-offset.
662         (debugger-frame, debugger-frame-clear): Likewise.
663         (debugger-jump): Don't alter debugger-frame-offset.
665         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
666         Replace foo-p as var name with foo-flag, not foo-p-flag.
668         * hilit-chg.el (highlight-changes-active-string): Default to +Chg.
669         (highlight-changes-passive-string): Default to -Chg.
670         (highlight-changes-global-modes): Doc fix.
672         * dired.el (dired-get-filename): Add /: when appropriate
673         to avoid taking a local name as remote.
675         * files.el (file-name-non-special): Add special handling for
676         file-name-sans-versions, file-name-completion, and
677         file-name-all-completions.
679         * isearch.el (isearch-update): Don't update display in kbd macro.
680         (isearch-lazy-highlight-new-loop): Do nothing in kbd macro.
682         * subr.el (force-mode-line-update): Doc fix.
684         * subr.el (atomic-change-group, prepare-change-group)
685         (activate-change-group, accept-change-group, cancel-change-group):
686         New functions.
688         * simple.el (undo-get-state, undo-revert-to-state): Fns deleted.
689         (transpose-subr-1): Use atomic-change-group.
691         * subr.el (add-minor-mode): Include the mode's lighter string
692         in the minor mode menu item name.
694         * mail/rmail.el (rmail-toggle-header): Avoid possibly slow call to
695         rmail-count-screen-lines starting from (point-min).
697         * startup.el (use-fancy-splash-screens-p): Need 19 lines,
698         beyond the image height, to use the fancy splash screen.
700         * textmodes/text-mode.el (text-mode-hook-identify): Function deleted.
701         (text-mode): Set text-mode-variant here.
703 2002-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
705         * play/pong.el (pong-height): Don't use height that exceeds the
706         frame height.
707         (pong-border-options): Make the border colors slightly more bright.
709         * play/gamegrid.el (gamegrid-display-type): Treat any
710         color-capable display as color-x, if display-color-p is fboundp.
711         (gamegrid-make-color-x-face): Don't call gamegrid-color twice.
712         (gamegrid-make-color-tty-face): Use the value of color, not the
713         symbol itself.  Don't call gamegrid-color.
715 2002-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
717         * gud.el (gud-refresh): Call recenter only after we are sure we
718         are in the right window.
720 2002-02-05  Per Abrahamsen  <abraham@dina.kvl.dk>
722         * cus-edit.el (customize-mark-to-save): New function.
723         * menu-bar.el (menu-bar-options-save): Rewrote.
725 2002-02-05  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
727         * cus-start.el (x-use-underline-position-properties):
728         Allow customization.
730 2002-02-04  Simon Josefsson  <jas@extundo.com>
732         * dired.el (dired-load-hook, dired-mode-hook)
733         (dired-before-readin-hook, dired-after-readin-hook): Defcustom.
735 2002-02-03  Colin Walters  <walters@verbum.org>
737         * ibuf-ext.el (ibuffer-filter-format-alist)
738         (ibuffer-cached-filter-formats, ibuffer-compiled-filter-formats):
739         New variables.
740         * ibuffer.el (ibuffer): Remove link; the "home page" for ibuffer
741         is now the Emacs CVS tree.
742         (ibuffer-formats): Doc fix.
743         (ibuffer-active-formats-name, ibuffer-current-formats): New functions.
744         (ibuffer-current-format): Use them.
745         (ibuffer-recompile-formats, ibuffer-check-formats)
746         (ibuffer-switch-format, ibuffer-update-title):
747         Add support for ibuffer-filter-format-alist.
748         (define-ibuffer-column process): Remove unncessary consing.
750         * ibuf-macs.el (define-ibuffer-column): Add beginnings of support
751         for a summary column.
753 2002-02-03  Andreas Schwab  <schwab@suse.de>
755         * window.el (save-selected-window): Move macro before first use.
756         (balance-windows): Fix misplaced parenthesis.
758 2002-02-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
760         * calculator.el (calculator-displayers): Doc fixes.
762 2002-02-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
764         * menu-bar.el (menu-bar-help-menu): Use different text for tool-tip.
765         (menu-bar-options-save): Save also the value of `display-time-mode'.
766         (showhide-date-time): New function.
767         (menu-bar-showhide-menu): New menu-item "Date and time".
769 2002-02-03  Eli Zaretskii  <eliz@is.elta.co.il>
771         * mail/rmail.el (rmail): Use find-buffer-visiting instead of
772         get-file-buffer to check for rmail buffer existence.
774         * term.el (term-emulate-terminal): Extract proper command string
775         which is supplied to term-command-hook.
777 2002-02-03  Richard M. Stallman  <rms@gnu.org>
779         * international/quail.el (quail-help): Don't call help-setup-xref.
781         * international/mule-cmds.el (describe-input-method):
782         Call help-setup-xref here.
783         (describe-current-input-method): Doc fix.
785         * novice.el (disabled-command-hook): Clarify output text.
786         Indent the paragraph from the command's doc string.
788         * dabbrev.el (dabbrev--goto-start-of-abbrev):
789         Exit loop on beginning of field rather than bobp.
791 2002-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
793         * mail/uce.el (uce-reply-to-uce): Prune the headers before copying
794         the message text into the *mail* buffer, and restore the pruned
795         state after that.
797         * mail/rmail.el (rmail-redecode-body): Prune the headers before
798         looking for X-Coding-System header, and restore the pruned state
799         before returning.
801 2002-02-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
803         * cus-edit.el (customize-save-variable): Fix typo in prompt.
805         These changes integrate new version of flyspell.el from its
806         maintainer, Manuel Serrano:
808         * textmodes/flyspell.el (flyspell-issue-message-flag): New user option.
809         (flyspell-mode-on, flyspell-notify-misspell)
810         (flyspell-small-region, flyspell-external-point-words)
811         (flyspell-large-region): Use it
812         (flyspell-before-incorrect-word-string)
813         (flyspell-after-incorrect-word-string): New user options.
814         (make-flyspell-overlay): Use them.
815         (flyspell-version): New function.
816         (flyspell-incorrect-face, flyspell-duplicate-face): Adapt face
817         definitions to use :weight.
818         (flyspell-insert-function): New user option.
819         (flyspell-auto-correct-word, flyspell-correct-word)
820         (flyspell-xemacs-correct): Use it.
821         (flyspell-define-abbrev): New function.
822         (flyspell-auto-correct-word, flyspell-correct-word)
823         (flyspell-xemacs-correct): Use it.
824         (make-flyspell-overlay): Use `evaporate' property.
825         (flyspell-auto-correct-word, flyspell-correct-word): Remove overlay.
826         (flyspell-emacs-popup): Use `session' instead of `accept'.
827         (flyspell-auto-correct-previous-pos): New variable.
828         (flyspell-auto-correct-previous-hook)
829         (flyspell-auto-correct-previous-word): New functions.
831 2002-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
833         * novice.el (enable-command): If Emacs was invoked as "emacs -q",
834         don't alter the user's ~/.emacs.
835         (disable-command): If user-init-file is nil or does not exist,
836         default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
837         But don't alter the init file if Emacs was invoked as "emacs -q"
839 2002-02-01  Stefan Monnier  <monnier@cs.yale.edu>
841         * mail/sendmail.el (mail-mode): Undo half of last change.
843         * indent.el (indent-for-tab-command): Remove spurious code.
845         * hi-lock.el (hi-lock-find-patterns): Save restriction.
847 2002-02-01  Eli Zaretskii  <eliz@is.elta.co.il>
849         * calendar/time-date.el: Moved from lisp/gnus.
851         * calendar/parse-time.el: Ditto.
853 2002-01-31  Richard M. Stallman  <rms@gnu.org>
855         * international/iso-acc.el (iso-languages): Fix ", " in French.
857         * cus-start.el (history-length): Specify customization for it.
859         * emacs-lisp/debug.el (debugger-setup-buffer):
860         When an eval-buffer frame was reading from a buffer,
861         insert indication of the buffer position.
862         (debugger-frame-number): Ignore ;;;-comment lines in backtrace.
863         (debugger-frame-clear, debugger-frame): Error on non-frame line.
865         * simple.el (shell-command-on-region): Err if no mark
866         before reading the command string.
868         * hl-line.el (hl-line-highlight, hl-line-unhighlight):
869         Definitions moved down after hl-line-mode var's definition.
871         * hilit-chg.el (hilit-chg-fixup): Don't alter overlay if not ours.
872         (hilit-chg-set-face-on-change): Rename arg.
873         (hilit-chg-make-ov): Detect error earlier.
875         * ediff-hook.el: Delete autoload cookies.
877         * comint.el (comint-scroll-show-maximum-output): Default is t.
879         * emacs-lisp/bytecomp.el (batch-byte-compile): New arg noforce.
880         (batch-byte-compile-if-not-done): New function.
882         * Makefile.in (compile): New target.
883         (compile-always): Renamed from compile-files.
884         (compile-after-backup): Renamed from compile.
885         (bootstrap): Depend on compile-always, not compile-files.
887         * emulation/pc-select.el (pc-select-save-and-set-mode):
888         Properly use MODE-VAR.
890 2002-01-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
892         * menu-bar.el (menu-bar-help-menu): Change menu-item "Show Emacs
893         Version" to "About Emacs".
894         (menu-bar-options-save): Add `default-frame-alist'
895         to saved variables.
896         (menu-bar-showhide-scroll-bar-menu): Use frame-parameters instead
897         of the variable `scroll-bar-mode'.
899         * startup.el (normal-splash-screen, display-splash-screen):
900         New functions (separated from command-line-1).
901         (command-line-1): Use them.
903 2002-01-28  Eli Zaretskii  <eliz@is.elta.co.il>
905         * calendar/calendar.el (generate-calendar-month): Doc fix.
907 2002-01-27  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
909         * time.el (display-time-mail-directory): New option.
910         (display-time-mail-function): Update doc-string.
911         (display-time-mail-icon): Use XPM image when available.
912         (display-time-string-forms): Use more descriptive text as
913         help-echo property.
914         (display-time-mail-check-directory): New function.
915         (display-time-update): Use it.
917         * menu-bar.el (menu-bar-showhide-scroll-bar-menu):
918         Quote `window-system'.
920         * tmm.el (tmm-get-keymap): Honour :visible in `menu-item'.
921         Add Keywords header.  Update Commentary section.
922         Update copyright notice.
924         * menu-bar.el (menu-bar-scroll-bar-right)
925         (menu-bar-scroll-bar-left, menu-bar-scroll-bar-none)
926         (showhide-menu-bar): New functions.
927         (menu-bar-showhide-menu): New submenu "Show/Hide".
928         (menu-bar-showhide-scroll-bar-menu): "Scroll-bar" submenu of
929         "Show/Hide".
930         Update copyright notice.
932 2002-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
934         * lazy-lock.el (lazy-lock-mode): Add a reference to jit-lock.
936 2002-01-26  Evgeny Roubinchtein  <evgenyr@cs.washington.edu>
938         * pc-select.el (pc-selection-mode-hook)
939         (pc-select-saved-settings-alist, pc-select-map)
940         (pc-select-saved-global-map, pc-select-key-bindings-alist)
941         (pc-select-default-key-bindings, pc-select-extra-key-bindings)
942         (pc-select-meta-moves-sexps-key-bindings)
943         (pc-select-tty-key-bindings, pc-select-old-M-delete-binding):
944         New variables.
945         (pc-select-define-keys, pc-select-restore-keys): New functions.
946         (pc-select-add-to-alist, pc-select-save-and-set-var)
947         (pc-select-save-and-set-mode, pc-select-restore-var)
948         (pc-select-restore-mode): New macros.
949         (pc-selection-mode): Completely rewrote the body of the function;
950         the main goal was to make pc-selection-mode "turn-off"-able, like
951         other minor modes.  Use define-minore-mode instead of just a
952         defun.  Store the key bindings into four alists:
953         pc-select-default-key-bindings, pc-select-extra-key-bindings,
954         pc-select-meta-moves-sexps-key-bindings, and
955         pc-select-tty-key-bindings; then have the pc-select-define-keys
956         function walk those alists instead of calling define-key
957         repeatedly.  When the mode is turned on, set the
958         keybindings in global-map and remember the old keybindings; when
959         the mode is turned off, restore the previously-saved keybindings.
960         (pc-selection-mode defcustom): Reflect the fact that the mode is
961         now "turn-off"-able.
963 2002-01-26  Eli Zaretskii  <eliz@is.elta.co.il>
965         * eshell/esh-cmd.el (eshell-eval-command): If eshell-resume-eval
966         returns t, don't treat that as an error.
968 2002-01-25  Jason Rumney  <jasonr@gnu.org>
970         * faces.el (face-font-registry-alternatives) [windows-nt]:
971         Add ms-oemlatin as an alternative for iso8859-1.
973 2002-01-25  Stefan Monnier  <monnier@cs.yale.edu>
975         * pcvs.el (cvs-reread-cvsrc): Distinguish between an empty list of
976         args and the absence of an entry.  Don't add -f each time.
978 2002-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
980         * emacs-lisp/cl-seq.el (mismatch): Doc fix.
982         Support for more than 8 colors on character terminals:
984         * term/rxvt.el: New file.
986         * Makefile.in (DONTCOMPILE): Remove term/xterm.el.
988         * term/xterm.el (xterm-standard-colors): New variable.
989         (xterm-rgb-convert-to-16bit, xterm-register-default-colors)
990         (xterm-rxvt-set-background-mode): New functions.
991         (toplevel): Call xterm-register-default-colors,
992         xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
993         Add support for more keys from xterm's terminfo entry.
995         * facemenu.el (list-colors-display): If the argument is nil, don't
996         show more colors that the number returned by display-color-cells.
998         * term/pc-win.el (msdos-color-values): Reverse the order of the
999         colors, since tty-color-define now preserves the registration order.
1001         * w32-fns.el (w32-tty-standard-colors): Reverse the order.
1003         * term/tty-colors.el (tty-standard-colors): Reverse the order.
1004         (tty-register-default-colors): New function; code moved from
1005         startup.el's command-line.
1006         (tty-modify-color-alist): Use nconc instead of cons, to preserve
1007         the order the colors where registered.
1009         * frame.el (display-color-cells): Use tty-display-color-cells.
1011         * startup.el (command-line): Call tty-register-default-colors.
1013 2002-01-25  Richard M. Stallman  <rms@gnu.org>
1015         * subr.el (remove): Doc fix.
1017 2002-01-24  Richard M. Stallman  <rms@gnu.org>
1019         * progmodes/compile.el (compilation-handle-exit):
1020         Add a compilation-handle-exit property to the "finished" message.
1021         (compilation-parse-errors): Stop parsing when that property is seen.
1023         * subr.el (substring-no-properties): New function.
1024         (copy-without-properties): Function deleted.
1026         * term/x-win.el (x-handle-geometry): Put sizes on both
1027         initial-frame-alist and default-frame-alist.
1029         * cus-edit.el (custom-save-all): Bind file-precious-flag to t
1030         for saving .emacs.
1032         * files.el (basic-save-buffer-2): Ignore file-error in delete-file.
1034         * calendar/calendar.el (generate-calendar-month): Doc fix.
1036 2002-01-23  Richard M. Stallman  <rms@gnu.org>
1038         * play/tetris.el (tetris): New defgroup.
1039         (tetris-use-glyphs, tetris-use-color, tetris-draw-border-with-glyphs)
1040         (tetris-default-tick-period): Convert to defcustom.
1041         Added * in docstring to indicate user variable.
1042         (tetris-update-speed-function, tetris-mode-hook, tetris-tty-colors)
1043         (tetris-x-colors, tetris-buffer-name, tetris-buffer-width)
1044         (tetris-buffer-height, tetris-width, tetris-height)
1045         (tetris-top-left-x, tetris-top-left-y): Convert to defcustom.
1047 2002-01-22  Stefan Monnier  <monnier@cs.yale.edu>
1049         * mail/sendmail.el (mail-mode): ">" is not a supercite-style prefix
1050         and is already matched by adaptive-fill-regexp.
1052 2002-01-22  Richard M. Stallman  <rms@gnu.org>
1054         * bindings.el (mode-line-copied-mode-name): New variable.
1055         (mode-line-mode-name): Don't modify mode-name itself!
1056         Instead, make a copy and reuse it.
1058         * subr.el (copy-without-properties): New function.
1060         * progmodes/sh-script.el (sh-set-shell): Doc fix.
1062         * net/ange-ftp.el (ange-ftp-canonize-filename): Avoid duplicate
1063         slash if DIR is just slash.
1065         * progmodes/perl-mode.el (perl-mode-abbrev-table): Restore definition.
1067 2002-01-21  Richard M. Stallman  <rms@gnu.org>
1069         * emacs-lisp/copyright.el (copyright-regexp): Fix previous change.
1071         * net/ange-ftp.el (ange-ftp-bs2000-posix-hook-installed):
1072         Move defvar up.
1074         * textmodes/ispell.el (ispell-help): Clean up echo area if user quits.
1076         * ibuffer.el: Don't require ibuf-ext at load time.
1077         (ibuffer): Require ibuf-ext here.
1079 2002-01-21  Francesco Potorti`  <pot@gnu.org>
1081         * generic-x.el (apache-conf-generic-mode): Highlight the first
1082         word in a line even if preceded by blanks.
1084 2002-01-21  Richard M. Stallman  <rms@gnu.org>
1086         * window.el (window-body-height): Handle minibuffer window specially.
1087         Otherwise, don't return less than 1.
1089 2002-01-20  Thomas Dorner  <Thomas.Dorner@start.de>
1091         * ange-ftp.el: Added support for BS2000, and for raw ftp
1092         login commands (needed in some circumstances).
1093         (ange-ftp-raw-login): New custom var.
1094         (ange-ftp-normal-login): Perform login with raw ftp commands, if
1095         ange-ftp-raw-login is set and account password is needed.
1096         (ange-ftp-host-type, ange-ftp-guess-host-type): Handle BS2000 hosts.
1097         (ange-ftp-bs2000-filename-pubset-regexp)
1098         (ange-ftp-bs2000-filename-username-regexp)
1099         (ange-ftp-bs2000-filename-prefix-regexp)
1100         (ange-ftp-bs2000-name-template): New consts.
1101         (ange-ftp-bs2000-short-filename-regexp)
1102         (ange-ftp-bs2000-fix-name-regexp-reverse)
1103         (ange-ftp-bs2000-fix-name-regexp): New consts.
1104         (ange-ftp-bs2000-special-prefix): New custom var.
1105         (ange-ftp-fix-name-for-bs2000)
1106         (ange-ftp-fix-dir-name-for-bs2000): New funs.
1107         (ange-ftp-bs2000-host-regexp, ange-ftp-bs2000-posix-host-regexp)
1108         (ange-ftp-bs2000-posix-hook-installed): New vars.
1109         (ange-ftp-parse-bs2000-filename, ange-ftp-parse-bs2000-listing)
1110         (ange-ftp-bs2000-host, ange-ftp-bs2000-posix-host)
1111         (ange-ftp-add-bs2000-host, ange-ftp-add-bs2000-posix-host): New funs.
1112         (ange-ftp-bs2000-filename-regexp): New const.
1113         (ange-ftp-bs2000-additional-pubsets): New custom var.
1114         (ange-ftp-bs2000-cd-to-posix): New fun.
1116 2002-01-20  Colin Walters  <walters@verbum.org>
1118         * ibuffer.el: (toplevel) Require `ibuf-ext', which is now compiled
1119         with `byte-compile-dynamic'.
1120         (ibuffer-default-directory, toplevel): Doc files.
1122 2002-01-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1124         * tempo.el (tempo-define-template): Doc fix.
1126         * scroll-bar.el (scroll-bar-mode): Make argument optional.
1128 2002-01-20  Jason Rumney  <jasonr@gnu.org>
1130         * w32-vars.el: New file.
1132         * loadup.el [windows-nt]: Load it.
1134         * w32-fns.el, term/w32-win.el: Move user variables to w32-vars.el
1135         and make them defcustoms.
1137         * term/w32-win.el (mouse-set-font): Use w32-list-proportional-fonts.
1139 2002-01-19  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1141         * language/tibet-util.el (tibetan-decompose-region)
1142         (tibetan-decompose-string): Fix typo in docstring.
1144         * ruler-mode.el (ruler-mode): New keyword.  Fix :version.
1146 2002-01-18  Richard M. Stallman  <rms@gnu.org>
1148         * comint.el (comint-redirect-send-command-to-process):
1149         Restore previous current buffer.
1151         * window.el (window-body-height): New function.
1153 2002-01-18  Zoltan Kemenczy  <kemenczy@rogers.com>
1155         * gud.el (easy-mmode-defmap): Enable "Up Stack", "Down Stack", and
1156         "Finish Function" menu map entries for jdb mode.
1157         (gud-jdb-use-classpath): New customization variable.
1158         (gud-jdb-command-name): Add customization.
1159         (gud-jdb-classpath, gud-marker-acc-max-length): New variables.
1160         (gud-jdb-classpath-string): New variable.
1161         (gud-jdb-source-files, gud-jdb-class-source-alist): Add doc strings.
1162         (gud-jdb-build-source-files-list): Likewise.
1163         (gud-jdb-massage-args): Record any command argument classpath
1164         string in `gud-jdb-classpath-string'.
1165         (gud-jdb-lowest-stack-level): New function, finds bottom of current
1166         java call stack in jdb output.
1167         (gud-jdb-find-source-using-classpath, gud-jdb-find-source)
1168         (gud-jdb-parse-classpath-string): New functions.
1169         (gud-jdb-marker-filter): Search/detect classpath information in
1170         jdb's output.  marker regexp updated to match oldjdb and jdb output
1171         formats.  Expand search for source files to include new/old methods
1172         using new functions above.  Do not allow `gud-marker-acc' to grow
1173         without bound.
1174         (jdb): Set classpath information (if available) as jdb is started.
1175         Change `gud-break' and `gud-remove'
1176         to use new %c ("class") escape in format strings.  Add
1177         `gud-finish', `gud-up', `gud-down' command string functions, and
1178         add them to the local menu map.  Update `comint-prompt-regexp' for
1179         jdb and oldjdb.  If attaching to an already running java VM and
1180         configured to use classpath, send command to query for classpath,
1181         else use previous method for finding and parsing java
1182         sources.  Set `gud-jdb-find-source' function accordingly.
1183         (gud-mode): Doc fix.
1184         (gud-format-command): Add support for new %c ("class") escape.
1185         (gud-find-class): New function in support of %c escape.
1187 2002-01-17  Richard M. Stallman  <rms@gnu.org>
1189         * ibuf-ext.el: Enable byte-compile-dynamic.
1191 2002-01-17  Jason Rumney  <jasonr@gnu.org>
1193         * term/w32-win.el: Restore conditional require of fontset.
1195 2002-01-16  Richard M. Stallman  <rms@gnu.org>
1197         * mouse.el (mouse-drag-region-1): Renamed from mouse-drag-region,
1198         more or less.
1199         (mouse-drag-region): New function.  For a click in the echo area,
1200         show *Messages*.
1202         * ibuf-ext.el: Delete the autoloads for functions defined with
1203         ibuffer-specific commands.
1205         * help.el (describe-distribution): Really call view-file.
1207         * net/ange-ftp.el (ange-ftp-passive-mode): New arg PROC.
1208         (ange-ftp-get-process): Pass that arg.
1210         * comint.el (comint-simple-send): Fix previous change.
1212         * net/telnet.el (telnet-simple-send): Fix previous change.
1214         * progmodes/sql.el (sql-escape-newlines-and-send)
1215         (sql-query-placeholders-and-send): Fix previous change.
1217 2002-01-16  Colin Walters  <walters@verbum.org>
1219         * ibuf-ext.el, ibuf-macs.el, ibuffer.el (toplevel): Remove X-RCS,
1220         URL, Compatibility headers.  Update copyright notice.
1221         * ibuf-macs.el (toplevel): Require `cl' when compiling.
1223 2002-01-16  Andrew Choi  <akochoi@cse.cuhk.edu.hk>
1225         * startup.el (command-line): Set EOL mnemonics for the Mac.
1227 2002-01-16  Andreas Schwab  <schwab@suse.de>
1229         * mail/feedmail.el (feedmail): Fix :link spec.
1231 2002-01-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1233         * net/ldap.el (ldap-ldapsearch-prog): Default to OpenLDAP version
1234         2 ldapsearch.
1236         * net/eudc.el: New maintainer.  Change author's address.
1237         (eudc-pre-select-window-configuration, eudc-insertion-marker):
1238         Variables removed.
1239         (eudc-insert-selected): Function removed.
1240         (eudc-select): Reimplemented.
1241         (eudc-expand-inline): Delete the strings only after its expansion
1242         is chosen not before.
1244         * net/eudcb-ph.el (eudc-ph-open-session): Remove XEmacs case.
1245         Minor coding style fixes.
1247         * net/eudcb-ldap.el: New maintainer.  Change author's address.
1248         (eudc-attribute-display-method-alist): Display mail with
1249         eudc-display-mail.
1251         * net/eudcb-bbdb.el, net/eudc-export.el, net/eudc-hotlist.el,
1252         * net/eudc-vars.el: New maintainer.  Change author's address.
1254         * net/eudc-bob.el: New maintainer.  Change author's address.
1255         (eudc-bob-mail-keymap): New keymap for e-mail addresses.
1256         (eudc-display-mail): New function.
1257         (eudc-bob-play-sound-at-point): Remove XEmacs case.
1259 2002-01-15  Richard M. Stallman  <rms@gnu.org>
1261         * emacs-lisp/autoload.el (make-autoload):
1262         Don't handle define-ibuffer-column, define-ibuffer-filter,
1263         define-ibuffer-sorter, and define-ibuffer-op.
1265 2002-01-14  Richard M. Stallman  <rms@gnu.org>
1267         * calendar/calendar.el (diary-date-forms): Doc fix.
1269 2002-01-14  Eli Zaretskii  <eliz@is.elta.co.il>
1271         * startup.el (command-line): Register the default tty colors even
1272         if the terminal doesn't seem to support colors.
1273         <tty-long-option-alist>: New option --color.
1274         (tty-handle-args): Parse the --color arg.
1276         * term/tty-colors.el (tty-color-mode-alist): New variable.
1278 2002-01-14  Stefan Monnier  <monnier@cs.yale.edu>
1280         * net/ange-ftp.el (ange-ftp-root-dir-p): New function.
1281         (ange-ftp-file-name-all-completions, ange-ftp-file-name-completion):
1282         Use it.
1283         (ange-ftp-hook-function): Preserve match-data.
1284         (ange-ftp-insert-directory): Typo.
1285         (ange-ftp-shell-command): Check if regexp matched.
1287 2002-01-13  Richard M. Stallman  <rms@gnu.org>
1289         * international/mule-cmds.el: help-map bindings moved to help.el.
1291         * help.el (view-echo-area-messages): New function.
1292         (help-map): Add `e' binding.  Delete obsolete `d' binding.
1293         Change old Info bindings C-f, C-k and C-i to F, K, S.
1294         Move view-emacs-FAQ from F to C-f.
1295         Move view-emacs-problems from P to C-e.
1296         Bindings moved here from mule-cmds.el.
1297         C-l binding for describe-language-environment deleted
1298         (help-for-help): Update for all these changes.
1300         * emacs-lisp/copyright.el (copyright-regexp): Make (C) optional.
1302 2002-01-13  Dave Love  <fx@gnu.org>
1304         * emacs-lisp/copyright.el: Doc fixes.
1305         (copyright-regexp): Add Latin-9 copyright sign.
1306         Match comment delimiters in year lists.
1307         (copyright-current-year): Initialize to load-time year.
1309 2002-01-13  Andreas Schwab  <schwab@suse.de>
1311         * dired-aux.el (dired-do-shell-command): Doc fix.
1313 2002-01-13  Jan Djarv  <Jan.Djarv@mbox200.swipnet.se>
1315         * startup.el (command-line-x-option-alist): New options "-fs",
1316         "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight".
1318         * term/x-win.el (x-handle-initial-switch): New function.
1320 2002-01-13  Colin Walters  <walters@debian.org>
1322         * emacs-lisp/autoload.el (make-autoload): Handle
1323         define-ibuffer-column, define-ibuffer-filter,
1324         define-ibuffer-sorter, and define-ibuffer-op.
1326         * emacs-lisp/lisp-mode.el (toplevel): Ditto.
1328         * ibuffer.el, ibuf-ext.el, ibuf-macs.el: New files.
1330 2002-01-12  Richard M. Stallman  <rms@gnu.org>
1332         * net/browse-url.el (browse-url-grail):
1333         Use browse-url-maybe-new-window.
1335         * net/telnet.el (telnet-simple-send): Handle
1336         comint-input-sender-no-newline like comint-simple-send.
1338         * progmodes/sql.el (sql-query-placeholders-and-send): Handle
1339         comint-input-sender-no-newline like comint-simple-send.
1340         (sql-escape-newlines-and-send): Likewise.
1342         * comint.el (comint-input-sender): Doc fix.
1343         (comint-input-sender-no-newline): New variable.
1344         (comint-simple-send): If comint-input-sender-no-newline,
1345         don't output newline, but maybe send eof.
1346         (comint-send-input): New arg NO-NEWLINE.
1347         (comint-send-eof): Call comint-send-eof with NO-NEWLINE.
1349 2002-01-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1351         * textmodes/flyspell.el (flyspell-check-pre-word-p): Prevent
1352         delaying when executing keyboard macros.
1354 2002-01-12  Richard M. Stallman  <rms@gnu.org>
1356         * simple.el (line-move): If we can't move enough lines,
1357         go to beginning or end of line.
1359         * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer
1360         and proper window.
1362         * help.el (describe-mode): Call help-setup-xref in the help buffer.
1363         Switch buffers only after calling `help-buffer'.
1365         * dired-aux.el (dired-shell-stuff-it): Substitute for * or ?
1366         only when they are surrounded by whitespace.
1367         Use dired-mark-separator when adding one file name to a command.
1368         (dired-do-shell-command): Verify that * is surrounded by whitespace.
1369         Ask for confirmation if * or ? is not surrounded by whitespace.
1370         (dired-bunch-files): Re-reverse the partial file list when it is used.
1372 2002-01-12  Richard M. Stallman  <rms@gnu.org>
1374         * comint.el (comint-dynamic-list-completions): Repeating the command
1375         after displaying a completion list scrolls the list.
1377 2002-01-12  Eli Zaretskii  <eliz@is.elta.co.il>
1379         * files.el (find-file-noselect): Don't consider a buffer as
1380         visiting a file literally if it is in hexl-mode.
1382         * faces.el (minibuffer-prompt): A better face definition for MS-DOS.
1384 2002-01-11  Richard M. Stallman  <rms@gnu.org>
1386         * startup.el (initial-scratch-message): Fix custom type, add group.
1388         * mail/rmail.el (rmail-decode-babyl-format): Disable undo
1389         around the decode-coding-region call.
1391         * emacs-lisp/lisp.el (lisp-complete-symbol): Repeating the command
1392         after displaying a completion list scrolls the list.
1394 2002-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
1396         * version.el (emacs-version): Bump to 21.2.50.
1398 2002-01-10  Thien-Thi Nguyen  <ttn@giblet.glug.org>
1400         * play/zone.el (zone-timeout): New var.
1401         (zone-hiding-modeline): New macro.
1402         (zone-call): New func.
1404         (zone): Init `modeline-hidden-level' symbol property.
1405         Use `zone-call' instead of `funcall'.
1407         (zone-pgm-whack-chars): Use `make-string' (fix bug introduced in 2001-10-26T20:11:25Z!monnier@iro.umontreal.ca).
1409         (zone-pgm-stress): Use `zone-hiding-modeline'.
1411         (zone-pgm-stress-destress): New zone program.
1413 2002-01-10  Eli Zaretskii  <eliz@is.elta.co.il>
1415         * faces.el (minibuffer-prompt): Special face definition for MS-DOS.
1417 2002-01-09  Richard M. Stallman  <rms@gnu.org>
1419         * startup.el (fancy-splash-screens): Set tab-width in correct buffer.
1421 2002-01-09  Michael Kifer  <kifer@cs.stonybrook.edu>
1423         * viper.el (viper-set-hooks): Zap viper-unfriendly bindings in
1424         flyspell-mouse-map.
1426 2002-01-08  Richard M. Stallman  <rms@gnu.org>
1428         * emacs-lisp/regexp-opt.el (regexp-opt): Bind max-specpdl-size.
1430         * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Fix custom type.
1432         * textmodes/flyspell.el (flyspell-mode-line-string): Fix custom type.
1434 2002-01-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1436         * progmodes/ada-mode.el (ada-initialize-properties, ada-mode):
1437         Do not use make-local-hook.
1439 2002-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
1441         * international/quail.el (quail-start-translation)
1442         (quail-start-conversion): Bind last-command-event, last-command,
1443         and this-command in the first let.  This fixes the change from
1444         2000-08-30.
1446 2002-01-08  Michael Kifer  <kifer@cs.stonybrook.edu>
1448         * ediff-hook.el: Add an autoload cookie.
1450 2002-01-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1452         * net/eudcb-ph.el, net/ldap.el: New maintainer.  New e-mail
1453         address of the author.
1455 2002-01-08  Richard M. Stallman  <rms@gnu.org>
1457         * replace.el (occur-mode-goto-occurrence-other-window): New command.
1458         (occur-mode-map): Bind `o' to that.
1460 2002-01-07  Michael Kifer  <kifer@cs.stonybrook.edu>
1462         * viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
1463         new macro that replaces viper-emacs-p and viper-xemacs-p in many
1464         cases. Used to reduce the number of warnings.
1466         * viper-cmd.el: Use viper-cond-compile-for-xemacs-or-emacs.
1467         (viper-standard-value): Move here from viper.el.
1468         (viper-set-unread-command-events): Move to viper-util.el
1469         (viper-check-minibuffer-overlay): Make sure
1470         viper-minibuffer-overlay is moved to cover the entire input field.
1472         * viper-util.el:  use viper-cond-compile-for-xemacs-or-emacs.
1473         (viper-read-key-sequence, viper-set-unread-command-events)
1474         (viper-char-symbol-sequence-p, viper-char-array-p): Moved here.
1476         * viper-ex.el: Use viper-cond-compile-for-xemacs-or-emacs.
1478         * viper-keym.el: Use viper-cond-compile-for-xemacs-or-emacs.
1480         * viper-mous.el: Use viper-cond-compile-for-xemacs-or-emacs.
1482         * viper-macs.el (viper-char-array-p, viper-char-symbol-sequence-p)
1483         (viper-event-vector-p): Move to viper-util.el
1485         * viper.el (viper-standard-value): Move to viper-cmd.el.
1486         Use viper-cond-compile-for-xemacs-or-emacs.
1488         * ediff-help.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1490         * ediff-hook.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1492         * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs):
1493         New macro designed to be used in many places where ediff-emacs-p or
1494         ediff-xemacs-p was previously used.  Reduces the number of warnings.
1495         Use ediff-cond-compile-for-xemacs-or-emacs in many places in lieu
1496         of ediff-xemacs-p.
1497         (ediff-make-current-diff-overlay, ediff-highlight-diff-in-one-buffer)
1498         (ediff-convert-fine-diffs-to-overlays, ediff-empty-diff-region-p)
1499         (ediff-whitespace-diff-region-p, ediff-get-region-contents):
1500         Move to ediff-util.el.
1501         (ediff-event-key): Moved here.
1503         * ediff-merge.el: Got rid of unreferenced variables.
1505         * ediff-mult.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1507         * ediff-util.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1508         (ediff-cleanup-mess): Improve the way windows are set up after
1509         quitting ediff.
1510         (ediff-janitor): Use ediff-dispose-of-variant-according-to-user.
1511         (ediff-dispose-of-variant-according-to-user): New function
1512         designed to be smarter and also understands indirect buffers.
1513         (ediff-highlight-diff-in-one-buffer)
1514         (ediff-unhighlight-diff-in-one-buffer)
1515         (ediff-unhighlight-diffs-totally-in-one-buffer)
1516         (ediff-highlight-diff, ediff-highlight-diff)
1517         (ediff-unhighlight-diff, ediff-unhighlight-diffs-totally)
1518         (ediff-empty-diff-region-p, ediff-whitespace-diff-region-p)
1519         (ediff-get-region-contents, ediff-make-current-diff-overlay):
1520         Moved here.
1521         (ediff-format-bindings-of): New function by Hannu Koivisto
1522         <azure@iki.fi>.
1523         (ediff-setup): Make sure the merge buffer is always widened and
1524         modifiable.
1525         (ediff-write-merge-buffer-and-maybe-kill): Refuse to write the
1526         result of a merge into a file visited by another buffer.
1527         (ediff-arrange-autosave-in-merge-jobs): Check if the merge file
1528         is visited by another buffer and ask to save/delete that buffer.
1529         (ediff-verify-file-merge-buffer): New function to do the above.
1531         * ediff-vers.el: Load ediff-init.el at compile time.
1533         * ediff-wind.el: Use ediff-cond-compile-for-xemacs-or-emacs.
1535         * ediff.el (ediff-windows, ediff-regions-wordwise)
1536         (ediff-regions-linewise): Use indirect buffers to improve
1537         robustness and make it possible to compare regions of the same
1538         buffer (even overlapping regions).
1539         (ediff-clone-buffer-for-region-comparison)
1540         (ediff-clone-buffer-for-window-comparison): New functions.
1541         (ediff-files-internal): Refuse to compare identical files.
1542         (ediff-regions-internal): Get rid of the warning about comparing
1543         regions of the same buffer.
1545         * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Moved here.
1546         Plus the following fixes courtesy of Dave Love: Doc fixes.
1547         (ediff-word-1): Use word class and move - to the
1548         front per regexp documentation.
1549         (ediff-wordify): Bind forward-word-function outside loop.
1550         (ediff-copy-to-buffer): Use insert-buffer-substring rather than
1551         consing buffer contents.
1552         (ediff-goto-word): Move syntax table setting outside loop.
1554 2002-01-07  Richard M. Stallman  <rms@gnu.org>
1556         * dired.el (dired-copy-filename-as-kill): Call kill-append
1557         if following a kill command.
1559         * help-fns.el (describe-variable, describe-function):
1560         Do save-excursion.
1562 2002-01-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1564         * net/ldap.el (ldap-search-internal): Skip error message from
1565         ldapsearch.  Allow listing attribute names only.  Do not open
1566         non-existent files.
1568         * net/eudcb-ldap.el (eudc-ldap-get-field-list): Do not try to
1569         call non-existent function.
1571         * net/eudc.el (top-level): Revert previous change.
1573         * net/net-utils.el (nslookup-font-lock-keywords): Defvar font-lock
1574         variables to prevent warning from byte-compiler.
1576         * net/eudc.el (top-level): Use eudc-xemacs-p instead of
1577         string-match on emacs-version again.
1579         * enriched.el (enriched-make-annotation): Fix the change from
1580         2002-01-05.
1581         (enriched-handle-display-prop): Return proper values.
1583         * net/eudcb-ldap.el (eudc-attribute-display-method-alist): Use
1584         proper attribute name labeledUri instead of deprecated labeledUrl.
1586 2002-01-05  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1588         * net/eudc-hotlist.el (eudc-edit-hotlist): Avoid error when
1589         editing an empty hotlist.
1591         * net/ldap.el (ldap-search-internal): Make the buffer unibyte.
1592         Use buffer-string instead of buffer-substring for the whole
1593         buffer.
1595         * net/eudc-vars.el (eudc-external-viewers): Do not use xv, it is
1596         not free.
1598         * net/eudc-bob.el (eudc-bob-can-display-inline-images)
1599         (eudc-bob-display-jpeg): Use fboundp instead of boundp.
1600         (eudc-bob-save-object): Make the buffer unibyte.
1601         (eudc-bob-generic-keymap): Add new keybinding `!' to pipe the
1602         object to external program.
1604 2002-01-05  Andre Spiegel  <spiegel@gnu.org>
1606         * vc.el (vc-branch-part): Return nil if there's no `.'
1607         (vc-default-previous-version): Renamed from vc-previous-version.
1608         New args BACKEND and FILE.  Return nil for revision numbers
1609         without a `.'
1610         (vc-version-diff): Call vc-BACKEND-previous-version.
1611         (vc-steal-lock): Steal lock before composing mail, so that no mail
1612         is sent when the stealing goes wrong.  And we'll actually see the
1613         error in that case now.
1614         (vc-finish-steal): Removed.
1616         * vc-rcs.el (vc-rcs-steal-lock): Do a real checkout after stealing
1617         the lock, so that we see expanded headers.
1618         (vc-rcs-trunk-p, vc-rcs-branch-part, vc-rcs-branch-p,
1619         vc-rcs-minor-part, vc-rcs-previous-version): Removed.  These are
1620         available from vc.el.  Updated all callers.
1622 2002-01-05  Richard M. Stallman  <rms@gnu.org>
1624         * enriched.el (enriched-make-annotation): Doc fix.
1626         * format.el (format-replace-strings, format-subtract-regions)
1627         (format-annotate-region, format-annotate-location)
1628         (format-annotate-atomic-property-change)
1629         (format-annotate-single-property-change): Doc fixes.
1631 2002-01-05  Jason Rumney  <jasonr@gnu.org>
1633         * term/w32-win.el: Require fontset unconditionally.
1634         (w32-handle-scroll-bar-event): Remove.
1636 2002-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1638         * emacs-lisp/copyright.el (copyright-regexp): Allow multi-line
1639         copyrights to be updated.
1641 2002-01-04  Eli Zaretskii  <eliz@is.elta.co.il>
1643         * textmodes/texinfo.el (texinfo-insert-@end): Fix the change from
1644         2001-10-24.
1646         * mail/sendmail.el (mail-recover-1, mail-recover): Doc fix.
1648 2002-01-04  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1650         * net/ldap.el (ldap-host-parameters-alist): Remove duplicated
1651         entry.
1652         (ldap-ignore-attribute-codings): Change the default value to allow
1653         encoding/decoding of attributes.
1654         (ldap-coding-system): Use UTF-8 as the coding-system.  Doc fix.
1656 2002-01-03  Richard M. Stallman  <rms@gnu.org>
1658         * files.el (basic-save-buffer): Undo previous change.
1660         * calendar/diary-lib.el (diary-block): Doc fix.
1662         * custom.el (defcustom): Fix syntax of previous change.
1664 2002-01-03  Per Abrahamsen  <abraham@dina.kvl.dk>
1666         * custom.el (defcustom): Documented :tag, :link and :load.
1668 2002-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1670         * mail/sendmail.el (mail-recover-1): New function.
1671         (mail-recover): Switch to the *mail* buffer right away.  Use
1672         buffer-auto-save-file-name instead of calling
1673         make-auto-save-file-name.  Call dired-noselect instead of invoking
1674         `ls' directly.  Bind coding-system-for-read to emacs-mule-unix
1675         before reading the auto-save file.  If the buffer's auto-save file
1676         does not exist, call mail-recover-1 to allow recovery from past
1677         auto-saved drafts.
1679 2002-01-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1681         * time.el (display-time-load-average-threshold): Fix defcustom
1682         (add type and group).
1684         * net/ange-ftp.el (ange-ftp-shell-command): Remove port
1685         specification from the hostname.
1687 2002-01-02  Richard M. Stallman  <rms@gnu.org>
1689         * facemenu.el (facemenu-active-faces):
1690         Use face-attributes-as-vector, not face-attributes-vector.
1692 2002-01-02  Chris Hanson  <cph@aarau.ai.mit.edu>
1694         * xscheme.el: Eleven years of updates on a private copy.
1696         Extensive changes to support multiple xscheme buffers:
1697         (run-scheme): Break up into new functions to facilitate starting
1698         processes in other buffers.
1699         (xscheme-start, xscheme-read-command-line): New functions.
1700         (start-scheme, select-scheme)
1701         (default-xscheme-runlight)
1702         (global-set-scheme-interaction-buffer)
1703         (local-set-scheme-interaction-buffer)
1704         (local-clear-scheme-interaction-buffer)
1705         (exit-scheme-interaction-mode)
1706         (verify-xscheme-buffer): New functions.
1707         (xscheme-process-name, xscheme-buffer-name)
1708         (xscheme-runlight): New internal vars.
1709         (default-xscheme-runlight): New const.
1710         (xscheme-start-process): Add args for the process/buffer names.
1711         (reset-scheme): Pass process/buffer names.
1712         (scheme-interaction-mode): Initialize new local vars.
1713         (reset-scheme, xscheme-send-string-2, xscheme-process-running-p)
1714         (xscheme-select-process-buffer, xscheme-process-buffer)
1715         (xscheme-send-region, xscheme-send-char, xscheme-send-interrupt)
1716         (xscheme-goto-output-point, xscheme-write-message-1): Use new
1717         var xscheme-process-name.
1718         (xscheme-start-process): Initialize xscheme-process-name and
1719         xscheme-buffer-name in the process buffer.  Pass buffer name to
1720         xscheme-modeline-initialize.
1721         (xscheme-modeline-initialize): Add argument to specify buffer name
1722         for mode-line vars.
1723         (xscheme-process-sentinel): Make sure sentinel is run in the
1724         process buffer so it sees its local vars.
1725         (xscheme-process-filter-initialize, xscheme-set-runlight): More
1726         elaborate logic to handle multiple-buffer mode lines.
1728         (xscheme-enter-input-wait): Re-enable control-G handler upon
1729         entering input wait.
1731         (scheme-interaction-mode): Add arg to preserve local vars.
1732         (xscheme-enter-interaction-mode)
1733         (xscheme-enter-debugger-mode): Preserve local vars.
1734         (xscheme-start-process): Clobber local vars.
1736         (scheme-interaction-mode-commands): Allow end user to add commands
1737         to scheme-interaction-mode keymap.
1738         (scheme-interaction-mode-commands-alist): New variable.
1740         (xscheme-send-string): Don't use insert-before-markers.
1742         Implement a per-buffer kill ring:
1743         (xscheme-insert-expression)
1744         (xscheme-rotate-yank-pointer, xscheme-yank)
1745         (xscheme-yank-pop, xscheme-yank-push): New functions.
1746         (xscheme-expressions-ring)
1747         (xscheme-expressions-ring-yank-pointer)
1748         (xscheme-expressions-ring-max): New variables.
1749         (xscheme-send-string-1): Call xscheme-insert-expression to save
1750         expression in ring.
1751         (xscheme-yank-previous-send): Now an alias for xscheme-yank.
1752         (xscheme-previous-send): Deleted variable.
1754         (xscheme-send-string-2, xscheme-send-char, xscheme-send-proceed,
1755         xscheme-send-control-g-interrupt): Use process-send-string rather
1756         than send-string.
1758         (xscheme-send-region): Insert a newline after an expression that
1759         is submitted in the interaction buffer, for consistency with
1760         recent changes to Edwin.
1762         (xscheme-delete-output): New function mimics comint-delete-output.
1763         (xscheme-last-input-end): New internal variable.
1764         (xscheme-process-filter-output): Update xscheme-last-input-end.
1766         (xscheme-send-control-g-interrupt): Make sure that
1767         xscheme-control-g-disabled-p is looked up in the right buffer.
1769         (xscheme-enable-control-g): Clear C-g message if visible.
1770         (xscheme-control-g-message-string): New internal var.
1771         (xscheme-send-control-g-interrupt): Use new var.
1773         (xscheme-send-control-g-interrupt, xscheme-send-interrupt): Delay
1774         after sending interrupt in order to work around race condition.
1776         (xscheme-send-control-g-interrupt, xscheme-send-interrupt)
1777         (xscheme-send-char): Use xscheme-send-char rather than send-string
1778         to send single char.
1780         (xscheme-process-filter, xscheme-process-filter-alist): Add
1781         support for evaluating expressions outside of the call-excursion.
1782         (xscheme-process-filter:string-action-noexcursion): New func.
1784         (xscheme-write-value): Change output string to match that used by
1785         Edwin.
1787         (xscheme-coerce-prompt): Don't write a space after a command
1788         prompt.  The PROMPT-FOR-COMMAND- procedures will take care of this
1789         for us.
1791         (reset-scheme): Delete process after killing it.
1793 2002-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
1795         * bindings.el (function-key-map): Don't bind shifted keypad
1796         numeric keys.
1798 2002-01-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1800         * enriched.el (enriched-handle-display-prop): Remove unused
1801         variables.
1802         (enriched-mode): Doc fix.
1804 2002-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
1806         * international/ucs-tables.el (ucs-8859-8-alist): Comment away
1807         Hebrew points.
1809 2002-01-01  Richard M. Stallman  <rms@gnu.org>
1811         * jka-compr.el (jka-compr-write-region): If START = nil, use whole buf.
1813 2001-12-31  Richard M. Stallman  <rms@gnu.org>
1815         * comint.el, cus-edit.el, diff-mode.el, enriched.el, font-lock.el:
1816         * generic-x.el, info.el, log-view.el, pcvs-info.el, speedbar.el:
1817         * wid-edit.el, woman.el, calendar/calendar.el, textmodes/flyspell.el:
1818         * emulation/viper-init.el, eshell/em-ls.el, progmodes/antlr-mode.el:
1819         * progmodes/cperl-mode.el, progmodes/idlwave.el:
1820         * progmodes/sh-script.el, progmodes/vhdl-mode.el:
1821         Adapt face definitions to use :weight and :slant.
1823         * ps-print.el (ps-font-lock-face-attributes): Use :weight and :slant.
1825         * cus-edit.el (custom-face-edit-fix-value): Delete `assert' call.
1827         * font-lock.el (initializing from font-lock-face-attributes):
1828         Use :weight and :slant, not :bold and :italic.
1830 2001-12-31  Per Abrahamsen  <abraham@dina.kvl.dk>
1832         * cus-edit.el (custom-face-edit-fix-value): New function.
1833         (custom-face-edit): Use it, to convert :italic and :bold to new forms.
1835 2001-12-30  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1837         * progmodes/octave-mod.el (octave-abbrev-table):
1838         * progmodes/idlwave.el (idlwave-mode-abbrev-table):
1839         * progmodes/fortran.el (fortran-mode-abbrev-table):
1840         * progmodes/f90.el (f90-mode-abbrev-table):
1841         * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init):
1842         * progmodes/sql.el (sql-mode-abbrev-table): Mark all the
1843         predefined abbrevs as "system" abbrevs.
1845 2001-12-30  Richard M. Stallman  <rms@gnu.org>
1847         * info.el (Info-fontify-node): For a **** underline line, put the
1848         invisible and intangible props on the following newline, but not
1849         on the previous newline or the last char of the previous line.
1851         * faces.el (face-set-after-frame-default): Don't change `default' face.
1853         * faces.el (minibuffer-prompt): Adopt some default colors.
1855         * replace.el (query-replace-read-args): Immediate error if read-only.
1857         * textmodes/makeinfo.el (makeinfo-compilation-sentinel):
1858         Display the output buffer in a more intelligent way.
1860 2001-12-30  Eli Zaretskii  <eliz@is.elta.co.il>
1862         * ls-lisp.el (insert-directory): Modify the "total" line wording,
1863         in accordance with files.el's insert-directory.
1865 2001-12-29  Richard M. Stallman  <rms@gnu.org>
1867         * files.el (basic-save-buffer): If a before-write hook displays
1868         an echo area message, pause before calling basic-save-buffer-1.
1870 2001-12-29  Markus Rost  <rost@math.ohio-state.edu>
1872         * textmodes/reftex-global.el (reftex-query-replace-document)
1873         (reftex-change-label): Doc fix.
1875         * dired-aux.el (dired-do-query-replace-regexp): Doc fix.
1877         * progmodes/etags.el (tags-query-replace): Doc fix.
1879 2001-12-29  Richard M. Stallman  <rms@gnu.org>
1881         * progmodes/compile.el (compile-internal): Fix previous change.
1883 2001-12-28  Richard M. Stallman  <rms@gnu.org>
1885         * mouse.el (mouse-drag-mode-line-1): When dragging a mode line upward,
1886         shrink the windows above as necessary to get space.
1887         (mouse-drag-move-window-bottom, mouse-drag-window-above): New fns.
1889         * net/ange-ftp.el (ange-ftp-allow-child-lookup): Always return nil.
1890         This fixes a bug that treated all files as directories.
1891         (ange-ftp-insert-directory): Explicitly follow symlinks.
1893         * international/iso-transl.el (iso-transl-char-map) Eliminate the
1894         alias symbols--put the translated sequences here directly.
1896         * progmodes/cc-mode.el (c-mode-abbrev-table)
1897         (c++-mode-abbrev-table, objc-mode-abbrev-table)
1898         (java-mode-abbrev-table, pike-mode-abbrev-table):
1899         Mark all the predefined abbrevs as "system" abbrevs.
1901         * mail/sendmail.el (mail-envelope-from): Fix custom type.
1902         (sendmail-send-it): Check mail-specify-envelope-from
1903         and mail-envelope-from in the mail buffer at start.
1905 2001-12-28  Simon Josefsson  <jas@extundo.com>
1907         * mail/sendmail.el (mail-envelope-from): Fix :type.
1908         (sendmail-send-it): Copy `mail-envelope-from' from calling buffer.
1910 2001-12-28  Richard M. Stallman  <rms@gnu.org>
1912         * net/ldap.el (ldap-search-internal): Handle <file://...> in results.
1914         * simple.el (line-move-invisible): New subroutine.
1915         (line-move-to-column): New subroutine--smarter about advancing over
1916         invisible parts of a line, or lines, but only as long as hpos grows.
1917         (line-move-finish): New subroutine: repeatedly processes desired
1918         column, intangibility, and fields.
1919         (line-move): Use those subroutines.
1920         When moving lines downward, skip invisible text first rather than last.
1922 2001-12-27  Richard M. Stallman  <rms@gnu.org>
1924         * international/mule-diag.el (describe-char-after):
1925         Describe the text properties of the char after point.
1927         * help.el (describe-key): Doc fix.
1929 2001-12-26  Markus Rost  <rost@math.ohio-state.edu>
1931         * find-dired.el (find-dired-sentinel): Precede exit message by
1932         two spaces, to match the regexp in dired-between-files.
1934 2001-12-28  Miles Bader  <miles@gnu.org>
1936         * wid-edit.el (widget-toggle-value-create): Don't eval actual
1937         images (which are lists too).
1939 2001-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
1941         * language/european.el: Fix the doc string of "Latin-5" language
1942         environment.
1944 2001-12-26  Richard M. Stallman  <rms@gnu.org>
1946         * textmodes/flyspell.el (flyspell-mode-map): New keymap,
1947         defined as before 2001-11-09.
1948         (add-minor-mode call): Specify the keymap.
1950         * progmodes/compile.el (compile-internal):
1951         Set TERM variable in process-environment.
1953 2001-12-25  Richard M. Stallman  <rms@gnu.org>
1955         * help-mode.el (help-xref-on-pp): Catch and ignore errors in scanning
1956         the buffer.
1958         * startup.el (command-line): Convert command line args
1959         to Emacs internal representation using locale-coding-system.
1961 2001-12-25  Eli Zaretskii  <eliz@is.elta.co.il>
1963         * international/fontset.el: Don't require ind-util when compiling.
1965 2001-12-25  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1967         * emulation/tpu-edt.el (tpu-reset-screen-size): Use
1968         set-frame-height and set-frame-width instead of set-screen-height
1969         and set-screen-width.
1971         * vt-control.el (vt-wide, vt-narrow): Use set-frame-width instead
1972         of obsolete set-screen-width.
1974         * locate.el (locate): Remove dot at the end of error argument.
1976         * emerge.el (emerge-show-file-name): Use frame-height instead of
1977         obsolete screen-height.
1979         * mail/mh-utils.el (mh-show-msg): Likewise.
1980         (mh-handle-process-error): Use frame-width instead of obsolete
1981         screen-width.
1983 2001-12-25  Richard M. Stallman  <rms@gnu.org>
1985         * window.el (balance-windows): Use new PRESERVE-BEFORE arg
1986         to enlarge-window.  Use save-selected-window.  Don't try
1987         to resize windows that end at the bottom "level".
1988         Retry changing the sizes until the windows get the desired sizes.
1989         Discount the minibuffer when computing total height available.
1991         * emacs-lisp/debug.el (debugger-mode-map): Bind C-m, not `RET'.
1992         (debugger-make-xrefs): Only make a button for the first symbol
1993         on any line.
1995 2001-12-24  Eli Zaretskii  <eliz@is.elta.co.il>
1997         * term/internal.el (dos-cpNNN-setup, dos-codepage-setup):
1998         Call IT-setup-unicode-display here instead of adding it to
1999         dos-codepage-setup-hook, so that Unicode display tables are set
2000         before dos-codepage-setup-hook runs.
2002 2001-12-24  Richard M. Stallman  <rms@gnu.org>
2004         * net/net-utils.el (ftp-mode-abbrev-table): Don't define it.
2005         (nslookup-mode-abbrev-table): Don't define it.
2006         (smbclient-mode-abbrev-table): Don't define it.
2007         (ftp-mode): Don't use ftp-mode-abbrev-table; don't enable Abbrev mode.
2008         (nslookup-mode, smbclient-mode): Likewise.
2009         (network-connection-service-abbrev-alist): Variable deleted.
2010         (network-connection-mode-setup): Don't set up abbrev table.
2012         * faces.el (minibuffer-prompt): New face.
2013         (minibuffer-prompt-properties): Add `face' property.
2015         * replace.el (occur-mode-display-occurrence): New function.
2016         (occur-mode-map): Bind C-o to it.
2018 2001-12-24  Michael Kifer  <kifer@cs.sunysb.edu>
2020         * viper-cmd.el (viper-change-state): Got rid of make-local-hook.
2021         (viper-special-read-and-insert-char): Make C-m work right in the r
2022         comand.
2023         (viper-buffer-search-enable): Fixed format string.
2025         * viper-ex.el (ex-token-alist): Use ex-set-visited-file-name
2026         instead of viper-info-on-file.
2027         (ex-set-visited-file-name): New function.
2029         * viper.el (viper-emacs-state-mode-list): Added mail-mode.
2031         * ediff-mult.el (ediff-meta-mark-equal-files): Added optional
2032         action argument.
2034         * ediff-init.el: Fixed some doc strings.
2036         * ediff-util.el (ediff-after-quit-hook-internal): New variable.
2037         Got rid of make-local-hook.
2039         * ediff-wind.el (ediff-setup-control-frame): Got rid of
2040         make-local-hook.
2042 2001-12-23  Richard M. Stallman  <rms@gnu.org>
2044         * term/x-win.el (x-handle-geometry): Put height and width
2045         on default-frame-alist, left and top on initial-frame-alist.
2046         * term/w32-win.el (x-handle-geometry): Likewise.
2048         * sort.el (sort-reorder-buffer): Copy all to a temp buffer first.
2050         * play/yow.el (yow): Use an arg to distinguish interactive calls,
2051         not interactive-p.
2053 2001-12-22  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2055         * emacs-lisp/elint.el (elint-unknown-builtin-args): Remove
2056         mocklisp entries.
2058         * subr.el (insert-string): Moved from mocklisp.c, reimplemented in
2059         Lisp.  Obsoleted.
2061         * emulation/mlconvert.el: File removed.
2063         * emulation/mlsupport.el: Moved to obsolete.
2065         * obsolete/mlsupport.el: Moved there from lisp/emulation.
2067         * emacs-lisp/find-gc.el (source-files): Remove mocklisp.c.
2069         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove
2070         mocklisp case.
2072         * help-fns.el (describe-function-1): Remove mocklisp function
2073         case.
2075 2001-12-22  Miles Bader  <miles@gnu.org>
2077         * textmodes/refill.el (refill-mode): Don't barf when redundantly
2078         turning refill-mode off.
2080 2001-12-22  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2082         * time.el (display-time-load-average-threshold): New variable.
2083         (display-time-update): Use it.
2085         These changes allow cycling through past 1, 5 and 15 minutes
2086         load-average displayed in the mode-line.
2088         * time.el (display-time-default-load-average): New customizable option.
2089         (display-time-load-average): New variable.
2090         (display-time-cycle-load-average): New function.
2091         (display-time-update): Use them.
2093 2001-12-21  Richard M. Stallman  <rms@gnu.org>
2095         * apropos.el (apropos-print): SPACING is now nil or a separator string.
2096         (apropos-documentation, apropos-value): Pass a suitable string.
2098 2001-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
2100         * dired.el (dired-free-space-program, dired-free-space-args):
2101         Aliases for back-compatibility.
2103         * info.el (Info-select-node): If Info-use-header-line is nil, set
2104         header-line-format to nil.
2105         (Info-fontify-node): Don't put a keymap text property on the
2106         heading if we are not going to display the header line.  Remove
2107         any such text properties left over from past visits to this node.
2109         * ls-lisp.el (insert-directory): Insert the amount of free disk
2110         space, like files.el's insert-directory does.
2112         * files.el (directory-free-space-program): Mention
2113         file-system-info in the doc string.
2114         (get-free-disk-space): New function; code moved from
2115         insert-directory.
2116         (insert-directory): Call get-free-disk-space to get the amount of
2117         free space.
2119 2001-12-21  Richard M. Stallman  <rms@gnu.org>
2121         * help.el (view-order-manuals, view-emacs-news, describe-copying)
2122         (describe-distribution, describe-project): Use view-file.
2124         * emacs-lisp/cl-indent.el (define-modify-macro): Better indent spec.
2126         * net/ange-ftp.el (ange-ftp-file-modtime): Use save-match-data.
2128         * emacs-lisp/easy-mmode.el (define-minor-mode):
2129         Make no arg by default in an interactive call,
2130         so that repeating the command toggles again.
2132         * emacs-lisp/lisp-mode.el (eval-defun-1): Cope with atoms as args.
2134 2001-12-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2136         * antlr-mode.el: More sophisticated indentation of cpp directive.
2137         (antlr-indent-at-bol-alist): New user option.
2138         (antlr-indent-line): Use it.
2139         (antlr-indent-style): New user option.
2140         (antlr-mode): Use it.
2141         (antlr-indent-item-regexp): Customize.
2143         * antlr-mode.el: Syntax highlighting changes.
2144         (antlr-font-lock-literal-regexp): New user option.
2145         (antlr-font-lock-syntax-face): New face used for :, |, ....
2146         (antlr-font-lock-default-face): New face.
2147         (antlr-font-lock-additional-keywords): Use them.
2149         * antlr-mode.el: New command to insert options -- variables.
2150         (antlr-mode-map): New binding [C-c C-o].
2151         (antlr-mode-menu): New submenus.
2152         (antlr-options-use-submenus): New user option.
2153         (antlr-tool-version): New user option.
2154         (antlr-options-auto-colon): New user option.
2155         (antlr-options-style): New user option.
2156         (antlr-options-push-mark): New user option.
2157         (antlr-options-assign-string): New user option.
2158         (antlr-options-headings): New variable.
2160         * antlr-mode.el: New command to insert options -- specific.
2161         (antlr-options-alists): New variable.
2162         (antlr-read-value): New function.
2163         (antlr-read-boolean): New function.
2164         (antlr-language-option-extra): New function.
2165         (antlr-language-limit-n-regexp): Change default to higher LIMIT.
2166         (antlr-c++-mode-extra): New function.
2167         (antlr-grammar-tokens): New function.
2168         (antlr-imenu-create-index-function): New optional argument.
2170         * antlr-mode.el: New command to insert options -- functions.
2171         (antlr-insert-option): New command.
2172         (antlr-insert-option-interactive): New function.
2173         (antlr-options-menu-filter): New function.
2174         (antlr-option-kind): New function.
2175         (antlr-scan-lists): New alias.
2176         (antlr-scan-lists-internal): New function.
2177         (antlr-skip-file-prelude): Hack for special SKIP-COMMENT.
2178         (antlr-option-level): New function.
2179         (antlr-syntactic-grammar-depth): New function.
2180         (antlr-option-location): New function.
2181         (antlr-insert-option-do): New function.
2182         (antlr-option-spec): New function.
2183         (antlr-version-string): New function.
2184         (antlr-insert-option-existing): New function.
2185         (antlr-insert-option-space): New function.
2186         (antlr-insert-option-area): New function.
2188         * antlr-mode.el: New electric keys ":;|&(){}", TAB works better
2189         with narrowing.  Menu change.  Miscellaneous.
2190         (antlr-mode-menu): Include "Indent Region" and "Customize Antlr".
2191         (antlr-mode-map): New bindings for characters in ":;|&(){}".
2192         (antlr-electric-character): New command.
2193         (antlr-class-header-regexp): New variable.
2194         (antlr-font-lock-additional-keywords): Use it.
2195         (antlr-imenu-create-index-function): Use it.
2196         (antlr-file-dependencies): Use it.
2197         (antlr-indent-line): Also works with restrictions.
2198         (antlr-indent-command): Interactive spec - changes the buffer.
2199         (antlr-language-for-option): Deletia.
2200         (antlr-language-option): New function, defined instead.
2201         (antlr-mode): Use it.
2202 2001-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
2204         * jka-compr.el (jka-compr-partial-uncompress): Use null-device
2205         instead of a literal /dev/null.
2207         * Makefile.in (distclean): Remove Makefile in the build
2208         directory, not in the source directory.
2210 2001-12-21  Simon Josefsson  <jas@extundo.com>.
2212         * mail/smtpmail.el (smtpmail-send-queued-mail): Use
2213         with-temp-buffer instead of find-file-noselect, and bind
2214         coding-system-for-read to no-conversion when reading the queued
2215         messages.  (Simon's code modified slightly by Eli Zaretskii.)
2217 2001-12-20  Werner Lemberg  <wl@gnu.org>
2219         * international/mule-diag.el (describe-coding-system,
2220         print-coding-system-briefly): Make printed output have a similar
2221         format as describe-character-set.
2223 2001-12-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2225         * play/blackbox.el (bb-member): Remove, use member instead.
2226         (bb-delete): Remove, use delete instead.
2227         Update copyright notice.  Defvar for bb-board, bb-x, bb-y,
2228         bb-score, bb-detour-count and bb-balls-placed.
2229         Propertize results of rays.
2231 2001-12-19  Karl Fogel  <kfogel@red-bean.com>
2233         * isearch.el (isearch-forward, isearch-edit-string): Make doc
2234         strings mention keybinding for `isearch-yank-word-or-char',
2235         rather than `isearch-yank-word', since the former is bound now
2236         and the latter is not.
2237         (isearch-yank-word-or-char): Fix formatting.
2239 2001-12-19  Werner Lemberg  <wl@gnu.org>
2241         * language/czech.el, language/european.el, language/slovak.el: More
2242         fixes for language info doc strings.
2244 2001-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
2246         * loadup.el: Add "language" to the load-path.
2248 2001-12-19  Richard M. Stallman  <rms@gnu.org>
2250         * international/mule-cmds.el (describe-language-environment):
2251         Fix calls to help-xref-button.
2253 2001-12-19  Miles Bader  <miles@gnu.org>
2255         * international/fontset.el: Require `ind-util' when compiling.
2257 2001-12-18  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2259         * language/ethio-util.el (ethio-modify-vowel): Use char-to-string
2260         instead of decompose-composite-char.
2262 2001-12-18  Richard M. Stallman  <rms@gnu.org>
2264         * simple.el (eval-expression-print-level)
2265         (eval-expression-print-length): Doc fixes.
2267         * international/mule-diag.el (describe-character-set):
2268         Fix the arg to help-xref-button.
2270         * files.el (directory-free-space-program): New variable.
2271         (directory-free-space-args): New variable.
2272         (insert-directory): Use those two variables for getting free space.
2273         Use file-system-info instead, if that is defined.
2275         * dired.el (dired-free-space-program): Variable deleted.
2276         (dired-free-space-args): Variable deleted.
2277         (dired-insert-directory): Don't try to determine free space.
2279         * files.el (font-lock-defaults): Add risky-local-variables prop.
2280         (hack-one-local-variable): Treat various font-lock variables as risky.
2282 2001-12-18  Werner Lemberg  <wl@gnu.org>
2284         * language/chinese.el, language/cyrillic.el:
2285         * language/czech.el, language/european.el, language/greek.el:
2286         * language/hebrew.el, language/indian.el, language/japanese.el:
2287         * language/korean.el, language/lao.el, language/slovak.el:
2288         * language/thai.el, language/tibetan.el, language/vietnamese.el:
2289         Improve documentation strings of coding systems and language infos.
2291 2001-12-18  Werner LEMBERG  <wl@gnu.org>
2293         Add support for EUC-TW decoding/encoding.
2295         * language/china-util.el (big5-to-flat-code, flat-code-to-big5,
2296         euc-to-flat-code, flat-code-to-euc, expand-euc-big5-alist):
2297         New auxiliary functions to build `big5-to-cns'.
2298         (big5-to-cns): New translation alist.
2300         * language/chinese.el: Added new coding system `euc-tw' and its
2301         alias `euc-taiwan'.
2302         Updated language `Chinese-CNS' to include euc-tw encoding also.
2303         (ccl-decode-euc-tw, ccl-encode-euc-tw): New functions for handling
2304         euc-tw.
2306 2001-12-18  Dave Love  <fx@gnu.org>
2308         * loadup.el: Add language/utf-8-lang, language/georgian.
2310         * image-file.el (image-file-name-extensions): Add pnm.  Doc fix.
2311         (image-file-name-regexps): Doc fix.
2313         * server.el (server-unload-hook): New function.
2315         * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): Group the leader.
2316         (lm-crack-copyright): Cope with multi-line copyright `lines'.
2318         * simple.el (newline): Doc fix.
2319         (eval-expression-print-level, eval-expression-print-length): Doc
2320         fix.  Amend :type.
2321         (next-line, previous-line): Make arg optional.
2322         (newline): Doc fix.
2324         * Makefile.in (DONTCOMPILE): Add various language files.
2326         * international/quail.el (quail-input-string-to-events): Don't use
2327         string-to-list.
2329         * progmodes/f90.el (f90-break-line): Avoid infinite recursion
2330         calling `newline'.
2332 2001-12-17  Richard M. Stallman  <rms@gnu.org>
2334         * comint.el (comint-dynamic-list-input-ring-select): New function.
2335         Switches back to the old window configuration.
2336         (comint-dynamic-list-input-ring): Bind RET to that function.
2337         (comint-dynamic-list-input-ring-window-conf): New variable.
2339 2001-12-17  Werner Lemberg  <wl@gnu.org>
2341         * international/mule-conf.el: Improve documentation strings of
2342         character sets.
2344 2001-12-16  Richard M. Stallman  <rms@gnu.org>
2346         * dired.el (dired-copy-filename-as-kill): Moved from dired-x.el.
2347         (dired-mode-map): Bind w to dired-copy-filename-as-kill.
2349         * dired-x.el (dired-copy-filename-as-kill): Moved to dired.el.
2351         * autoinsert.el (auto-insert-alist): Redo finding C and C++ headers.
2352         Add a DESCRIPTION for the makefile item.
2354         * find-file.el (ff-other-file-name): New function.
2356 2001-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
2358         * international/quail.el (quail-input-string-to-events): Fix last
2359         change.
2361 2001-12-16  Richard M. Stallman  <rms@gnu.org>
2363         * isearch.el (isearch-edit-string): When we set isearch-string
2364         to the default, also set isearch-message.
2366         * subr.el (temp-buffer-show-hook, temp-buffer-setup-hook): Add defvars.
2368         * startup.el (command-line-1): Display startup screen
2369         even if there are command line args.
2370         Add a note about how to go to editing your files.
2371         (fancy-splash-head): Add a note about how to go to your files.
2372         (fancy-splash-outer-buffer): New variable.
2373         (fancy-splash-screens): Bind variable fancy-splash-outer-buffer.
2375         * subr.el (with-temp-message): At the end, always discard
2376         the temp message, even by clearing the echo area.
2378         * progmodes/sh-script.el (sh-mode): Run sh-mode-hook.
2380 2001-12-16  Stefan Monnier  <monnier@cs.yale.edu>
2382         * log-view.el (log-view-message-re, log-view-current-tag):
2383         Recognize Subversion's log output format.
2385         * international/fontset.el: Build the list L at compile time.
2387         * language/ind-util.el (mapthread): Make a closure.
2389 2001-12-15  Richard M. Stallman  <rms@gnu.org>
2391         * isearch.el (isearch-start-hscroll): New variable.
2392         (isearch-mode): Set isearch-start-hscroll.
2393         (isearch-update): Restore original hscrolling if possible.
2395         * isearch.el (isearch-edit-string):
2396         Treat isearch-yank-word-or-char specially, like isearch-yank-word.
2398         * emacs-lisp/debug.el (debugger-previous-backtrace): New variable.
2399         (debugger-make-xrefs): Optimize by (1) using skip-syntax-forward
2400         rather than regexp search and (2) copying text properties
2401         already set up on text unchanged from the previous backtrace.
2403         * case-table.el (set-case-syntax-pair):
2404         Detect invalid calls and signal an error.
2406 2001-12-15  Richard M. Stallman  <rms@gnu.org>
2408         * language/ind-util.el (range): Function deleted.
2409         (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'.
2410         All calls changed.
2412         * language/devan-util.el (devanagari-range): Renamed from `range'.
2413         All calls changed.
2414         (devanagari-regexp-of-hashtbl-keys):
2415         Renamed from `regexp-of-hashtbl-keys'.  All calls changed.
2417 2001-12-15  Dave Love  <fx@gnu.org>
2419         * language/ind-util.el: Don't require cl.
2420         (indian-glyph-char, indian-glyph-max-char)
2421         (indian-char-glyph): Moved from indian.el
2422         (indian--puthash-char, mapthread): Don't quote lambda.
2423         (indian--map): New function.
2424         (indian--puthash-v, indian--puthash-c, indian--puthash-m)
2425         (indian--puthash-cv): Use it.
2427         * language/indian.el (indian-glyph-char, indian-glyph-max-char)
2428         (indian-char-glyph): Moved to ind-util.el
2430         * language/devan-util.el (devanagari-post-read-conversion):
2431         New function.
2433         * language/georgian.el: New file.
2435         * international/mule-cmds.el (locale-language-names): Add various
2436         entries.  Remove utf-8 special case.
2437         (locale-charset-language-names, locale-preferred-coding-systems):
2438         Add utf-8 case.
2439         (set-language-environment): Process required-features earlier.
2441         * international/quail.el (quail-keyboard-layout-alist):
2442         Add pc105-uk.
2443         (quail-keyboard-layout-type): Fix :type.
2444         (quail-choose-completion-string): Simplify.
2445         (quail-update-leim-list-file): Don't get fooled by commented-out code.
2446         (quail-input-string-to-events): Run events through
2447         translation-table-for-input.
2449         * international/mule-conf.el (translation-table-for-input):
2450         New variable.
2451         (latin-iso8859-14): Amend description.
2452         (file-coding-system-alist): Add entry for utf-8.
2454         * language/utf-8-lang.el: New file.
2456         * international/code-pages.el: New file.
2458         * language/hebrew.el ("Windows-1255"): New language.
2460         * language/european.el ("Welsh", "Latin-7", "Lithuanian")
2461         ("Latvian"): New languages.
2463 2001-12-14  Stefan Monnier  <monnier@cs.yale.edu>
2465         * xml.el: Use setq rather than (set 'foo bar).
2466         Use push+nreverse rather than append.
2467         (xml-node-name, xml-node-attributes, xml-node-children):
2468         Use defsubst rather than macros.
2469         (xml-parse-region): Handle a nil return value from xml-parse-tag.
2470         (xml-parse-tag): Don't skip white space.  Return nil for a comment.
2471         Concat the two strings surrounding a comment into a single string.
2473         * newcomment.el (comment-indent): Jump to the middle of empty comments.
2475 2001-12-14  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2477         * select.el (xselect-convert-to-class, xselect-convert-to-name):
2478         Document.
2480 2001-12-14  Andre Spiegel  <spiegel@gnu.org>
2482         * vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version):
2483         Return nil if FILE is not registered.
2484         (vc-check-master-templates, vc-default-make-version-backups-p):
2485         Doc fix.
2487 2001-12-13  David Ponce  <david@dponce.com>
2489         * ruler-mode.el (ruler-mode-extra-left-cols): Remove.
2490         (ruler-mode-left-fringe-cols): New macro.
2491         (ruler-mode-right-fringe-cols): New macro.
2492         (ruler-mode-left-scroll-bar-cols): New macro.
2493         (ruler-mode-right-scroll-bar-cols): New macro.
2494         (ruler-mode-ruler): Use above new macros.
2496 2001-12-13  Richard M. Stallman  <rms@gnu.org>
2498         * files.el (set-auto-mode): Fix previous change.
2500 2001-12-13  Stefan Monnier  <monnier@cs.yale.edu>
2502         * emacs-lisp/easymenu.el (easy-menu-intern): New fun.
2503         (easy-menu-do-define, easy-menu-convert-item-1)
2504         (easy-menu-define-key-intern, easy-menu-get-map): Use it.
2505         (easy-menu-return-item): Only return nil if there is no binding.
2507 2001-12-13  Rajesh Vaidheeswarran  <rv@gnu.org>
2509         * whitespace.el (whitespace-version): 3.2
2510         * whitespace.el (whitespace-force-mode-line-update): Replace with
2511         `whitespace-mode-line-update', which is an alias to the correct
2512         function in various emacsen.
2513         * whitespace.el (whitespace-{un,}highlight-the-space):
2514         Add colorized highlighting of the bogus whitespaces in a buffer/file,
2515         using the `whitespace-highlight-face' if
2516         `whitespace-display-spaces-in-color' is set.
2518 2001-12-13  Eli Zaretskii  <eliz@is.elta.co.il>
2520         * international/mule.el (set-auto-coding): Don't search for
2521         "unibyte:" or "coding:" if set-auto-mode-1 returns nil.
2523 2001-12-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2525         * mail/mailabbrev.el (mail-abbrevs-setup): Do not use make-local-hook.
2527         * mail/rmail.el (rmail-fontify-buffer-function): Likewise.
2529         * mail/rmailsum.el (rmail-summary-mode): Likewise.
2531 2001-12-13  Richard M. Stallman  <rms@gnu.org>
2533         * simple.el (undo): Always set this-command to `undo',
2534         so that the next undo after an error will not begin redoing.
2536         * simple.el (shell-command): Doc fix.
2537         (shell-command-on-region): If there is output an an error,
2538         add "...Shell command failed" to the output.
2540 2001-12-13  David Ponce  <david@dponce.com>
2542         * ruler-mode.el (ruler-mode-left-fringe-cols): Variable removed.
2543         (ruler-mode-left-fringe-cols): Function replaced by more efficient
2544         implementation `ruler-mode-extra-left-cols'.
2545         (ruler-mode-ruler): Use above new function.  Take into account
2546         that the fringe areas can now be resized.
2548 2001-12-12  Richard M. Stallman  <rms@gnu.org>
2550         * international/characters.el (Unicode): Comment out
2551         the specifications for kelvin and angstrom signs.
2553         * international/mule.el (make-translation-table-from-vector):
2554         Allow null elements in VEC.
2556         * international/ucs-tables.el (unify-8859-on-encoding-mode)
2557         (unify-8859-on-decoding-mode): Swap the code in their bodies.
2558         Add :version.
2560 2001-12-11  Richard M. Stallman  <rms@gnu.org>
2562         * derived.el (derived-mode-p): Function moved to subr.el.
2564         * subr.el (derived-mode-p): Moved here from derived.el.
2566         * international/mule.el (set-auto-coding): Use set-auto-mode-1.
2568         * files.el (set-auto-mode-1): New subroutine, broken out of
2569         set-auto-mode.
2570         (set-auto-mode, hack-local-variables-prop-line): Use that.
2572 2001-12-11  Dave Love  <fx@gnu.org>
2574         * language/thai-util.el, language/thai.el: Add Unicode equivalents.
2576         * language/european.el: Remove autoload cookies.  Fix registration
2577         of diacritic composition function.
2579 2001-12-11  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2581         * calendar/todo-mode.el: Require time-stamp.
2583         * net/zone-mode.el (zone-mode): Don't use make-local-hook.
2585 2001-12-11  Richard M. Stallman  <rms@gnu.org>
2587         * emacs-lisp/authors.el (authors-aliases): Delete "Richard Stallmao".
2589         * textmodes/ispell.el (ispell-buffer-local-parsing):
2590         Match xml like sgml.
2592         * emacs-lisp/advice.el (ad-compile-function):
2593         Byte compile the function under another (uninterned) name.
2595         * gud.el (gdb): Define and bind gud-jump.
2597         * font-lock.el (font-lock-mode):
2598         Put our function at the end of after-change-functions.
2600         * ediff-diff.el (ediff-cmp-options): Doc fix.
2602         * comint.el (comint-password-prompt-regexp): Match "UNIX Password".
2604 2001-12-10  Richard M. Stallman  <rms@gnu.org>
2606         * isearch.el (isearch-yank-word-or-char): New function.
2607         (isearch-mode-map): Bind C-w to that.
2609         * menu-bar.el (menu-bar-mode): Make arg optional.
2611         * simple.el (line-move): Cope if next-single-property-change
2612         or previous-single-property-change returns nil.
2614         * emacs-lisp/lisp-mnt.el (lm-verify): New arg NON-FSF-OK.
2615         Don't use interactive-p; instead, pass the proper args
2616         in (interactive...).  Clean up most of the trouble-report strings.
2618 2001-12-10  Eli Zaretskii  <eliz@is.elta.co.il>
2620         * mail/smtpmail.el (smtpmail-send-queued-mail): Insert the
2621         enqueued messages literally.
2623 2001-12-10  Noah Friedman  <friedman@splode.com>
2625         * battery.el (battery-insert-file-contents): Obsolete function
2626         removed.
2627         (battery-read-function): Obsolete function removed.
2628         (battery-linux-proc-apm): Use insert-file-contents.
2630 2001-12-07  Stephen Eglen  <stephen@gnu.org>
2632         * iswitchb.el (iswitchb-visit-buffer):
2633         Use `select-frame-set-input-focus'--needed when window manager
2634         uses "click to focus" policy.
2636 2001-12-09  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2638         * COPYING: Moved back.
2640 2001-12-07  Eli Zaretskii  <eliz@is.elta.co.il>
2642         * term/internal.el (IT-character-translations): Add entries for
2643         more points.
2645         * international/characters.el: Resurrect the Hebrew category
2646         settings for all Hebrew characters removed by the last change.
2647         Add code for setting the Hebrew category of the Unicode Hebrew
2648         characters.  Set syntax entries for Hebrew punctuation characters.
2650         * international/ucs-tables.el (ucs-8859-8-alist): Add Hebrew
2651         points and directional formatting control characters.
2653 2001-12-07  Dave Love  <fx@gnu.org>
2655         * language/lao-util.el: Add Unicode equivalents for rules.
2656         (lao-post-read-conversion): New function.
2658         * language/lao.el: Add Unicode equivalents.
2659         (lao): Add post-read conversion.
2661         * international/latin1-disp.el: Fix some 8-bit-graphic characters.
2662         Use iso2022 encoding.
2663         (latin1-char-displayable-p): Doc fix.
2664         (latin1-display-ucs-per-lynx): New option.
2665         (latin1-display-ucs-per-lynx): New command.
2666         (latin1-display-reset): Special-case arabic.
2667         (ucs-tables): Require.
2668         (latin1-display-sets, latin1-display-setup): Add arabic.
2669         (latin1-display) <variable>: Use function latin1-display.
2670         (latin1-display) <function>: Add mule-unicode stuff.
2671         (latin1-display-check-font): Don't lose if `info' is nil.
2673         * international/iso-transl.el: Insert Latin-1 characters, not
2674         unibyte codes.
2676         * language/european.el (diacritic-composition-pattern): New constant.
2677         (diacritic-compose-region, diacritic-compose-string)
2678         (diacritic-compose-buffer, diacritic-post-read-conversion)
2679         (diacritic-composition-function): New functions.
2681         * international/utf-8.el (ucs-mule-to-mule-unicode):
2682         New translation table.
2683         (ccl-encode-mule-utf-8): Use it.
2684         (utf-8-untranslated-to-ucs, utf-8-help-echo, utf-8-compose)
2685         (utf-8-post-read-conversion, utf-8-pre-write-conversion): New function.
2686         (utf-8-subst-table): New variable.
2687         (utf-8-compose-scripts): New option.
2688         (mule-utf-8): Update safe-charsets, pre-write and post-read conversion.
2690         * international/ucs-tables.el, international/utf-8-subst.el:
2691         New files.
2693         * international/characters.el: Don't set word syntax (the default)
2694         explicitly.  Add a diacritic category.  Add info for Unicode
2695         equivalents of characters in various Mule charsets and for extra
2696         Unicode characters.  Don't define specific categories for
2697         Indian/Devanagari, since they aren't used.
2699 2001-12-06  Richard M. Stallman  <rms@gnu.org>
2701         * textmodes/fill.el (set-justification): Rename arg VALUE to STYLE.
2702         (set-justification-left, set-justification-right): Doc fix.
2704         * progmodes/f90.el (f90-break-line): Use (newline 1) to insert newline.
2705         (bug-f90-mode): Variable deleted.
2707 2001-12-06  Stefan Monnier  <monnier@cs.yale.edu>
2709         * indent.el (indent-line-function): Default is indent-relative again.
2711 2001-12-07  Miles Bader  <miles@gnu.org>
2713         * progmodes/compile.el (compilation-error-regexp-alist):
2714         Added regexps for RXP.
2716 2001-12-05  Eli Zaretskii  <eliz@is.elta.co.il>
2718         * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression):
2719         Add shift-assignment operators to those highlighted, and highlight
2720         the whole operator rather than just the "=".
2722 2001-12-04  Juanma Barranquero  <lektu@terra.es>
2724         * files.el (save-abbrevs, save-some-buffers): Don't ask the user
2725         before saving abbrevs if `save-abbrevs' has the value `silently'.
2727 2001-12-04  Andreas Schwab  <schwab@suse.de>
2729         * xt-mouse.el (turn-off-xterm-mouse-tracking): Doc fix.
2731 2001-12-04  Colin Walters  <walters@debian.org>
2733         * emacs-lisp/autoload.el (make-autoload): Also generate autoloads
2734         for `defmacro*' forms.
2736         * emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for
2737         `defmacro*'.
2739 2001-12-03  Stefan Monnier  <monnier@cs.yale.edu>
2741         * progmodes/antlr-mode.el (antlr-c-common-init): Undo last change.
2743 2001-12-02  Richard M. Stallman  <rms@gnu.org>
2745         * files.el (insert-directory): If the df output does not look right,
2746         don't try to use it.  Other cleanups in overall code structure.
2748 2001-12-02  Stefan Monnier  <monnier@cs.yale.edu>
2750         * textmodes/outline.el (outline-mode-prefix-map):
2751         Add bindings for outline-promote and outline-demote.
2752         (outline-minor-mode-menu-bar-map): New var.
2753         (outline-minor-mode): Use it.
2754         (outline-heading-alist): New var (renamed from outline-level-heading).
2755         (outline-level): Use it.
2756         (outline-insert-heading, outline-promote, outline-demote):
2757         Update to use outline-heading-alist.
2759         * disp-table.el (standard-display-european):
2760         Simplify since the function is not interactive any more.
2761         Don't set the existing buffers to unibyte.
2763         * pcvs-util.el (cvs-file-to-string): Move condition-case outside.
2765         * pcvs.el (cvs-reread-cvsrc): Don't use cvs-file-to-string.
2767         * reveal.el (reveal-mode): Fix reveal-mode's lighter.
2769         * shell.el (shell): Use shell-file-name.
2770         Pop to buffer before calling comint to set COLUMNS properly.
2772         * emacs-lisp/cl.el (svref): New alias.
2774         * progmodes/antlr-mode.el (antlr-c-common-init):
2775         Don't inhibit adaptive-fill-mode any more.
2777         * progmodes/delphi.el (delphi-mode): Don't use make-local-hook.
2779         * progmodes/etags.el (tags-with-face): Use make-symbol.
2780         (tags-search, tags-query-replace): Use backquotes.
2782         * textmodes/picture.el (picture-mode-map): Don't use defconst
2783         for a variable.
2785 2001-12-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2787         * textmodes/reftex-index.el (reftex-index-mode):
2788         Remove make-local-hook.
2790         * textmodes/reftex-toc.el (reftex-toc-mode): Likewise.
2792 2001-12-02  Kim F. Storm  <storm@cua.dk>
2794         * isearch.el (isearch-resume-enabled): New variable.
2795         (isearch-done): Use that variable.
2797 2001-12-01  Richard M. Stallman  <rms@gnu.org>
2799         * wid-edit.el (widget-button-click): Don't move point permanently:
2800         Avoid mouse-set-point--instead select the window,
2801         then do save-excursion, then move point.
2802         Specify the buffer for get-char-property.
2803         Don't use `@' in interactive.
2805         * indent.el (indent-line-function):
2806         Default is indent-to-left-margin again.
2808         * replace.el (query-replace-read-args): Display message
2809         if FROM contains `\n' or `\t'.
2811 2001-12-01  Stefan Monnier  <monnier@cs.yale.edu>
2813         * indent.el (tab-to-tab-stop): Use delete-horizontal-space.
2815         * bindings.el (minibuffer-local-map): Bind TAB to insert-tab.
2817         * emacs-lisp/regexp-opt.el (regexp-opt):
2818         Bind completion-regexp-list to nil.
2820         * progmodes/hideif.el (hif-nexttoken): Move to before first def.
2822 2001-12-01  Eli Zaretskii  <eliz@is.elta.co.il>
2824         * progmodes/idlwave.el, progmodes/idlw-rinfo.el:
2825         * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el:
2826         Update maintainer.
2828 2001-11-30  Stefan Monnier  <monnier@cs.yale.edu>
2830         * mail/smtpmail.el: Use with-current-buffer.
2831         (message-make-date, message-make-message-id): Autoload when needed.
2832         (smtpmail-send-it): Use them to add `Date:' and `Message-Id:'
2833         headers when missing.
2835         * international/encoded-kb.el (encoded-kbd-mode):
2836         Use define-minor-mode.
2838         * enriched.el (enriched-mode): Use define-minor-mode.
2839         Use dolist and pop and push.
2841         * info.el (Info-find-node-2): Don't call info-insert-file-contents
2842         with the `visit' argument.
2843         (Info-extract-menu-node-name): Use `replace-regexps-in-string'.
2845         * progmodes/hideif.el (hide-ifdef-mode): Only modify
2846         `change-major-mode-hook' locally.  Reset invisibility spec.
2848         * man.el (Man-build-section-alist): Remove last Man-match-substring.
2850 2001-11-30  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2852         * textmodes/paragraphs.el (mark-paragraph): Clarify doc.
2853         Clarify error message.
2855 2001-11-29  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2857         * textmodes/paragraphs.el (mark-paragraph): Allow prefix arg.
2859 2001-11-30  Andre Spiegel  <spiegel@gnu.org>
2861         * vc-cvs.el (vc-cvs-parse-status): Store file state in property,
2862         don't just return it.
2864 2001-11-30  Eli Zaretskii  <eliz@is.elta.co.il>
2866         * menu-bar.el (menu-bar-read-lispref, menu-bar-read-lispintro)
2867         (menu-bar-read-emacs-man, search-emacs-glossary)
2868         (emacs-index-search, elisp-index-search): New functions.
2869         (apropso-documentation, apropos, apropos-value, apropos-variable)
2870         (apropos-commands): Modify menu item names and help text.
2871         (elisp-index-search, emacs-index-search, emacs-glossary):
2872         New menu items.
2873         (menu-bar-manuals-menu): Move the Ordering Manuals item to a
2874         submenu.
2875         (info-elisp, info-elintro): New menu items.
2876         (apropos): Modify the menu item name.
2878 2001-11-30  Stefan Monnier  <monnier@cs.yale.edu>
2880         * emacs-lisp/lisp-mode.el (read-if): Add lisp-indent-function prop.
2882         * textmodes/outline.el (outline-promote, outline-demote): Typo.
2884         * man.el (man-follow-mouse): New function.
2885         (Man-mode-map): Bind mouse-2 to it.
2886         (Man-match-substring): Remove.  Replace with `match-string'.
2887         (man): Use the `default-value' argument to `read-string'.
2888         (Man-fontify-manpage): Add mouse-face to cross references.
2890         * emacs-lisp/cl-macs.el (shiftf): Fix more.  Simplify.
2892 2001-11-29  Stefan Monnier  <monnier@cs.yale.edu>
2894         * emacs-lisp/crm.el (completing-read-multiple): Better preserve
2895         the value of require-match in minibuffer-completion-confirm.
2896         Use crm-local-completion-map.
2898         * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
2899         (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
2900         (cl-make-type-test): Use char-valid-p for `character'.
2902         * info.el (Info-complete-next-re, Info-complete-cache): New vars.
2903         (Info-complete-menu-item): Rewrite.  Add the ability to search
2904         several sequential nodes.  Add a simple caching mechanism.
2905         (Info-goto-index): New function extracted from Info-index.
2906         (Info-index): Use it.  Add completion to the interactive spec.
2907         (Info-menu-update): Simplify call to `Info-complete-menu-item'.
2909 2001-11-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2911         * COPYING: Removed.
2913 2001-11-29  Dave Love  <fx@gnu.org>
2915         * progmodes/fortran.el: Fontify rewind, backspace.  Doc fixes.
2916         (fortran-window-create, fortran-window-create-momentarily):
2917         Rewrite, moving error condition.
2918         (fortran-beginning-do, fortran-beginning-if): Fix regexps.
2919         (fortran-mode-syntax-table): Revert last change.
2921         * international/mule.el: Doc fixes.
2922         (map-charset-chars): New function.
2923         (register-char-codings): Use it to cope with generic chars in
2924         safe-chars.
2926 2001-11-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2928         * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
2930         * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
2932         * play/studly.el (studlify-word, studlify-region)
2933         (studlify-buffer): Fix doc-string.
2934         (studlify-buffer): Add autoload cookie.
2936 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
2938         * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
2939         (outline-up-heading-all): Remove.
2940         (hide-sublevels): Move to end-of-heading before calling flag-region.
2941         (outline-copy-overlay, outline-discard-overlays): Remove.
2942         (outline-flag-region): Use `remove-overlays'.
2943         Don't move to end-of-heading.
2944         (outline-next-visible-heading, outline-back-to-heading)
2945         (outline-on-heading-p): Use outline-invisible-p.
2946         (outline-font-lock-level): Use outline-up-heading's new arg.
2947         (outline-minor-mode): Simplify.
2948         (outline-map-tree, outline-reveal-toggle-invisible): New funs.
2949         (outline): Put a `reveal-toggle-invisible' property.
2950         (outline-level-heading): New var.
2951         (outline-insert-heading, outline-promote, outline-demote)
2952         (outline-toggle-children): New commands.
2954         * progmodes/hideif.el (hif-end-of-line): New function.
2955         (hide-ifdef-mode): Set line-move-ignore-invisible.
2956         (hide-ifdef-region-internal): New function.
2957         (hide-ifdef-region): Use it.
2958         (hif-defined): Return an integer.
2959         (hif-infix-to-prefix): Remove.
2960         (hif-tokenize): Parse from the buffer rather than from a string.
2961         Correctly tokenize integers.  Use forward-comment.
2962         (hif-expr): Use hif-or.
2963         (hif-term): Use hif-and.
2964         (hif-factor): Use hif-not.  Handle numbers properly.
2965         Don't require parenthesis around `defined's argument.
2966         (hif-and, hif-or, hif-not): New funs.
2967         (hif-canonicalize): Pass a region to hif-tokenize.  Use hif-not.
2968         (hif-hide-line): Don't hide the \n before the line.
2969         (hif-possibly-hide): Correctly handle numeric evaluation results.
2971         * progmodes/make-mode.el: Use line-(end|beginning)-position.
2972         (makefile-mode): Set indent-line-function.
2973         (makefile-browser-insert-continuation): Use with-current-buffer.
2974         (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
2976 2001-11-28  Karl Fogel  <kfogel@red-bean.com>
2978         * isearch.el (isearch-yank-internal): New helper function.
2979         (isearch-yank-char): New function.
2980         (isearch-yank-word, isearch-yank-line): Rewrite to use
2981         isearch-yank-internal.
2983 2001-11-28  Eli Zaretskii  <eliz@is.elta.co.il>
2985         * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
2986         aren't supported.  Print a message to that effect if invoked.
2988 2001-11-27  Stephen Eglen  <stephen@gnu.org>
2990         * locate.el (locate): Put point at first matching file rather
2991         than top of buffer.
2993 2001-11-27  Stefan Monnier  <monnier@cs.yale.edu>
2995         * reveal.el: New file.
2997         * progmodes/hideif.el: Misc cleanup.
2998         (hide-ifdef-mode-submap): Put the def in the defvar.
2999         Use substitute-key-definition.
3000         (hide-ifdef-mode): Use define-minor-mode.
3001         (hif-outline-flag-region): Remove.
3002         (hif-show-all): Define in terms of hif-show-ifdef-region.
3003         (hif-after-revert-function): Rename from hif-before-revert-function.
3004         (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
3005         (hif-tokenize): Use with-syntax-table.
3006         (hif-make-range): Use `else' also for `else-p'.
3007         (hif-range-else-p): Remove.
3008         (hif-find-range): Simplify.
3009         (hif-hide-line): Don't bother preserving buffer-modified-p.
3010         (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
3011         Don't use selective-display and inhibit-read-only.
3013         * subr.el (copy-overlay, remove-overlays): New funs.
3015         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
3017 2001-11-27  Sam Steingold  <sds@gnu.org>
3019         * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
3020         * lazy-lock.el, mouse-sel.el, mail/feedmail.el
3021         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
3022         * obsolete/c-mode.el, obsolete/cplus-md.el
3023         * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
3024         * term/sun-mouse.el, textmodes/artist.el:
3025         Converted backquote to the new style.
3026         * mouse.el, reposition.el: Likewise (in comments).
3027         * expand.el: Likewise (in a string).
3029 2001-11-27  Richard M. Stallman  <rms@gnu.org>
3031         * cus-edit.el (custom-load-symbol): Don't always load locate-library.
3033 2001-11-26  Richard M. Stallman  <rms@gnu.org>
3035         * wid-edit.el (widget-toggle-value-create): On graphic terminal,
3036         if :on-glyph or :off-glyph is a list, eval it and store it back.
3037         (checkbox): Quote the values for :on-glyph and :off-glyph.
3039         * cus-start.el (recursive-load-depth-limit): Delete item.
3041 2001-11-26  Stefan Monnier  <monnier@cs.yale.edu>
3043         * help-fns.el (describe-categories, help-describe-category-set): New.
3044         describe-categories moved here from src/category.c.
3046 2001-11-26  Sam Steingold  <sds@gnu.org>
3048         * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
3049         arguments to `insert' are strings.
3051 2001-11-26  Richard M. Stallman  <rms@gnu.org>
3053         * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
3055 2001-11-26  Eli Zaretskii  <eliz@is.elta.co.il>
3057         * international/mule-diag.el: Require help-fns instead of
3058         help-funs.
3060         * help-fns.el: Renamed from help-funs.el.
3062         * startup.el (command-line-1): Don't try to call process-list if
3063         it is not fboundp.
3065 2001-11-26  Sam Steingold  <sds@gnu.org>
3067         * frame.el (show-trailing-whitespace): Remove :set argument (the
3068         value was essentially identical to the defalt).
3070 2001-11-26  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3072         * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
3074         * icomplete.el (icomplete-minibuffer-setup): Likewise.
3076         * hilit-chg.el (hilit-chg-set): Likewise.
3078         * speedbar.el (speedbar-mode): Likewise.
3080         * calendar/calendar.el (calendar-mode): Likewise.
3082         * play/yow.el (psychoanalyze-pinhead): Use insert instead of
3083         insert-string.
3085         * play/gamegrid.el (gamegrid-init-buffer): Likewise.
3087         * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
3089         * term/sun-mouse.el (sun-yank-selection): Likewise.
3091         * textmodes/bib-mode.el (return-key-bib): Likewise.
3093         * calendar/appt.el (appt-disp-window): Likewise.
3095         * calendar/diary-lib.el (list-diary-entries): Likewise.
3097         * array.el (array-reconfigure-rows): Likewise.
3099         * filecache.el (file-cache-minibuffer-complete): Likewise.
3101         * obsolete/cplus-md.el (fill-c++-comment): Likewise.
3103         * strokes.el (strokes-prompt-user-save-strokes): Likewise.
3105         * allout.el (outline-version, outline-open-topic)
3106         (outline-rebullet-heading, outline-insert-listified)
3107         (outline-latex-verbatim-quote-curr-line)
3108         (outline-latexify-one-item, outlineify-sticky): Likewise.
3110         * vc.el (vc-next-action-on-file): Likewise.
3111         (vc-dired-mode): Remove make-local-hook.
3113 2001-11-26  Andre Spiegel  <spiegel@gnu.org>
3115         * vc.el (vc-find-version): New function.
3116         (vc-version-other-window): Redefined in terms of the above.
3118         * log-view.el (log-view-find-version): New function.
3119         (log-view-mode-map): Bind it to `f'.
3121 2001-11-26  Gerd Moellmann  <gerd@gnu.org>
3123         * language/devan-util.el (dev-char-glyph): Escape `"' in
3124         string literals.
3125         (dev-glyph-glyph, dev-glyph-glyph-2)
3126         (devanagari-compose-syllable-region): Likewise.
3128 2001-11-26  Richard M. Stallman  <rms@gnu.org>
3130         * window.el (save-selected-window): No error if saved window is dead.
3132         * help-funs.el (describe-syntax): Put (interactive) after doc string.
3134 2001-11-26  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3136         * international/quail.el (quail-help): Require help-mode in
3137         top-level instead.
3139         * iswitchb.el (iswitchb-exhibit): Use insert instead of
3140         insert-string.
3142         * icomplete.el (icomplete-exhibit): Likewise.
3144 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
3146         * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
3147         (diff-hunk-kill): Simplify.
3148         (diff-post-command-hook): Only apply to a single hunk.
3149         (diff-hunk-text): Make `char-offset' non-optional.
3150         (diff-find-text): Return a cons cell.
3151         (diff-find-approx-text): New fun.
3152         (diff-find-source-location): Use it.
3153         (diff-apply-hunk, diff-test-hunk, diff-goto-source):
3154         Adapt to new retval of diff-find-text.
3156         * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
3157         rather than integer- representation of dates.
3159         * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
3161         * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
3162         (syntax-after): New fun.
3164         * help-funs.el (describe-syntax): New fun.
3166         * font-lock.el (font-lock-cache-state, font-lock-cache-position)
3167         (font-lock-ppss-stats, font-lock-ppss): Remove.
3168         (font-lock-fontify-syntactically-region): Remove tuning code.
3169         (font-lock-compile-keywords): Fix off-by-one bug.
3170         (font-lock-set-defaults): Don't set removed vars.
3171         (c-keywords): Add `inline'.
3172         (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
3174         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3175         Set syntax-begin-function.
3176         (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
3177         (lisp-interaction-mode): Don't set local-abbrev-table any more.
3178         (lisp-mode-auto-fill): Use syntax-ppss and obey
3179         comment-auto-fill-only-comments.
3180         (lisp-fill-paragraph): Use syntax-ppss.
3182 2001-11-25  ShengHuo ZHU  <zsh@cs.rochester.edu>
3184         * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
3185         version of rmail-enable-mime.
3186         (rmail-forward): Use it.
3188 2001-11-25  Richard M. Stallman  <rms@gnu.org>
3190         * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
3192         * international/quail.el (quail-keyboard-layout-button):
3193         Define button type.
3194         (quail-keyboard-customize-button): Likewise.
3195         (quail-help): Use those button types.  Require `help-mode'.
3196         Avoid altering the argument `package'.
3198         * help-mode.el (help-function, help-variable, help-face)
3199         (help-coding-system, help-input-method, help-character-set):
3200         Define each button type with its own explicit define-button-type.
3202         * language/devan-util.el: Comment out parts of the file
3203         which apparently are garbled.
3205 2001-11-25  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3207         * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
3208         insert-string.
3210 2001-11-25  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3212         * play/snake.el (snake-mode): Remove make-local-hook.
3214         * play/tetris.el (tetris-mode): Likewise.
3216         * play/decipher.el (decipher-mode): Likewise.
3218         * tmm.el (tmm-add-prompt): Likewise.
3220 2001-11-25  Sam Steingold  <sds@gnu.org>
3222         * menu-bar.el (menu-bar-apropos-menu): New variable.
3223         Moved all `apropos' bindings to this menu.
3224         (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
3226 2001-11-24  KAWABATA, Taichi <batta@beige.ocn.ne.jp>
3228         The following changes are for new indian languages support based
3229         on Unicode charset and CDAC fonts.
3231         * international/mule-conf.el: Change indian-1-column charset to
3232         indian-glyph charset.
3234         * international/characters.el: Adjusted for the change of
3235         indian-1-column -> indian-glyph.
3237         * international/fontset.el: Delete the setting for indian-1-column
3238         and add the setting for indian-glyph in the default fontset.
3240         * language/indian.el: Completely re-written.
3242         * language/devanagari.el: Completely re-written.
3244         * language/devan-util.el: Completely re-written.
3246         * language/ind-util.el: New file.
3248 2001-11-24  Richard M. Stallman  <rms@gnu.org>
3250         * startup.el (command-line-1): Don't do startup screen
3251         if a subprocess is running.  Call the startup screen buffer
3252         "GNU Emacs".  Make a special mode-line-format for it.
3254         * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
3255         (browse-url-galeon): Use that variable.
3257         * mail/supercite.el (sc-toggle-var): Don't use set-variable or
3258         eval-expression.  Eval and set the variable simply.
3260         * files.el (temporary-file-directory): Use defcustom.
3261         (small-temporary-file-directory): Likewise.
3262         (normal-backup-enable-predicate): Move down in file
3263         after definition of temporary-file-directory.
3265         * bindings.el (last-buffer, unbury-buffer): Doc fixes.
3267 2001-11-24  Colin Walters  <walters@debian.org>
3269         * calc/calc-ext.el (calc-init-extensions): Update the rest of the
3270         autoload names to match files renamed on initial calc import.
3272         * calc/calc.el (Commentary): Cleanup, and add logistic curve
3273         fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
3275 2001-11-23  Colin Walters  <walters@debian.org>
3277         * Makefile.in (finder_setwins, setwins): Include Calc again.
3279         * calc/calc-rules.el: Add header comment.
3281 2001-11-23  Andre Spiegel  <spiegel@gnu.org>
3283         * vc.el (with-vc-properties): Don't bind `filename' locally.
3284         (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
3285         to avoid name clashes.  Fix `lisp-indent-function' property for
3286         both.
3288 2001-11-23  Francesco Potorti`  <pot@gnu.org>
3290         * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
3292 2001-11-22  Colin Walters  <walters@debian.org>
3294         * calc/calc-misc.el (report-calc-bug):
3295         Use `reporter-prompt-for-summary-p'.
3297         * calc/INSTALL, calc/Makefile: Remove.
3299 2001-11-22  Miles Bader  <miles@gnu.org>
3301         * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
3302         (reb-match-2, reb-match-3): Add dark-background variants.
3304 2001-11-22  Colin Walters  <walters@debian.org>
3306         * calc/calc-misc.el (calc-info): Don't perform voodoo, just
3307         (info "Calc").
3308         (report-calc-bug): Use reporter.el.
3310         * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
3312 2001-11-21  Richard M. Stallman  <rms@gnu.org>
3314         * which-func.el (which-function): Call imenu--make-index-alist
3315         if necessary to get a list of functions.
3316         (which-function-imenu-failed): New variable.
3317         (which-func-update): Handle all visible windows.
3318         (which-func-update-1): New subroutine broken out of which-func-update.
3320         * files.el (temporary-file-directory, null-device)
3321         (small-temporary-file-directory): Definitions moved up.
3323         * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
3324         (cperl-non-problems, cperl-praise): Doc fixes.
3326         * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
3327         (sh-mode-syntax-table): Function restored.
3328         Variable set up for use by function sh-mode-syntax-table.
3329         (sh-set-shell): Set the syntax table.
3331         * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
3333         * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
3335         * international/encoded-kb.el: Don't alter minor-map-alist.
3337 2001-11-20  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
3339         * files.el (auto-save-file-name-transforms): Put remote files in
3340         temporary-file-directory rather than /tmp.
3342 2001-11-21  Colin Walters  <walters@debian.org>
3344         * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
3345         of (function ...) wrapper.
3347 2001-11-20  Stefan Monnier  <monnier@cs.yale.edu>
3349         * derived.el (define-derived-mode): Create the abbrev-table
3350         from inside the `defvar'.
3352         * jit-lock.el (jit-lock-defer-time): New var.
3353         (jit-lock-defer-timer, jit-lock-buffers): New vars.
3354         (jit-lock-mode): Initialize them.  Cancel the timers more carefully.
3355         (jit-lock-function): Defer fontification if requested.
3356         (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
3357         (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
3358         text property.
3359         (jit-lock-deferred-fontify): New fun.
3361 2001-11-20  Richard M. Stallman  <rms@gnu.org>
3363         * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
3364         Set local-abbrev-table to lisp-mode-abbrev-table.
3366         * emacs-lisp/re-builder.el (reb-mode):
3367         Don't use define-derived-mode.  Call kill-all-local-variables.
3369         * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
3370         Don't use define-derived-mode.
3372         * help-mode.el (help-mode): Undo 2001-10-07 change.
3374         * replace.el (occur-mode): Undo 2001-5-20 change.
3376 2001-11-20  Jason Rumney  <jasonr@gnu.org>
3378         * w32-fns.el (w32-system-coding-system): Change to an alias for
3379         locale-coding-system.
3380         (set-w32-system-coding-system): Document the above change.
3381         Set locale-coding-system instead.
3383 2001-11-20  Richard M. Stallman  <rms@gnu.org>
3385         * ruler-mode.el: Add pagination.
3386         (ruler-mode-toggle-show-tab-stops): No need to
3387         test `ruler-mode' variable.
3389 2001-11-20  Eli Zaretskii  <eliz@is.elta.co.il>
3391         * play/landmark.el: Mark lm-mode as special.
3393         * play/gomoku.el: Mark gomoku-mode as special.
3395 2001-11-20  Juanma Barranquero  <lektu@terra.es>
3397         * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
3398         (top-level): Bind it to C-c C-b.
3399         (re-builder): Don't re-enter RE Builder Mode.
3401         * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
3403 2001-11-20  Stefan Monnier  <monnier@cs.yale.edu>
3405         * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
3406         `manual-program'.
3408         * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
3409         to a line without a comment.
3411 2001-11-20  Eli Zaretskii  <eliz@is.elta.co.il>
3413         * dired.el (dired-listing-switches): Mention in the doc string
3414         that some switches are not supported by ls-lisp.el
3416 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
3418         * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
3419         (imenu--create-keymap-2): Remove.
3420         (imenu--create-keymap-1): Simplify, remove third argument.
3421         (imenu--generic-function): Use dolist.
3422         (imenu-find-default): New function.
3423         (imenu--completion-buffer): Use it.
3424         (imenu--mouse-menu): Use popup-menu.
3425         (imenu--menubar-select): Return t rather than calling imenu.
3427         * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
3428         New functions, extracted from fill-region-as-paragraph.
3429         (fill-region-as-paragraph): Use them.
3430         Use an end marker instead of eob.
3431         Ignore whitespace-only fill-prefixes when indenting according to mode.
3432         Simplify the loop that searches for spaces backwards.
3434         * textmodes/picture.el (picture-vertical-step)
3435         (picture-horizontal-step): Don't use defconst for variables.
3437         * mail/mail-extr.el: Use backquote/dolist/mapc/when.  Docstring fixes.
3438         (mail-extract-address-components): Downcase domain names.
3439         (mail-extr-delete-char): Remove.  Use delete-char instead.
3441         * emulation/pc-select.el: Doc string fixes.
3442         (pc-selection-mode): Don't treat macos as a tty.
3444         * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
3446         * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
3448         * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
3449         (mouse-wheel-progessive-speed): New var.
3450         (mwheel-scroll): Use it and handle float values.
3452         * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
3454         * iswitchb.el (iswitchb-mode): Use define-minor-mode.
3455         (iswitchb): Fix the case where the result was selected with the mouse.
3456         (iswitchb-completion-help): Use the normal *Completions* now that
3457         mouse selection works.
3458         (iswitchb-minibuffer-setup): Simplify.
3460         * newcomment.el (comment-column, comment-style, comment-multi-line)
3461         (comment-auto-fill-only-comments): Remove :group arg.
3462         (comment-padding): Add :type.
3463         (comment-indent-new-line): Ignore comment-auto-fill-only-comments
3464         if called interactively.
3466 2001-11-19  Colin Walters  <walters@verbum.org>
3468         * calc/calc.el (toplevel): Add comment and version header.
3469         (calc-init-base): Bump version to 2.02f, update date.
3471 2001-11-19  Richard M. Stallman  <rms@gnu.org>
3473         * net/browse-url.el: Support Mozilla and Galeon.
3474         By default, find the installed browser whichever it is.
3475         (browse-url-mozilla): New function.
3476         (browse-url-mozilla-sentinel): New function.
3477         (browse-url-galeon, browse-url-galeon-sentinel): New functions.
3478         (browse-url-default-browser): New function.
3479         (browse-url-process-environment): Use browse-url-browser-display.
3480         (browse-url-browser-display): Renamed from browse-url-netscape-display.
3481         (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
3482         (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
3483         (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
3484         (browse-url-browser-function): New default, new options.
3486 2001-11-19  Sam Steingold  <sds@gnu.org>
3488         * bindings.el (last-buffer, unbury-buffer): New function.
3489         (mode-line-unbury-buffer): Use `unbury-buffer'.
3491 2001-11-18  Stephen Eglen  <stephen@gnu.org>
3493         * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
3494         control behaviour when no further completion is possible.
3496 2001-11-19  Colin Walters  <walters@verbum.org>
3498         * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
3499         (math-showing-full-precision, math-with-extra-prec, math-working)
3500         (calc-with-default-simplification)
3501         (calc-with-trail-buffer): Use backtick.
3502         (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
3503         (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
3504         (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
3505         (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
3506         (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
3507         (Math-num-integerp, Math-bignum-test, Math-equal-int)
3508         (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
3509         (calc-record-compilation-date-macro): Deleted.  Callers updated.
3510         (math-format-radix-digit): Move to calc-bin.el.
3512         * calc/calc.el (calc-record-compilation-date): Remove.
3513         (calc-bug-address): Update.
3514         (calc-settings-file): Use `user-init-file'.
3516         * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
3517         Handle null `calc-settings-file'.
3519         * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
3520         * calc/calc-keypd.el (calc-keypad-mode): New.
3521         (calc-do-keypad): Use it.
3522         (calc-keypad-map): Move into `calc-keypad-mode'.
3524         * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
3525         to defalias argument.
3527         * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
3528         (calcFunc-floor): Ditto.
3530         * calc-units.el (calcFunc-usimplify): Ditto.
3532         * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3533         * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3534         * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3535         * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3536         * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3537         * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3538         * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3539         * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3540         * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3541         * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3542         * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
3543         and move them before their first use.  Use `when', `unless'.
3544         Remove trailing periods from error forms.  Add description and
3545         headers suggested by Emacs Lisp coding conventions.
3547 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
3549         * newcomment.el (comment-indent):
3550         Fix misindentation for comment-only lines.
3551         (comment-indent-new-line): Only obey comment-multi-line if the
3552         comment-ender is not the end-of-line.
3554 2001-11-19  Richard M. Stallman  <rms@gnu.org>
3556         * net/net-utils.el (network-connection-service-abbrev-alist):
3557         New variable.
3559         * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
3560         Advance to start of 3rd sexp by moving fwd and backing over it.
3561         At first three elements, act like defun.
3563         * delsel.el (delete-selection-pre-hook): Handle and resignal
3564         file-supersession errors to interact properly with userlock.el.
3566 2001-11-18  Richard M. Stallman  <rms@gnu.org>
3568         * progmodes/fortran.el (fortran-mode-syntax-table):
3569         Specify punctuation syntax for backslash.
3571         * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
3572         All calls deleted.
3574         * international/mule-util.el (string-to-sequence): Make it obsolete.
3575         (string-to-list, string-to-vector): Implement them directly
3576         using append and vconcat, not with string-to-sequence.
3578         * startup.el (command-line): Set abbrevs-changed to nil after
3579         reading the init file and the abbrevs file.
3581         * isearch.el (isearch): Use magenta2 as bg for (background light)
3583 2001-11-17  Richard M. Stallman  <rms@gnu.org>
3585         * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
3587         * simple.el (minibuffer-history-sexp-flag): Doc fix.
3589 2001-11-17  Stefan Monnier  <monnier@cs.yale.edu>
3591         * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
3592         If set and if applicable, add a regexp to highlight defun-like
3593         text inside comments and strings.
3594         (font-lock-fontify-keywords-region): Pass that new arg.
3595         (font-lock-set-defaults): Move the code to set `font-lock-keywords'
3596         to the end and pass that new arg.
3597         (c-font-lock-keywords-2): Fix regex for labels.
3598         (font-lock-match-c++-style-declaration-item-and-skip-to-next):
3599         Make it work when LIMIT is several lines further.
3600         (c-font-lock-keywords-3, c++-font-lock-keywords-3)
3601         (objc-font-lock-keywords-3, java-font-lock-keywords-3):
3602         Use backquote and make the regexes for `int a, b, c;' work on
3603         multiple lines.
3605         * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
3606         (font-lock-defaults-alist): Don't change it any more.
3607         (reb-subexp-mode-map): Cleanup.
3609         * custom.el (custom-current-group-alist): New var.
3610         (custom-declare-group): Set it.
3611         (custom-current-group): New fun.
3612         (custom-declare-variable, custom-handle-all-keywords):
3613         Use it as a default if no :group argument is specified.
3615         * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
3616         (standard-keyboard-coding-systems): New var.
3617         (set-locale-environment): Use it to decide whether or not to call
3618         set-keyboard-coding-system.
3619         (locale-language-names): Use \"French\" for "fr".
3621 2001-11-17  Richard M. Stallman  <rms@gnu.org>
3623         * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
3624         (add-to-list): Delete compatibility code.
3625         (checkdoc-next-message-error): Doc fix.
3627 2001-11-17  Stephen Eglen  <stephen@gnu.org>
3629         * locate.el (locate): Show default locate pattern within the
3630         prompt, but don't insert it into the minibuffer contents.
3631         Catch the case when pattern is the empty string.
3633 2001-11-17  Eli Zaretskii  <eliz@is.elta.co.il>
3635         * language/european.el ("French"): New language environment.
3637 2001-11-16  Richard M. Stallman  <rms@gnu.org>
3639         * calendar/todo-mode.el (todo-save): Fix previous change.
3641         * subr.el (functionp): Do use cdr-safe on object.
3643 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
3645         * bindings.el (mode-line-mode-name): Only put the help-echo property
3646         if the local-map property was put as well.
3647         (global-map): Bind switch-frame, delete-frame, iconify-frame
3648         and make-frame-visible events.
3650         * emacs-lisp/elp.el (elp-not-profilable): New var.
3651         (elp-not-profilable-p): New function.
3652         (elp-instrument-function): Use it.  Use backquotes and push.
3654         * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
3655         (byte-stack+-info, byte-compile-last-warned-form)
3656         (byte-compile-last-logged-file): Don't defconst a variable.
3657         (no-byte-compile): Declare.
3658         (byte-compile-file): Don't boundp-check no-byte-compile any more.
3659         (byte-compile-defvar): Leave defconst as is.
3661         * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
3662         (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
3663         (edebug-current-offset, edebug-old-def-name, edebug-error-point)
3664         (edebug-best-error): Don't defconst a variable.
3665         (edebug-read-syntax-table): Use a char-table.
3666         (edebug-lemacs-specific): Remove.
3667         Toplevel: Eliminate check for Lucid Emacs.
3669         * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
3671         * rect.el (move-to-column-force): Mark obsolete.
3672         (operate-on-rectangle, delete-extract-rectangle-line)
3673         (insert-rectangle, delete-whitespace-rectangle-line)
3674         (open-rectangle-line, clear-rectangle-line): Use move-to-column.
3675         (string-rectangle-history): New var.
3676         (string-rectangle, string-insert-rectangle): Use it.
3677         (delete-rectangle-line): Fix pos/column mixup and simplify.
3679         * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
3680         (normal-top-level, command-line, command-line-1): Simplify.
3682         * tar-mode.el (tar-mode): Use define-derived-mode.
3684         * view.el (view-mode-enable): Don't use make-local-hook.
3686         * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
3688 2001-11-16  Richard M. Stallman  <rms@gnu.org>
3690         * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
3691         if it doesn't make sense as anything else.
3692         Don't recognize a "telephone number" at the beginning of the name.
3693         (mail-extr-leading-garbage): Match non-word characters only.
3695 2001-11-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3697         * startup.el (command-line-processed): Doc fix.
3699         * apropos.el (apropos-next-label-button): Doc fix.
3701 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
3703         * comint.el (comint-mode): Simplify.
3704         (make-comint-in-buffer): Run `comint-mode' only if necessary.
3706         * subr.el (eval-after-load): Make it work with features as well.
3708         * log-view.el (log-view-mode): Don't mark the buffer unmodified.
3710         * international/mule-cmds.el (describe-input-method): Setup xref.
3711         (set-language-environment): Use functionp.
3712         (locale-language-names, locale-charset-language-names)
3713         (locale-preferred-coding-systems): Defconst and purecopy.
3715         * language/european.el (mac-roman): Add mime-charset property.
3717 2001-11-15  Richard M. Stallman  <rms@gnu.org>
3719         * emacs-lisp/cl.el (values, values-list, multiple-value-list)
3720         (multiple-value-apply, nth-value): Use defsubst rather than defalias
3721         to get better doc strings.
3723 2001-11-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3725         * derived.el: Fix autoload cookie.
3727 2001-11-15  Richard M. Stallman  <rms@gnu.org>
3729         * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
3731 2001-11-15  Stefan Monnier  <monnier@cs.yale.edu>
3733         * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
3735 2001-11-15  Richard M. Stallman  <rms@gnu.org>
3737         * dired.el (dired-undo): Display a message to explain
3738         that this does not undo file system changes.
3740 2001-11-15  David Kastrup  <David.Kastrup@t-online.de>
3742         * mouse-drag.el (mouse-drag-throw): Push back non-drag events
3743         into `unread-command-events' instead of trying keymap
3744         lookups ourselves.  This makes mouse-clicks do the right
3745         thing even when keymaps of overlays are involved.
3746         (mouse-drag-drag): Likewise.
3748 2001-11-15  Andreas Schwab  <schwab@suse.de>
3750         * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
3751         characters and append anchor to pattern added to auto-mode-alist.
3753 2001-11-15  Stefan Monnier  <monnier@cs.yale.edu>
3755         * server.el (server-process-filter): Run pore/post-comment-hook
3756         before/after visiting the file.
3758         * info-look.el (makefile-mode): Add info for automake.
3759         (autoconf-mode): Fix the name of the index for automake.
3761         * international/latin-9.el: Give pilcrow punctuation syntax.
3763 2001-11-15  Andre Spiegel  <spiegel@gnu.org>
3765         * vc.el: Documentation fixes.
3767 2001-11-14  Stefan Monnier  <monnier@cs.yale.edu>
3769         * smerge-mode.el (smerge-match-conflict): Fix typo.
3770         (smerge-diff): Be careful to read match-data early enough.
3772 2001-11-14  Colin Walters  <walters@verbum.org>
3774         * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
3775         (calcFunc-subst): Use `defalias' instead of `fset' and
3776         `symbol-function'.
3778         * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
3779         (calcFunc-ceil, calcFunc-round): Ditto.
3781         * calc/calc-bin.el (calcFunc-clip): Ditto.
3783         * calc/calc-ext.el (calcFunc-evalv): Ditto.
3785         * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
3787         * calc/calc-misc.el (math-fixnump, math-fixnatnump)
3788         (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
3790         * calc/calc-units.el (calcFunc-unsimplify): Ditto.
3792         * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
3793         * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
3794         * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
3795         * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
3796         * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
3797         * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
3798         * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
3799         * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
3800         * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
3801         * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
3802         * calcsel2.el: Style cleanup; don't put closing parens on their
3803         own line, add "foo.el ends here" to each file, and update
3804         copyright date.
3806         * README: Update maintainer.
3808 2001-11-13  Richard M. Stallman  <rms@gnu.org>
3810         * progmodes/compile.el (recompile): Use compilation-arguments if
3811         set, so as to be able to M-x recompile the exact command which
3812         created a compilation-mode buffer.
3814         * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
3816 2001-11-13  Gerd Moellmann  <gerd@gnu.org>
3818         * mouse.el (mouse-drag-region): Don't run the up-event
3819         handler if window start changed due to the down-mouse event.
3821 2001-11-13  Richard M. Stallman  <rms@gnu.org>
3823         * mouse.el (mouse-show-mark): Either move point to the mark
3824         or use highlighting, never both.
3825         (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
3827 2001-11-13  Simon Josefsson  <jas@extundo.com>
3829         * mail/smtpmail.el (top-level): Change maintainer to Simon
3830         Josefsson, cleanup the smtpmail.el header.
3832         * mail/smtpmail.el (top-level): Don't require cl or base64.
3833         (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3834         (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
3835         Defsubst instead of defmacro.
3836         (smtpmail-intersection): Return value in reverse order.
3837         (smtpmail-open-stream): Use stringp instead of string-to-list.
3838         (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
3839         separated from smtpmail-via-smtp.
3841         * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
3842         rfc2104.  Require base64 and cl.
3843         (smtpmail-smtp-service): Doc fix.  :type fix.
3844         (smtpmail-debug-info): Doc fix.
3845         (smtpmail-debug-verb, smtpmail-auth-credentials)
3846         (smtpmail-starttls-credentials, smtpmail-auth-supported):
3847         New variables.
3848         (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
3849         mail-utils (it is autoloaded).
3850         (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
3851         (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
3852         (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
3853         (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
3854         (smtpmail-via-smtp): Support AUTH.
3855         (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
3857 2001-11-13  Richard M. Stallman  <rms@gnu.org>
3859         * ebuff-menu.el (electric-buffer-update-highlight): New function.
3860         (electric-buffer-overlay): New variable.
3861         (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
3862         (electric-buffer-list): Likewise.
3864         * isearch.el (isearch-whitespace-chars): Doc fix.
3865         (isearch-mode): Handle negative search-slow-window-lines correctly.
3867 2001-11-13  Stefan Monnier  <monnier@cs.yale.edu>
3869         * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
3871         * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
3872         From Emmanuel Briot <briot@act-europe.fr>.
3874 2001-11-13  Colin Walters  <walters@debian.org>
3876         * calc/calc.el (calc-unread-command): Use `unread-command-events'.
3878         * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
3879         "~/.emacs"; use `read-file-name'.
3881         * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
3882         * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
3883         * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
3884         * calc/calc.el: Use `frame-width' instead of `screen-width',
3885         `frame-height' instead of `screen-height', and,
3886         `executing-kbd-macro' instead of `executing-macro'.
3888         * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
3889         correct number of arguments.
3891         * calc/calc-aent.el (calc-do-alg-entry):
3892         Use `blink-paren-function' instead of `blink-paren-hook'.
3894 2001-11-12  Richard M. Stallman  <rms@gnu.org>
3896         * calendar/todo-mode.el (todo-save): Add save-excursion
3897         and save-restriction.
3899         * server.el (server-edit, server-done): Doc fix.
3901         * simple.el (clone-indirect-buffer): Error if major mode symbol
3902         has a no-clone-indirect property.
3903         (clone-buffer): Check for obvious errors before reading clone name.
3905         * info.el (Info-mode): Add a no-clone-indirect property.
3907 2001-11-12  Sam Steingold  <sds@gnu.org>
3909         * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
3910         set-buffer-modified-p to nil after `vc-exec-after'.
3911         * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
3912         (log-view-mode): Make read-only.
3913         (log-view-current-file): Do final `expand-file-name' in the
3914         current `default-directory'.
3915         (log-view-current-tag): Take an optional `where' arg.
3916         (log-view-diff): New user command.
3918 2001-11-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3920         * progmodes/cpp.el (cpp-choose-face): Fix typo.
3922 2001-11-12  Sam Steingold  <sds@gnu.org>
3924         * emacs-lisp/cl-indent.el (toplevel): Indent properly
3925         `generic-flet', `generic-labels', `with-accessors',
3926         `with-condition-restarts'.
3928 2001-11-12  Richard M. Stallman  <rms@gnu.org>
3930         * dired.el: Many trivial doc fixes.
3931         (dired-get-file-for-visit): New function.
3932         (dired-find-alternate-file, dired-mouse-find-file-other-window):
3933         (dired-view-file, dired-find-file-other-window, dired-display-file):
3934         (dired-find-file): Use dired-get-file-for-visit.
3936 2001-11-12  Alex Schroeder  <kensanata@yahoo.com>
3938         * sql.el (sql-mode): Doc change.
3940         * sql.el (sql-mode-syntax-table): The backslash is no longer an
3941         escape character.
3943 2001-11-12  Colin Walters  <walters@debian.org>
3945         * calc/calc-keypd.el (toplevel): Bind mouse buttons.
3946         (calc-do-keypad): Don't attempt to use nonexistent global
3947         mouse-map, use calc-keypad-map.
3948         (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
3949         (calc-keypad-left-click): Don't use mouse-map; update to new event
3950         interface.
3951         (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
3952         (calc-keypad-press): Use `unread-command-events' instead of
3953         `unread-command-char'.
3955         * calc/calc-ext.el (calc-init-extensions): Update autoload names
3956         to match files renamed on initial calc import.
3958 2001-11-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3960         * textmodes/flyspell.el (flyspell-default-dictionary):
3961         Fix previous change.
3963 2001-11-12  Richard M. Stallman  <rms@gnu.org>
3965         * textmodes/flyspell.el (flyspell-default-dictionary):
3966         Fix custom type.
3968 2001-11-11  Richard M. Stallman  <rms@gnu.org>
3970         * calendar/solar.el (solar-sunrise-and-sunset):
3971         Exchange the two extreme values of day-length.
3973         * progmodes/sh-script.el (sh-must-be-shell-mode):
3974         Allow modes derived from sh-mode.
3976         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
3977         Turn off error in some re-search-forward calls.
3979         * replace.el (query-replace-skip-read-only): New variable.
3980         (perform-replace): If that variable is non-nil, ignore matches
3981         that have a read-only property.
3983         * derived.el (define-derived-mode): Doc fix.
3985         * server.el (server-buffer-done): Test of server-existing-buffer
3986         was backwards.
3987         (server-existing-buffer): Doc fix.
3989         * textmodes/flyspell.el (flyspell-default-dictionary):
3990         Allow nil as value, and make nil the default.
3992 2001-11-11  Eli Zaretskii  <eliz@is.elta.co.il>
3994         * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
3995         it is not fboundp.
3996         (clipboard-yank): Ditto.
3998 2001-11-11  Colin Walters  <walters@verbum.org>
4000         The following changes are based on patches from
4001         Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
4002         <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
4004         * calc/calc.el (toplevel): Require calc-macs.
4005         (calc-minibuffer-size): New.
4006         (calcDigit-nondigit): Use it instead of `buffer-size'.
4007         (calcDigit-backspace): Likewise.
4008         (calcDigit-nondigit): Use `minibuffer-contents' instead of
4009         `buffer-string'.
4010         (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
4011         `point-min'.
4012         (calcDigit-key): Use `calc-minibuffer-contains' instead of a
4013         `save-excursion'.
4015         * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
4016         simple `setq' form.
4018         * calc/calc-ext.el: (toplevel): Require calc.
4019         (calc-fancy-prefix-map): New.
4020         (calc-fancy-prefix): Use it.
4021         (calc-fancy-prefix-other-key): New.
4023         * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
4024         (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
4025         (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
4026         (calcAlg-enter): Likewise.
4027         (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
4029 2001-11-10  Richard M. Stallman  <rms@gnu.org>
4031         * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
4032         (quietly-read-abbrev-file): Doc fix.
4034         * startup.el (command-line): Read standard abbrev
4035         file (abbrev-file-name), if it exists.
4037         * files.el (save-abbrevs): Default value is t.
4039         * progmodes/compile.el (compile-goto-error): Fix previous change
4040         in the case where subsequent errors have not been parsed yet
4041         because they are in a different source file.
4043 2001-11-10  Peter Kleiweg  <kleiweg@let.rug.nl>
4045         * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
4046         Merge two regular expressions into one.
4047         (ps-mode): Make local bindings for `comment-start' and
4048         `comment-start-skip'.
4049         (ps-mode-looking-at-nested): Simplify an if-else construct;
4050         use `set-match-data' to set the result.
4052 2001-11-10  Richard M. Stallman  <rms@gnu.org>
4054         * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
4055         Function deleted.
4056         (flyspell-correct-word): Old definition deleted.
4057         (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
4058         All references renamed too.
4060 2001-11-10  Gerd Moellmann  <gerd@gnu.org>
4062         * Makefile.in (finder_setwins, setwins): Exclude Calc.
4064 2001-11-09  Per Abrahamsen  <abraham@dina.kvl.dk>
4066         * wid-edit.el (checklist): Removed `:menu-tag'.
4067         (radio-button-choice): Ditto.
4068         (editable-list): Ditto.
4070 2001-11-09  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4072         * play/gomoku.el: Move definitions of constants to the beginning
4073         of file, before their use.
4075 2001-11-09  Richard M. Stallman  <rms@gnu.org>
4077         * textmodes/flyspell.el: Use the keymap property
4078         instead of local-map, and don't use a minor-mode map.
4079         (flyspell-mode-map): Variable deleted.
4080         Don't mess with minor-mode-map-alist.
4081         (calling add-minor-mode): Specify nil for keymap.
4082         And always use add-minor-mode, now that it exists.
4083         (flyspell-overlay-keymap-property-name): Set it to `keymap'.
4084         (flyspell-mode-on): Don't locally bind flyspell-mouse-map
4085         or flyspell-local-mouse-map.
4086         (make-flyspell-overlay): Use flyspell-mouse-map directly.
4087         (flyspell-mode): Doc fix.
4088         (flyspell-mode-on): Don't call make-local-hook.
4090 2001-11-09  Sam Steingold  <sds@gnu.org>
4092         * emacs-lisp/debug.el (debugger-make-xrefs):
4093         Add buttons to all symbols.
4095 2001-11-09  Andre Spiegel  <spiegel@gnu.org>
4097         * vc.el: Add John David Smith to credits.
4099         Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
4101         * vc-hooks.el (vc-error-occured): Backquotified.
4102         (vc-file-prop-obarray): Use prime length for better efficiency.
4104         * vc.el (vc-clear-context): Fill obarray with 0, not nil.
4106 2001-11-09  Eli Zaretskii  <eliz@is.elta.co.il>
4108         * info.el (Info-file-list-for-emacs): Add entries for Calc.
4110 2001-11-09  Miles Bader  <miles@gnu.org>
4112         * subr.el (functionp): Don't consider macros as functions.
4114 2001-11-08  Miles Bader  <miles@gnu.org>
4116         * subr.el (functionp): Make work correctly for macros and unbound
4117         symbols.
4119         * comint.el (comint-send-input): Fix description of
4120         `comint-process-echoes' in the doc-string.
4122 2001-11-08  Eli Zaretskii  <eliz@is.elta.co.il>
4124         * international/mule.el (make-translation-table): Doc fix.
4125         Suggested by Alex Schroeder <alex@gnu.org>.
4127 2001-11-07  Richard M. Stallman  <rms@gnu.org>
4129         * info.el (Info-fontify-node): Highlight every third menu item.
4131 2001-11-07  Per Abrahamsen  <abraham@dina.kvl.dk>
4133         * cus-edit.el (custom-face-value-create): Don't ignore the
4134         `customized-face' attribute when finding the current face spec.
4136 2001-11-07  Stefan Monnier  <monnier@cs.yale.edu>
4138         * subr.el (with-local-quit): New macro.
4139         (make-syntax-table): Always inherit.
4140         (functionp): Be more careful when `object' is a symbol.
4142         * dabbrev.el (dabbrev-completion): Use "*Completions*".
4144 2001-11-07  Paul Eggert  <eggert@twinsun.com>
4146         * dired.el (dired-move-to-filename-regexp):
4147         Do not distinguish between ASCII letters and non-ASCII characters.
4148         Don't allow comma except in the form "month day, year".
4149         Don't allow space between month name and comma.
4150         Clean up the code that checks for trailing period, comma, and space.
4151         Remove now-obsolete comments, and add more commentary about
4152         Japanese dates.
4153         Always gobble up trailing spaces, instead of doing it only sometimes.
4155 2001-11-07  Miles Bader  <miles@gnu.org>
4157         * paren.el (show-paren-match-face): Add dark-background variant.
4159 2001-11-06  Stefan Monnier  <monnier@cs.yale.edu>
4161         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
4162         (lisp-mode-variables): Don't set paragraph-{start,separate}.
4163         Don't disable adaptive-fill-mode.
4164         (lisp-fill-paragraph): Use tab-width rather than 8.
4165         Prevent filling the first line of docstrings.
4167 2001-11-06  Richard M. Stallman  <rms@gnu.org>
4169         * play/gomoku.el (gomoku): Doc fix.
4171         * jka-compr.el (jka-compr-partial-uncompress):
4172         Support an alternative of not using dd.
4173         (jka-compr-dd-program): Use defcustom to define this.
4174         (jka-compr-load-suffixes): Use defcustom.
4175         (jka-compr-mode-alist-additions): Use defcustom.
4177 2001-11-06  Stefan Monnier  <monnier@cs.yale.edu>
4179         * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
4180         Also work when LIMIT is further than the end of line.
4182 2001-11-06  Eli Zaretskii  <eliz@is.elta.co.il>
4184         * international/quail.el (quail-update-leim-list-file): Print the
4185         offending file name if some of its quail-define-package forms is broken.
4187 2001-11-05  Richard M. Stallman  <rms@gnu.org>
4189         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
4190         of the evaluated form.
4192 2001-11-05  Paul Eggert  <eggert@twinsun.com>
4194         * ls-lisp.el (ls-lisp-time-to-seconds): New function.
4195         (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
4196         stamps always line up by default.  Also, it uses a slightly
4197         different window to determine whether files are "recent".
4199 2001-11-05  Andrew Innes  <andrewi@gnu.org>
4201         * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
4202         Don't attempt to remake autoloads before nuking .elc files.
4204 2001-11-04  Richard M. Stallman  <rms@gnu.org>
4206         * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
4207         previous-single-property-change or next-single-char-property-change
4208         returns nil.
4210         * international/mule-cmds.el (set-locale-environment):
4211         Make it interactive; make arg optional.
4213         * international/mule-diag.el (help-funs): Require help-funs.
4215 2001-11-04  Eli Zaretskii  <eliz@is.elta.co.il>
4217         * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
4219 2001-11-04  Miles Bader  <miles@gnu.org>
4221         * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
4222         shadow of the splash image grey on a dark background instead of black.
4224 2001-11-03  Stefan Monnier  <monnier@cs.yale.edu>
4226         * term.el (all faces): Don't (copy-face 'default <foo>).
4228         * term/xterm.el (function-key-map):
4229         Add entry for `ESC [ 3 ~' -> <delete>
4230         Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
4231         Use inheritance so that .emacs and terminfo take precedence.
4233 2001-11-03  Eli Zaretskii  <eliz@is.elta.co.il>
4235         * tooltip.el (tooltip-delay): Decrease to 0.7.
4236         (tooltip-hide-delay): Enlarge to 10.
4238 2001-11-03  Richard M. Stallman  <rms@gnu.org>
4240         * startup.el (fancy-splash-tail): Explain how to recover
4241         from a crash, if there was a crash.
4242         (command-line-1): Reorganize display of startup screen,
4243         to simplify the logic.  Use a temp buffer for it.
4245 2001-11-03  Eli Zaretskii  <eliz@is.elta.co.il>
4247         * frame.el (set-background-color, set-foreground-color):
4248         Call face-set-after-frame-default, to propagate the new colors to
4249         the frame's parameters alist.
4251         * calendar/timeclock.el (timeclock-out): Signal an error if
4252         timeclock-last-event is nil.
4254 2001-11-02  Stefan Monnier  <monnier@cs.yale.edu>
4256         * textmodes/fill.el (fill-context-prefix): Fix braino.
4258         * international/quail.el (quail-help):
4259         Use `help-buffer' and move `help-setup-xref' to beginning.
4261         * international/mule-cmds.el (describe-language-environment):
4262         Use `help-buffer' and move `help-setup-xref' to beginning.
4264         * international/mule-diag.el (list-character-sets)
4265         (sort-listed-character-sets, describe-character-set)
4266         (describe-coding-system, describe-fontset, list-fontsets):
4267         Use `help-buffer' and move `help-setup-xref' to beginning.
4268         (describe-char-after): Use `internal-describe-syntax-value'.
4270 2001-11-02  Richard M. Stallman  <rms@gnu.org>
4272         * mouse.el (popup-menu): If the user refuses to select
4273         from a menu, don't try to invoke the menu.
4275 2001-11-02  Miles Bader  <miles@gnu.org>
4277         * help-mode.el (help-xref): New button type.
4278         (help-function, help-variable, help-face, help-coding-system)
4279         (help-input-method, help-character-set, help-type, help-symbol)
4280         (help-back, help-info, help-customize-variable, help-customize-face)
4281         (help-function-def, help-variable-def): Use it as a supertype.
4282         Remove `action' property.
4284         * international/mule-diag.el (describe-character-set)
4285         (describe-coding-system): Pass correct args to `help-xref-button'.
4286         (sort-listed-character-sets): New button type.
4287         (list-character-sets): Use it.
4288         (list-charset-chars): New button type.
4289         (list-character-sets-1): Use it.
4291 2001-11-01  Stefan Monnier  <monnier@rum.cs.yale.edu>
4293         * indent.el (tab-always-indent, indent-for-tab-command):
4294         Remove redundant `never' setting.
4296         * fill.el (fill-region-as-paragraph): Don't forget to skip
4297         over current whitespace before looking for a preceding space.
4299 2001-11-01  Richard M. Stallman  <rms@gnu.org>
4301         * files.el (file-newest-backup): Don't pass backup file name
4302         thru file-name-sans-versions, because it never has version numbers.
4304         * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
4305         to avoid ambiguous nested loops.
4307         * files.el (find-file-noselect): Offer to change buffer-read-only
4308         only when the file's read-only status has changed from before
4309         as well as disagreeing with the buffer's current status.
4310         (buffer-file-read-only): New var, local in all buffers.
4312         * buff-menu.el (buffer-menu): Doc fix.
4313         (buffer-menu-other-window): Doc fix.
4314         (list-buffers, list-buffers-noselect): Doc fix.
4316 2001-11-01  Gerd Moellmann  <gerd@gnu.org>
4318         * startup.el (command-line): If the terminal Emacs is running on
4319         has erase char set to ^H, use the Backspace key for deleting
4320         backward, and the Delete key for deleting forward.
4322 2001-11-01  Miles Bader  <miles@gnu.org>
4324         * button.el (define-button-type): Make sure every user-defined
4325         button type has a supertype.
4327 2001-10-31  Jason Rumney  <jasonr@gnu.org>
4329         * international/mule-cmds.el (locale-language-names): Add chs and
4330         cht as aliases for Chinese-GB and Chinese-BIG5.
4332 2001-10-31  Richard M. Stallman  <rms@gnu.org>
4334         * bindings.el (mode-line-frame-identification): Add doc string.
4335         (mode-line-position, mode-line-modes): New variables.
4336         (mode-line-format): Use mode-line-position for the part
4337         that displays the position-in-buffer info.
4338         Use mode-line-modes for the part that displays major and minor modes.
4340 2001-10-31  Sam Steingold  <sds@gnu.org>
4342         * emacs-lisp/debug.el (debugger-make-xrefs): New function.
4343         (debugger-setup-buffer): Call it.
4344         (debugger-mode-map): Bind RET and mouse-2.
4346 2001-10-31  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4348         * startup.el: Document command line option --no-window-system
4349         instead of --no-windows.
4351 2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
4353         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
4355         * font-lock.el (java-font-lock-syntactic-face-function): New fun.
4356         (font-lock-defaults-alist): Use it.
4357         From David Ponce <david.ponce@wanadoo.fr>
4359         * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
4360         output of `char-after'.
4362         * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
4364         * simple.el (reindent-then-newline-and-indent): Insert the newline
4365         before indenting the first line.
4366         (undo-get-state, undo-revert-to-state): New funs.
4367         (shell-command): Don't kill the buffer even if empty.
4368         (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
4369         (transpose-subr-end2): Remove.
4370         (transpose-subr): Add `special' arg and simplify.
4371         (transpose-subr-1): Rewrite.
4372         (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
4373         (rfc822-goto-eoh): Simplify.
4375 2001-10-30  Richard M. Stallman  <rms@gnu.org>
4377         * enriched.el (enriched-face-ans): Fix previous change.
4379 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
4381         * international/iso-acc.el (iso-accents-compose): Remove a
4382         superfluous setq.
4384 2001-10-30  Eli Zaretskii  <eliz@is.elta.co.il>
4386         * buff-menu.el (list-buffers-noselect): If the buffer's name
4387         starts with a blank, but it visits a file, do show it (for files
4388         whose names start with a blank).
4390 2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
4392         * textmodes/fill.el (sentence-end-double-space)
4393         (sentence-end-without-period): Move to paragraphs.el.
4394         (fill-indent-according-to-mode): Change default to t.
4395         (fill-context-prefix): Simplify control-flow and use a more
4396         sophisticated merge that unifies both previous checks.
4397         (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
4398         (fill-nobreak-predicate): Make it into a defcustom'd hook.
4399         (fill-nobreak-p): New fun.
4400         (fill-region-as-paragraph): Use it.
4401         Handle `fill-indent-according-to-mode' slightly differently.
4402         (fill-individual-paragraphs-prefix): Simplify the control-flow.
4403         (fill-individual-paragraphs-citation): Fix.
4405         * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
4406         (paragraph-start): Change default to the `text-mode' value.
4407         (sentence-end-double-space, sentence-end-without-period):
4408         Move from fill.el.
4409         (forward-paragraph): Use `parstart' and `parsep' for temp variables
4410         rather than rebinding `paragraph-start' and `paragraph-separate'.
4412         * indent.el (indent-line-function): Change default to indent-relative.
4413         (tab-always-indent): Add an `never' setting.
4414         (indent-according-to-mode): Handle `indent-relative' and
4415         `indent-relative-maybe' specially.
4416         (indent-for-tab-command): Rename `prefix-arg' to `arg'.
4417         Handle the `never' case for `tab-always-indent'.
4418         Don't call indent-according-to-mode for indent-relative' and
4419         `indent-relative-maybe'.
4420         (insert-tab): Rename `prefix-arg' to `arg'.
4421         (indent-region): Indent the first line as well.
4422         (indent-relative): Don't mark the buffer modified if the indentation
4423         is unchanged.
4425         * textmodes/text-mode.el (paragraph-indent-minor-mode):
4426         Don't set paragraph-separate.  Set paragraph-start more carefully.
4427         Set indent-line-function.
4428         (paragraph-indent-text-mode): Use it and define-derived-mode.
4429         (text-mode-map): Remove the \t binding.
4430         (text-mode): Simplify now that the default is more favorable.
4432 2001-10-29  Stefan Monnier  <monnier@cs.yale.edu>
4434         * emacs-lisp/find-func.el (find-function-search-for-symbol):
4435         If the regexp doesn't match, use a looser one.
4436         (find-variable-noselect): Add `file' argument.
4438         * pcvs.el (cvs-mode-commit-hook): New hook.
4439         (cvs-mode-commit): Run it.
4441         * log-edit.el (log-edit): Run hook after `log-edit-files'.
4443         * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
4444         (edebug-instrument-function): Use `find-function-noselect'.
4446 2001-10-29  Richard M. Stallman  <rms@gnu.org>
4448         * term.el (term-if-emacs19): Macro deleted.
4449         Callers changed to use progn instead.
4451         * frame.el (blink-cursor-mode): Doc fix.
4453         * files.el (find-backup-file-name): Use make-backup-file-name.
4455         * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
4456         window-live-p.
4457         (edebug-set-conditional-breakpoint): Unconditionally use
4458         the former Emacs >=19 definition.
4459         (edebug-mark): Define unconditionally.
4460         (edebug-eval-expression): Always call read-from-minibuffer
4461         and specify history list.
4462         (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
4463         edebug-set-conditional-breakpoint.
4464         (edebug-emacs-version-specific): Function deleted;
4465         do the job at top level.
4466         (edebug-emacs-19-specific): Function deleted, this is the default.
4468 2001-10-29  Sam Steingold  <sds@gnu.org>
4470         * w32-fns.el (convert-standard-filename): Handle cygwin-specific
4471         "/cygdrive/LETTER/" pathnames.
4473 2001-10-29  Eli Zaretskii  <eliz@is.elta.co.il>
4475         * faces.el (invert-face): Check for 'unspecified, not for nil,
4476         when testing whether face colors are not specified.
4477         From David.Kastrup@t-online.de (David Kastrup).
4478         (read-face-name): Doc fix.
4479         (make-face-bold, make-face-unbold, make-face-italic)
4480         (make-face-unitalic, make-face-bold-italic, invert-face):
4481         Remove trailing blank from the prompt passed to read-face-name.
4483 2001-10-29  Sam Steingold  <sds@gnu.org>
4485         * emacs-lisp/bytecomp.el (byte-recompile-directory):
4486         Report numbers of files skipped and failed too.
4487         (byte-compile-file): Return 'no-byte-compile for skipped files.
4489 2001-10-29  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4491         * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
4492         and `M p'.
4494 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
4496         * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
4497         as is on unread-command-events instead of `(SECOND-CHAR)'.
4499 2001-10-29  Andre Spiegel  <spiegel@gnu.org>
4501         * vc.el: Mention vc-*-switches in backend API documentation.
4502         (vc-annotate): Adapt doc string to recent change.
4504 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
4506         * enriched.el (enriched-face-ans): Handle face attributes
4507         of the form `(FACE1 FACE2 ...)'.
4509         * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
4511 2001-10-29  Alex Schroeder  <kensanata@yahoo.com>
4513         * progmodes/sql.el (sql-mysql): Doc change by RMS.
4515         * progmodes/sql.el (sql-db2): Doc change.
4516         (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
4517         (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
4519 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
4521         * env.el (substitute-env-vars): Don't quote argument to `rx';
4522         it's a macro.
4524 2001-10-28  Per Abrahamsen  <abraham@dina.kvl.dk>
4526         * cus-start.el (recursive-load-depth-limit): Added.
4528 2001-10-28  Richard M. Stallman  <rms@gnu.org>
4530         * textmodes/ispell.el (version18p, version20p): Vars deleted.
4531         All uses removed--assume Emacs version is >= 20.
4533         * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
4534         by really checking that it is not version 18.
4536         * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
4538 2001-10-28  Miles Bader  <miles@gnu.org>
4540         * faces.el (face-attribute): Add INHERIT argument, consider face
4541         inheritance if it's non-nil.
4542         (face-attribute-merged-with): New function.
4543         (face-attribute-specified-or): New macro.
4544         (face-foreground, face-background, face-stipple): Add INHERIT
4545         argument.  Use `face-attribute-specified-or'.
4547 2001-10-28  Stefan Monnier  <monnier@cs.yale.edu>
4549         * font-lock.el: Require `syntax'.
4550         (font-lock-defaults-alist): Don't define keywords for lisp languages.
4551         Use `c-font-lock-syntactic-face-function' for c languages.
4552         (font-lock-mode): Don't unset vars when turning the mode off.
4553         (font-lock-default-fontify-buffer): Don't unset vars at the end.
4554         (font-lock-extra-managed-props): New var.
4555         (font-lock-default-unfontify-region): Use it.
4556         (font-lock-apply-syntactic-highlight): Flush the syntax cache.
4557         Don't eval the value when there's no match.
4558         (font-lock-ppss-stats): New var.
4559         (font-lock-ppss): New fun.
4560         (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
4561         (font-lock-apply-highlight): Allow `highlight' to set several props.
4562         (font-lock-set-defaults): Use dolist.
4563         (font-lock-unset-defaults): Remove.
4564         (font-lock-match-c-style-declaration-item-and-skip-to-next):
4565         Try to recognize prototypes using `foo P_ ((args))'.
4566         ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
4567         (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
4568         (c-font-lock-syntactic-face-function): New function.
4569         (font-lock-match-c++-style-declaration-item-and-skip-to-next)
4570         (c++-keywords): Use a more sophisticated regexp to handle
4571         shallowly nested templates.
4573 2001-10-27  Stefan Monnier  <monnier@cs.yale.edu>
4575         * textmodes/sgml-mode.el (sgml-empty-tags): New var.
4576         (sgml-tag): Use it.  Cleanup with `cond'.
4577         (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
4578         Mark the overlays and only delete those that are marked.
4579         (sgml-skip-close-p): Remove.
4580         (sgml-value): Replace sgml-skip-close-p with its definition.
4581         (html-tag-alist): Use sgml-xml a bit more.
4582         (html-mode): Set sgml-empty-tags.
4584         * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
4585         (texinfo-update-node, texinfo-sequential-node-update):
4586         Don't bind the obsolete `auto-fill-hook'.
4587         (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
4588         Use `set-buffer' rather than `switch-to-buffer'.
4589         (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
4590         Use `set-buffer' rather than `switch-to-buffer'.
4592         * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
4593         text-mode-syntax-table.
4594         (mail-mode): Use define-derived-mode.
4595         Fix ordering of alternatives in adaptive-fill-regexp.
4596         (mail-mode-map): Don't rely on keymap's internal representation.
4598 2001-10-27  Sam Steingold  <sds@gnu.org>
4600         * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
4601         (sgml-xml-guess): Extracted from `html-mode' and generalized.
4602         (sgml-mode-common): Call it.
4603         (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
4604         (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
4605         (html-horizontal-rule, html-image, html-ordered-list):
4606         (html-unordered-list, html-list-item, html-paragraph):
4607         (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
4608         `html-xhtml'.
4610 2001-10-26  Masayuki Ataka  <ataka@milk.freemail.ne.jp>
4612         * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
4613         (ifnothtml): New alias.
4615 2001-10-27  Stefan Monnier  <monnier@cs.yale.edu>
4617         * textmodes/text-mode.el (text-mode): Use define-derived-mode.
4618         (toggle-text-mode-auto-fill): Use derived-mode-p.
4620 2001-10-27  Gerd Moellmann  <gerd.moellmann@t-online.de>
4622         * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
4623         `mdtm'.  From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
4625 2001-10-26  Eli Zaretskii  <eliz@is.elta.co.il>
4627         * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
4628         Add make-obsolete cookies, to follow faces.el.
4630         These changes avoid warnings from the byte compiler in faces.el:
4632         * faces.el (internal-get-face): Use facep instead of the obsolete
4633         internal-find-face.
4634         (internal-frob-font-weight, internal-frob-font-slant):
4635         New defaliases for obsolete functions.
4636         (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
4637         (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
4638         (x-make-font-bold-italic): Use internal-frob-font-weight and
4639         internal-frob-font-slant aliases instead of the obsolete
4640         x-frob-... functions.
4642 2001-10-26  Sam Steingold  <sds@gnu.org>
4644         * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
4645         DOCTYPE; set `mode-name' based on it.
4646         (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
4647         (sgml-tag): Close empty tags in XHTML.
4649 2001-10-26  Jason Rumney  <jasonr@gnu.org>
4651         * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
4652         when UNICODE is not defined.
4654 2001-10-26  Sam Steingold  <sds@gnu.org>
4656         * font-lock.el (c-font-lock-keywords-2): Do not require labels to
4657         be alone on the line.
4659 2001-10-26  Eli Zaretskii  <eliz@is.elta.co.il>
4661         * button.el (button): Special face definition for MS-DOS terminals.
4663 2001-10-26  Sam Steingold  <sds@gnu.org>
4665         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
4666         Protect the /= test by checking that the args are non-nil.
4667         (sh-font-lock-close-heredoc): Check eof for being non-nil.
4669 2001-10-26  Tomas Abrahamsson  <tab@lysator.liu.se>
4671         * textmodes/artist.el (artist-version): 1.2.4.
4672         (artist-butlast-fn): New variable.
4673         (artist-butlast): New function.
4674         (artist-ellipse-mirror-quadrant): Use it.
4675         (artist-mouse-draw-poly): Use nil for `point-list'.
4676         (artist-mouse-draw-poly): Check for point-list being nil.
4678 2001-10-26  Peter Kleiweg  <kleiweg@let.rug.nl>
4680         * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
4681         lambda expression.
4682         (ps-mode-menu-main): Submenu with options on/off was replaced with
4683         a toggle button.
4684         (ps-mode, ps-run-mode): Define with `define-derived-mode'
4685         (ps-mode): Autoload cookie added on same line as comment
4686         (ps-mode-tabkey, ps-mode-backward-delete-char):
4687         (ps-mode-r-balance): Replace `delete-horizontal-space' and
4688         `indent-to' with `indent-line-to'
4689         (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
4690         instead of `eval'.
4691         (ps-mode-print-region): Use `with-temp-buffer'.
4692         (ps-run-start): Use of `mapconcat'.  Use `apply' instead of `eval'.
4693         (numerous places): Add back-tick and tick around names in
4694         docstrings, fix punctuation in docstrings, remove trailing spaces.
4696 2001-10-25  Stefan Monnier  <monnier@cs.yale.edu>
4698         * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
4699         (sgml-font-lock-keywords-2): Use `eval'.  Moved from sgml-mode-common.
4700         (sgml-font-lock-syntactic-keywords): New var.
4701         (sgml-mode-common): Drop the two args.
4702         Don't make buffer-local variables that aren't used.
4703         Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
4704         Don't set `before-string' props from sgml-display-text.
4705         (sgml-mode): Use define-derived-mode.
4706         (sgml-tags-invisible): Use sgml-display-text.
4707         (sgml-quote): New command.
4708         (html-tag-alist): Add args for `span'.
4709         (html-mode): Use define-derived-mode.
4710         Set sgml-display-text and sgml-tag-face-alist.
4712 2001-10-25  Sam Steingold  <sds@gnu.org>
4714         * add-log.el (add-log-always-start-new-record): New user option.
4715         (add-change-log-entry): Use it.
4717 2001-10-25  Richard M. Stallman  <rms@gnu.org>
4719         * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
4720         bind case-fold-search if FROM is not all lower case.
4722 2001-10-25  Gerd Moellmann  <gerd@gnu.org>
4724         * startup.el (normal-top-level): Check for frame-initial-frame
4725         only if it's really used.
4727         * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
4729         * progmodes/compile.el (compilation-parse-errors-filename-function):
4730         New variable.
4731         (compilation-parse-errors): Use it.
4733 2001-10-25  Stefan Monnier  <monnier@cs.yale.edu>
4735         * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
4736         interactively so that C-u M-C-x still does edebug.
4737         (checkdoc-sentencespace-region-engine): Don't force a double-space
4738         after `.' if it doesn't look like an end-of-sentence.
4739         (debug-ignored-errors): Add `disambiguate ...'.
4741 2001-10-24  Stefan Monnier  <monnier@cs.yale.edu>
4743         * textmodes/texinfo.el (texinfo-environments)
4744         (texinfo-environment-regexp): Hoist.
4745         (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
4746         Only highlight the menu name in menu items.
4747         Setup `@foo ... @end foo' as text clones.
4748         (texinfo-clone-environment): New function.
4749         (texinfo-mode): Simplify auto-fill-inhibit-regexp.
4750         (texinfo-insert-block): Simplify.
4751         (texinfo-insert-quote): Insert a plain " if preceded by \ or if
4752         the command is repeated.
4753         (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
4754         (texinfo-insert-@end): Simplify.
4756         * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
4757         (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
4758         (texinfo-subsubsection-level-regexp)
4759         (texinfo-update-menu-same-level-regexps)
4760         (texinfo-update-menu-higher-regexps)
4761         (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
4763         * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
4764         (derived-mode-p): Autoload.
4766         * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
4767         New vars and functions.
4768         (text-clone-maintain, text-clone-create): New functions.
4770 2001-10-25  Miles Bader  <miles@gnu.org>
4772         * facemenu.el (facemenu-add-new-face): Fix variable names.
4774 2001-10-24  Richard M. Stallman  <rms@gnu.org>
4776         * facemenu.el (facemenu-unlisted-faces): Improve doc strings
4777         of t and nil values.
4778         (facemenu-set-face): Handle START and END interactively.
4779         (facemenu-set-foreground): Don't use a face; specify color directly.
4780         (facemenu-set-background): Likewise.
4781         (facemenu-set-face-from-menu): Doc fix.
4782         (facemenu-active-faces): Use face-attribute-vector
4783         to handle bare attributes not in faces.
4784         (facemenu-get-face): Don't handle face names fg:... and bg:...
4785         specially.
4786         (facemenu-add-new-face): New argument MENU.
4787         New way to handle adding colors to the color menus.
4789         * env.el (substitute-env-vars): Quote the arg to rx.
4791 2001-10-24  Sam Steingold  <sds@gnu.org>
4793         * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
4794         Control" and "SGML" groups.
4796 2001-10-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
4798         * progmodes/cc-engine.el (c-beginning-of-member-init-list):
4799         Better handling of C++ template args to avoid confusion with `<'
4800         and `>' used as operators in member init expressions.
4802 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
4804         * replace.el (perform-replace): Move START and END parameters
4805         to the end of the argument list and make them optional.
4807         * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
4808         perform-replace.
4810         * international/fontset.el (x-must-resolve-font-name): New function.
4811         (x-complement-fontset-spec): Use it.
4813 2001-10-23  Stefan Monnier  <monnier@cs.yale.edu>
4815         * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
4817         * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
4818         Turn caadr into caar of cdr.
4820 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
4822         * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
4823         of mouse-{1,2} since dragging is on the down event.
4825         * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
4827         * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
4828         if ARG is nil.
4830         * desktop.el (desktop-last-buffer): New variable.
4831         (desktop-create-buffer): Set it.
4832         (desktop-read): Bind it and switch to that buffer.
4834 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
4836         * progmodes/compile.el (compilation-set-window-height):
4837         Select old window only if it's still live.
4839 2001-10-22  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4841         * help-mode.el (help-buffer): Remove debugging code.
4842         From Stefan Monnier <monnier@cs.yale.edu>.
4844 2001-10-22  Eli Zaretskii  <eliz@is.elta.co.il>
4846         * files.el (file-name-sans-extension, file-name-extension):
4847         Don't count the leading dots in file names as signaling an extension.
4849 2001-10-22  Andre Spiegel  <spiegel@gnu.org>
4851         * vc.el (vc-diff-switches): Doc rewritten.
4853 2001-10-22  Eli Zaretskii  <eliz@is.elta.co.il>
4855         * tooltip.el (tooltip-set-param): Doc fix.
4857         * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
4858         127 to sgml-maybe-name-self.
4859         (sgml-name-8bit-mode): Doc fix.
4860         (sgml-char-names-table): New variable.
4861         (sgml-name-char): Support non-ASCII and mule-unicode-*
4862         characters.  Doc fix.
4863         (sgml-maybe-name-self): Convert unibyte characters to multibyte.
4865         * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
4866         doc string the effect of `left' and `top' parameters in
4867         tooltip-frame-parameters, the default values, and the units.
4868         (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
4869         (tooltip-show): Mention in the doc string the `top' and `left'
4870         parameters in tooltip-frame-parameters, and x-max-tooltip-size.
4872 2001-10-22  Andre Spiegel  <spiegel@gnu.org>
4874         Add autoscaling support for vc-annotate.
4875         From J.D. Smith <jdsmith@alum.mit.edu>.
4877         * vc.el (vc-annotate-display-default): Accept colormap scaling
4878         ratio (now deprecated).
4879         (vc-annotate-display-autoscale): Added.
4880         (vc-annotate-add-menu): New autoscaling menu options "Span to
4881         Oldest" and "Span Oldest->Newest".  Easymenu support added for
4882         toggle menus driven by customize variable `vc-annotate-display-mode'.
4883         (vc-annotate-display-select): Added.
4884         (vc-annotate): Changed temp-buffer-show-function to
4885         `vc-annotate-display-select'.
4886         (vc-annotate-display): Removed arguments BUFFER and BACKEND.
4887         Added argument OFFSET.  Instead of backend function, calls now
4888         generic `vc-annotate-difference'.
4889         (vc-annotate-difference): Added as generic function instead of
4890         backend-specific function.  No longer takes argument POINT, but
4891         instead accepts a time OFFSET.
4892         (vc-default-annotate-current-time): Added.
4894         * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
4895         version in vc.el, with
4896         (vc-cvs-annotate-current-time): Added, as override of default.
4897         (vc-cvs-annotate-time): Added.  Taken mostly from the (now removed)
4898         `vc-cvs-annotate-difference'.
4900 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
4902         * saveplace.el (save-place): Require `saveplace'.
4904         * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
4905         Use `sexp' for :value-type instead of `face'.
4907 2001-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
4909         * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
4910         regexps due to 5-digit message IDs.
4912 2001-10-21  Jason Rumney  <jasonr@gnu.org>
4914         * term/w32-win.el (redisplay-dont-pause): Don't set.
4916 2001-10-21  Miles Bader  <miles@gnu.org>
4918         * help-funs.el (help-manyarg-func-alist): Variable removed.
4920 2001-10-21  Miles Bader  <miles@gnu.org>
4922         * help-funs.el (help-manyarg-func-alist): Remove entries for
4923         `insert', `insert-and-inherit', `insert-before-markers',
4924         `insert-before-markers-and-inherit', `message', `message-box',
4925         `message-or-box', `propertize', `format', `encode-time', `append',
4926         `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
4927         `insert-string', `ml-if', `ml-provide-prefix-argument', and
4928         `ml-prefix-argument-loop'.
4930 2001-10-21  Andre Spiegel  <spiegel@gnu.org>
4932         * vc.el (vc-diff-internal, vc-coding-system-for-diff)
4933         (vc-default-diff-tree): New functions.
4934         (vc-version-diff): Use them.  As a result, coding systems are now
4935         set up properly for all sorts of diffs, and tree diffs can now
4936         also be done locally.
4937         (vc-diff): With a prefix argument, don't require that it's called
4938         from a buffer under version control.
4939         (diff-switches): Remove duplicate definition.
4941         * vc-cvs.el (vc-cvs-diff-tree): New function.
4943 2001-10-21  Miles Bader  <miles@gnu.org>
4945         * help-funs.el (help-manyarg-func-alist): Remove entries for
4946         `list', `vector', `make-byte-code', `call-process',
4947         `call-process-region', `string', `+', `-', `*', `/', `max', `min',
4948         `logand', `logior', and `logxor'.
4950         * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
4951         image bits to compensate.  Use `make-string' instead of
4952         `make-bool-vector' (XBM apparently wants byte-aligned rows).
4954 2001-10-20  Kim F. Storm  <storm@cua.dk>
4956         * simple.el (kill-ring-save): Don't show extent of copied region
4957         if using transient-mark-mode and region is fully visible.
4959 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
4961         * (Version 21.1 released.)
4963 2001-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
4965         * files.el (auto-mode-alist): Associate .indent.pro with
4966         Fundamental mode.  Suggested by Samuel Padgett <spadgett1@nc.rr.com>.
4968 2001-10-18  Sam Steingold  <sds@gnu.org>
4970         Put the *Compile-Log* buffer in `compilation-mode'.
4971         * emacs-lisp/bytecomp.el (byte-goto-log-buffer): New function.
4972         (byte-compile-log-1, byte-compile-log-file)
4973         (displaying-byte-compile-warnings): Use it
4975 2001-10-18  Stefan Monnier  <monnier@cs.yale.edu>
4977         * mail/smtpmail.el (smtpmail-via-smtp): Use mail-envelope-from if set.
4979         * xml.el (xml-parse-tag): Use eq on char-after's return value.
4981 2001-10-18  Gerd Moellmann  <gerd@gnu.org>
4983         * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
4985         * obsolete/hilit19.el (hilit-lookup-face-create):
4986         Call set-face-font only if display-graphic-p.
4987         (toplevel): Remove references to window-system.
4989 2001-10-18  Miles Bader  <miles@gnu.org>
4991         * simple.el (what-line): Avoid problems with field properties.
4993 2001-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
4995         * wid-edit.el (widget-field-face, widget-single-line-field-face):
4996         Define special colors for a tty.
4998 2001-10-17  Francesco Potorti`  <pot@gnu.org>
5000         * comint.el (comint-password-prompt-regexp): Make it less
5001         restrictive, letting comint recognise OpenSSH2 passphrase prompts.
5003 2001-10-17  John Wiegley  <johnw@gnu.org>
5005         * eshell/em-unix.el (eshell/cat): Do a quick test if something is
5006         a regular file, before checking if it is a directory or symlink.
5007         This avoids a call to eshell-file-attributes, which can be
5008         expensive in some situations.
5010         * eshell/em-ls.el (eshell-ls-dired-initial-args): Added an extra
5011         customization variable, to differentiate ls-in-dired from regular
5012         uses of ls.
5014 2001-10-17  Miles Bader  <miles@gnu.org>
5016         * custom.el (defface): Mention `:inherit' in doc-string.
5018 2001-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
5020         * paren.el: Update the Commentary with installation instructions.
5022 2001-10-15  Dave Love  <fx@gnu.org>
5024         * international/mule.el (set-auto-coding): Fix regexps for local
5025         variables section not to eat newlines.
5027 2001-10-15  Miles Bader  <miles@gnu.org>
5029         * simple.el (display-message-or-buffer): Pass the correct buffer
5030         to `display-buffer'.
5032 2001-10-14  Stefan Monnier  <monnier@cs.yale.edu>
5034         * progmodes/executable.el (executable-binary-suffixes): Make varalias.
5035         (executable-find): Use exec-suffixes.
5036         (executable-set-magic): Don't use make-local-hook.
5038         * bindings.el (exec-suffixes): Initialize to a system-dependent value.
5040 2001-10-14  Eli Zaretskii  <eliz@is.elta.co.il>
5042         * bindings.el (completion-ignored-extensions) [ms-dos, windows-nt]:
5043         Add .ico, .pif, .lnk, .dll, .drv, .vxd, and .386.
5044         Add .so to the Unix and GNU branch.
5046         * international/latin-1.el:
5047         * international/latin-2.el:
5048         * international/latin-3.el:
5049         * international/latin-4.el:
5050         * international/latin-5.el:
5051         * international/latin-8.el:
5052         * international/latin-9.el: Add no-byte-compile: t, since
5053         Makefile.in instructs make-docfile to look at .el files.
5055 2001-10-14  Miles Bader  <miles@gnu.org>
5057         * button.el (define-button-type): Allow supertype property to be
5058         specified with a keyword `:supertype' too.
5059         (button-put, make-text-button): Allow button type property to be
5060         specified using the keyword `:type' too.
5061         (button-type): New function.
5062         (button): Add `button-category-symbol' property.
5064 2001-10-13  Stefan Monnier  <monnier@cs.yale.edu>
5066         * bindings.el (esc-map): Revert `j' and `C-j' bindings to
5067         indent-new-comment-line from comment-indent-new-line.
5069         * textmodes/refill.el (refill-mode):
5070         Bind DEL to backward-delete-char-untabify.
5071         Set backward-delete-char-untabify-method to `hungry'.
5073         * textmodes/bib-mode.el (bib-mode):
5074         * play/gomoku.el (gomoku-mode):
5075         * textmodes/page-ext.el (pages-directory-mode):
5076         * textmodes/scribe.el (scribe-mode): Use define-derived-mode.
5078         * textmodes/two-column.el (2C-mode): Don't use make-local-hook.
5080         * emacs-lisp/syntax.el (syntax-ppss): Autoload.
5082         * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
5083         Handle here-docs differently.
5084         (sh-font-lock-heredoc): Remove.
5085         (sh-here-doc-open-re, sh-here-doc-markers, sh-here-doc-re): New vars.
5086         (sh-font-lock-here-doc, sh-font-lock-close-heredoc)
5087         (sh-font-lock-open-heredoc): New functions.
5088         (sh-mode): Don't copy sh-font-lock-syntactic-keywords any more.
5089         (sh-font-lock-keywords-1): Use regexp-opt.
5090         (sh-in-comment-or-string): Use syntax-ppss.
5091         (sh-case, sh-for, sh-indexed-loop, sh-function, sh-if, sh-repeat)
5092         (sh-select, sh-tmp-file): Add explicit terminating \n.
5094         * net/ange-ftp.el (ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
5095         Use with-current-buffer.
5096         (ange-ftp-cd): New arg `noerror' to prevent signalling an error.
5097         (ange-ftp-send-cmd): If a `cd' is used (because of a space in the
5098         filename), catch any error that occurs in `ange-ftp-cd'.
5099         If an error happened, don't bother sending `cmd' at all.
5100         Fix a parenthesis typo.
5101         (ange-ftp-write-region): Don't blindly use binary if the remote host
5102         is unix-like.
5104         * play/pong.el (pong-init): Don't use make-local-hook.
5106 2001-10-13  Michael Kifer  <kifer@cs.sunysb.edu>
5108         * viper-ex.el (ex-edit): Make checks for modified buffer/file.
5109         (viper-get-ex-address-subr): More precise addr for the $ marker
5111 2001-10-13  Eli Zaretskii  <eliz@is.elta.co.il>
5113         * version.el (emacs-version): Bump to 21.1.50.
5115 2001-10-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
5117         * mail/mailalias.el (mail-directory-stream): Do not double
5118         variables in the lambda-list.
5120         * play/gomoku.el (gomoku-init-display): Ditto.
5122         * play/landmark.el (lm-init-display): Ditto.
5124         * delim-col.el (delimit-columns-rectangle-max): Ditto.
5125         (delimit-columns-rectangle-line): Ditto.
5127 2001-10-12  Stefan Monnier  <monnier@cs.yale.edu>
5129         * newcomment.el (comment-region-internal): Don't rebind
5130         invisibility_spec now that the C routines handle it correctly.
5132         * help-funs.el (locate-library): Use load-suffixes and abbrev filename.
5134         * frame.el (special-display-popup-frame): Obey new specs `same-window'
5135         and `same-frame'.
5137         * menu-bar.el (minibuffer-local-*map): Take inheritance into account.
5139         * simple.el (minibuffer-local*-map): Remove redundant bindings.
5141         * bindings.el (minibuffer-local-map): Also bind next, C-n, C-s, prior,
5142         C-p and C-r.  Remove redundant bindings from inheriting maps.
5144         * progmodes/cperl-mode.el: Merged in changes from v4.32.
5145          After 4.23 and: After 4.24:
5146         (cperl-contract-levels): Restore position.
5147         (cperl-beautify-level): Likewise.
5148         (cperl-beautify-regexp): Likewise.
5149         (cperl-commentify): Rudimental support for length=1 runs
5150         (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
5151          After 4.25:
5152         (cperl-commentify): Was recognizing length=2 "strings" as length=1.
5153         (imenu-example--create-perl-index): Was not enforcing
5154         syntaxification-to-the-end.
5155         (cperl-invert-if-unless): Allow `for', `foreach'.
5156         (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
5157         Mark qw(), m()x as indentable.
5158         (cperl-init-faces): Highlight `sysopen' too.
5159         Highlight $var in `for my $var' too.
5160         (cperl-invert-if-unless): Was leaving whitespace at end.
5161         (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
5162         (cperl-calculate-indent): Remove old commented out code.
5163         Support (primitive) indentation of qw(), m()x.
5164          After 4.26:
5165         (cperl-problems): Mention `fill-paragraph' on comment. \"" and
5166         q [] with intervening newlines.
5167         (cperl-autoindent-on-semi): New customization variable.
5168         (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
5169         (cperl-tips): Mention how to make CPerl the default mode.
5170         (cperl-mode): Support `outline-minor-mode'.  From Mark A. Hershberger.
5171         (cperl-outline-level): New function.
5172         (cperl-highlight-variables-indiscriminately): New customization var.
5173         (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
5174         From Sean Kamath <kamath@pogo.wv.tek.com>.
5175         (cperl-after-block-p): Support CHECK and INIT.
5176         (cperl-init-faces, cperl-short-docs): Likewise and "our".
5177         From Doug MacEachern <dougm@covalent.net>.
5178          After 4.27:
5179         (cperl-find-pods-heres): Recognize \"" as a string.
5180         Mark whitespace between q and [] as `syntax-type' => `prestring'.
5181         Allow whitespace between << and "FOO".
5182         (cperl-problems): Remove \"" and q [] with intervening newlines.
5183         Mention multiple <<EOF as unsupported.
5184         (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
5185         (cperl-indent-parens-as-block): New configuration variable.
5186         (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
5187         Use `cperl-indent-parens-as-block'.
5188         (cperl-find-pods-heres): Test for =cut without empty line instead of
5189         complaining about no =cut.
5190         (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
5191         (cperl-find-pods-heres): Likewise.
5192         (cperl-electric-pod): Change `forward-sexp' to `forward-word':
5193         POD could've been marked as comment already.
5194         (cperl-unwind-to-safe): Unwind before start of POD too.
5195          After 4.28:
5196         (cperl-forward-re): Throw an error at proper moment REx unfinished.
5197          After 4.29:
5198         (x-color-defined-p): Make an extra case to peacify the warning.
5199         Toplevel: `defvar' to peacify the warnings.
5200         (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
5201         No -nw-compile time warnings now.
5202         (cperl-find-tags): TAGS file had too short substring-to-search.
5203         Be less verbose in non-interactive mode
5204         (imenu-example--create-perl-index): Set index-marker after name
5205         (cperl-outline-regexp): New variable.
5206         (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
5207         (cperl-mode): Made use `cperl-outline-regexp'.
5208          After 4.30:
5209         (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
5210         (cperl-outline-level): Make start-of-file same level as `package'.
5211          After 4.31:
5212         (cperl-electric-pod): `head1' and `over' electric only if empty.
5213         (cperl-unreadable-ok): New variable.
5214         (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
5215         on an unreadable file.
5216         (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
5217         on an unreadable directory.
5219         * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
5220         Consider the text between two errors as belonging to the first error.
5221         (compilation-goto-locus): Use pop-to-buffer rather than
5222         switch-to-buffer-other-frame.
5224         * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
5225         (awk-font-lock-syntactic-keywords): New var.
5226         (awk-mode): Use it.
5228         * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
5230         * faces.el (describe-face): Call help-setup-xref earlier.
5232         * jka-compr.el (jka-compr-load-suffixes): New var.
5233         (jka-compr-install): Add its content to load-suffixes.
5234         (jka-compr-uninstall): Remove its content from load-suffixes.
5236 2001-10-12  Sam Steingold  <sds@gnu.org>
5238         * bindings.el (completion-ignored-extensions): CL-related
5239         extensions are platform-independent.
5241         * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
5242         asynchronous multiple file copying.
5244 2001-10-12  Gerd Moellmann  <gerd@gnu.org>
5246         * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5247         Turn error for repeated variables into warning.
5249         * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
5250         New function checking that lambda-list consists of non-constant
5251         symbols, that &rest and &optional are followed by variable names,
5252         that &rest VAR is the last element, and that variables aren't doubled.
5253         (byte-compile-lambda): Use it.
5255 2001-10-12  Eli Barzilay <eli@barzilay.org>
5257         * calculator.el (calculator-eng-display): Don't call concat
5258         with an integer argument.
5260 2001-10-12  Miles Bader  <miles@gnu.org>
5262         * help-mode.el (help-customize-face): New button-type.
5264         * faces.el (list-faces-display): Fix args to `help-xref-button'.
5265         (describe-face): Fix args to `help-xref-button'.
5266         Don't switch to help-buffer around call to `help-setup-xref'.
5267         Use `help-buffer' instead of hard-wired "*Help*".
5268         Require `help-mode'.
5270 2001-10-11  Stefan Monnier  <monnier@cs.yale.edu>
5272         * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
5274         * help-mode.el (help-buffer): New function.
5275         Returns the buffer-name to use for help output.
5276         Change all the code to use it instead of hard-coding *Help*.
5277         (help-mode-map): Put back the mouse-2 binding.
5278         (help-xref-stack): Change the format and make buffer-local.
5279         (help-xref-stack-item): Make buffer-local.
5280         (help-setup-xref): Do the `push' here rather than in help-do-xref.
5281         (help-xref-interned): Display the face doc as well.
5282         (help-follow-mouse): Re-introduce.
5283         (help-xref-go-back): Adapt to the new use of help-xref-stack.
5284         (help-do-xref): Don't `push' any more.
5285         (help-follow): Also follow face names.
5287         * help-funs.el (describe-function-1): Remove unused `parens' arg.
5288         Don't call help-setup-xref anymore and remove its `interactive-p' arg.
5289         Autoload and cleanup.
5290         (describe-function): Call help-setup-xref.
5291         (describe-variable): Call help-setup-xref earlier.
5293         * help.el (describe-bindings-internal): New fun moved from keymap.c.
5294         (view-lossage): Call help-setup-xref correctly and earlier.
5295         (describe-bindings): Call help-setup-xref earlier.
5296         (describe-key): Call help-setup-xref.  Fix call to describe-function-1.
5297         (describe-mode): Don't autoload.  Call help-setup-xref earlier.
5299 2001-10-11  Gerd Moellmann  <gerd@gnu.org>
5301         * master.el (master-mode): Use define-minor-mode instead of
5302         easy-mmode-define-minor-mode.  Add autload cookie.
5303         (Commentary): Remove the line showing how to autoload master-mode,
5304         since it's always autoloaded.
5306         * master.el: New file.
5308 2001-10-11  Dave Love  <fx@gnu.org>
5310         * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
5311         <byte-constref-ops>: Consider byte-constant2 and clarify the code.
5312         <const-C varset-X const-C>: Fix car/cdr typo.
5314 2001-10-11  Gerd Moellmann  <gerd@gnu.org>
5316         * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
5317         New function extracted from byte-compile-log-1.
5318         (byte-compile-log-1): Change output to be more in line with
5319         the output of other GNU tools.
5320         (byte-compile-warn): Emit `warning' instead of `**' for warnings.
5321         (byte-compile-report-error): Downcase error message.
5322         Use `error' instead of `!!' for error messages.
5323         (byte-compile-print-syms): Treat non-interactive case specially.
5324         (displaying-byte-compile-warnings): Use backquote.
5325         (byte-compile-from-buffer): Bind byte-compile-last-line.
5326         (batch-byte-compile): Remove `Done' message.
5328 2001-10-11  Stefan Monnier  <monnier@cs.yale.edu>
5330         * emacs-lisp/copyright.el (copyright): Add final \n.
5332 2001-10-11  Miles Bader  <miles@gnu.org>
5334         * diff.el (diff): Display default values in prompts as
5335         `(default ...)', not `(...)'.
5337         * info.el (Info-follow-reference): Likewise.
5339 2001-10-10  Stefan Monnier  <monnier@cs.yale.edu>
5341         * emacs-lisp/autoload.el (doc-string-elt): Remove.
5343         * newcomment.el (comment-indent): Be a little more robust in case
5344         comment-indent-function does funny things.
5345         (comment-normalize-vars): Autoload.
5346         (comment-region-internal): Fiddle with the visibility spec.
5347         (comment-valid-prefix): New function.
5348         (comment-indent-new-line): Use it.  Ignore adaptive-fill-prefixes
5349         that would turn comment-text into non-comment-text.
5351         * emacs-lisp/syntax.el: New file.
5353         * progmodes/tcl.el: Change maintainer to FSF and remove loads of
5354         compatibility cruft.
5355         (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
5356         (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
5357         (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5358         tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
5359         tcl-submit-bug-report.
5360         (tcl-mode-syntax-table): Leave \f alone.
5361         (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
5362         tcl-end-of-defun, tcl-submit-bug-report.
5363         (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
5364         (tcl-add-emacs-menu): Remove.
5365         (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
5366         (tcl-keyword-list): Add `chain'.
5367         (tcl-font-lock-syntactic-keywords): New variable.
5368         (tcl-pps-has-arg-6): Remove.
5369         (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
5370         (tcl-internal-mark-defun): Remove.
5371         (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
5372         (tcl-mode): Use define-derived-mode.  Simplify.
5373         Set comment-indent-function.
5374         (tcl-indent-command): Use line-beginning-position and comment-indent.
5375         (tcl-calculate-indent): Renamed from calculate-tcl-indent.
5376         (tcl-indent-line): Use tcl-calculate-indent.
5377         (tcl-indent-exp): Renamed from indent-tcl-exp.  Use new names.
5378         (tcl-add-log-defun): Renamed from add-log-tcl-defun.  Use match-string.
5379         (tcl-filter): Use with-current-buffer, simplify.
5380         (inferior-tcl-mode): Use define-derived-mode.
5381         (tcl-hairy-in-comment): Renamed tcl-in-comment.
5382         (tcl-simple-in-comment, tcl-in-comment): Removed.
5383         (tcl-files-alist): New function.
5384         (tcl-help-snarf-commands): Use it and return the result directly
5385         rather than through a global variable.
5386         (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
5387         (tcl-help-on-word): Provide the default value to completing-read.
5388         (tcl-hilit): Remove.
5389         (tcl-hashify-buffer, tcl-popup-menu): Simplify.
5390         (tcl-comment-indent): New function.
5391         (tcl-submit-bug-report): Remove.
5392         (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
5393         (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
5394         (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
5396 2001-10-10  Miles Bader  <miles@gnu.org>
5398         * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
5399         (Info-fontify-node): Don't fontify the node if it's already been done.
5401 2001-10-10  Gerd Moellmann  <gerd@gnu.org>
5403         * international/iso-transl.el (iso-transl-e-caret)
5404         (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
5405         Fix duplicates.  From Dave Love <d.love@dl.ac.uk>.
5407         * simple.el (end-of-buffer): Fix code scrolling specially
5408         for the buffer end.
5410         * startup.el (command-line-1): Bind tab-width to 8.
5412 2001-10-10  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
5414         * emulation/tpu-edt.el: Use defalias instead of fset for
5415         user-visible commands.  From Rob Riepel
5416         <riepel@Networking.Stanford.EDU>.
5418 2001-10-09  Gerd Moellmann  <gerd@gnu.org>
5420         * ruler-mode.el: New file.
5422 2001-10-09  Miles Bader  <miles@gnu.org>
5424         * apropos.el (button): New require.
5426         * help-funs.el: New file, contents mostly from `help.el'.
5427         (describe-variable): Use `condition-case' instead of `ignore-errors'.
5429         * help-mode.el: New file, contents mostly from `help.el'.
5431         * help.el: Don't require `view' when compiling.
5432         (help-with-tutorial, describe-function, describe-function-1)
5433         (variable-at-point, describe-variable, locate-library):
5434         Functions moved into `help-funs.el'.
5435         (help-manyarg-func-alist): Variable moved into `help-funs.el'.
5436         (help-mode, help-mode-setup, help-mode-finish, help-button-action)
5437         (help-setup-xref, help-xref-following, help-make-xrefs)
5438         (help-xref-button, help-insert-xref-button, help-xref-interned)
5439         (help-xref-go-back, help-go-back, help-do-xref, help-follow)
5440         (help-xref-on-pp): Functions moved into `help-mode.el'
5441         (help-mode-map, help-xref-stack, help-xref-stack-item)
5442         (help-highlight-p, help-highlight-face, help-back-label)
5443         (help-xref-symbol-regexp, help-xref-mule-regexp)
5444         (help-xref-info-regexp): Variables moved into `help-mode.el'.
5445         (help-symbol, help-back, help-info, help-customize-variable)
5446         (help-function-def, help-variable-def):
5447         Button-types moved into `help-mode.el'.
5448         (load-symbol-file-load-history, symbol-file):
5449         Functions moved into `subr.el'.
5450         (symbol-file-load-history-loaded): Variable moved into `subr.el'.
5451         (view-lossage): Call `help-setup-xref' instead of doing it manually.
5453         * subr.el (symbol-file-load-history-loaded)
5454         (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
5456         * loadup.el ("button"): Load removed.
5458         * button.el (define-button-type): Respect any `supertype' property.
5459         (button-type-subtype-p, button-has-type-p): New functions.
5461         * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
5462         dollar-signs.
5464         * comint.el (comint-insert-previous-argument): New function.
5465         (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
5466         (comint-insert-previous-argument-last-start-pos)
5467         (comint-insert-previous-argument-last-index): New variables.
5469         * apropos.el (apropos-next-label-button): Use the presence of a
5470         `apropos-label' property to detect label buttons.
5472 2001-10-08  Miles Bader  <miles@gnu.org>
5474         * button.el (next-button, previous-button): Remove N and WRAP
5475         parameters.  Don't pay attention to `skip' properties.
5476         (forward-button): Implement wrapping, iterating, and skipping here
5477         instead.
5478         (button-activate): USE-MOUSE-ACTION is optional.
5479         (button-nop): Function removed.
5480         (default-button): Use `ignore' as default button action.
5482         * apropos.el (apropos-next-label-button): Update arguments to
5483         `next-button'.
5484         (apropos-symbol): Add `skip' property.
5485         (apropos-function, apropos-macro, apropos-command)
5486         (apropos-variable, apropos-face, apropos-group, apropos-widget)
5487         (apropos-plist): New button types.
5488         (apropos-label-properties): Variable removed.
5489         (apropos-print): Pass button-type to apropos-print-doc, rather
5490         than help function and label text.
5491         (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
5492         Get button label from TYPE.
5494 2001-10-07  Stefan Monnier  <monnier@cs.yale.edu>
5496         * help.el (help-mode): Use define-derived-mode.
5497         (describe-mode): Add optional `buffer' arg.
5498         Use it instead of going through help-xref-mode.
5499         Avoid doubling the word `minor' when prettifying.
5500         (describe-function-1): List the corresponding key bindings.
5501         (describe-variable): Say if the var is automatically buffer-local.
5502         If the source is `loaddefs.el', look for the real source.
5503         (help-xref-mode): Remove.
5505         * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
5506         the file says no-byte-compile.
5508 2001-10-08  Miles Bader  <miles@gnu.org>
5510         * button.el (next-button, previous-button): Respect `skip' property.
5512 2001-10-07  Miles Bader  <miles@gnu.org>
5514         * woman.el (woman-mode-map): Copy button-buffer-map instead of
5515         making a new keymap.  Don't bind mouse-2.  Bind M-mouse-2 to
5516         `woman-follow-word' instead of `woman-mouse-2'.
5517         (woman-follow-word): Renamed from `woman-mouse-2'.
5518         Follow current unconditionally, since this function is now only
5519         bound to M-mouse-2.  Use accessor functions.
5520         (WoMan-highlight-references): Use `make-text-button'.
5521         (woman-xref): New button type.
5523         * loadup.el ("faces"): Move load before loading "loaddefs.el".
5524         ("button"): New load, just before "help" (which uses it).
5526         * help.el (help-mode-map): Make button-buffer-map our parent.
5527         Don't bind mouse events or tab/backtab.
5528         (help-function, help-variable, help-face, help-coding-system)
5529         (help-input-method, help-character-set, help-back, help-info)
5530         (help-customize-variable,  help-function-def, help-variable-def):
5531         New button types.
5532         (help-button-action): New function.
5533         (describe-function-1): Pass help button-types to
5534         `help-xref-button' rather than help function and help-echo string.
5535         Don't put multiple help-function args in a list to pass them to
5536         help-xref-button, just pass them as multiple arguments.
5537         Use `help-insert-xref-button' to make [back]-button, rather than
5538         `help-xref-button'.
5539         (help-xref-button): Take a button-type TYPE as a parameter rather
5540         than a function.  Remove HELP-ECHO parameter.  Remove DATA parameter
5541         and add a &rest parameter ARGS to serve the same purpose.
5542         Use `make-text-button' to add the button.
5543         (help-insert-xref-button): Use `insert-text-button' to add the button.
5544         (help-follow-mouse, help-next-ref, help-previous-ref):
5545         Functions removed.
5546         (help-do-xref): New function.
5547         (help-follow): Use `push-button' and `help-do-xref' to do most of
5548         the work.
5550         * apropos.el (apropos-symbol, apropos-label): New button types.
5551         (apropos-symbol-button-display-help)
5552         (apropos-label-button-display-help, apropos-next-label-button):
5553         New functions.
5554         (apropos-mode-map): Make button-buffer-map our parent.
5555         Don't bind mouse events.
5556         (apropos-print, apropos-print-doc): Create buttons instead of text
5557         properties.
5558         (apropos-mouse-follow): Function removed.
5559         (apropos-follow): Use buttons.
5561         * button.el: New file.
5563 2001-10-07  Gerd Moellmann  <gerd@gnu.org>
5565         * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
5566         Remove.
5568 2001-10-05  Richard M. Stallman  <rms@gnu.org>
5570         * add-log.el (add-change-log-entry): Skip copyright notice
5571         and copying permission notice at start of file, if any.
5572         Make use of terms "entry" and "item" accord with Emacs manual.
5573         Simplify the logic for moving point while entering or creating
5574         an entry and then an item.
5575         (add-change-log-entry-other-window): Doc fix.
5577 2001-10-06  Miles Bader  <miles@gnu.org>
5579         * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
5580         removed; they apparently don't work with faces.
5582 2001-10-05  Sam Steingold  <sds@gnu.org>
5584         * textmodes/sgml-mode.el (html-xhtml): New user option.
5585         (html-tag-alist, html-horizontal-rule, html-image, html-line)
5586         (html-ordered-list, html-unordered-list, html-list-item)
5587         (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
5588         (sgml-skip-close-p): New function.
5589         (sgml-value): Use it.
5591 2001-10-05  Sam Steingold  <sds@gnu.org>
5593         * calendar/diary-lib.el (diary-entry-compare): When times are
5594         identical, compare the entries lexicographically.
5596 2001-10-06  Miles Bader  <miles@gnu.org>
5598         * rfn-eshadow.el (rfn-eshadow-update-overlay):
5599         Use `minibuffer-prompt-end'.
5601         * simple.el (previous-matching-history-element): Fix misplaced
5602         parentheses.
5604 2001-10-05  Miles Bader  <miles@gnu.org>
5606         * rfn-eshadow.el: New file.
5608 2001-10-05  Miles Bader  <miles@gnu.org>
5610         * cus-face.el (custom-face-attributes): Make sure each attribute
5611         has a valid default value.  Remove hacks that mapped `nil' to
5612         `off' and used nil to mean `unspecified'.  Remove `unspecified'
5613         choices from all attributes (unspecified is handled by the parent
5614         checklist).
5615         * cus-edit.el (custom-face-edit-convert-widget)
5616         (custom-face-edit-deactivate, custom-face-edit-activate)
5617         (custom-face-edit-delete, custom-face-edit-attribute-tag):
5618         New functions.
5619         (custom-face-edit): Specify a custom :convert-widget.
5620         (custom-pre-filter-face-spec, custom-post-filter-face-spec):
5621         Don't pass in default filters that map between `nil' and `off' and
5622         `unspecified' and `nil'.
5624 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
5626         * progmodes/compile.el (compilation-buffer-name): New function.
5627         (compile-internal): Use it to determine the name of the
5628         compilation buffer.
5630 2001-10-05  Miles Bader  <miles@gnu.org>
5632         * progmodes/compile.el (grep-use-null-device): New variable.
5633         (grep-command): Mention `grep-use-null-device'.
5634         (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
5635         Make computation of `grep-command' respect `grep-use-null-device'.
5636         (grep): Respect `grep-use-null-device'.
5637         Call `grep-compute-defaults' even if grep-command is set, if
5638         grep-use-null-device is still tentative.
5640         * subr.el (call-process-shell-command): New function.
5642 2001-10-05  Miles Bader  <miles@gnu.org>
5644         * simple.el (previous-matching-history-element)
5645         (next-history-element, next-complete-history-element): Use
5646         `minibuffer-' functions instead of calling `field-' functions directly.
5647         (minibuffer-prompt-end, minibuffer-contents):
5648         (minibuffer-contents-no-properties, delete-minibuffer-contents):
5649         Functions removed (now subrs).
5650         (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
5652         * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
5653         (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
5654         instead of calling `field-' functions directly.
5655         (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
5657 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
5659         * files.el (find-file-noselect): If file's read-only status has
5660         changed on disk, ask if buffer's read-only status should be
5661         changed, unless NOWARN is set.
5663         * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
5664         alias for define-setf-method.
5666         * bindings.el: Remove no-byte-compile from file local variables
5667         to enable bootstrapping.
5669 2001-10-04  Andrew Innes  <andrewi@gnu.org>
5671         * faces.el (face-font-registry-alternatives) [windows-nt]:
5672         Make gb2312 an alias for gb2312.1980.
5674 2001-10-04  Stefan Monnier  <monnier@cs.yale.edu>
5676         * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
5677         (uniquify-reverse-components): Remove.
5679         * emacs-lisp/bytecomp.el (byte-recompile-directory):
5680         Make sure the file is readable.
5681         (byte-compile-file): Don't compile if `no-byte-compile' is set.
5682         (byte-compile-defvar): Update to reflect the change in Fdefvar.
5683         (batch-byte-recompile-directory): Pass arg=0.
5685         * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
5686         (perl-calculate-indent): Use it.
5687         (perl-backward-to-noncomment): Use forward-comment.
5689         * derived.el (define-derived-mode, derived-mode-make-docstring):
5690         Allow `parent' to be nil.
5692         * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
5693         Use define-derived-mode.
5694         (nroff-mode-map, nroff-mode-syntax-table): Massage.
5696         * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
5698         * emacs-lisp/lselect.el: Use facep iso find-face.
5700         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5701         Use regexp-opt.
5702         (doc-string-elt): Set symbols' prop.  Copied from autoload.el.
5703         (lisp-font-lock-syntactic-face-function): New function.
5704         (lisp-mode-variables): Use it.  Make arg optional.
5705         (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
5706         (lisp-mode): Don't pass an arg to lisp-mode-variables.
5707         Set comment-start-skip.
5709         * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
5711         * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
5712         (ignore-errors): Don't bother using a `err' symbol.
5714         * emacs-lisp/autoload.el (autoload-ensure-default-file)
5715         (autoload-insert-section-header, autoload-before-p)
5716         (autoload-remove-section): New functions.
5717         (generate-file-autoloads): Use them.
5718         (update-file-autoloads): Use them.  Return FILE if there's no cookie.
5719         Make sure the autoload file is properly formatted when creating it.
5720         (update-autoloads-from-directories): Use them as well.
5721         Only update autoloads for files whose timestamp has changed.
5722         Add a dummy entry to remember the files which had no autoload cookies.
5724         * timer.el (timer-relative-time): Fix computation for negative `micro'.
5726         * subr.el (define-key-after): Allow `key' to be longer than 1.
5727         (make-local-hook): Make obsolete.
5728         (add-hook, remove-hook): Don't use make-local-hook any more.
5729         (make-syntax-table): Inherit all chars from s-s-t.
5731 2001-10-04  Gerd Moellmann  <gerd@gnu.org>
5733         This is a fix for a report saying that resuming a search with C-s
5734         C-s doesn't use the case-fold-search setting of the previous
5735         search (C-s ... M-c ... then C-s C-s).
5737         * isearch.el (isearch-last-case-fold-search): New variable.
5738         (isearch-mode): Remember value of isearch-case-fold-search
5739         in isearch-last-case-fold-search.
5740         (isearch-done): Quote value of isearch-case-fold-search.
5741         (isearch-repeat): When resuming a search, restore
5742         isearch-case-fold-search from isearch-last-case-fold-search.
5744         Added to NEWS.
5746         * startup.el (inhibit-startup-buffer-menu): New user-option.
5747         (command-line-1): If inhibit-startup-buffer-menu is set, don't
5748         display the buffer menu.  From Simon Josefsson <jas@extundo.com>.
5750         This allows upto 99999 messages in the summary without screwing up
5751         the summary sorting.  Previously 9999 was the maximum.  Added to NEWS.
5753         * mail/rmailsum.el (rmail-make-summary-line)
5754         (rmail-make-summary-line-1, rmail-summary-next-same-subject)
5755         (rmail-summary-goto-msg, rmail-summary-goto-msg):
5756         Allow 5-digit message ids instead of 4.
5758         This adds expansion of environment variables in the value
5759         specified with M-x setenv.  Added to NEWS.
5761         * env.el (substitute-env-vars): New function.
5762         (setenv): Add parameter SUBSTITUTE-ENV-VARS.  If set, substitute
5763         environment variables in VALUE.  Return VALUE.
5765 2001-10-04  Gerd Moellmann  <gerd@gnu.org>
5767         * Branch for 21.1.
5769 2001-10-03  Stefan Monnier  <monnier@cs.yale.edu>
5771         * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
5773 2001-10-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
5775         * emulation/tpu-edt.el: Make messages match original TPU/edt
5776         editor.  From riepel@Stanford.EDU (Rob Riepel).
5778 2001-10-03  Eli Zaretskii  <eliz@is.elta.co.il>
5780         * rect.el: Update maintainer's email address.
5782 2001-10-02  Andreas Schwab  <schwab@suse.de>
5784         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
5785         and Extended Passive Mode, resp.
5787 2001-10-01  Eli Zaretskii  <eliz@is.elta.co.il>
5789         These changes add support for Calendar-related items in the
5790         menu bar on tty's as well:
5792         * calendar/calendar.el (calendar-mode-map): Require cal-menu
5793         unconditionally.
5794         (calendar-mode): Set up activate-menubar-hook unconditionally.
5796         * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
5797         calls x-popup-menu only if popup menus are supported.
5798         (calendar-mouse-insert-hebrew-diary-entry)
5799         (calendar-mouse-insert-islamic-diary-entry)
5800         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
5801         (calendar-mouse-view-other-diary-entries)
5802         (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
5803         (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
5804         Call cal-menu-x-popup-menu instead of x-popup-menu.
5806 2001-10-01  Gerd Moellmann  <gerd@gnu.org>
5808         * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
5810         * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
5812         * emacs-lisp/rx.el: New file.
5814 2001-10-01  Eli Zaretskii  <eliz@is.elta.co.il>
5816         * help.el (help-for-help): Doc fix.  From Pavel@Janik.cz (Pavel Janik).
5818 2001-09-30  Eli Zaretskii  <eliz@is.elta.co.il>
5820         * frame.el (select-frame-by-name, other-frame): Doc fix.
5822 2001-09-29  Eli Zaretskii  <eliz@is.elta.co.il>
5824         * play/snake.el (snake-score-file): Use temporary-file-directory
5825         instead of a literal "/tmp".  Suggested by Robert
5826         <robert@chezmarshall.freeserve.co.uk>.
5828         * play/tetris.el (tetris-score-file): Ditto.
5830 2001-09-28  Eli Zaretskii  <eliz@is.elta.co.il>
5832         * apropos.el (apropos-print): Make the directions inserted at the
5833         beginning of the *Apropos* buffer more clear.
5835 2001-09-27  Michael Kifer  <kifer@cs.sunysb.edu>
5837         * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
5838         Added comments.
5840 2001-09-27  Stefan Monnier  <monnier@cs.yale.edu>
5842         * newcomment.el (comment-normalize-vars): Use " \t" rather than
5843         "\\s-" when defining comment-end-skip.
5845 2001-09-27  Gerd Moellmann  <gerd@gnu.org>
5847         * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
5848         Call get-buffer-window first second arg `visible'.
5850         * international/mule-diag.el (list-input-methods-1):
5851         Output something that's independent of Emacs' version.
5853         * tar-mode.el (tar-mode-write-file): Don't signal an error by
5854         calling byte-to-position with a nil tar-header-offset.
5856 2001-09-27  Simon Josefsson  <jas@extundo.com>
5858         * mail/sendmail.el (send-mail-function): Doc fix.
5859         (mail-do-fcc): Error if header-end is not a marker.
5860         (mail-do-fcc): Add a comment.
5861         (mail-reply-to): Doc fix.
5862         (mail-signature): Make ATPOINT optional.
5863         (mail-yank-original): Use cond instead of nestled if.
5865 2001-09-26  Stefan Monnier  <monnier@cs.yale.edu>
5867         * info.el (Info-on-current-buffer): Default arg to "Top".
5869 2001-09-25  Eli Barzilay  <eli@barzilay.org>
5871         * calculator.el (calculator-copy-displayer): New user-option.
5872         (calculator-displayer-prev, calculator-displayer-next):
5873         Renamed from calculator-displayed-{left,right}.
5874         (calculator, calculator-standard-displayer)
5875         (calculator-num-to-string, calculator-update-display)
5876         (calculator-copy, calculator-put-value): Bug and display fixes.
5878 2001-09-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5880         * ebnf2ps.el: Eliminate make-local-hook calls.  Doc fix.
5881         (ebnf-version): New version (3.6.1).
5883         * ebnf-bnf.el: Fix character range regexp.  Doc fix.
5884         (ebnf-bnf-non-terminal-chars): New internal const.
5885         (ebnf-bnf-lex): Fix code.
5887         * ebnf-iso.el: Fix character range regexp.  Doc fix.
5888         (ebnf-iso-non-terminal-chars): New internal const.
5889         (ebnf-iso-lex): Fix code.
5891         * ebnf-yac.el: Fix character range regexp.  Doc fix.
5892         (ebnf-yac-skip-chars): New internal const.
5893         (ebnf-yac-skip-code): Fix code.
5895 2001-09-24  Stefan Monnier  <monnier@cs.yale.edu>
5897         * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
5899         * pcvs-parse.el (cvs-parse-commit): Expand the file name before
5900         passing it to VC.
5902         * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
5903         case where the file is relative.
5905 2001-09-24  Gerd Moellmann  <gerd@gnu.org>
5907         * xml.el (xml-parse-attlist): Quotes around attributes must be the
5908         same on each side.  Make sure we properly handle simple quotes.
5909         From Daiki Ueno <ueno@unixuser.org>.
5911 2001-09-23  Eli Zaretskii  <eliz@is.elta.co.il>
5913         * mail/sendmail.el (mail-mode): Doc fix.  From Simon Josefsson
5914         <jas@extundo.com>.
5916         * menu-bar.el (top-level): Minor fixes for text of help-echo in
5917         some items of the Options menu.
5919 2001-09-22  Stefan Monnier  <monnier@cs.yale.edu>
5921         * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
5923         * vc-hooks.el (vc-delete-automatic-version-backups):
5924         Don't fail if the directory doesn't exist.
5926         * diff-mode.el (diff-default-read-only): New var.
5927         (diff-mode): Use it.
5929 2001-09-22  Eli Zaretskii  <eliz@is.elta.co.il>
5931         * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
5932         Use make-keymap instead of copy-keymap, since copying the global
5933         keymap messes up the menu bar.
5935         * info.el (Info-goto-node, Info-menu): Doc fix.  Suggested by
5936         Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
5938 2001-09-21  Eli Zaretskii  <eliz@is.elta.co.il>
5940         * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
5942         * dired-aux.el (dired-insert-subdir): Pass switches to
5943         dired-build-subdir-alist.
5945 2001-09-21  Stephen Gildea  <gildea@stop.mail-abuse.org>
5947         * time-stamp.el (time-stamp-string-preprocess): Fix bug that
5948         caused %#a and %#b to be mis-formatted.
5950 2001-09-20  Eli Zaretskii  <eliz@is.elta.co.il>
5952         * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
5953         ccmode, emacs-mime, and eudc manuals.
5955 2001-09-19  Sam Steingold  <sds@gnu.org>
5957         w32 find cannot be used with `grep-find'.
5958         * progmodes/compile.el (find-program): New variable.
5959         (grep-compute-defaults): Use it to set `grep-find-command'.
5961 2001-09-19  Gerd Moellmann  <gerd@gnu.org>
5963         * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
5965 2001-09-19  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5967         * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
5968         programming.  Doc fix.
5969         (ebnf-version): New version (3.6).
5970         (ebnf-eps-begin): Data fix.
5971         (ebnf-begin-file): Code fix.
5973         * ebnf-bnf.el: Doc fix.
5974         (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
5976         * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
5978 2001-09-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5980         * ps-print.el: Better face mapping for black/white PostScript printers.
5981         Check if mark is active when printing a region.  Doc fix.
5982         (ps-print-version): New version number (6.5.5).
5983         (ps-print-color-p): Customization fix.
5984         (ps-black-white-faces): New option.
5985         (ps-black-white-faces-alist): New internal var.
5986         (ps-count-lines-preprint, ps-print-preprint-region): New funs.
5987         (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
5988         (ps-nb-pages-region): Interactive fix.
5989         (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
5990         (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
5992 2001-09-18  Eli Zaretskii  <eliz@is.elta.co.il>
5994         * dired.el (dired-move-to-filename-regexp): Allow one digit in the
5995         numeric month value, and allow the Kanji character after the it to
5996         be missing (happens with ls-lisp's output on Japanese versions of
5997         MS-Windows).
5999 2001-09-18  Miles Bader  <miles@gnu.org>
6001         * diff-mode.el (diff-mode): Don't make the buffer read-only if
6002         it's empty (and thus probably a new patch file about to be edited).
6004 2001-09-17  Gerd Moellmann  <gerd@gnu.org>
6006         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
6007         Check for '(' in column 0 of doc string.
6009         * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
6010         of `nth' so that using a vector as bounding-box works.
6011         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6013 2001-09-17  Andre Spiegel  <spiegel@gnu.org>
6015         * vc.el (vc-annotate): Use current workfile version explicitly as
6016         a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
6018 2001-09-16  Eli Zaretskii  <eliz@is.elta.co.il>
6020         * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
6021         convert-standard-filename doesn't guarantee that the .el extension
6022         is preserved.
6024         * dos-fns.el (convert-standard-filename): Replace invalid
6025         characters only after converting dash/underscore to a period.
6026         (original-make-auto-save-file-name): New.
6027         (make-auto-save-file-name): New function, overrides the definition
6028         on files.el and calls the original function via
6029         original-make-auto-save-file-name.
6031         * mail/rmail.el (top-level): Require mule-utils when compiling.
6032         (rmail-decode-babyl-format): Use detect-coding-with-priority
6033         instead of detect-coding-region, to favor detection of emacs-mule
6034         encoded Babyl files written by rmailout.el etc.  Suggested by
6035         Kenichi Handa <handa@etl.go.jp>.
6037 2001-09-14  Eli Zaretskii  <eliz@is.elta.co.il>
6039         * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
6040         Use `equal', not `=', since the device number can be a cons cell.
6042 2001-09-14  Gerd Moellmann  <gerd@gnu.org>
6044         * simple.el: Comment out change of 2001-09-13.
6046 2001-09-13  Milan Zamazal  <pdm@zamazal.org>
6048         * progmodes/compile.el (grep-compute-defaults): Don't set
6049         grep-command/grep-find-command when it is already non-nil.
6050         (grep-command): Make it a user option.
6051         (grep-find-command): Likewise.
6053 2001-09-13  Michael Kifer  <kifer@cs.sunysb.edu>
6055         * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
6056         inhibit quit.
6058 2001-09-13  Eli Zaretskii  <eliz@is.elta.co.il>
6060         * files.el (make-auto-save-file-name): If long file names are not
6061         supported on MS-DOS, truncate the file name to DOS 8+3 limits before
6062         generating an auto-save file name from it.
6064 2001-09-13  Gerd Moellmann  <gerd@gnu.org>
6066         * ps-print.el (ps-print-region, ps-print-region-with-faces)
6067         (ps-nb-pages-region): Signal an error if called interactively
6068         and the mark is not active.
6070         * simple.el (minibuffer-prompt-modification)
6071         (minibuffer-prompt-insertion): New functions.
6072         (minibuffer-prompt-properties): Use `modification-hooks' and
6073         `insert-in-front-hooks'.
6075 2001-09-12  Richard M. Stallman  <rms@gnu.org>
6077         * textmodes/outline.el (outline-regexp): Doc fix.
6078         Initialize it in the defcustom, the usual way.
6080 2001-09-12  Gerd Moellmann  <gerd@gnu.org>
6082         * ediff-mult.el (ediff-get-meta-info): Take into account that data
6083         from `ediff-meta-info' properties need not be an overlay.
6084         From David Ponce <dponce@voila.fr>.
6086         * isearch.el (isearch-intersects-p): Fix end checks.
6088 2001-09-11  Eli Zaretskii  <a34785@is.elta.co.il>
6090         * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
6091         `t' branch of `cond', since Irix 6.1 and up is a special case of
6092         the standard dbx interface.
6094 2001-09-11  Miles Bader  <miles@gnu.org>
6096         * comint.el (comint-send-input): When waiting for echoed input,
6097         don't save the expected end position in `echo-end', so that things
6098         work properly even if the buffer is modified elsewhere at the same
6099         time [this happens if `comint-truncate-buffer' is used].
6101 2001-09-11  Gerd Moellmann  <gerd@gnu.org>
6103         * textmodes/outline.el (outline-mode): Use `^' and a shy group
6104         when constructing imenu-generic-expression from outline-regexp.
6106 2001-09-10  Eli Zaretskii  <eliz@is.elta.co.il>
6108         * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
6109         `equal' instead of `=', since they can be cons cells.  From Nils
6110         Goesche <cartan@cartan.de>.
6112 2001-09-10  Andre Spiegel  <spiegel@gnu.org>
6114         * vc.el (vc-annotate): Rewrote doc string.
6116 2001-09-10  Eli Zaretskii  <eliz@is.elta.co.il>
6118         * time-stamp.el: Update Stephen Gildea's email address.
6120 2001-09-10  Gerd Moellmann  <gerd@gnu.org>
6122         * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
6123         enable-multibyte-characters = nil.  From Hallvard B Furuseth
6124         <h.b.furuseth@usit.uio.no>.
6126 2001-09-09  Michael Kifer  <kifer@cs.sunysb.edu>
6128         * ediff-init.el (ediff-highest-priority): Bug fix.
6130         * viper-cmd.el (viper-special-read-and-insert-char): New function
6131         that reads a character and uses the current input method or
6132         iso-accents when appropriate.
6134         * viper.el and all others: Corrections to the comment blocks at
6135         the top.
6137 2001-09-09  Eli Zaretskii  <eliz@is.elta.co.il>
6139         * info.el (Info-goto-node): Doc fix.
6141 2001-09-07  Gerd Moellmann  <gerd@gnu.org>
6143         * isearch.el (isearch-intersects-p): New function.
6144         (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
6145         use isearch-intersects-p, and clean up.
6147 2001-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
6149         * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
6150         and "german8", for the new German orthography dictionaries,
6151         (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
6152         the entries, to keep the line length balanced for loaddefs.el.
6154 2001-09-07  Dr Francis J. Wright  <F.J.Wright@qmw.ac.uk>
6156         * comint.el (comint-send-input): Handle comint-process-echoes
6157         differently.
6159 2001-09-07  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
6161         * locate.el (locate-insert-header): Remove unnecessary whitespace.
6163 2001-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
6165         * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
6167 2001-09-07  Gerd Moellmann  <gerd@gnu.org>
6169         * server.el (server-switch-buffer):
6170         * textmodes/refer.el (refer-find-entry-internal):
6171         * term/sup-mouse.el (sup-pos-to-window):
6172         * term/bg-mouse.el (bg-window-from-x-y):
6173         * emacs-lisp/edebug.el (edebug-window-live-p):
6174         Use get-window-with-predicate.
6176         * window.el (get-window-with-predicate): Renamed from some-window.
6177         (some-window): Make it an alias.
6179 2001-09-06  Gerd Moellmann  <gerd@gnu.org>
6181         * simple.el (undo): Remove positions from buffer-undo-list up to
6182         the next undo boundary only.
6184 2001-09-06  Eli Zaretskii  <eliz@is.elta.co.il>
6186         * makefile.nt (install): Don't copy sc.el.  Reported by Richard
6187         Kim <ryk@dspwiz.com>
6189         * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
6190         the message "Creating customization items...done".
6192 2001-09-05  Gerd Moellmann  <gerd@gnu.org>
6194         * font-lock.el (toplevel): Require `jit-lock' only if
6195         font-lock-support-mode is set to jit-lock-mode.
6197 2001-09-05  Eli Zaretskii  <eliz@is.elta.co.il>
6199         * international/quail.el (quail-use-package, quail-inactivate)
6200         (quail-activate): Mention the hooks these functions run in their
6201         doc strings.
6203 2001-09-05  Edward M. Reingold <reingold@iit.edu>
6205         * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
6206         of file in header of menu.
6208 2001-09-04  Gerd Moellmann  <gerd@gnu.org>
6210         * env.el (setenv): Interactively, if VARIABLE has a current value,
6211         add that to the front of the history, as the doc string says.
6213         * comint.el (comint-send-input): Change help-echo.
6214         From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
6216         * bookmark.el (bookmark-write-file): Bind print-length and
6217         print-level to nil.  From Tom Capey <tomc@edina.co.uk>.
6219         * obsolete/uncompress.el: Moved there from lisp/.
6221         * comint.el (comint-insert-clicked-input): Goto point-max before
6222         deleting previous input.  From "Dr Francis J. Wright"
6223         <F.J.Wright@qmw.ac.uk>.
6225         * simple.el (backward-word): Doc fix.
6227 2001-09-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
6229         * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
6230         * uncompress.el, uniquify.el, vc.el, view.el, window.el
6231         * w32-fns.el: Add Keywords header.
6233 2001-09-04  Eli Zaretskii  <eliz@is.elta.co.il>
6235         * menu-bar.el: Fix separators in the Edit menu.  Bring "Fill" near
6236         "Text Properties".  Suggested by Simon Marshall
6237         <Simon.Marshall@midas-kapiti.com>.
6239 2001-09-04  Andrew Choi  <akochoi@cse.cuhk.edu.hk>
6241         * term/mac-win.el (mac-drag-n-drop): Decode file name by
6242         consulting the value of file-name-coding-system.
6244 2001-09-03  Stefan Monnier  <monnier@cs.yale.edu>
6246         * help.el (describe-function-1): Save precomputed `file-name' rather
6247         than recomputing it (incorrectly) with `symbol-file'.
6249 2001-09-03  Gerd Moellmann  <gerd@gnu.org>
6251         * international/isearch-x.el (isearch-exit-recursive-edit):
6252         Take three parameters, since it's used as an after-change-function.
6254         * emacs-lisp/backquote.el (backquote-backquote-symbol)
6255         (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
6256         from doc strings.
6258 2001-09-02  Milan Zamazal  <pdm@zamazal.org>
6260         * progmodes/glasses.el (glasses-convert-to-unreadable):
6261         Consider underscores as in `glasses-make-readable'.
6263 2001-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
6265         * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
6266         MS-DOS, since cpp might not be available.
6268         * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
6269         Mention "yank" in the help-echo text.
6270         Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6272 2001-09-01  Stefan Monnier  <monnier@cs.yale.edu>
6274         * newcomment.el (comment-indent): Insert spaces more carefully.
6276 2001-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
6278         * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
6279         exists.  From Andy Petrusenco <andy@int.spb.ru>.
6281         * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
6282         display-popup-menus-p returns nil.  Suggested by Andy Petrusenco
6283         <andy@int.spb.ru>.
6285 2001-08-31  Gerd Moellmann  <gerd@gnu.org>
6287         * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
6288         Instead of running mouse-yank-at-click, see what the event is
6289         bound to outside Isearch and run that.
6291 2001-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
6293         * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
6294         Fix the menu entry to mention transient-mark-mode.
6296 2001-08-30  Gerd Moellmann  <gerd@gnu.org>
6298         * simple.el (eval-expression-print-level): Fix last change.
6300         * bindings.el (mode-line-coding-system-map): New variable.
6301         (mode-line-mule-info): Give the "%Z" a local-map keymap.
6303         * simple.el (eval-expression-print-level): Change the type
6304         of the defcustom to allow nil.
6306         * emacs-lisp/find-gc.el: Moved here from lisp/.
6308         * international/quail.el (quail-completion-1):
6309         Reverse the ((CHAR . DEFN) ...) list before processing it.
6310         From Kenichi Handa <handa@etl.go.jp>.
6312         * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
6313         * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
6315 2001-08-30  Eli Zaretskii  <eliz@is.elta.co.il>
6317         * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
6318         aren't supported.  This avoids the annoying gray strip drawn by
6319         the Windows version instead of the missing tool bar.
6321 2001-08-29  Gerd Moellmann  <gerd@gnu.org>
6323         * menu-bar.el (menu-bar-options-menu): Make option text, messages
6324         and tooltips more consistent.  From "Marshall, Simon"
6325         <Simon.Marshall@midas-kapiti.com>.
6327         * startup.el (fancy-splash-screens): Temporarily set
6328         minor-mode-map-alist to nil while displaying splash screens.
6330 2001-08-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
6332         * buff-menu.el: Add Keywords header.
6333         Doc fix (C-x C-b is bound to list-buffers).
6335         * dired-x.el: Add keyword files to get listed in finder.
6336         Remove confusing notes about GNU Emacs 19.
6338         * dired.el, dired-aux.el: Add Keywords header.
6340 2001-08-28  Andre Spiegel  <spiegel@gnu.org>
6342         * vc.el (vc-revert-file): Call the backend even if the FILE's
6343         contents can be reverted locally; pass new arg CONTENTS-DONE
6344         down to the backend.
6346         * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
6347         optional arg CONTENTS-DONE.
6349 2001-08-28  Andrew Innes  <andrewi@gnu.org>
6351         * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
6353 2001-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
6355         * makefile.nt (install): Copy more *.el files.
6357 2001-08-28  Gerd Moellmann  <gerd@gnu.org>
6359         * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
6360         instead of `w' which is already in use.
6362         * gs.el (gs-load-image): Use sleep-for.
6363         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6365 2001-08-28  Miles Bader  <miles@gnu.org>
6367         * replace.el (query-replace-regexp-eval): Return args from
6368         `interactive' form in correct order.
6370 2001-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
6372         * mouse.el (mouse-buffer-menu): If the buffer menu is split by
6373         major modes, don't create panes for modes for which
6374         mouse-buffer-menu-alist returns an empty alist.
6376 2001-08-28  Thien-Thi Nguyen  <ttn@gnu.org>
6378         * progmodes/hideshow.el: Update first-line description.
6379         Sync comments w/ maintainer version 5.31.
6381         (hs-isearch-open): Default value now `code'.
6382         Fix docstring to use "code blocks" vs "comment blocks",
6383         as opposed to "block" vs "comment".
6384         (hs-flag-region): Accept `hs-isearch-open' value
6385         of `block' as synonymous w/ `code'.
6386         (hs-hide-block-at-point): For code blocks, pass `code'
6387         to `hs-flag-region' instead of `block'.
6389 2001-08-28  Miles Bader  <miles@gnu.org>
6391         * comint.el (comint-next-prompt): Don't loop infinitely if
6392         {next,previous}-single-char-property-change returns its input
6393         position when the search fails.
6395 2001-08-27  Miles Bader  <miles@gnu.org>
6397         * comint.el (comint-get-old-input-default): Don't signal an error
6398         if point is not on an input field; instead, return the current
6399         line (using `comint-bol' to skip any prompt, in case we're not
6400         using fields at all).
6402         * man.el (Man-mode-line-format): Variable removed.
6403         (Man-mode): Change `mode-line-buffer-identification' instead of
6404         `mode-line-format'.
6406 2001-08-27  Gerd Moellmann  <gerd@gnu.org>
6408         * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
6409         From Simon Josefsson <jas@extundo.com>.
6411 2001-08-26  Eli Zaretskii  <eliz@is.elta.co.il>
6413         * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
6414         messages.  From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6416         * emacs-lisp/levents.el: Specify FSF as Maintainer.  From Pavel
6417         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6419         * emacs-lisp/lselect.el: Ditto.
6421         * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
6422         Remove periods from the end of error message strings.
6423         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6425         * progmodes/antlr-mode.el: Add Keywords header.  From Pavel
6426         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
6428         * net/telnet.el: Ditto.
6430 2001-08-26  Gerd Moellmann  <gerd@gnu.org>
6432         * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
6433         KEYMAP to the call to define-minor-mode.
6435 2001-08-24  Eli Zaretskii  <eliz@is.elta.co.il>
6437         * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
6438         Replace some of the undefined characters with emulations of bidi
6439         formatting characters and Niqud as per SI 1311-1.
6440         (IT-unicode-translations): Ditto.
6441         (IT-display-table-setup, IT-setup-unicode-display):
6442         Fill characters without translations with dos-unsupported-char-glyph.
6444 2001-08-24  Simon Josefsson  <jas@extundo.com>
6446         * hl-line.el (hl-line-mode): Don't be a global mode.
6447         (global-hl-line-mode): New function.
6449 2001-08-24  Gerd Moellmann  <gerd@gnu.org>
6451         * gs.el (gs-load-image): Wait for GHOSTVIEW window property
6452         being reset by Ghostscript.  Don't kill the gs process.
6453         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
6455 2001-08-24  Andrew Choi  <akochoi@cse.cuhk.edu.hk>
6457         * term/mac-win.el: Require scroll-bar.
6459 2001-08-23  Stefan Monnier  <monnier@cs.yale.edu>
6461         * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
6463 2001-08-23  Eli Zaretskii  <eliz@is.elta.co.il>
6465         * hexl.el (hexl-insert-multibyte-char) New function.
6466         (hexl-quoted-insert, hexl-self-insert-command)
6467         (hexl-insert-hex-char, hexl-insert-decimal-char)
6468         (hexl-insert-octal-char): Call it instead of hexl-insert-char.
6469         Fix the doc strings accordingly.
6470         (hexl-insert-char): Reject characters whose code is above 255.
6471         Doc fix.
6472         (hexl-mode-map): Copy the global keymap instead of creating a
6473         sparse keymap, and bind all self-inserting characters to
6474         hexl-self-insert-command.
6476 2001-08-22  Stefan Monnier  <monnier@cs.yale.edu>
6478         * wid-edit.el (text): Re-order docstring correctly.
6480         * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
6482         * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
6484 2001-08-22  Eli Zaretskii  <eliz@is.elta.co.il>
6486         * simple.el (line-number-mode): Mention the variable
6487         line-number-display-limit-width in the doc string.
6489 2001-08-22  Gerd Moellmann  <gerd@gnu.org>
6491         * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
6492         Temporarily select EVENT's window for switching buffers.
6493         (mode-line-bury-buffer): New function.
6494         (mode-line-buffer-identification-keymap): Use it instead of
6495         bury-buffer.  Bind down-mouse events to prevent global down-mouse
6496         events from shining through.
6498 2001-08-21  Stefan Monnier  <monnier@cs.yale.edu>
6500         * newcomment.el (comment-beginning): Make sure the comment-start
6501         we found isn't a comment-end (in cases where confusion is possible).
6503 2001-08-22  Miles Bader  <miles@gnu.org>
6505         * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
6506         before writing it, so that hard-links don't see new version.
6508 2001-08-21  Gerd Moellmann  <gerd@gnu.org>
6510         * gs.el (gs-set-ghostview-colors-window-prop):
6511         Call x-change-window-property with 3rd arg FRAME.
6512         (gs-load-image): Wait for a previous Ghostscript process
6513         to complete before starting a new one.
6515         * image.el (image-type-regexps): Make sure that the TIFF
6516         pattern is only matched at the beginning of a string.
6517         From Markus Rost <rost@math.ohio-state.edu>.
6519         * international/swedish.el: Pre-Mule file removed.  From Jonas
6520         Oberg <jonas@gnu.org>.
6522 2001-08-20  Rajesh Vaidheeswarran  <rv@gnu.org>
6524         * whitespace.el (whitespace-abort-on-error): Add custom variable
6525         to whitespace to abort a write-file if whitespace is detected in file.
6527         * whitespace.el (whitespace-write-file-hook): Hook to be called
6528         when writing a file. If `whitespace-abort-on-error' is set, the
6529         write will abort on detecting whitespaces.
6530         If `whitespace-auto-cleanup' is set, the file will be cleaned
6531         automatically prior to writing.
6533         * whitespace.el (whitespace-buffer-search): Let's not insert bogus
6534         whitespaces in the error output!
6536         * whitespace.el (whitespace-check-indent-whitespace): Defaults to
6537         `indent-tabs-mode', since the latter notes user preferences on
6538         TABs anyway.
6540         * whitespace.el (whitespace-version): 3.1. All of the above issues
6541         were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
6543 2001-08-20  Gerd Moellmann  <gerd@gnu.org>
6545         * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
6546         some spaces from a message.  From Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>.
6548         * whitespace.el (whitespace-global-mode): Add autoload cookie.
6550 2001-08-20  Alex Schroeder  <alex@gnu.org>
6552         * sql.el (sql-db2): Doc change.
6554 2001-08-20  Alex Schroeder  <alex@gnu.org>
6556         * sql.el (sql-postgres): Add the database at the end of the
6557         parameters instead of at the beginning.
6558         (sql-postgres-options): Doc change.
6560 2001-08-17  Gerd Moellmann  <gerd@gnu.org>
6562         * custom.el (defcustom): Doc fix.
6564 2001-08-16  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
6566         * ps-mule.el (find-composition): Check if (char-after POS)
6567         returns a valid character.
6569 2001-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
6571         * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
6572         original-point for extra CR characters that are added/removed when
6573         the buffer is written/read whose EOL type is -dos.
6575 2001-08-16  Miles Bader  <miles@gnu.org>
6577         * simple.el (line-move): Undo previous change.
6579         * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
6580         property to input-terminating `boundary' overlays to avoid
6581         line-move wierdness.
6583 2001-08-16  Gerd Moellmann  <gerd@gnu.org>
6585         * lazy-lock.el (lazy-lock-fontify-region): Widen the current
6586         buffer in a save-restriction.  Under one test case with Ediff,
6587         window-scroll-functions are run with a window start that's
6588         temporarily outside of the restriction.
6590 2001-08-16  Robert J. Chassell <bug-texinfo@gnu.org>
6592         * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
6593         (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
6594         (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
6595         (texinfo-update-menu-region-beginning)
6596         (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
6597         command, @ifnottex, to regexps, so it is found.
6599 2001-08-16  Andrew Innes  <andrewi@gnu.org>
6601         * makefile.nt (DONTCOMPILE): Omit bindings.el.
6602         (DONTCOMPILE): Omit sc.el.
6604         * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
6605         (DONTCOMPILE): Omit sc.el.
6607 2001-08-16  Gerd Moellmann  <gerd@gnu.org>
6609         * replace.el (occur): Bind inhibit-read-only to t.
6611 2001-08-16  Miles Bader  <miles@gnu.org>
6613         * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
6614         calling `constrain-to-field', to avoid problems with comint prompts.
6616 2001-08-15  Gerd Moellmann  <gerd@gnu.org>
6618         * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
6619         (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
6621         * ediff-mult.el (ediff-get-meta-info): Fix the condition
6622         of a while-loop.
6624         * Makefile.in (DONTCOMPILE): Remove sc.el.
6626         * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
6627         Don't include term/.
6629         * mail/sc.el:  Moved to obsolete/.
6631 2001-08-14  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
6633         * ps-print.el: Change error function arguments to follow Emacs
6634         message convention.  Doc fix.
6635         (ps-print-version): New version number (6.5.4).
6636         (coding-system-for-write): Change declaration position to avoid
6637         XEmacs compilation gripes.
6638         (coding-system-for-read, buffer-file-coding-system):
6639         Declarations to avoid XEmacs compilation gripes.
6641         * ps-mule.el: Doc fix.
6642         (ps-mule-encode-header-string): If STRING is not a string, replace
6643         STRING by empty string.
6645 2001-08-14  Eli Zaretskii  <eliz@is.elta.co.il>
6647         * frame.el (show-trailing-whitespace): Doc fix.
6649 2001-08-13  Eli Zaretskii  <eliz@is.elta.co.il>
6651         * desktop.el (desktop-save): Insert the coding: tag before
6652         desktop-header.
6654 2001-08-13  Gerd Moellmann  <gerd@gnu.org>
6656         * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
6657         its path from $els.
6659         * image.el (image-jpeg-p): Fix call of substring.
6661 2001-08-10  Gerd Moellmann  <gerd@gnu.org>
6663         * play/animate.el (animate-string): Doc fix.  Use a buffer
6664         name with stars in it.
6665         (animate-sequence): New function.
6666         From Richard Stallman <rms@gnu.org>.
6668         * frame.el (select-frame-set-input-focus): New function
6669         extracted from other-frame.
6670         (other-frame): Use it.
6671         (next-multiframe-window, previous-multiframe-window): Use it.
6673         * isearch.el (isearch-other-meta-char): Don't switch to the
6674         buffer of a window clicked on, when the current buffer is
6675         in Isearch mode.
6677         * image.el (image-jpeg-p): Test for APPn markers in the range
6678         #xe0..#xef.
6680 2001-08-09  Gerd Moellmann  <gerd@gnu.org>
6682         * desktop.el (desktop-save): Don't use concat to form a file
6683         name, use expand-file-name.
6685         * mouse.el (mouse-delete-window): Do nothing if frame has just
6686         one window.
6688         * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
6689         for the minor mode name.
6691         * view.el (toplevel): Use mode-line-minor-mode-keymap for the
6692         minor mode name.
6694         * time.el (display-time-string-forms): Use make-mode-line-mouse-map
6695         instead of make-mode-line-mouse2-map.
6697         * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
6698         the minor mode name.
6700         * emacs-lisp/easy-mmode.el (define-minor-mode):
6701         Use  mode-line-minor-mode-keymap for the minor mode name.
6703         * calendar/calendar.el (calendar-mode-line-format):
6704         Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
6706         * bindings.el (make-mode-line-mouse-map): Renamed from
6707         make-mode-line-mouse2-map.  Take additional arg MOUSE.
6708         (mode-line-modified): Use mouse-3 instead of mouse-2.
6709         (mode-line-buffer-identification-keymap): Bind keys differently.
6710         (propertized-buffer-identification): Adapt help-echo to new bindings.
6712         * bindings.el (mode-line-format): Specify help-echo for line
6713         number, column number and buffer-percent part of the mode-line.
6715         * image.el (image-type-regexps): Allow whitespace at the start
6716         of the image data for XPM, XBM and Postscript, which are
6717         text files.
6718         (image-jpeg-p): Correct calculation of next field offset.
6720 2001-08-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
6722         * battery.el: Fix typo.
6724 2001-08-08  Gerd Moellmann  <gerd@gnu.org>
6726         * image.el (image-type-regexps): Allow predicates.  Change the way
6727         JPEG images are recognized.
6728         (image-jpeg-p): New function.
6729         (image-type-from-data): Handle predicates in image-type-regexps.
6731         * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
6732         #:, #x, #o, and similar constructs.
6734 2001-08-07  Gerd Moellmann  <gerd@gnu.org>
6736         * vc.el (vc-transfer-file): Fix malformed autoload cookie.
6738         * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
6739         instead of `progn'.
6741         * tar-mode.el (tar-extract): Avoid generating a new buffer
6742         for each file visited.  From Markus Rost <rost@math.ohio-state.edu>.
6744         * textmodes/paragraphs.el (forward-sentence): Avoid building
6745         a regexp from sentence-end.  From Kenichi Handa <handa@etl.go.jp>.
6747         * progmodes/executable.el (executable-set-magic):
6748         If executable-find returns a quoted file name, unquote it before
6749         inserting it.
6751         * image.el (image-type-regexps): For JPEG files, use a regexp
6752         derived from the JFIF spec.
6754         * image.el (image-type-regexps): Use `\`' instead of `^' in
6755         most regular expressions.
6757 2001-08-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
6759         * play/animate.el: Re-insert a reference to re-inserted function.
6761 2001-08-06  Gerd Moellmann  <gerd@gnu.org>
6763         * help.el (describe-function-1): Use find-function-search-for-symbol
6764         instead of find-function-noselect because the latter follows aliases.
6766         * play/animate.el (animate-birthday-present): Re-insert.
6768         * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
6769         Handle old-style menu definitions.
6771 2001-08-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
6773         * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
6774         * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
6776         * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
6777         * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
6778         * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
6780 2001-08-05  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
6782         * textmodes/tildify.el: Milan Zamazal has new address.
6784 2001-08-03  Gerd Moellmann  <gerd@gnu.org>
6786         * custom.el (custom-set-variables): Don't test `custom-requests'
6787         properties, check the third element of the options passed to
6788         custom-set-variables instead.
6790         * info.el (info-insert-file-contents): Use info-file-exists-p
6791         instead of file-exists-p.
6793         * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
6794         the mode-line face is restored.  Fix several bugs.
6796         * replace.el (perform-replace): Doc fix.
6798 2001-08-02  Francesco Potorti`  <pot@gnu.org>
6800         * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
6801         (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
6802         (uniquify-fix-item-base, uniquify-fix-item-filename)
6803         (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
6804         Callers changed.
6805         (uniquify-set-proposed): Changed to work with a vector item.
6806         (uniquify-rationalize-file-buffer-names): Use a list of arrays for
6807         the fix list, and a list of strings for the non-file buffer
6808         names.  Both changes reduce consing.
6809         (uniquify-rationalize-a-list): Local variable renaming.
6810         (uniquify-rationalize-conflicting-sublist): Use member instead of
6811         assoc.
6812         (uniquify-rename-buffer): Use unless instead of if not.
6814 2001-08-02  Gerd Moellmann  <gerd@gnu.org>
6816         * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
6818         * custom.el (custom-set-variables): Set options with :require
6819         clauses last.
6821         * custom.el (defcustom): Doc fix.
6823         * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
6825 2001-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
6827         * man.el (man): Mention Man-switches in the doc string.
6828         (Man-switches): Mention -a in the doc string.
6830         * textmodes/ispell.el (ispell-alternate-dictionary):
6831         Add /usr/share/lib/dict/words, for Irix.
6833         * bindings.el: Bind shifted and control-shifted kp-* keys to the
6834         corresponding non-kp keys.  Suggested by Stephen Gildea
6835         <gildea@stop.mail-abuse.org>.
6837 2001-08-01  Francesco Potorti`  <pot@gnu.org>
6839         * uniquify.el: These changes correct a corner case that the old
6840         code managed correctly.
6841         (uniquify-fix-item-proposed): Renamed from
6842         uniquify-fix-item-min-proposed.
6843         (uniquify-set-proposed): New function.
6844         (uniquify-rationalize-file-buffer-names): Code reshuffled for
6845         clarity and speed.
6846         (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
6847         This is equivalent to what the old code did.
6848         (uniquify-rationalize-a-list): Never recompute the proposed
6849         name.  Sort the conflicting sublist before rationalising it: this
6850         is equivalent to what the old code did, but one directory element
6851         at a time, and only when necessary.
6852         (uniquify-rationalize-conflicting-sublist): Recompute here the
6853         proposed name.
6855 2001-08-01  Gerd Moellmann  <gerd@gnu.org>
6857         * play/animate.el: Add Keywords and Maintainer.  Remove a
6858         reference to a removed function.
6860         * play/animate.el (animate-string): Handle case that the string is
6861         longer than the window is wide.
6863 2001-07-31  Gerd Moellmann  <gerd@gnu.org>
6865         * desktop.el (desktop-save): Bind coding-system-for-write to
6866         `emacs-mule' for write-region.
6868         * delsel.el (delete-selection-pre-hook): Don't set this-command
6869         to `ignore' if the region is empty.
6871         * international/mule.el (set-keyboard-coding-system):
6872         Set keyboard-coding-system.
6874         * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
6875         before accessing it.
6877 2001-07-30  Andreas Schwab  <schwab@suse.de>
6879         * menu-bar.el (toggle-highlight-paren-mode):
6880         Use `(show-paren-mode)' as body.
6882 2001-07-30  Andre Spiegel  <spiegel@gnu.org>
6884         * vc.el (vc-checkout-hook): New hook.
6885         (vc-checkout): Run it.
6887 2001-07-30  Eli Zaretskii  <eliz@is.elta.co.il>
6889         * progmodes/make-mode.el (makefile-macroassign-regex):
6890         Recognize the ?= operator.  From Jonathan Kamens <jik@curl.com>.
6892 2001-07-30  Gerd Moellmann  <gerd@gnu.org>
6894         * vc.el (vc-switch-backend): Fix autoload cookie.
6896         * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
6897         the desktop file.
6899 2001-07-30  Simon Josefsson  <jas@extundo.com>
6901         * mail/mail-utils.el (mail-strip-quoted-names): Replace text
6902         literally.  Reported by Sean Rima <sean@**Delete**.tcob1.net>.
6904 2001-07-27  Gerd Moellmann  <gerd@gnu.org>
6906         * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
6907         (last-sexp-toggle-display): Renamed from last-sexp-print.
6908         (last-sexp-toggle-display, eval-last-sexp-1):
6909         Use last-sexp-setup-props.
6911         * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
6912         New user-options.
6913         (mouse-wheel-change-button): New function.
6914         (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
6915         (mwheel-scroll): Ditto.
6917 2001-07-26  Gerd Moellmann  <gerd@gnu.org>
6919         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
6920         `...', compare with unabbreviated printed representation instead.
6921         (last-sexp-print): Bind print-length and print-level to nil.
6923         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
6924         before assigning text properties.  Make properties rear-nonsticky.
6926         * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
6927         (eval-last-sexp-1): Give printed text a `keymap' property and bind
6928         <mouse-2> and <RET> in that map to a function printing the
6929         unabbreviated value.
6931         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
6932         is a buffer, put a text property `printed-value' on the printed
6933         representation, with the Lisp object printed as value.
6935 2001-07-25  Eli Zaretskii  <eliz@is.elta.co.il>
6937         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
6938         Mention the effect of eval-expression-print-length and
6939         eval-expression-print-level in the doc strings.  Suggested by
6940         Kevin Gallagher <kevingal@onramp.net>.
6942 2001-07-25  Gerd Moellmann  <gerd@gnu.org>
6944         * xt-mouse.el (xterm-mouse-event): Recognize control sequences
6945         for buttons > 3.
6946         (xterm-mouse-translate): Handle the case that we don't get a
6947         down-event.
6949         * emacs-lisp/find-func.el (find-function-regexp):
6950         Add easy-mmode-define-global-mode to the regexp.  Allow newlines
6951         in front of the function name.
6953         * isearch.el (isearch-other-meta-char): Fix last change.
6955         * isearch.el (isearch-other-meta-char): Don't modify mode-line and
6956         similar events for which fake prefix keys are generated.  It's no
6957         longer necessary since read_key_sequence doesn't modify these
6958         events for internal purposes anymore.
6960         * files.el (auto-mode-alist): Use nroff-mode for files ending
6961         in `.9'.  From Assar Westerlund  <assar@stacken.kth.se>.
6963 2001-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
6965         * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
6966         tool-bar-lines parameter, behave as if its value were zero.
6967         (mouse-avoidance-set-pointer-shape): Don't do anything if
6968         x-pointer-shape is not boundp.
6970 2001-07-23  Francesco Potorti`  <pot@gnu.org>
6972         * uniquify.el: Overall speedup changes when using many buffers.
6973         (uniquify-fix-item-base, uniquify-fix-item-filename)
6974         (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
6975         (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
6976         place in the item, but was never used.
6977         (uniquify-fix-item-min-proposed): New defalias: the fourth place
6978         in the item is now used as cache for the proposed name.
6979         (uniquify-rationalize-file-buffer-names): Move computation made on
6980         newbuffile out of the loop, in the newbuffile-nd local var.
6981         Use dolist (cosmetic change).  Compute the proposed name for the most
6982         common case and cache it in the fourth place in the item.
6983         (uniquify-rationalize-file-buffer-names): Used to return a a list
6984         of buffer whose name was changed, but that return value was never used.
6985         (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
6986         the cached proposed name, does much less consing and is quicker.
6987         (uniquify-filename-lessp): Deleted.
6988         (uniquify-rationalize-a-list): Use dolist (cosmetic change).
6989         Do not bind locally the uniquify-possibly-resolvable flag.  Use the
6990         cached proposed name is possible.
6991         (uniquify-get-proposed-name): Arguments changed, callers changed.
6992         (uniquify-rationalize-conflicting-sublist): Explicitely reset the
6993         uniquify-possibly-resolvable flag, which is no more bound locally.
6994         (uniquify-rename-buffer): Do not set the old unrationalised-buffer
6995         flag, which does not exist any more.
6997 2001-07-23  Eli Zaretskii  <eliz@is.elta.co.il>
6999         * term/internal.el (IT-unicode-translations): Fix the appearance of
7000         "6`".
7002         * progmodes/compile.el (compile-internal): If EMACS is already
7003         defined in the environment, don't override its value.
7005 2001-07-23  Gerd Moellmann  <gerd@gnu.org>
7007         * play/fortune.el: Undo change of 2001-07-13.
7008         Fix autoload cookies.  Add types to defcustoms.
7009         (fortune) <defgroup>: Add :link.
7010         (fortune-from-region): Use eq, not eql.
7011         From Dave Love <fx@gnu.org>.
7013         * play/animate.el (animate-birthday-present): Function removed.
7015         * play/animate.el: New file.
7017 2001-07-22  Eli Zaretskii  <eliz@is.elta.co.il>
7019         * startup.el (normal-top-level-add-subdirs-to-load-path):
7020         On Windows, put into normal-top-level-add-subdirs-inode-list the
7021         canonicalized names of the directories instead of inode numbers.
7023 2001-07-21  Michael Kifer  <kifer@cs.sunysb.edu>
7025         * ediff-util.el: Copyright years.
7026         (ediff-choose-syntax-table): New function.
7027         (ediff-setup): Use ediff-choose-syntax-table.
7028         (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
7029         vc-state is available.
7030         (ediff-make-temp-file): Use ediff-coding-system-for-write.
7032         * ediff-init.el (ediff-with-syntax-table): New macro, uses
7033         with-syntax-table.
7034         (ediff-coding-system-for-read): From ediff-diff.el
7035         (ediff-coding-system-for-write): New variable.
7036         (ediff-highest-priority): Fixed the bug having to do with disappearing
7037         overlays.
7038         (ediff-file-remote-p): Use file-remote-p, if available.
7039         (ediff-listable-file): New function.
7040         (ediff-file-attributes): Use ediff-listable-file.
7042         * ediff-mult.el (ediff-meta-insert-file-info1):
7043         Use ediff-listable-file.
7045         * ediff-ptch.el (ediff-prompt-for-patch-file):
7046         Use ediff-coding-system-for-read.
7047         (ediff-patch-file-internal): Use ediff-coding-system-for-write.
7049         * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
7050         (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
7052         * ediff.el: Date of last update, copyright years.
7054         * ediff-wind (ediff-setup-control-frame): Nill->nil.
7056         * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
7057         of Scott Bronson.
7058         (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
7059         (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
7060         Deleted functions.
7061         (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
7062         ex-token-list.
7063         (viper-get-ex-address-subr): Convert registers to char data type.
7065         * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
7066         (viper-memq-char): Use viper-int-to-char.
7067         (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
7068         vc-locking-state.
7069         (viper-read-key): Use viper-read-key-sequence.
7071         * viper.el (viper-major-mode-modifier-list):
7072         Added inferior-emacs-lisp-mode.
7073         (this-major-mode-requires-vi-state): New function that uses simple
7074         heuristics to decide if vi state is appropriate.
7075         (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
7076         (viper-non-hook-settings): Don't advise read-key-sequence.
7077         (viper-read-key-sequence): New function that replaces the
7078         previously used advice to read-key-sequence.
7080         * viper-cmd.el (viper-test-com-defun,viper-exec-change)
7081         (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
7082         (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
7083         (viper-open-line-at-point,viper-substitute,viper-overwrite)
7084         (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
7085         Got rid of the negative character hack.
7086         (viper-escape-to-state,viper-replace-state-exit-cmd):
7087         Use viper-read-key-sequence.
7088         (viper-envelop-ESC-key): No need for ad-get-orig-definition.
7089         (viper-minibuffer-standard-hook,viper-read-string-with-history):
7090         Don't override existing minibuffer-setup-hook.
7091         (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
7092         Convert registers to char data type.
7093         (viper-autoindent): Use viper-indent-line.
7095         * viper-keym.el: Use viper-exec-key-in-emacs.
7097 2001-07-20  Stefan Monnier  <monnier@cs.yale.edu>
7099         * server.el (server-visit-files): Fix variable name typo.
7101 2001-07-20  Gerd Moellmann  <gerd@gnu.org>
7103         * simple.el (delete-trailing-whitespace): Save match data
7104         around looking-at.  From Markus Rost <rost@math.ohio-state.edu>.
7106 2001-07-19  Stefan Monnier  <monnier@cs.yale.edu>
7108         * progmodes/compile.el (compilation-parse-errors): `linenum' might
7109         return a this-error using the alternative format (a pair of markers).
7111 2001-07-19  Gerd Moellmann  <gerd@gnu.org>
7113         * font-lock.el (c++-keywords): Add Standard C++ operator names.
7115         * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
7116         From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
7118 2001-07-17  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7120         * international/iso-transl.el: Fix typo in the header of the file.
7122         * textmodes/picture.el (picture): Doc fix.
7124         * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
7125         follow coding conventions in generated files.
7127 2001-07-17  Eli Zaretskii  <eliz@is.elta.co.il>
7129         * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
7130         (tool-bar-add-item): Don't call image-related primitives if the
7131         display doesn't support images.
7133         * frame.el (display-images-p): New function.
7135 2001-07-17  Gerd Moellmann  <gerd@gnu.org>
7137         * server.el (server-visit-files): Handle the case the specified
7138         column number is <= 0.
7140 2001-07-17  Jan Nieuwenhuizen  <jan@netland.nl>
7142         * startup.el (command-line-1): Add support for +LINE:COLUMN
7143         command line argument.
7145 2000-07-17  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
7147         * server.el (server-process-filter, server-visit-files):
7148         Add support for +LINE:COLUMN style emacsclient calls.
7150 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7152         * emacs-lisp/easy-mmode.el: Add Keywords header.
7154         * play/pong.el: Author has new address.
7156         * play/landmark.el: Author is no more reachable.
7158         * play/handwrite.el: Author is no more reachable.
7160 2001-07-17  Stefan Monnier  <monnier@cs.yale.edu>
7162         * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
7163         (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
7164         Complete bindings for F<1..12> keys.
7165         (global-map): Remove `undo' binding (already in the default).
7166         Replace `t<n>' bindings with `f<n>' bindings.
7168 2001-07-16  Stefan Monnier  <monnier@cs.yale.edu>
7170         * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
7171         (tcl-mode): Use tcl-add-log-defun.
7172         (tcl-indent-line): Use tcl-calculate-indent.
7173         (tcl-calculate-indent): Renamed from calculate-tcl-indent.
7174         (tcl-indent-exp): Renamed from indent-tcl-exp.
7175         (tcl-add-log-defun): Renamed from add-log-tcl-defun.
7176         (tcl-indent-for-comment): Call comment-indent-function properly
7177         and handle the case where it returns nil.
7179 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
7181         * calendar/cal-islam.el (calendar-goto-islamic-date):
7182         Remove autoload cookie.
7184         * calendar/calendar.el (calendar-goto-islamic-date):
7185         Add call to autoload.
7187 2001-07-16  Stefan Monnier  <monnier@cs.yale.edu>
7189         * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
7190         Don't change compile-auto-highlight globally.
7191         Don't bother with `font-lock-defaults' property since XEmacs
7192         also understands the `font-lock-defaults' variable.
7193         Use make-local-variable rather than make-variable-buffer-local.
7194         Don't `defconst' comment-indent-function: keep the default.
7195         Call easy-menu-add unconditionally.
7196         (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
7197         (ada-create-menu): Use :included for Emacs as well.
7199         * vc.el (vc-do-command): Autoload.
7201         * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
7203 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7205         * ps-print.el: Fix Author: header.
7207 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
7209         * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
7210         mouse-1 etc., bind them to `ignore'.
7212         * eshell/esh-mode.el (eshell-send-invisible): Renamed from
7213         send-invisible, which is already defined in Comint.
7214         (eshell-watch-for-password-prompt): Use it.
7216 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7218         * which-func.el (which-func-mode): Doc fix.
7220         * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
7221         * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
7222         * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
7223         * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
7224         * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
7225         * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
7226         * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
7227         * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
7228         * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
7229         * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
7230         * emulation/edt-mapper.el, emulation/edt-pc.el,
7231         * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
7232         * emulation/tpu-edt.el, emulation/tpu-extras.el,
7233         * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
7234         * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
7235         * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
7236         * international/isearch-x.el, international/iso-cvt.el,
7237         * international/ogonek.el, international/quail.el,
7238         * international/utf-8.el, jit-lock.el, language/devan-util.el,
7239         * language/devanagari.el, language/ethio-util.el,
7240         * language/ethiopic.el, language/european.el, language/indian.el,
7241         * language/romanian.el, language/tibet-util.el, language/tibetan.el,
7242         * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
7243         * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
7244         * mouse-sel.el, net/browse-url.el, net/net-utils.el,
7245         * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
7246         * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
7247         * progmodes/autoconf.el, progmodes/cmacexp.el,
7248         * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
7249         * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
7250         * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
7251         * progmodes/ebnf2ps.el, progmodes/executable.el,
7252         * progmodes/fortran.el, progmodes/idlw-shell.el,
7253         * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
7254         * progmodes/m4-mode.el, progmodes/mantemp.el,
7255         * progmodes/meta-mode.el, progmodes/octave-inf.el,
7256         * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
7257         * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
7258         * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
7259         * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
7260         * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
7261         * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
7262         * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
7263         * textmodes/texinfo.el, textmodes/texnfo-upd.el,
7264         * textmodes/two-column.el, time-stamp.el, timezone.el,
7265         * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
7266         * which-func.el, whitespace.el, wid-browse.el, widget.el,
7267         * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
7268         conventions.
7270 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
7272         * simple.el (set-variable): Require 'cus-edit' instead of
7273         `wid-edit', so that the Custom widgets get defined.
7275 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7277         * allout.el: A fix to follow coding conventions.
7279         * find-lisp.el: A fix to follow coding conventions.
7281         * term/w32-win.el: A fix to follow coding conventions.
7283         * textmodes/sgml-mode.el: A fix to follow coding conventions.
7285         * term/xterm.el: A fix to follow coding conventions.
7287         * term/news.el: A fix to follow coding conventions.
7289         * emulation/vi.el: A fix to follow coding conventions, Maintainer:
7290         header line fixed.
7292         * sun-curs.el: Fix Maintainer: header line.
7294         * emacs-lisp/easymenu.el: Address of the author added.
7296 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
7298         * dired.el (dired-insert-set-properties): Fix invalid mouse-face
7299         property.
7301 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7303         * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
7304         * play/gamegrid.el, play/handwrite.el, play/landmark.el,
7305         * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
7306         Some fixes to follow coding conventions.
7308 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
7310         * which-func.el (which-func-mode): Doc fix.
7312 2001-07-15  Stefan Monnier  <monnier@cs.yale.edu>
7314         * net/rcompile.el (remote-compile): Use make-local-variable.
7316         * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
7318         * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
7320         * mail/reporter.el (reporter-submit-bug-report):
7321         Don't abuse make-variable-buffer-local.  Fix call to add-hook.
7323 2001-07-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7325         * calendar/cal-china.el, calendar/cal-coptic.el,
7326         * calendar/cal-dst.el, calendar/cal-french.el,
7327         * calendar/cal-hebrew.el, calendar/cal-islam.el,
7328         * calendar/cal-iso.el, calendar/cal-julian.el,
7329         * calendar/cal-mayan.el, calendar/cal-persia.el,
7330         * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
7331         * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
7332         * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
7333         * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
7334         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
7335         * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
7336         * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
7337         * progmodes/ada-prj.el, progmodes/ada-stmt.el,
7338         * progmodes/ada-xref.el, progmodes/cc-align.el,
7339         * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
7340         * progmodes/cc-defs.el, progmodes/cc-engine.el,
7341         * progmodes/cc-langs.el, progmodes/cc-menus.el,
7342         * progmodes/cc-styles.el, progmodes/cc-vars.el,
7343         * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
7344         * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
7345         * textmodes/reftex-index.el, textmodes/reftex-parse.el,
7346         * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
7347         * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
7348         * textmodes/reftex.el: Some fixes to follow coding
7349         conventions in Elisp files with known maintainers.
7351         * emulation/viper.el: A fix to follow coding conventions.
7353         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
7354         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
7355         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
7356         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
7357         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
7358         * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
7359         * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
7360         * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
7361         * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
7362         * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
7363         conventions in Elisp files.
7365         * composite.el, diff.el, emacs-lisp/levents.el,
7366         * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
7367         * emulation/pc-mode.el, emulation/viper-cmd.el,
7368         * emulation/viper-ex.el, emulation/viper-init.el,
7369         * emulation/viper-keym.el, emulation/viper-macs.el,
7370         * emulation/viper-mous.el, emulation/viper-util.el,
7371         * emulation/viper.el, forms-pass.el, international/ccl.el,
7372         * international/characters.el, international/encoded-kb.el,
7373         * international/fontset.el, international/ja-dic-cnv.el,
7374         * international/ja-dic-utl.el, international/kinsoku.el,
7375         * international/kkc.el, international/mule-cmds.el,
7376         * international/mule-diag.el, international/mule-util.el,
7377         * international/mule.el, international/titdic-cnv.el,
7378         * language/china-util.el, language/chinese.el,
7379         * language/cyril-util.el, language/cyrillic.el, language/english.el,
7380         * language/greek.el, language/hebrew.el, language/japan-util.el,
7381         * language/japanese.el, language/korea-util.el, language/korean.el,
7382         * language/lao-util.el, language/lao.el, language/misc-lang.el,
7383         * language/slovak.el, language/thai-util.el, language/thai.el,
7384         * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
7385         * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
7386         * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
7387         * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
7388         * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
7389         * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
7390         * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
7391         * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
7392         * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
7393         * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
7394         to follow coding conventions in files without maintainer or in files
7395         with clear maintainer (but without Maintainer header stating so).
7397         * emacs-lisp/elp.el: A fix to follow coding conventions.
7399         * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
7400         * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
7401         * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
7402         * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
7403         * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
7404         * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
7405         * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
7406         * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
7407         * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
7408         * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
7409         * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
7410         * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
7411         conventions in files from Gnus.
7413         * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
7414         * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
7415         * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
7416         * echistory.el, electric.el, emacs-lisp/authors.el,
7417         * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
7418         * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
7419         * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
7420         * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
7421         * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
7422         * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
7423         * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
7424         * international/codepage.el, international/iso-ascii.el,
7425         * international/iso-insert.el, international/iso-transl.el,
7426         * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
7427         * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
7428         * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
7429         * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
7430         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
7431         * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
7432         * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
7433         * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
7434         * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
7435         * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
7436         * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
7437         * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
7438         * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
7439         * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
7440         * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
7441         * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
7442         * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
7443         * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
7444         * textmodes/tex-mode.el, textmodes/text-mode.el,
7445         * textmodes/underline.el, thingatpt.el, time.el, timer.el,
7446         * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
7447         * vt100-led.el, window.el: Some fixes to follow coding conventions in
7448         files maintained by FSF.
7450 2001-07-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7452         * arc-mode.el: A fix to follow coding conventions.
7454         * bindings.el: Ditto.
7456         * cdl.el: Ditto.
7458         * comint.el: Ditto.
7460         * cus-start.el: Ditto.
7462         * shell.el: Ditto.
7464         * skeleton.el: Ditto.
7466 2001-07-13  Stefan Monnier  <monnier@cs.yale.edu>
7468         * info.el (Info-build-node-completions):
7469         Make Info-current-file-completions buffer local.
7471 2001-07-13  Gerd Moellmann  <gerd@gnu.org>
7473         * which-func.el (which-func-mode, which-func-ff-hook)
7474         (which-function-mode): Remove references to which-func-mode-global.
7476         * calendar/cal-islam.el (calendar-goto-islamic-date):
7477         Add autoload cookie.
7479         * play/fortune.el: Add types to defcustoms.
7481 2001-07-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
7483         * language/czech.el: A fix to follow coding conventions.
7485 2001-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
7487         * speedbar.el (speedbar-supported-extension-expressions): Add .g
7488         to the extension list, for antlr-mode.  From Christoph Wedler
7489         <Christoph.Wedler@sap.com>.
7491 2001-07-11  Stefan Monnier  <monnier@cs.yale.edu>
7493         * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
7494         (vc-dired-mode-map): Fix the madness.
7496         * vc-hooks.el (vc-mode): Dummy function for doc purposes.
7497         (vc-prefix-map): Moved back from vc.el.
7499 2001-07-11  Gerd Moellmann  <gerd@gnu.org>
7501         * mail/mail-extr.el (mail-extr-all-top-level-domains):
7502         Increase the size of the obarray.
7503         (mail-extr-all-top-level-domains): Add more toplevel domains,
7504         add more long names.
7505         From: Per Starback <starback@ling.uu.se>.
7507 2001-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
7509         * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
7510         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
7512         * progmodes/ada-mode.el: Ditto.
7514         * progmodes/ada-xref.el: Ditto.
7516 2001-07-11  Miles Bader  <miles@gnu.org>
7518         * finder.el (finder-insert-at-column): Also move to the next line
7519         if exactly at COLUMN.
7521 2001-07-10  Gerd Moellmann  <gerd@gnu.org>
7523         * help.el (describe-function-1): When printing FUNCTION's
7524         documentation, don't assume FUNCTION is a symbol.
7526         * startup.el (normal-top-level): Don't operate on the initial
7527         frame if we failed to create one.
7529 2001-07-10  Martin Stjernholm  <bug-cc-mode@gnu.org>
7531         * cc-cmds.el (c-indent-exp): Keep the indentation of the block
7532         itself, i.e. only indent the contents in it.
7534 2001-07-10  Markus Rost  <rost@math.ohio-state.edu>
7536         * mail/rmail.el (rmail-show-message): Show beginning of message in
7537         all windows containing it.
7539 2001-07-10  Eli Zaretskii  <eliz@is.elta.co.il>
7541         * term/tty-colors.el: Fix the header line and copyright years.
7543 2001-07-09  Gerd Moellmann  <gerd@gnu.org>
7545         * emacs-lisp/advice.el (ad-make-advised-definition): If the
7546         original definition has an interactive form, but is Elp
7547         instrumented, use the interactive form of the function called by
7548         elp-wrapper.
7550         * winner.el (winner-equal): Make it a defun.  Don't compare Winner
7551         configurations with compare-window-configuration; they aren't
7552         window configurations.
7554         * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
7555         from the server for the format we expect.  Don't use it if it
7556         doesn't look like what the Internet draft for FTP extensions specifies.
7558         * toolbar/*.pbm: Cleaned up.
7559         From Luis Fernandes <elf@ee.ryerson.ca>.
7561 2001-07-09  Martin Stjernholm  <bug-cc-mode@gnu.org>
7563         * cc-cmds.el: Extended the kludge to interoperate with the
7564         delsel and pending-del packages wrt to the new function
7565         `c-electric-delete-forward'.
7567 2001-07-08  Stefan Monnier  <monnier@cs.yale.edu>
7569         * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
7570         to delay the call to <mode> for global minor modes.
7571         (easy-mmode-define-navigation): Only recenter if interactive.
7573 2001-07-06  Gerd Moellmann  <gerd@gnu.org>
7575         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
7576         to lisp-indent-line.
7578         * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
7579         from the server.  Call encode-time only when we are sure that we
7580         got a 213 response.
7582 2001-07-06  Simon Josefsson  <jas@extundo.com>
7584         * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
7585         (mail-envelope-from): New user option.
7586         (sendmail-send-it): Use it.
7588 2001-07-06  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
7590         * ps-print.el: Use locale dependant date to print date in header.
7591         Doc fix.
7592         (ps-print-version): New version number (6.5.3).
7593         (ps-right-header, ps-right-footer): Initialization and doc fix.
7594         (ps-time-stamp-locale-default): New fun.
7596 2001-07-06  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
7598         * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
7599         field problem with MIME-mode.
7601         * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
7603 2001-07-06  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
7605         * mail/rmail.el (rmail-reply): Don't forget to narrow header in
7606         MIME-mode.
7608 2001-07-06  Eli Zaretskii  <eliz@is.elta.co.il>
7610         * bindings.el (mode-line-mule-info): Don't show the tip with
7611         buffer-file-coding-system if that is nil.
7613 2001-07-05  Gerd Moellmann  <gerd@gnu.org>
7615         * calendar/todo-mode.el (todo-top-priorities): Use delete-region
7616         instead of kill-line.
7618         * play/pong.el: Fix first line.  From Pavel Jan\e,Bm\e(Bk
7619         <Pavel@Janik.cz>.
7621         * battery.el (battery-update): Add help-echo.  From Pavel Jan\e,Bm\e(Bk
7622         <Pavel@Janik.cz>.
7624 2001-07-04  Gerd Moellmann  <gerd@gnu.org>
7626         * font-lock.el (c-font-lock-keywords-3): When matching something
7627         like `struct X Y', finish with point after Y.
7629 2001-07-04  Simon Josefsson  <jas@extundo.com>
7631         * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
7632         in caller buffer.
7634 2001-07-03  Eli Zaretskii  <eliz@is.elta.co.il>
7636         * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
7637         instead of string-match to find the basename of the file.
7638         From Pascal Obry <p.obry@wanadoo.fr>.
7640         * net/browse-url.el (browse-url-default-windows-browser):
7641         Support the MS-DOS port when it runs on Windows.
7642         (browse-url-browser-function) [ms-dos]: Default to
7643         browse-url-default-windows-browser.
7645         * help.el (locate-library): Enable code that looks for compressed
7646         libraries if auto-compression-mode is on.
7648 2001-07-02  Stefan Monnier  <monnier@cs.yale.edu>
7650         * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
7652 2001-07-02  Gerd Moellmann  <gerd@gnu.org>
7654         * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
7656 2001-07-02  Eli Zaretskii  <eliz@is.elta.co.il>
7658         * allout.el: Fix the header line, so that finder.el recognizes it.
7659         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7661         * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
7662         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7664 2001-06-29  Eli Zaretskii  <eliz@is.elta.co.il>
7666         * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
7668         * ps-bdf.el (bdf-directory-list): Use the value relative to
7669         installation-directory for MS-Windows as well.
7671 2001-06-29  Richard M. Stallman  <rms@gnu.org>
7673         * wid-edit.el (widget-color-sample-face-get):
7674         Return ((foreground-color . COLOR)) instead of constructing a face.
7676 2001-06-29  Eli Zaretskii  <eliz@is.elta.co.il>
7678         * faces.el (region): Change the background color for the
7679         light-background color display to lightgoldenrod2, to make it
7680         visible on some laptops.
7682 2001-06-28  Richard M. Stallman  <rms@gnu.org>
7684         * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
7685         (rmail-msg-restore-non-pruned-header): Likewise.
7686         If point was in the old pruned header, put it at the top.
7687         (rmail-msg-prune-header): If point was at the top, keep it there.
7689         * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
7690         (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
7692 2001-06-28  Stefan Monnier  <monnier@cs.yale.edu>
7694         * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
7696 2001-06-28  Karl Fogel  <kfogel@red-bean.com>
7698         * saveplace.el: Update maintainer email address.
7700 2001-06-27  Francesco Potorti`  <pot@gnu.org>
7702         * uniquify.el: (uniquify-rationalize-file-buffer-names):
7703           Undo previous change.
7705 2001-06-27  Francesco Potorti`  <pot@gnu.org>
7707         * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
7708         preliminary quick reordering.  Can speed things up dramatically.
7710 2001-06-26  Richard M. Stallman  <rms@gnu.org>
7712         * dired.el (dired-get-filename): A file name starting with ~
7713         is not absolute in this context.
7715         * which-func.el (which-func-maxout): Increase default to 500000.
7716         (which-function-mode): This is now the "real" name of the function.
7717         (which-func-mode): Now an alias.
7718         (which-func-mode-global): Name deleted.
7720         * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
7721         button-2, when binding hs-mouse-toggle-hiding.
7723 2001-06-26  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
7725         * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
7726         (rmail-msg-prune-header): Likewise.
7727         (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
7728         and `rmail-msg-prune-header'.
7730 2001-06-25  Stefan Monnier  <monnier@cs.yale.edu>
7732         * textmodes/fill.el (fill-region-as-paragraph): Don't look further
7733         back than LINEBEG.
7735 2001-06-25  Eli Zaretskii  <eliz@is.elta.co.il>
7737         * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
7738         window where they clicked the mouse has a header line, adjust
7739         vertical movement by one.
7741 2001-06-25  Milan Zamazal  <pdm@zamazal.org>
7743         * progmodes/glasses.el (glasses-make-readable): Consider underscores
7744         too when separating a parenthesis.
7746 2001-06-24  Eli Zaretskii  <eliz@is.elta.co.il>
7748         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
7749         (bookmark-bmenu-hide-filenames): Add help-echo to
7750         mouse-highlighted text.
7751         (bookmark-bmenu-show-filenames): Remove help-echo property from
7752         the whitespace.
7754 2001-06-23  Eli Zaretskii  <eliz@is.elta.co.il>
7756         * files.el (auto-mode-alist): Add configure.ac (autoconf).
7757         From Karl Eichwalder <ke@suse.de>.
7759 2001-06-23  Richard M. Stallman  <rms@gnu.org>
7761         * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
7763         * progmodes/cc-styles.el (c-set-style): Don't specify initial
7764         contents for completing-read.
7766 2001-06-22  Richard M. Stallman  <rms@gnu.org>
7768         * menu-bar.el (menu-bar-make-toggle): Construct the
7769         function's doc string from HELP, not DOC, and make it accurate by
7770         adding "Toggle whether to " at the front and downcasing the initial.
7771         Change the HELP arg in some calls to make it fit this usage.
7773         * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
7774         Undo previous change.
7776 2001-06-22  Eli Zaretskii  <eliz@is.elta.co.il>
7778         * indent.el (indent-relative-maybe, indent-relative): Doc fix.
7780         * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
7782 2001-06-21  Eli Zaretskii  <eliz@is.elta.co.il>
7784         * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
7786         * dabbrev.el (dabbrev--select-buffers): Fix last change.
7788 2001-06-20  Richard M. Stallman  <rms@gnu.org>
7790         * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
7791         broken out from dabbrev--find-expansion.  Handle minibuffer
7792         specially here.
7793         (dabbrev--find-expansion): Simplify code in various ways.
7794         Don't treat minibuffers specially.
7795         Call dabbrev--make-friend-buffer-list.
7796         (dabbrev--select-buffers): Don't treat minibuffers specially.  Simplify.
7797         (dabbrev--scanning-message): Do nothing when minibuffer is current.
7799 2001-06-19  John Wiegley  <johnw@gnu.org>
7801         * eshell/eshell.el: Don't load in esh-util if it's already loaded.
7802         Also, added a comment describing how to greatly speedup Eshell
7803         loadup time, by concatenating together all of Eshell's .elc files.
7805 2001-06-19  John Wiegley  <johnw@gnu.org>
7807         * eshell/esh-mode.el: Disabled a test that often yields false failures.
7809 2001-06-19  Eli Zaretskii  <eliz@is.elta.co.il>
7811         * woman.el (WoMan-highlight-references): Add help-echo to
7812         mouse-highlighted text.
7814 2001-06-18  Stefan Monnier  <monnier@cs.yale.edu>
7816         * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
7818 2001-06-18  Gerd Moellmann  <gerd@gnu.org>
7820         * international/quail.el (quail-start-conversion):
7821         Reset quail-translating to nil.
7823         * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
7824         bound.  Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
7826 2001-06-18  Eli Zaretskii  <eliz@is.elta.co.il>
7828         * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
7829         mouse-highlighted text.
7831         * dired.el (dired-mark-pop-up): Fix last change.
7833 2001-06-17  Eli Zaretskii  <eliz@is.elta.co.il>
7835         * calendar/calendar.el (generate-calendar-month): Add help-echo to
7836         mouse-highlighted text.
7838         * net/quickurl.el (quickurl-url-file): Run through
7839         convert-standard-filename.
7840         (quickurl-list-populate-buffer): Add help-echo to
7841         mouse-highlighted text.
7842         (top-level): Update Dave's URL.
7844         * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
7845         mouse-highlighted text.
7847         * textmodes/page-ext.el (pages-copy-header-and-position):
7848         Add help-echo to mouse-highlighted text.
7850         * tar-mode.el (tar-header-block-summarize): Add help-echo to
7851         mouse-highlighted text.
7853         * replace.el (occur): Add help-echo to mouse-highlighted text.
7855         * progmodes/sh-script.el (sh-mark-line): Add help-echo to
7856         mouse-highlighted text.
7858         * progmodes/cpp.el (cpp-make-button): Add help-echo to
7859         mouse-highlighted text.
7861         * progmodes/compile.el (compile-reinitialize-errors):
7862         Add help-echo to mouse-highlighted messages.
7863         (compilation-forget-errors): Remove help-echo property as well.
7865         * play/landmark.el (lm-plot-square, lm-init-display):
7866         Add help-echo to mouse-highlighted text.
7868         * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
7869         Add help-echo to mouse-highlighted text.
7871         * dired.el (dired-insert-set-properties): Add help-echo to
7872         mouse-highlighted text.
7873         (dired-mark-pop-up): Remove help-echo property from the file name.
7875         * comint.el (comint-send-input): Add help-echo to
7876         mouse-highlighted text.
7878         * buff-menu.el (list-buffers-noselect): Add help-echo to
7879         mouse-highlighted text.
7881         * arc-mode.el (archive-summarize-files): Add help-echo to
7882         mouse-highlighted text.
7884         * ffap.el (ffap-machine-p): Always return nil if
7885         open-network-stream is not fboundp.
7887 2001-06-17  Stefan Monnier  <monnier@cs.yale.edu>
7889         * textmodes/sgml-mode.el: Move `provide' to the end.  Update copyright.
7890         (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
7891         Bind the latin-1 charset-char to sgml-maybe-name-self rather than
7892         incorrectly binding chars between 128 and 256 to it.
7893         (sgml-maybe-name-self): Handle latin-1 chars properly.
7894         (sgml-tags-invisible): Bind buffer-file-name to nil.
7895         Use unwind-protect and restore-buffer-modified-p.
7896         (sgml-point-entered): Use buffer-substring-no-properties.
7897         (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
7898         (html-mode): Don't force `imenu-sort-function'.
7900 2001-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
7902         * tar-mode.el: Fix the copyright notice.
7904         * font-lock.el (font-lock-comment-face): For tty's with dark
7905         background, use "red1", since "lightred" is not one of the colors
7906         recognized by tty-colors.el.
7908         * tar-mode.el (tar-extract): Call generate-new-buffer-name to
7909         create a buffer for extracted file, in case there's more than one
7910         file by that name in an archive, possibly in different
7911         directories.  From Kevin Rodgers <kevinr@ihs.com>.
7913         * format.el (format-alist): Doc fix.  Suggested by Alex Schroeder
7914         <alex@gnu.org>.
7916 2001-06-15  Miles Bader  <miles@gnu.org>
7918         * textmodes/texinfmt.el (texinfo-format-syntax-table):
7919         Revert previous change.
7921 2001-06-14  Richard M. Stallman  <rms@gnu.org>
7923         * replace.el (keep-lines-read-args): Return just a regexp.
7924         Provide nil for the region args.
7925         (keep-lines, flush-lines, how-many):
7926         Calculate the defaults for the region here, when args are nil.
7928 2001-06-14  Eli Zaretskii  <eliz@is.elta.co.il>
7930         * rot13.el (rot13-other-window): Some more doc fix.
7932 2001-06-14  Per Starback  <starback@ling.uu.se>
7934         * replace.el (case-replace, query-replace-from-history-variable)
7935         (query-replace-to-history-variable, keep-lines-read-args)
7936         (occur-revert-function, query-replace-help): Dox fix.
7938 2001-06-14  Eli Zaretskii  <eliz@is.elta.co.il>
7940         * rot13.el (rot13-other-window): Doc fix.
7942 2001-06-14  Miles Bader  <miles@gnu.org>
7944         * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
7945         of " and \ to "." (punctuation).
7946         * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
7948 2001-06-13  Richard M. Stallman  <rms@gnu.org>
7950         * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
7952         * simple.el (shell-command-on-region): Never kill the
7953         *Shell Command Output* buffer.
7955 2001-06-13  Stefan Monnier  <monnier@cs.yale.edu>
7957         * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
7959 2001-06-10  Stefan Monnier  <monnier@cs.yale.edu>
7961         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
7962         New var, to recognize ${ $' and PODs.
7963         (perl-font-lock-syntactic-face-function): New function.
7964         (perl-mode): Use them.
7965         (perl-continuation-line-p): New function, from perl-calculate-indent.
7966         (perl-calculate-indent): Use it, to properly handle continuation
7967         lines of continuation lines.
7969 2001-06-10  Eli Zaretskii  <eliz@is.elta.co.il>
7971         * server.el (server-process, server-buffer-clients): Doc fix.
7972         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
7974 2001-06-09  John Wiegley  <johnw@gnu.org>
7976         * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
7977         test if the last command was Lisp or not.
7978         (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
7979         B x C".
7981 2001-06-08  Eli Zaretskii  <eliz@is.elta.co.il>
7983         * dos-w32.el (grep-regexp-alist): Remove definition, since the
7984         general one on compile.el supports drive letters.
7986 2001-06-08  Carsten Dominik  <dominik@strw.leidenuniv.nl>
7988         * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
7989         key description.
7991         * textmodes/reftex-sel.el (reftex-select-jump): New command.
7993         * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
7994         (reftex-toc-jump): New command.
7996         * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
7997         to parse international characters as well.
7999         * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
8000         `reftex-fancyref-fref', `reftex-fancyref-Fref'.
8002         * textmodes/reftex-vars.el: Protect single backslash in docstrings.
8004         * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
8005         TAB to the key separators.
8007 2001-06-07  Eli Zaretskii  <eliz@is.elta.co.il>
8009         * international/mule.el (auto-coding-alist): Remove redundant
8010         up-cased versions of the extensions (auto-coding-alist-lookup is
8011         case-insensitive where needed).  Recognize .gz, .Z, .bz, .bz2, and
8012         .gpg files as binary.  Suggested by Karl Berry <karl@gnu.org>.
8014 2001-06-05  Eli Zaretskii  <eliz@is.elta.co.il>
8016         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
8018 2001-06-01  Richard M. Stallman  <rms@gnu.org>
8020         * help.el (describe-variable): Put value on same line
8021         with preceding text, if it is short enough to look good that way.
8023 2001-06-01  Eli Zaretskii  <eliz@is.elta.co.il>
8025         * term/internal.el (IT-unicode-translations): New variable.
8026         (IT-setup-unicode-display): New function.
8028 2001-06-01  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
8030         * ps-print.el: Handle before-string and after-string overlay properties
8031         in ps-print-*-with-faces commands.  Doc fix.
8032         (ps-print-version): New version number (6.5.2).
8033         (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
8034         for XEmacs.
8035         (ps-prefix-quote): Doc fix.
8036         (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
8037         (ps-basic-plot-str, ps-plot-string): New funs.
8039 2001-05-31  Stefan Monnier  <monnier@cs.yale.edu>
8041         * progmodes/etags.el (tags-compression-info-list): Fix docstring
8042         and :type spec.
8044 2001-05-31  Gerd Moellmann  <gerd@gnu.org>
8046         * international/mule-cmds.el (inactivate-input-method):
8047         Set input-method-function to nil.
8049         * xml.el (xml-parse-tag): The document may contain invalid characters.
8050         From ShengHuo ZHU  <zsh@cs.rochester.edu>
8052 2001-05-31  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
8054         * mail/rmailsum.el (rmail-message-subject-p): Don't call
8055         `rmail-summary-line-decoder' if the message does not have
8056         a Subject: field.
8058         * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
8060         * mail/rmail.el (rmail-insert-mime-resent-message-function):
8061         New variable.
8062         (rmail-resend): Modify to work in `rmail-view-buffer'; call
8063         `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
8064         is non-nil.
8066 2001-05-30  Stefan Monnier  <monnier@rum.cs.yale.edu>
8068         * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
8070 2001-05-29  Sam Steingold  <sds@gnu.org>
8072         * faces.el (face-valid-attribute-values): Bind `valid' directly
8073         instead of using `setq'.
8075         * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
8076         Use `tex-shell-buf'.
8077         (tex-shell-proc): Use `tex-shell-running'.
8078         (tex-shell-buf-no-error): New function.
8079         (tex-send-tex-command): Use it.
8080         (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
8081         (tex-kill-job): Check the process before calling `quit-process'.
8083 2001-05-29  Gerd Moellmann  <gerd@gnu.org>
8085         * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
8086         UTF-8 sequences.
8088 2001-05-28  Miles Bader  <miles@gnu.org>
8090         * comint.el (comint-carriage-motion): Renamed from
8091         `comint-cr-magic'.  Operate on the buffer instead of the string
8092         (for use as a comint post-output filter, instead of as a
8093         pre-output filter).  Handle backspaces too.  Add to the
8094         `comint-output-filter-functions' hook instead of
8095         `comint-preoutput-filter-functions'.
8097 2001-05-28  Gerd Moellmann  <gerd@gnu.org>
8099         * language/japan-util.el (japanese-hankaku): Prefer the charset
8100         `jisx0201' when the optional argument `ascii-only' is not specified.
8101         (japanese-hankaku-region): Ditto.
8102         From Katsumi Yamaoka <yamaoka@jpl.org>
8104 2001-05-28  Stefan Monnier  <monnier@cs.yale.edu>
8106         * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
8107         (outline-invisible-p): New function.
8108         (hide-leaves): Save excursion.
8109         (hide-other): Stop looping when reaching bobp.
8111 2001-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
8113         * cus-edit.el (custom-file): Fix last change.
8115 2001-05-27  Stefan Monnier  <monnier@cs.yale.edu>
8117         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
8118         same definition in byte-compile-function-environment as `autoload'
8119         would put in `symbol-function'.
8121         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
8122         patch to correct the error message as well.
8124 2001-05-27  Eli Zaretskii  <eliz@is.elta.co.il>
8126         * cus-edit.el (custom-file): Don't assume we were invoked with -q
8127         unless ~/.emacs exists.
8129         * novice.el (enable-command): If user-init-file is nil or does not
8130         exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
8132 2001-05-25  Stefan Monnier  <monnier@cs.yale.edu>
8134         * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
8135         (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
8136         Allow spaces around macro arguments.
8137         (tex-mode-map): Inherit from text-mode-map, but rebind \t to
8138         indent-for-tab-command.
8139         (latex-mode-map, plain-tex-mode-map): New keymaps.
8140         Inherit from tex-mode-map.
8141         (tex-common-initialization): Don't setup the keymap any more
8142         since it's now done right by define-derived-mode.
8143         (latex-mode): Set skeleton-end-hook to nil.
8144         (latex-skeleton-end-hook): Remove.
8145         (tex-latex-block, latex-insert-item): Simplify.
8146         (latex-syntax-after): Use following-char rather than char-after.
8147         (tex-discount-args-cmds, tex-count-words): New functions.
8149         * textmodes/tildify.el (tildify-ignored-environments-alist):
8150         Recognize \verb* as well.
8152         * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
8153         (perl-comment-indent): Simplify to let newcomment.el do its job.
8154         (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
8155         (perl-mark-function): Cleanup the namespace.
8156         (perl-calculate-indent): Don't be fooled by nested functions.
8158         * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
8160         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
8161         Fix the arg of `load'.  From Dave Love <fx@gnu.org>.
8163 2001-05-25  Andrew Choi  <akochoi@i-cable.com>
8165         * international/titdic-cnv.el (ctlau-gb-converter): `\' should
8166         actually be `\\'.
8167         (ctlau-b5-converter): Likewise.
8169 2001-05-24  Andrew Choi  <akochoi@i-cable.com>
8171         * international/titdic-cnv.el (quail-misc-package-ext-info):
8172         Change CTLauB.el to CTLau-b5.el.
8174 2001-05-23  Stefan Monnier  <monnier@cs.yale.edu>
8176         * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
8177         rather than beginning-of-line to avoid problems with fields.
8178         (gud-perldb-massage-args): Use unless and push.
8179         (gud-chdir-before-run): New var.
8180         (gud-common-init): Use it.
8182 2001-05-24  Andrew Choi  <akochoi@i-cable.com>
8184         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
8185         delete entries for chinese-ctlau and chinese-ctlaub.
8186         (quail-misc-package-ext-info): Add entries for chinese-ctlau and
8187         chinese-ctlaub.
8188         (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
8189         New functions.
8191 2001-05-22  Gerd Moellmann  <gerd@gnu.org>
8193         * cus-edit.el (custom-comment-show): Remove debug code.
8195         * language/japan-util.el (japanese-symbol-table): Fix handling of
8196         Japanese long tone sign.  From Kenichi Handa <handa@etl.go.jp>.
8198 2001-05-21  Stefan Monnier  <monnier@cs.yale.edu>
8200         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
8201         Renamed by removing the silly `-flag' suffix.
8202         (diff-mode, diff-minor-mode, diff-find-source-location): Update.
8204 2001-05-20  Stefan Monnier  <monnier@cs.yale.edu>
8206         * replace.el (keep-lines-read-args): Use `copy-marker'.
8207         (how-many): Save excursion properly.
8208         (occur-mode): Use define-derived-mode.
8209         (perform-replace): Use with-current-buffer.
8211 2001-05-20  Richard M. Stallman  <rms@gnu.org>
8213         * play/landmark.el (lm): Use "p" not "P" for interactive spec.
8215         * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
8217         * info.el (Info-read-subfile): Widen before finding the
8218         desired node in the subfile.
8220         * startup.el (command-line-1): When >2 files visited,
8221         leave the last one visible, and make that the selected window.
8223 2001-05-20  Gerd Moellmann  <gerd@gnu.org>
8225         * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
8227 2001-05-20  Eli Zaretskii  <eliz@is.elta.co.il>
8229         * international/ccl.el (define-ccl-program): Fix a typo.
8230         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8232         * international/mule.el (decode-char): Fix a typo.  From Pavel
8233         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8235         * textmodes/artist.el (artist-mode): Fix a typo.  From Pavel
8236         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8238         * frame.el (automatic-hscrolling): Fix a typo.  From Pavel
8239         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8241 2001-05-18  Sam Steingold  <sds@gnu.org>
8243         * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
8244         and [RET] to `cvs-mode-find-file'.
8246 2001-05-18  John Wiegley  <johnw@gnu.org>
8248         * eshell/esh-ext.el (eshell-explicit-command-char): A new
8249         configuration variable, which determines the initial character
8250         that forces use of an external version of a command.  The default
8251         is *, but may be set to \, for example.
8253         * eshell/esh-ext.el (eshell-explicit-command):
8254         Use `eshell-explicit-command-char' instead of ?*.
8256         * eshell/esh-cmd.el (eshell/which):
8257         Use `eshell-explicit-command-char' instead of ?*.
8259         * eshell/em-cmpl.el (eshell-completion-command-name)
8260         (eshell-complete-commands-list): Use `eshell-explicit-command-char'
8261         instead of ?*.
8263 2001-05-18  Gerd Moellmann  <gerd@gnu.org>
8265         * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
8266         subst-char-in-string.
8267         (ange-ftp-after-parse-ls-hook): New variable.
8268         (ange-ftp-ls): Run that hook.
8269         From Peter Milliken <Peter.Milliken@GTECH.COM>.
8271         * tmm.el (tmm-get-keymap): Fix handling of :filter.
8272         (tmm-add-prompt): Bind buffer-read-only to nil when inserting
8273         text into *Completions*.
8275         * net/goto-addr.el (goto-address-at-point): Deal with URLs
8276         part of which look like email addresses.
8278 2001-05-18  Andrew Innes  <andrewi@gnu.org>
8280         * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
8281         Use . instead of absolute path for lisp dir, to avoid bug in W2K
8282         cmd.exe's handling of FOR loops.
8283         (autoloads): Set find-file-suppress-same-file-warnings to t to
8284         avoid slew of spurious messages.
8286 2001-05-18  Simon Josefsson  <simon@josefsson.org>
8288         * mail/smtpmail.el (maybe-append-domain): Renamed to
8289         `smtpmail-maybe-append-domain'.
8290         (smtpmail-via-smtp): Use the new name.
8292         * net/browse-url.el (browse-url-browser-function): Add kde.
8293         (browse-url-kde-program, browse-url-kde-args): New variables.
8294         (browse-url-kde): New function.
8296 2001-05-18  Miles Bader  <miles@gnu.org>
8298         * simple.el (delete-horizontal-space, just-one-space):
8299         Use `constrain-to-field' instead of `field-end'/`field-beginning',
8300         because it's more efficient for large files.
8302 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
8304         * mail/rmail.el (rmail-require-mime-maybe): New function.
8305         (rmail): Use it.
8306         (rmail-mode): Handle the case of finding Rmail files.
8308         * emacs-lisp/elp.el (elp-instrument-function): Handle advised
8309         functions.
8311 2001-05-17  Stefan Monnier  <monnier@cs.yale.edu>
8313         * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
8314         text-property after moving to the beginning of line and regardless
8315         of the value of font-lock-multiline.
8317 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
8319         * startup.el (fancy-splash-screens): Ignore events on the mode-line.
8321         * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
8322         last coding system used before calling set-buffer-modified-p
8323         because that function changes last-coding-system.
8325 2001-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
8327         * files.el (switch-to-buffer-other-window)
8328         (switch-to-buffer-other-frame): Add an xref to display-buffer in
8329         the doc string.
8331 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
8333         * language/slovak.el, language/czech.el: New maintainer.
8335 2001-05-16  Sam Steingold  <sds@gnu.org>
8337         * emacs-lisp/cl-indent.el (toplevel): Indent the :method
8338         sub-form of `defgeneric' correctly.
8340 2001-05-16  Gerd Moellmann  <gerd@gnu.org>
8342         * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
8343         of `c'.
8345         * textmodes/outline.el (outline-font-lock-level): Remove the
8346         condition-case, test what outline-level returns instead, to
8347         ease debugging.
8349         * international/mule.el (auto-coding-regexp-alist): New user-option.
8350         (auto-coding-from-file-contents): New function.
8351         (set-auto-coding): Use it to determine a coding system.
8353 2001-05-15  Gerd Moellmann  <gerd@gnu.org>
8355         * mouse.el (mouse-delete-other-windows): Doc fix.
8357         * emacs-lisp/lisp-mode.el (lisp-mode):
8358         Make font-lock-keywords-case-fold-search a buffer-local variable with
8359         make-local-variable before setting it.
8361 2001-05-14  Eli Zaretskii  <eliz@is.elta.co.il>
8363         * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
8364         prefixes.
8366 2001-05-14  Gerd Moellmann  <gerd@gnu.org>
8368         * hexl.el (hexl-current-address): Print a message when called
8369         interactively.
8371 2001-05-11  Stefan Monnier  <monnier@cs.yale.edu>
8373         * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
8375         * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
8377         * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
8379 2001-05-11  Gerd Moellmann  <gerd@gnu.org>
8381         * startup.el (command-line): If parameters have been changed in
8382         the init files which influence font selection, clear the face
8383         cache so that faces get realized with the new parameters.
8385         * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
8387 2001-05-10  Stefan Monnier  <monnier@cs.yale.edu>
8389         * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
8391 2001-05-10  Eli Zaretskii  <eliz@is.elta.co.il>
8393         * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
8394         unibyte.  Suggested by Kenichi Handa <handa@etl.go.jp>.
8396 2001-05-10  Gerd Moellmann  <gerd@gnu.org>
8398         * net/browse-url.el (browse-url-filename-alist): Allow UNC file
8399         names for MS-Windows and MS-DOS.  From Dan Holmsand <dan@eyebee.com>.
8401 2001-05-09  John Wiegley  <johnw@gnu.org>
8403         * eshell/esh-util.el (eshell-convert-numeric-arguments):
8404         Annotated the documentation string to tell users about
8405         `eshell-no-numeric-conversions'.
8407         * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
8408         conversions if a Lisp function has the property
8409         `eshell-no-numeric-conversions' set to a non-nil value.
8411         * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
8412         eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
8413         property `eshell-no-numeric-conversions' on the following
8414         functions (which all deal with filesystem entities, and never Lisp
8415         numerical values): eshell/cd, eshell/pushd, eshell/popd,
8416         eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
8417         eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
8418         eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
8419         eshell/which, eshell/addpath.
8421 2001-05-09  John Wiegley  <johnw@gnu.org>
8423         * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
8424         encountered as an argument, don't convert it right away, but tag
8425         the first character of the string with the text properties
8426         `number', which signifies to `eshell-lisp-command' that the
8427         argument should be passed through `string-to-number' if it is
8428         actually used in the call to a Lisp function.
8430         * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
8431         function, convert any string arguments that have been tagged as
8432         "numbers", by calling string-to-number.
8434         * eshell/esh-util.el (eshell-number-regexp): Now that number
8435         conversions only happen for Lisp function calls, the number regexp
8436         should now match all integer and floating point forms.
8438         * eshell/esh-proc.el: Disable `eshell-stop-process' and
8439         `eshell-continue-process', since they are both nonfunctional at
8440         the moment.
8441         (eshell-proc-initialize): Don't bind keys for
8442         `eshell-stop-process' or `eshell-continue-process'.
8444         * eshell/em-unix.el (eshell-shuffle-files):
8445         Apply `directory-file-name' before calling `file-name-directory'.
8447         * eshell/em-hist.el (eshell-add-to-history): Reference to
8448         `eshell-history-ring' needed to be `eshell-history-index'.
8450         * calendar/timeclock.el (timeclock-find-discrep):
8451         Initialize `elapsed' to 0.
8452         (timeclock-find-discrep): Set `timeclock-last-event-workday' if
8453         it's still nil.
8455 2001-05-09  Stefan Monnier  <monnier@cs.yale.edu>
8457         * arc-mode.el (archive-int-to-mode): Construct the string directly.
8458         (archive-mode): Use capitalize.
8459         (archive-unique-fname): Use make-temp-file.
8461 2001-05-09  Gerd Moellmann  <gerd@gnu.org>
8463         * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
8465 2001-05-09  Eli Zaretskii  <eliz@is.elta.co.il>
8467         * tar-mode.el (tar-extract): Pay attention to the value of
8468         coding-system-for-read, if it is non-nil.
8470         * calendar/holidays.el (holidays): Add an autoload cookie.
8471         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
8473 2001-05-08  John Wiegley  <johnw@gnu.org>
8475         * calendar/timeclock.el (timeclock-workday-remaining):
8476         Changed logic for determining how much time is remaining.
8477         (timeclock-workday-elapsed): Don't accept a "relative" argument
8478         for the current day's elapsed time.  What could that have meant?
8479         (timeclock-workday-elapsed-string): No "relative" argument anymore.
8480         (timeclock-when-to-leave): Changed logic, similarly to what was
8481         done for `timeclock-workday-remaining'.
8482         (timeclock-find-discrep): Removed "today-only" argument, which had
8483         no meaning.  Fixed some more math problems.  The function now
8484         returns a three member list: (TOTAL-TIME-DISCREPANCY
8485         TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
8487 2001-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
8489         * w32-fns.el (convert-standard-filename): Start replacing slashes
8490         from the beginning of the file name, not from where the last
8491         invalid character was.  From "Andrew Maguire (SWW)"
8492         <Andrew.Maguire@Smallworld.co.uk>
8494 2001-05-07  MORIOKA Tomohiko  <tomo@m17n.org>
8496         The following changes are to provide infrastructure for handling
8497         MIME messages to rmail.  They don't affect the original behaviour
8498         if rmail-enable-mime is nil.
8500         * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
8501         (rmail-search-mime-message-function)
8502         (rmail-search-mime-header-function): New variables.
8503         (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
8504         (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
8505         `rmail-view-buffer' is hidden.
8506         (rmail-toggle-header): Likewise.  If rmail-enable-mime is non-nil,
8507         call rmai-show-mime-function.
8508         (rmail-display-labels): If rmail-enable-mime is non-nil, update
8509         mode-line-process of rmail-view-buffer.
8510         (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
8511         (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
8512         buffer.
8513         (rmail-next-message, rmail-next-undeleted-message): Be sure to
8514         set-buffer to the Rmail buffer.
8515         (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
8516         rmail-search-mime-header-function.
8517         (rmail-search-message): New function.
8518         (rmail-search): Call rmail-search-message to check if a message
8519         matches REGEXP, lastly update point after calling
8520         rmail-show-message.
8521         (rmail-undelete-previous-message, rmail-expunge-confirmed)
8522         (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
8523         (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
8524         header region, refer to rmail-msgref-vector while setting the
8525         current buffer to rmail-buffer temporarily.
8526         (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
8527         If rmail-enable-mime is non-nil, call
8528         rmail-insert-mime-forwarded-message-function instead of inserting
8529         forwarded message by itself.
8531         * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
8532         Rmail buffer.
8533         (rmail-set-label, rmail-next-labeled-message): Likewise.
8535         * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
8536         set-buffer to the Rmail buffer.
8537         (rmail-output-to-rmail-file): Likewise.
8538         (rmail-output): Likewise.
8540         * mail/rmailsum.el (rmail-message-subject-p): Process the result
8541         of mail-fetch-field by rmail-summary-line-decoder.
8542         (rmail-new-summary): Be sure to go to the Rmail buffer.
8543         If rmail-enable-mime is non-nil, set rmail-summary-buffer of
8544         rmail-view-buffer to nil.
8545         (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
8546         rmail-view-buffer.
8547         (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
8548         rmail-buffer.
8549         (rmail-summary-scroll-msg-down): Likewise.
8550         (rmail-summary-beginning-of-message): Likewise.
8551         (rmail-summary-wipe): Likewise.
8552         (rmail-summary-toggle-header): Use save-window-excursion, not
8553         save-excursion.  Update point in rmail-view-buffer, not in
8554         rmail-buffer.
8555         (rmail-summary-reply): Before calling rmail-reply, set buffer to
8556         rmail-view-buffer, not rmail-buffer.
8558 2001-05-07  Gerd Moellmann  <gerd@gnu.org>
8560         * cus-edit.el (custom-file): Signal an error if user-init-file is
8561         nil (running -q).
8563         * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
8565         * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8566         Add :version.
8568         * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
8569         New option.
8570         (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
8571         only if smtpmail-warn-about-unknown-extensions is set.
8573         * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
8574         instead of rmail-sort-by-keywords.
8576         * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
8577         rmail-sort-by-keywords.
8579         * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
8580         rmail-summary-sort-by-keywords.  Doc fix.
8581         (rmail-summary-mode): Doc fix.
8583         * mail/rmail.el (rmail-edit): New Custom group.
8585         * mail/rmailedit.el (rmail-edit-mode): Doc fix.
8586         (rmail-edit-mode-hook): New user-option.
8588 2001-05-05  Richard M. Stallman  <rms@gnu.org>
8590         * help.el (help-xref-symbol-regexp): Recognize "source of"
8591         and friends, meaning make a link to the source file.
8592         (help-make-xrefs): Handle "source of" and friends
8593         by constructing a link that visits the source file.
8595         * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
8597 2001-05-04  Stefan Monnier  <monnier@cs.yale.edu>
8599         * progmodes/cperl-mode.el (cperl-font-lock-keywords)
8600         (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
8601         Renamed from perl-font-lock-keywords to avoid clashes.
8602         (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
8603         (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
8604         Updated correspondingly.
8606         * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
8607         Typo `nonexistant' -> `nonexistent'.
8609 2001-05-04  Martin Stjernholm  <bug-cc-mode@gnu.org>
8611         * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
8612         Split `c-electric-delete' into two functions where
8613         `c-electric-delete-forward' always deletes forward and
8614         `c-electric-delete' only contains the code necessary for XEmacs to
8615         choose between backward and forward deletion.
8617         * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
8618         get the electric behavior on that key too.
8619         (c-fill-paragraph): Fixed bogus direct use of
8620         c-comment-prefix-regexp, which caused an error when it's a list.
8622 2001-05-03  Eli Zaretskii  <eliz@is.elta.co.il>
8624         * dired-aux.el (dired-diff): Doc fix.
8626         * dired.el (dired-diff): Likewise.
8628 2001-05-03  Eli Zaretskii  <eliz@is.elta.co.il>
8630         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
8632 2001-05-02  Stefan Monnier  <monnier@cs.yale.edu>
8634         * vc.el (vc-next-action-on-file): Only force buffer+file to writable
8635         if both the buffer and the file are read-only.
8637         * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
8638         rather than font-lock-string-face.
8639         (sh-get-indent-info): Treat heredocs like strings.
8641 2001-05-02  Gerd Moellmann  <gerd@gnu.org>
8643         * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
8644         a newline following `}'.
8645         (texinfo-format-email): New function.
8646         (toplevel): Use texinfo-format-email for @email.
8647         (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
8648         Add `display'.
8649         (texinfo-sort-region): Goto point-min before sorting.
8650         (texinfo-set): Remove leading white space from value.
8651         From yagi@is.titech.ac.jp.
8653         * replace.el (query-replace-regexp-eval): Doc fix.
8655 2001-05-01  Stefan Monnier  <monnier@cs.yale.edu>
8657         * diff-mode.el (diff-nonexistant-face): New face.
8658         (diff-font-lock-keywords): Use it.
8660 2001-04-30  Eli Zaretskii  <eliz@is.elta.co.il>
8662         * font-lock.el (font-lock-mode): Doc fix.
8664         * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
8665         (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
8667 2001-04-30  Gerd Moellmann  <gerd@gnu.org>
8669         * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
8670         backslash at the start of the here-document delimiter.
8671         (sh-font-lock-syntactic-keywords): Likewise.
8673         * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
8675 2001-04-29  Eli Zaretskii  <eliz@is.elta.co.il>
8677         * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
8678         (tty-color-translate, tty-color-by-index, tty-color-values)
8679         (tty-color-desc): Doc fix.
8681 2001-04-27  Eli Zaretskii  <eliz@is.elta.co.il>
8683         * dired-aux.el (dired-do-create-files, dired-do-copy)
8684         (dired-do-symlink, dired-do-hardlink, dired-do-rename):
8685         Mention dired-dwim-target in the doc string.
8687 2001-04-28  Miles Bader  <miles@gnu.org>
8689         * dabbrev.el (dabbrev--ignore-buffer-p): New function.
8690         (dabbrev--find-expansion): Use it.
8691         (dabbrev--select-buffers): Don't select ignored buffers.
8693 2001-04-27  Gerd Moellmann  <gerd@gnu.org>
8695         * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
8697 2001-04-26  Richard M. Stallman  <rms@gnu.org>
8699         * dabbrev.el: Add doc strings for some functions.
8700         (dabbrev--eliminate-newlines): New variable.
8701         (dabbrev--substitute-expansion): Convert newlines to spaces
8702         if dabbrev--eliminate-newlines is set.
8703         If abbrev and expansion are both all-lower-case,
8704         leave dabbrev--last-case-pattern nil.
8706 2001-04-26  Gerd Moellmann  <gerd@gnu.org>
8708         * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
8709         if necessary, like in rmail-show-message.
8711 2001-04-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
8713         * ps-print.el: Color specified by number is forced to be float number.
8714         (ps-print-version): New version number (6.5.1.1).
8715         (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
8716         initialization.
8717         (ps-prefix-quote): New internal var.
8718         (ps-print-quote): New fun.
8719         (ps-setup, ps-output-frame-properties, ps-float-format)
8720         (ps-format-color): Code fix.
8721         (ps-plot-region): Eliminate redundant foreground color text setting.
8723 2001-04-26  Eli Zaretskii  <eliz@is.elta.co.il>
8725         * dabbrev.el (dabbrev--select-buffers): Add a doc string.
8727 2001-04-25  Gerd Moellmann  <gerd@gnu.org>
8729         * faces.el (tty-handle-reverse-video): Don't set inverse-video.
8731 2001-04-25  Eli Zaretskii  <eliz@is.elta.co.il>
8733         * info.el (Info-additional-directory-list): Doc fix.
8735         * find-lisp.el (find-lisp-find-dired-filter)
8736         (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
8737         Add autoload cookies.  From Richard Y. Kim <ryk@dspwiz.com>.
8739 2001-04-25  Stefan Monnier  <monnier@cs.yale.edu>
8741         * progmodes/make-mode.el (makefile-font-lock-keywords):
8742         Rationalize the rules for includes and conditionals and use the
8743         keyword face for them.
8745         * faces.el (modify-face): Add compatibility for non-interactive use.
8747 2001-04-24  John Wiegley  <johnw@gnu.org>
8749         * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
8750         fix from last night, since it wasn't finding eshell/cd.
8752 2001-04-24  Gerd Moellmann  <gerd@gnu.org>
8754         * rect.el (string-rectangle): Revert to 20.x behaviour.
8755         (replace-rectangle): Make it an alias for string-rectangle.
8756         (string-insert-rectangle): New function.
8758 2001-04-23  John Wiegley  <johnw@gnu.org>
8760         * eshell/em-unix.el (eshell/diff): Fixed problems that were
8761         occurring with Emacs 21's diff.el/compile.el interaction layer.
8763 2001-04-23  Colin Walters  <walters@cis.ohio-state.edu>
8765         * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
8766         case where the function was defined in a file, but not part of an
8767         eshell module.
8769 2001-04-23  John Wiegley  <johnw@gnu.org>
8771         * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
8772         code to work around a redisplay problem I've been having.
8774 2001-04-23  John Wiegley  <johnw@gnu.org>
8776         * calendar/timeclock.el (timeclock-day-required): If the time
8777         required for a particular day is not set, use `timeclock-workday'.
8778         (timeclock-find-discrep): Added some sample code in a comment.
8780         * eshell/eshell.el (eshell-command): Made a few changes so that
8781         `eshell-command' could be called programmatically.
8783         * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
8785         * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
8787 2001-04-23  John Wiegley  <johnw@gnu.org>
8789         * calendar/timeclock.el: Updated copyright.
8790         (timeclock-generate-report): Don't report the daily or two-week
8791         total, if no time has been worked in that period.
8792         (timeclock-find-discrep): Moved call to `file-readable-p'; removed
8793         final computational form, which was unnecessary; corrected a
8794         parsing problem when timeclock-relative was nil.
8796 2001-04-23  Kahlil Hodgson <kahlil@discus.anu.edu.au>
8798         * calendar/timeclock.el (timeclock-modeline-display): Check if
8799         `list-entry' is null.
8800         (timeclock-use-display-time): The first argument to `set-variable'
8801         must be a symbol.
8803 2001-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
8805         * calendar/calendar.el (diary-entry-marker)
8806         (calendar-today-marker, calendar-holiday-marker):
8807         Use display-color-p instead of window-system.
8808         (calendar-mode-map, calendar-mode): Use display-popup-menus-p
8809         instead of window-system.
8810         (calendar-hide-window): Use display-multi-frame-p instead of
8811         window-system.
8813         * calendar/cal-x.el (calendar-two-frame-setup)
8814         (calendar-only-one-frame-setup, calendar-one-frame-setup):
8815         Use display-multi-frame-p instead of window-system.
8817 2001-04-23  Gerd Moellmann  <gerd@gnu.org>
8819         * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
8821         * textmodes/ispell.el, emacs-lisp/checkdoc.el,
8822         * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
8824 2001-04-23  Alex Schroeder  <alex@gnu.org>
8826         * goto-addr.el: Instead of defining line-beginning-position and
8827         line-end-position a defalias is used for point-at-bol and point-at-eol.
8829 2001-04-23  Alex Schroeder  <alex@gnu.org>
8831         * goto-addr.el: Added XEmacs compatibility code.
8832         (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
8834 2001-04-22  Eli Zaretskii  <eliz@is.elta.co.il>
8836         * textmodes/paragraphs.el (sentence-end): Doc fix.
8838 2001-04-20  Alex Schroeder  <alex@gnu.org>
8840         * sql.el (sql-escape-newlines-and-send): New function.
8841         (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
8843 2001-04-20  Alex Schroeder  <alex@gnu.org>
8845         * sql.el (sql-db2-program): New option.
8846         (sql-db2-options): New option.
8847         (sql-db2): New function.
8849 2001-04-20  Alex Schroeder  <alex@gnu.org>
8851         * sql.el (sql-mode-menu): Added highlighting entries.
8852         (sql-highlight-oracle-keywords): New function.
8853         (sql-highlight-postgres-keywords): New function.
8854         (sql-highlight-ansi-keywords): New function.
8856 2001-04-20  Alex Schroeder  <alex@gnu.org>
8858         * sql.el (sql-help): Doc change.
8860 2001-04-19  Karl Fogel  <kfogel@collab.net>
8862         * saveplace.el (save-place-alist-to-file): Removed no-effect code
8863         that inserted file content only to delete it immediately.
8864         Probably a cut-and-paste bug.  Thanks to Juanma Barranquero
8865         <lektu@uol.com.br> for the patch.
8867 2001-04-19  Stefan Monnier  <monnier@cs.yale.edu>
8869         * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
8871 2001-04-18  Gerd Moellmann  <gerd@gnu.org>
8873         * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
8874         for defmethod.
8876         * comint.el (comint-cr-magic): New function.
8877         (toplevel): Add it to comint-preoutput-filter-functions.
8879 2001-04-18  Andrew Innes  <andrewi@gnu.org>
8881         * makefile.w32-in (EMACSLOADPATH): Define.
8882         (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
8883         (recompile): Remove stuff to set EMACSLOADPATH.
8885 2001-04-18  Gerd Moellmann  <gerd@gnu.org>
8887         * language/slovak.el ("Slovak"): Add tutorial entry.
8889         * net/browse-url.el (browse-url-new-window-flag): Renamed from
8890         browse-url-new-window-p.
8892 2001-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
8894         * info.el (Info-menu-update): When there are no menus and/or no
8895         cross references in the node, make the respective items of the
8896         Info menu-bar menu inactive.
8898 2001-04-17  Gerd Moellmann  <gerd@gnu.org>
8900         * indent.el (indent-for-tab-command): Call indent-line-function
8901         with no argument if PREFIX-ARG is non-nil.
8903         * frame.el (delete-other-frames): Handle minibuffer-only frames.
8905 2001-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
8907         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
8908         an async subprocess if start-process is unavailable.  Suggested by
8909         Tim Van Holder <tim.van.holder@pandora.be>.
8911 2001-04-15  Eli Zaretskii  <eliz@is.elta.co.il>
8913         * info.el (Info-additional-directory-list): Doc fix.  Suggested by
8914         Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
8916 2001-04-14  Eli Zaretskii  <eliz@is.elta.co.il>
8918         * info.el (Info-file-list-for-emacs): Add an entry for the "info"
8919         manual.
8921 2001-04-13  Stefan Monnier  <monnier@cs.yale.edu>
8923         * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
8924         (cvs-menu): Add a few entries.
8926         * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
8927         (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
8928         lock file appears to be reachable from Emacs.
8929         (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
8930         (cvs-mode-find-file): Look for cvs-header-face rather than
8931         cvs-dirname-face (which doesn't exist).
8932         (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
8934         * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
8936 2001-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
8938         * emulation/pc-select.el (pc-selection-mode): Don't turn on
8939         normal-erase-is-backspace on a tty.  Instead, bind some keys such
8940         as [delete] directly, like pc-select.el did before
8941         normal-erase-is-backspace was invented.
8943 2001-04-12  Eli Zaretskii  <eliz@is.elta.co.il>
8945         * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
8947 2001-04-11  John Wiegley  <johnw@gnu.org>
8949         * eshell/em-ls.el (eshell-ls-insert-directory):
8950         Set font-lock-defaults to nil, to prevent fontification in dired
8951         buffers, if Eshell's ls is being used.
8953 2001-04-11  John Wiegley  <johnw@gnu.org>
8955         * calendar/timeclock.el (timeclock-completing-read): New function.
8956         (timeclock-ask-for-project, timeclock-ask-for-reason):
8957         Call `timeclock-completing-read'.
8959         * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
8960         required where `member' was being used.
8962 2001-04-11  Colin Walters  <walters@cis.ohio-state.edu>
8964         * eshell/em-hist.el (eshell-previous-matching-input):
8965         Don't display "History item" if the minibuffer is active.
8967 2001-04-11  Gerd Moellmann  <gerd@gnu.org>
8969         * startup.el (command-line): Output a newline after printing
8970         an error from loading the window system's init file.
8972 2001-04-11  Eli Zaretskii  <eliz@is.elta.co.il>
8974         * textmodes/texinfo.el (texinfo-font-lock-keywords):
8975         Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
8976         @inforef.  Add an OVERRIDE of `keep' to highlight specs of
8977         keywords whose arguments routinely include @@.
8979 2001-04-10  Gerd Moellmann  <gerd@gnu.org>
8981         * emacs-lisp/advice.el (ad-make-advised-definition):
8982         Construct advice for subrs differently.
8984         * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
8985         regexp in parentheses when building the regexp for searching backwards.
8987         * simple.el (completion-list-mode-finish): New function.
8988         (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
8990         * language/european.el ("Polish"): Change sample text.
8991         From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
8993         * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
8994         parameter.
8996         * faces.el (menu): Doc fix.
8998 2001-04-10  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9000         * ps-print.el: Footer implementation.  Doc fix.
9001         (ps-print-version): New version number (6.5.1).
9002         (ps-header-frame-alist): New customization var for header frame
9003         properties.
9004         (ps-line-number-color): New customization var for line number color.
9005         (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
9006         (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
9007         (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
9008         (ps-right-footer): New customization vars for footers.
9009         (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
9010         footers.
9011         (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
9012         (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
9013         Code fix.
9014         (ps-prologue-file): Indentation fix.
9015         (ps-print-quote): Fun eliminated.
9016         (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
9017         (ps-output-frame-properties): New fun.
9018         (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
9019         (ps-skip-newline): Replace defun by defsubst.
9021 2001-04-10  Colin Walters <walters@cis.ohio-state.edu>
9023         * eshell/eshell.el (eshell-command): Needed a "%s" format
9024         specifier, in case the buffer contains percent characters.
9026 2001-04-10  John Wiegley  <johnw@gnu.org>
9028         * calendar/timeclock.el (timeclock-generate-report): Added a
9029         missing insert of the project name.
9031 2001-04-09  Gerd Moellmann  <gerd@gnu.org>
9033         * obsolete/profile.el: Moved from emacs-lisp/.
9035         * Makefile.in (nonobsolete_setwins): New macro.
9036         (finder-data): Use it instead of `setwins'.
9037         From: Dave Love <fx@gnu.org>.
9039         * server.el (server-visit-files): Set server-existing-buffer correctly.
9040         (server-visit-files): Run server-visit-hook after going to
9041         line 1 so that the hook can set point as it sees fit.
9043         * bindings.el (mode-line-modified): Unify help messages.
9045 2001-04-07  Eli Zaretskii  <eliz@is.elta.co.il>
9047         * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
9048         All callers changed.
9050 2001-04-06  Eli Zaretskii  <eliz@is.elta.co.il>
9052         * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
9053         long file names aren't supported, truncate the file names in
9054         quail-misc-package-ext-info to 8+3 before matching them against
9055         FILENAME.
9057         * dos-fns.el (dos-truncate-to-8+3): New function.
9059         * progmodes/compile.el (grep-compute-defaults): Use null-device
9060         instead of literal /dev/null. Reported by Jens Schmidt
9061         <schmidt@mathematik.uni-kl.de>.
9063         * simple.el (normal-erase-is-backspace-mode): Doc fix.
9065 2001-04-06  Stefan Monnier  <monnier@cs.yale.edu>
9067         * textmodes/sgml-mode.el: Add unknown maintainer.
9068         (sgml-tag): Pass `str' explicitly through skeleton-transformation.
9069         (html-mode-map): Use set-keymap-parent.
9071 2001-04-06  Dave Love  <fx@gnu.org>
9073         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9074         Remove redundant string-to-list.
9076 2001-04-05  Stefan Monnier  <monnier@cs.yale.edu>
9078         * composite.el (reference-point-alist): Doc fix.
9080 2001-04-05  Sam Steingold  <sds@gnu.org>
9082         * font-lock.el (font-lock-keywords-case-fold-search):
9083         Make buffer-local.  This fixes a very annoying bug when loading a Lisp
9084         file made font-lock case-insensitive.
9086 2001-04-05  Gerd Moellmann  <gerd@gnu.org>
9088         * faces.el (defface menu): Doc fix.
9090         * wid-edit.el (widget-color-sample-face-get): Don't make
9091         faces for undefined colors.
9093         * version.el (emacs-version): Include LessTif/Motif version info.
9095 2001-04-04  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9097         * ps-mule.el: Eliminate cl package dependence.
9098         (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
9099         if they aren't defined yet.
9100         (ps-mule-encode-header-string, ps-mule-header-string-charsets):
9101         Eliminate cl package dependence.
9103 2001-04-04  Stefan Monnier  <monnier@cs.yale.edu>
9105         * progmodes/cc-cmds.el (c-outline-level):
9106         Bind buffer-invisibility-spec.  Originally from Dave Love, but
9107         got lost when incorporating version 5.26.
9109 2001-04-04  Eli Zaretskii  <eliz@is.elta.co.il>
9111         * emulation/pc-select.el (pc-selection-mode):
9112         Call normal-erase-is-backspace-mode instead of binding
9113         keys individually.
9115         * cus-load.el (normal-erase-is-backspace): Use it instead of
9116         delete-key-deletes-forward.
9118         * startup.el (command-line): Use normal-erase-is-backspace and
9119         normal-erase-is-backspace-mode.
9121         * simple.el (normal-erase-is-backspace): Rename from
9122         delete-key-deletes-forward.  Doc fix.
9123         (normal-erase-is-backspace-mode): Rename from
9124         delete-key-deletes-forward-mode.  Doc fix.
9125         Run normal-erase-is-backspace-hook.
9127         * dired.el (dired-move-to-filename-regexp): Support file sizes in
9128         ``human-readable'' format produced by GNU `ls'.
9129         (dired-move-to-filename-regexp): Recognize ISO format dates.
9130         From Paul Eggert <eggert@twinsun.com>.
9132 2001-04-04  Gerd Moellmann  <gerd@gnu.org>
9134         * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
9135         New functions.
9136         (lm-verify): Check keywords.
9137         From Eric M. Ludlam <eric@siege-engine.com>.
9139 2001-04-03  Eric M. Ludlam  <eric@siege-engine.com>
9141         * speedbar.el (speedbar-insert-image-button-maybe): Check for
9142         `xemacs' feature instead of for the function `set-extent-property'.
9144 2001-04-03  Stefan Monnier  <monnier@cs.yale.edu>
9146         * mail/mh-utils.el (mh-folder-hist): New var.
9147         (mh-prompt-for-folder): Use it and pass `default' to completing-read.
9149 2001-04-03  Eli Zaretskii  <eliz@is.elta.co.il>
9151         * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
9152         region, position point on the first or last 16-byte group.
9153         (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
9154         and hexl-end-of-buffer.  Bind End and Home to hexl-end-of-line and
9155         hexl-beginning-of-line.
9157 2001-04-03  Gerd Moellmann  <gerd@gnu.org>
9159         * icomplete.el (icomplete-mode): Treat an argument like other
9160         modes do.
9162         * startup.el (fancy-splash-head): Use splash8.xpm for color
9163         depth 8.
9165         * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
9166         Add an antry for ``converts''.
9168         * language/slovak.el ("Slovak"): Add documentation string.
9169         From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
9171         * language/czech.el ("Czech"): Add documentation string.
9172         From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk).
9174         * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
9175         to `isci24-mule.bdf'.  From: Kenichi Handa <handa@etl.go.jp>.
9177 2001-04-02  Stefan Monnier  <monnier@cs.yale.edu>
9179         * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
9180         (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
9181         (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
9182         Use `defsubst' rather than a macro to ease debugging.
9183         (mail-extr-last): Remove (use `last' instead).
9184         (mail-extract-address-components): Properly reset the syntax-table
9185         after parsing an address.  Use `last' rather than mail-extr-last.
9186         Make sure the end marker stays at the very end.
9188 2001-04-02  Eli Zaretskii  <eliz@is.elta.co.il>
9190         * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
9191         last change.
9193 2001-04-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9195         * ps-print.el: Line and paragraph spacing feature.  Region to cut
9196         out when printing.  Doc fix.
9197         (ps-print-version): New version number (6.5).
9198         (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
9199         New vars.  Line and paragraph spacing feature.
9200         (ps-begin-cut-regexp, ps-end-cut-regexp): New vars.  Region to cut
9201         out when printing.
9202         (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
9203         (ps-get-font-size, ps-begin-job, ps-continue-line)
9204         (ps-plot-region): Code fix.
9205         (ps-print-prologue-2): Var eliminated.
9206         (ps-line-spacing-internal, ps-paragraph-spacing-internal):
9207         New internal vars.
9208         (ps-get-size): New fun.
9209         (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
9210         (ps-next-line): Replace defun by defsubst.
9211         (ps-mule-plot-string): Autoload doc fix.
9213         * ps-bdf.el: XEmacs compatibility.  Doc fix.
9214         (installation-directory, coding-system-for-read): Declare vars if
9215         it's not declared yet.
9216         (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
9218         * ps-mule.el: XEmacs compatibility.  Doc fix.
9219         (leading-code-private-22): Declare var if it's not declared yet.
9220         (charset-bytes, charset-dimension, charset-id, charset-width)
9221         (find-charset-region, split-char, char-width, chars-in-region)
9222         (forward-point, decompose-composite-char, encode-coding-string)
9223         (coding-system-p, ccl-execute-on-string, define-ccl-program):
9224         Define funs if not defined yet.
9225         (encode-composition-rule, find-composition): Define funs if not
9226         loaded yet.
9227         (ps-mule-prologue): PostScript code fix.
9229 2001-04-02  Kenichi Handa  <handa@etl.go.jp>
9231         * ps-mule.el (ps-mule-generate-font): New arg HEADER-P.  If it is
9232         non-nil, generate font for the header strings.
9233         (ps-mule-prepare-font): Likewise.
9234         (ps-mule-generate-glyphs): Likewise.
9235         (ps-mule-string-encoding): Likewise.
9236         (ps-mule-header-charsets): New variable.
9237         (ps-mule-encode-header-string): New function.
9238         (ps-mule-header-string-charsets): New function.
9239         (ps-mule-begin-job): Check charsets in the header strings.  If there
9240         are non-ASCII and non-Latin1 charsets, prepare fonts for them.
9242         * ps-print.el (ps-generate-header-line): Encode the header string by
9243         ps-mule-encode-header-string.
9244         (ps-mule-encode-header-string): Declare autoload.
9246 2001-04-02  Gerd Moellmann  <gerd@gnu.org>
9248         * frame.el (cursor-in-non-selected-windows):
9249         Replaces show-cursor-in-non-selected-windows.
9251 2001-03-31  Kenichi Handa  <handa@etl.go.jp>
9253         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9254         Delete entries for "chinese-py" and "chinese-ziranma".
9255         (quail-misc-package-ext-info): New variable.
9256         (tsang-quick-converter): New function.
9257         (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
9258         (quick-cns-converter, py-converter, ziranma-converter)
9259         (miscdic-convert, batch-miscdic-convert): New functions.
9261 2001-03-30  Kenichi Handa  <handa@etl.go.jp>
9263         * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
9264         eight-bit-control chars.
9266         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9267         Reduce making temporary vector (suggested by Dave Love).
9269 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
9271         * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
9272         string as well.
9274 2001-03-30  Andreas Schwab  <schwab@suse.de>
9276         * files.el (backup-directory-alist): Fix typo.
9278 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
9280         * time-stamp.el (time-stamp-format): Doc fix.  From Paul Eggert
9281         <eggert@twinsun.com>.
9283 2001-03-30  Dave Love  <fx@gnu.org>
9285         * progmodes/fortran.el (fortran-comment-region): Fix typo.
9287 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
9289         * simple.el (transient-mark-mode): Mention C-g in the doc string.
9291 2001-03-30  Miles Bader  <miles@gnu.org>
9293         * subr.el (interactive-form): Fix paren typo.
9295 2001-03-29  Eli Zaretskii  <eliz@is.elta.co.il>
9297         * emacs-lisp/profile.el: Say that it's obsolete in the header
9298         line, so that finder.el puts that into its data-base.
9299         Suggested by Alex Schroeder <alex@gnu.org>.
9301 2001-03-29  Paul Eggert  <eggert@twinsun.com>
9303         * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
9304         LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
9306 2001-03-29  Stefan Monnier  <monnier@cs.yale.edu>
9308         * generic.el (generic-mode-set-comments): Use "" rather than nil
9309         for comment-end.
9311 2001-03-29  Gerd Moellmann  <gerd@gnu.org>
9313         * emacs-lisp/advice.el (ad-make-advised-definition):
9314         Call interactive-form to obtain the interactive spec of subrs.
9316         * subr.el (interactive-form): New function.
9318 2001-03-29  Andre Spiegel  <spiegel@gnu.org>
9320         * vc-sccs.el (vc-sccs-register): Use relative file names.
9322 2001-03-28  Gerd Moellmann  <gerd@gnu.org>
9324         * bookmark.el (bookmark-get-bookmark): Handle case that
9325         BOOKMARK is not a string.
9327         * image.el (image-type-regexps): Change type for PS files
9328         to `postscript'.
9330         * subr.el (read-passwd): Clear command history after each
9331         character entered.  From: Stephen Gildea
9332         <gildea@stop.mail-abuse.org>.
9334 2001-03-27  Kenichi Handa  <handa@etl.go.jp>
9336         * international/kkc.el (kkc-save-init-file): Locally bind
9337         print-length to nil.
9339 2001-03-26  Gerd Moellmann  <gerd@gnu.org>
9341         * textmodes/flyspell.el: Some doc fixes.
9342         (flyspell-maybe-correct-transposition)
9343         (flyspell-maybe-correct-doubling): Use a temporary buffer
9345         * textmodes/ispell.el (ispell-parse-output): Doc fix.
9347         * emacs-lisp/byte-opt.el (byte-optimize-while)
9348         (byte-optimize-form-code-walker): Diagnose too few arguments
9349         for `if' and `while'.
9351 2001-03-26  Kenichi Handa  <handa@etl.go.jp>
9353         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
9354         Prepend `\' to "\<quail-translation-docstring>".
9356 2001-03-26  Gerd Moellmann  <gerd@gnu.org>
9358         * autorevert.el (global-auto-revert-non-file-buffers):
9359         Remove duplicate defcustom.
9361 2001-03-26  Miles Bader  <miles@gnu.org>
9363         * international/latin1-disp.el (latin1-char-displayable-p):
9364         Add leading "-" for X font pattern.
9366 2001-03-26  Kenichi Handa  <handa@etl.go.jp>
9368         * international/mule-diag.el (describe-coding-system):
9369         For raw-text and emacs-mule, don't add anymore text about what
9370         charsets they can encode.
9372 2001-03-25  Eli Zaretskii  <eliz@is.elta.co.il>
9374         * help.el (view-lossage): Mention open-dribble-file in the doc
9375         string.  Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
9377 2001-03-23  Stefan Monnier  <monnier@cs.yale.edu>
9379         * skeleton.el (skeleton-internal-list): Fix bogus logic.
9380         (skeleton-pair-insert-maybe): Don't pair after a backslash.
9382 2001-03-23  Kenichi Handa  <handa@etl.go.jp>
9384         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
9385         Call ccl-execute-on-string directly so that CCL program handling
9386         multibyte sequence can work correctly.
9387         (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
9388         property of the coding system.
9390 2001-03-23  Stefan Monnier  <monnier@cs.yale.edu>
9392         * textmodes/fill.el (fill-individual-paragraphs-prefix):
9393         Fix transcription typo.
9395 2001-03-22  Rajesh Vaidheeswarran  <rv@gnu.org>
9397         * whitespace.el: Add buffer local variables to toggle testing of
9398         whitespaces in buffers without affecting the default values.
9399         Bump version to 3.0 to account for a few other changes.
9400         (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
9401         (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
9402         (whitespace-toggle-spacetab-check): New functions.
9404 2001-03-21  Stefan Monnier  <monnier@cs.yale.edu>
9406         * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
9408 2001-03-21  Gerd Moellmann  <gerd@gnu.org>
9410         * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
9411         bs-cycle-configuration-name.  From Juanma Barranquero
9412         <lektu@uol.com.br>.
9414         * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
9415         and cc-vars.el.
9417         * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
9418         headers.  Always invoke sendmail with option -t.
9420 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9422         * Release of cc-mode 5.28.
9424 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9426         * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
9427         Removed the hardcoded switch to "java" style in Java mode.
9428         It's instead taken care of by the default value for c-default-style.
9430 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9432         * cc-align.el (c-lineup-math): Fix bug where lineup was
9433         triggered by equal signs in string literals.
9435 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9437         * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
9438         limit detection when at the ends of the buffer.
9440         * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
9441         "for" statement clause in case 7F; a better one is done
9442         earlier in case 7D anyway.
9444 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9446         * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
9447         somewhat more and did a small optimization.
9449 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9451         * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
9452         Use the limit argument only to limit the syntactic context
9453         search, not to limit the actual movement.
9455         * cc-cmds.el (c-beginning-of-statement): Move by sentence
9456         inside multiline strings, just like in comments.  Also various
9457         fixes to the paragraph and comment prefix recognition, block
9458         comment ender handling etc.
9460 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9462         * cc-cmds.el (c-fill-paragraph): Take more care to preserve
9463         the relative position of the point.
9465         * cc-cmds.el (c-electric-continued-statement): New function to
9466         use as abbrev hook to reindent for keywords such as "else"
9467         that continues an earlier statement.
9469         * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
9470         like classes.
9472         * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
9473         (pike-mode): Populate the default abbrev tables to reindent for
9474         keywords such as "else" that can continue earlier statements.
9475         Abbrev mode is therefore turned on by default now.  (Note that
9476         this doesn't apply to idl-mode, since IDL afaik doesn't have
9477         statements at all.)
9479 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9481         * cc-engine.el (c-inside-bracelist-p): Fix for handling
9482         bracelists where the declaration contains template arguments.
9484 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9486         * cc-cmds.el (c-comment-indent):
9487         Use `c-get-syntactic-indentation' to correctly calculate the
9488         syntactic indentation.  Fixes bug with lineup functions that
9489         return vectors.
9491         * cc-engine.el (c-get-syntactic-indentation): Split the
9492         indentation sum calculation from `c-indent-line' to a separate
9493         function.
9495 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9497         * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
9498         Fixed places where it was assumed that preprocessor directives
9499         have to start in column zero.
9501         * cc-engine.el (c-beginning-of-member-init-list): Handle C++
9502         template arguments after a class identifier properly.
9504         * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
9505         lists for `new Foo[]' constructs in Java as expressions and
9506         not top level definition brace lists on the top level, so that
9507         they'll get indented consistently with the same type of
9508         expression in a normal block.
9510 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9512         * cc-cmds.el (c-fill-paragraph): The kludge that checks
9513         whether the adaptive filling package fails to keep the comment
9514         prefix is now kludged further to check for filladapt-mode
9515         which doesn't have that problem. This is really icky, but it's
9516         the only way that works with the current misfeatures/bugs in
9517         both adaptive-fill-mode and filladapt-mode.
9519         * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
9520         around point is recognized more robust.
9522 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9524         * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
9525         (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
9526         (c-lit-type): Fixed all internal variables used dynamically so
9527         that they are always bound.
9529         * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
9530         errors:
9532         (c-indent-region): Fixed reporting of syntactic errors so that
9533         the region is fully reindented even when an error occurs.
9534         The last syntactic error is printed afterwards.  Also cleanup up a
9535         whole lot of code that tried to optimize indentation of whole
9536         sexps but in reality accomplishes nothing.
9538         (c-indent-sexp): Use c-indent-region.
9540         (c-parsing-error): Changed this variable to hold the message
9541         for any syntactic error that is discovered.
9543         (c-parse-state): Search backward from point instead of the bod
9544         position when the latter is invalid.  This makes CC Mode
9545         recover faster when there are unbalanced close braces.
9547         (c-backward-to-start-of-if): Use c-parsing-error to report
9548         dangling "else" clauses instead of throwing an error, and fall
9549         back to a reasonable position.
9551         (c-indent-line): Added argument to avoid reporting syntactic errors.
9553         (c-show-syntactic-information): Don't report any syntactic errors.
9555 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9557         * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
9558         paragraph recognition when moving by sentence in literals.
9560         * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
9561         start regexp for javadoc to recognize javadoc markup in general instead
9562         of a specific set of keywords, to be more future-safe.
9564         (c-Pike-pikedoc-paragraph-start)
9565         (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
9566         pikedoc markup.
9568         * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
9570         (pike-mode): Initialize paragraph settings pikedoc recognition.
9572         * cc-vars.el (c-default-style): Made a nicer Customize widget.
9574         (c-comment-prefix-regexp): Made it possible to use an
9575         association list on this to specify mode specific regexps.
9576         The default value now use a special regexp in Pike mode to
9577         recognize pikedoc markup.
9579         (c-current-comment-prefix): New variable containing the actual
9580         regexp from c-comment-prefix-regexp for the current buffer.
9582 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9584         * cc-cmds.el (c-electric-brace): Fixed check for special brace
9585         lists: We can't look at the syntax, since a brace list can get
9586         recognized as a plain statement-cont.
9588         * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
9589         special brace list opener broken over two lines got recognized
9590         as a statement on the second line.  Case 9A changed.
9592 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9594         * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
9595         adjustment after line is reindented.
9597 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9599         * cc-defs.el (c-point): Added optional argument for position
9600         to use instead of the current point.
9602         * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
9603         the in-expression block symbols when the construct starts at
9604         boi, to avoid the extra level of indentation in that case.
9605         Cases 4, 16A and 17E affected.
9607 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9609         * cc-cmds.el: Use `indent-according-to-mode' instead of direct
9610         calls to `c-indent-line', to adhere better to Emacs conventions.
9612         * cc-engine.el (c-indent-line): Use the syntax already bound
9613         to `c-syntactic-context', if there is any.
9615 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9617         * cc-engine.el (c-get-offset): Fixed bug where the indentation
9618         wasn't added up correctly when a lineup function returned nil.
9620 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9622         * cc-engine.el (c-collect-line-comments): Fixed bug where
9623         empty lines were ignored when collecting line comments backwards.
9625 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9627         * cc-align.el (c-lineup-dont-change): Return an absolute
9628         indentation column to work correctly in the case when several
9629         syntactic elements are processed for the same line.
9631         * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
9632         (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
9633         (c-set-offset): Added absolute indentation column settings by
9634         using the vector type.
9636 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9638         * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
9639         Implemented two new cleanups `space-before-funcall' and
9640         `compact-empty-funcall'.
9642 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9644         * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
9645         helping building regexps.
9647         * cc-engine.el (c-on-identifier): New function for detecting
9648         identifiers.  It takes keywords into account.
9650         * cc-langs.el, cc-mode.el: Added regexps for complete keyword
9651         lists.  `c-keywords' is set to a regexp matching all keywords
9652         in the current language.
9654 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9656         * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
9657         list of characters to skip backwards over at the beginning of
9658         a statement, since it can precede string literals in Pike.
9660 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9662         * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
9663         recognition when standing on the last line in a C++ comment
9664         with nothing but whitespace after the prefix.
9666         * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
9667         given no limit argument.
9669 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9671         * cc-engine.el (c-inside-bracelist-p): Fixed brace list
9672         recognition for the `[]= operator symbol in Pike.
9674 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9676         * cc-bytecomp.el (cc-eval-when-compile): New macro that works
9677         around a bug in `eval-when-compile' in the byte compiler.
9679         * cc-engine.el (c-forward-token-1): Fixed bug with return
9680         value when count is zero and there's no token start within the limit.
9682         (c-guess-basic-syntax): Don't add 'comment-intro to lines with
9683         "prefix comments", i.e. comments which are followed by code on
9684         the same line.
9686         * cc-mode-19.el: Fixes so that checks that must be done at
9687         compile time also are done then.
9689 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9691         * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
9692         time and at runtime, and only when it's needed.
9694 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9696         Major cleanup for less error prone and more warning free
9697         compilation, including some fixes for bugs due to different
9698         compilation orders. Thanks to Martin Buchholz for providing
9699         the basis for all this.
9701         * cc-bytecomp.el: New file that provides some byte compilation
9702         features: It ensures that files always are loaded from the
9703         current source directory during compilation, and it provides a
9704         set of macros to turn off specific compiler warnings for
9705         specific symbols.  (It's not CC Mode specific in any way.)
9707         Fixed a nearly acyclic dependency tree (both runtime and
9708         compile-time) between all files.
9710         * cc-defs.el: Separated all macros before the inline functions,
9711         to ensure correct compilation.
9713         * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
9714         cc-defs.el to cc-engine.el and made it a function instead.
9716         * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
9717         about char-after.
9719         * cc-vars.el: Cope even when there isn't a custom package
9720         containing defcustom available.
9722         * cc-make.el: Removed since it's no longer necessary.
9724         README: Updated installation instructions.
9726 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9728         * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
9729         improve the modularity: Moved all mode init stuff from
9730         cc-langs.el to cc-mode.el, including the keymap
9731         initialization; cc-langs now only contains the various
9732         variables for configuring the language syntax.
9734         * cc-engine.el, cc-styles.el (c-evaluate-offset)
9735         (c-get-offset): Moved from cc-styles to cc-engine since file
9736         dependency analysis suggests they belong there (which also
9737         makes more sense).  Thanks to Martin Buchholz for doing the analysis.
9739 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9741         * cc-cmds.el (c-fn-region-is-active-p): New function that
9742         wraps the corresponding macro, for use in places that aren't
9743         compiled.  Thanks to Martin Buchholz for pointing out this.
9745         * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
9747         * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
9748         add things to the bug report.
9750 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9752         * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
9753         returned prefix could contain a newline when the search for a
9754         good prefix line failed.
9756 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9758         * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
9759         (c-toggle-auto-hungry-state): Made the argument optional, as
9760         the documentation says it is.
9762 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
9764         * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
9765         multiline string syntax, #"...", as a cpp macro.
9767 2001-03-21  Paul Eggert  <eggert@twinsun.com>
9769         * international/mule-cmds.el (set-locale-environment):
9770         Set system-messages-locale and system-time-locale, but only if the
9771         caller specifies a non-nil locale name.
9773 2001-03-20  Gerd Moellmann  <gerd@gnu.org>
9775         * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
9776         problems for the interpreter.  From: John Wiegley  <johnw@gnu.org>
9778 2001-03-20  Gerd Moellmann  <gerd@gnu.org>
9780         * follow.el (follow-avoid-tail-recenter): Doc fix.
9782         * custom.el (custom-set-variables): Avoid reversing the list
9783         of args needlessly.
9785         * startup.el (fancy-splash-head): Don't change the colors of the
9786         XPM image on a dark background.
9788         * comint.el (comint-exec-1): Set columns of the terminal to
9789         window-width instead of frame-width.
9791         * info.el (Info-scroll-down): Add missing WINDOW arg for
9792         pos-visible-in-window-p.
9794         * ehelp.el (electric-help-mode-hook): Add defcustom.
9796         * mail/sendmail.el (mail-mode): Activate case-folding in
9797         font-lock-defaults.
9799 2001-03-19  Stefan Monnier  <monnier@cs.yale.edu>
9801         * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
9802         (completion-ignored-extensions): Remove duplicate ".class".
9804 2001-03-19  Andreas Schwab  <schwab@suse.de>
9806         * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
9807         From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
9809 2001-03-19  Gerd Moellmann  <gerd@gnu.org>
9811         * language/european.el ("Latin-5", "Latin-4"): Use postfix input
9812         methods since there are not prefix input methods.
9814 2001-03-19  Kenichi Handa  <handa@etl.go.jp>
9816         * international/mule-cmds.el (read-input-method-name):
9817         Locally bind enable-recursive-minibuffers to t.
9819 2001-03-18  Stefan Monnier  <monnier@cs.yale.edu>
9821         * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
9823 2001-03-17  Michael Kifer  <kifer@cs.sunysb.edu>
9825         * ediff-util.el: Copyright years.
9826         (ediff-choose-syntax-table): New function.
9827         (ediff-setup): Use ediff-choose-syntax-table.
9829         * ediff-init.el (ediff-with-syntax-table): New macro, uses
9830         with-syntax-table.
9832         * ediff.el: Date of last update, copyright years.
9834         * ediff-wind (ediff-setup-control-frame): Nill->nil.
9836         * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
9837         of Scott Bronson.
9838         (ex-cmd-assoc,ex-cmd-one-letr): New functions.
9839         (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
9840         Deleted functions.
9841         (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
9842         ex-token-list.
9844         * viper-util.el: Spaces, indentation.
9846         * viper.el: Changed version, modification time.
9848 2001-03-16  John Wiegley  <johnw@gnu.org>
9850         * calendar/timeclock.el (timeclock-workday-remaining):
9851         Check whether `discrep' is non-null before using it.
9853 2001-03-16  John Wiegley  <johnw@gnu.org>
9855         * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
9856         first-time checkins.
9857         (timeclock-log-data): Fixed problem with reading timelog log file.
9858         Resulting data in the "day list" was incorrect.
9859         (timeclock-find-discrep): Check if `timeclock-file' is readable
9860         before opening it.
9861         (timeclock-time-less-p): New function.
9862         (timeclock-day-base): New function.
9863         (timeclock-geometric-mean): New function.
9864         (timeclock-generate-report): Generate a summary report based on
9865         the contents of the log file.  This uses `timeclock-log-data', and
9866         is an example of writing a timelog manipulation function.
9867         (timeclock-visit-timelog): A quick command for opening the timelog
9868         file.
9869         (timeclock-log-data): Bound the variable event.
9871 2001-03-16  Kenichi Handa  <handa@etl.go.jp>
9873         * international/mule-cmds.el (select-safe-coding-system):
9874         Fix typo: symbol-name -> symbol-value.
9876         * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
9877         before substitute-in-file-name to handle double slashes in FILE
9878         correctly.
9880 2001-03-15  Gerd Moellmann  <gerd@gnu.org>
9882         * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
9883         for Slovak.  From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
9885 2001-03-14  Gerd Moellmann  <gerd@gnu.org>
9887         * bindings.el (features): Add `md5' and `overlay' to the list.
9889         * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
9890         bound before using it.  It's not bound when configured without X,
9891         for instance.
9893 2001-03-13  Thien-Thi Nguyen  <ttn@gnu.org>
9895         * progmodes/hideshow.el: Update copyright.
9896         (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
9897         (hs-minor-mode-hook): Include `:version' in defcustom form.
9899 2001-03-13  Gerd Moellmann  <gerd@gnu.org>
9901         * help.el (string-key-binding): Don't call event-start on
9902         a non-list.
9904 2001-03-13  Eli Zaretskii  <eliz@is.elta.co.il>
9906         * startup.el (fancy-splash-tail, command-line-1): Fix the
9907         copyright year.
9909 2001-03-13  Kenichi Handa  <handa@etl.go.jp>
9911         * term.el: These changes are based on a patch sent from Yong Lu
9912         <lyongu@yahoo.com>.
9913         (term-set-escape-char): Bind M-x to execute-extended-command in
9914         term-raw-escape-map.
9915         (term-move-columns): Don't try to move to negagive column.
9916         (term-emulate-terminal): Insert a string before deleting a text to
9917         overwrite.
9919 2001-03-12  Gerd Moellmann  <gerd@gnu.org>
9921         * play/life.el (life): Rearrange code so that all calls to
9922         life-display-generation are in a catch-form.
9924         * progmodes/etags.el (tags-loop-continue): Don't change point in a
9925         file that isn't interesting.  In an interesting file, push the old
9926         value of point on the mark ring.
9928         * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
9929         New function.
9930         (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
9931         Use it.
9933         * emacs-lisp/autoload.el (generate-file-autoloads):
9934         Remove warning about line lengths.
9936 2001-03-12  Philippe Waroquiers  <wao@gull.tact.cfmu.eurocontrol.be>
9938         * progmodes/etags.el (tags-compression-info-list): New variable.
9939         (find-tag-in-order): Use it to deal with compressed source files.
9940         (tag-file-name-match-p): New function.
9941         (etags-recognize-tags-table): Use it for better match of file names.
9943 2001-03-12  Kenichi Handa  <handa@etl.go.jp>
9945         * international/mule-cmds.el (register-input-method): Doc fix.
9947         * international/quail.el (quail-translate-key): Fix condition to
9948         check if there's another breaking point in the current key.
9950 2001-03-11  Eli Zaretskii  <eliz@is.elta.co.il>
9952         * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
9953         Babyl header to the newly-created output file, bind
9954         coding-system-for-write to either rmail-file-coding-system or
9955         emacs-mule-unix.
9957 2001-03-11  Stefan Monnier  <monnier@cs.yale.edu>
9959         * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
9960         Fix the name and regexp used for subsubsections.
9962 2001-03-10  Dave Love  <fx@gnu.org>
9964         * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
9965         and save-buffer if buffer-file-name non-nil.  From rms.
9967 2001-03-10  Andre Spiegel  <spiegel@gnu.org>
9969         * vc.el (vc-do-command): If the destination buffer is already
9970         current, don't set it up and don't erase it.  Updated doc string
9971         to reflect that.
9972         (vc-version-diff): When doing a single file diff, don't switch to the
9973         *vc-diff* buffer before the command.  This is to preserve local
9974         variable bindings that might affect the diff command.
9975         (vc-print-log): Don't switch to the *vc* buffer before the
9976         command, so that local variable bindings are preserved.
9978         * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
9979         not the current buffer.
9980         (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
9982         * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
9983         make output go to buffer *vc*, not the current buffer.
9985 2001-03-09  Stefan Monnier  <monnier@cs.yale.edu>
9987         * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
9988         so ^, $, *, ? and + are interpreted correctly.
9990 2001-03-09  Gerd Moellmann  <gerd@gnu.org>
9992         * help.el (string-key-binding): Renamed from
9993         mode-line-key-binding.  Handle any event on a string.
9994         Check for `keymap' properties as well as `local-map' properties.
9996         * comint.el (comint-insert-clicked-input): Use the last key
9997         from this-command-keys to lookup the global key definition.
9999 2001-03-09  Kenichi Handa  <handa@etl.go.jp>
10001         * international/characters.el: Add category `j' for
10002         katakana-jisx0201.   Fix syntaxes of katakana-jisx0201.
10004         * international/mule-conf.el (no-conversion): Fix docstring.
10005         (raw-text): Fix docstring.
10007 2001-03-08  Gerd Moellmann  <gerd@gnu.org>
10009         * simple.el (choose-completion-string): When not leaving the
10010         minibuffer, raise the minibuffer frame when minibuffer-auto-raise
10011         is set.
10013         * window.el (shrink-window-if-larger-than-buffer): Handle frame
10014         parameter `(minibuffer . t)'.
10016 2001-03-07  Stefan Monnier  <monnier@cs.yale.edu>
10018         * progmodes/sh-script.el (sh-st-symbol): New symbol.
10019         (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
10020         (sh-mode): Remove `make-local-variable' for unused var
10021         `font-lock-unfontify-region-function'.
10023 2001-03-07  Richard M. Stallman  <rms@gnu.org>
10025         * info.el (Info-scroll-down): Fix previous change.
10027         * mail/rmail.el (rmail-toggle-header): Use a window which
10028         is showing the Rmail buffer, rather than the selected window.
10030 2001-03-07  Dave Love  <fx@gnu.org>
10032         * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
10033         now, to avoid problems with binding imenu directly to a mouse event.
10035 2001-03-07  Gerd Moellmann  <gerd@gnu.org>
10037         * info.el (Info-scroll-down): Call pos-visible-in-window-p with
10038         second arg t.
10040 2001-03-07  Stefan Monnier  <monnier@cs.yale.edu>
10042         * log-edit.el (log-edit-common-indent): New var.
10043         (log-edit-set-common-indentation): Renamed from
10044         log-edit-delete-common-indentation.  Use the new var.
10045         (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
10047         * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
10048         (cvs-mode-add-change-log-entry-other-window):
10049         Don't presume change-log-default-name is defined.
10051         * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
10053         * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
10054         the "tree" operation as well.
10056         * pcvs-parse.el (cvs-parse-table): Add another ignored message.
10058         * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
10059         to match paragraph-start.
10061         * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
10062         comment-start-skip and set comment-end-skip as well.
10063         (sgml-comment-indent): Fix for new value of comment-start-skip.
10064         (html-autoview-mode): Don't bother using make-local-hook.
10066 2001-03-07  Gerd Moellmann  <gerd@gnu.org>
10068         * cus-edit.el (custom-save-delete): Move in front of local
10069         variables, otherwise long Custom entries would make them ineffective.
10071         * uniquify.el: Set maintainer to FSF.
10073 2001-03-07  Eli Zaretskii  <eliz@is.elta.co.il>
10075         * dired-aux.el (dired-do-shell-command): Doc fix.
10077 2001-03-06  Stefan Monnier  <monnier@cs.yale.edu>
10079         * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
10081         * which-func.el (which-func-modes): Add cperl-mode.
10082         (which-func-mode-global): Use define-minor-mode.
10084         * info-look.el: Docstring fixes and dead code eliminated.
10085         (cperl-mode): Add support.
10086         (emacs-lisp-mode): List all entries from elisp manual, whether
10087         or not they are currently (f)bound or not.  Update regexp.
10089         * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
10091         * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
10092         so that C-h m shows the correct information.
10093         Use make-local-variable rather than make-variable-buffer-local.
10094         (cperl-info-buffer, cperl-setup-tmp-buf):
10095         Use make-local-variable rather than make-variable-buffer-local.
10096         (cperl-msb-fix, cperl-get-help-defer):
10097         Check major-mode for `cperl-mode' as well.
10099         * progmodes/cperl-mode.el: Updated to author version 4.23.
10100         (cperl-electric-pod): SYNOPSIS was misspelled.
10101         (cperl-find-pods-heres): @if ? a : b was considered a REx.
10102         (cperl-after-expr-p): Make true after __END__.
10104 2001-03-06  Gerd Moellmann  <gerd@gnu.org>
10106         * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
10107         bookmark-completion-ignore-case is t.
10109         * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
10110         switch, like xterm, and concat resource strings, with a newline
10111         between them.
10113 2001-03-06  Eli Zaretskii  <eliz@is.elta.co.il>
10115         * international/codepage.el (cp770-decode-table)
10116         (cp773-decode-table, cp774-decode-table): New variables.
10118         * man.el (Man-hyphenated-reference-regexp): New variable.
10119         (Man-build-references-alist): Use it to search for referenced
10120         manpages.  If hyphenated is non-nil, record a concatenated word in
10121         Man-refpages-alist only if it matches Man-reference-regexp.
10122         Update word's length when it is concatenated.  Reverse the list,
10123         to get the first manpage at the head.
10124         (Man-possibly-hyphenated-word): New function.
10125         (Man-follow-manual-reference): Use it instead of current-word to
10126         find a manpage at point, in a way that accounts for hyphenated
10127         references.
10129 2001-03-06  Alex Schroeder  <alex@gnu.org>
10131         * sql.el (sql-interbase): New function.
10132         (sql-interbase-program): New option.
10133         (sql-interbase-options): New option.
10134         And some typos fixed: "customise" to "customize".
10136 2001-03-06  Dave Love  <fx@gnu.org>
10138         * textmodes/flyspell.el (flyspell-region):
10139         Set up flyspell-local-mouse-map.
10141 2001-03-05  Richard M. Stallman  <rms@gnu.org>
10143         * mail/rmail.el (rmail-retry-failure):
10144         Don't call rmail-beginning-of-message.
10145         Don't discard From: field.  Do discard Received: field.
10146         Use unwind-protect to re-prune.
10147         (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
10149 2001-03-06  Kenichi Handa  <handa@etl.go.jp>
10151         * international/quail.el (quail-title): Add autoload cookie.
10153 2001-03-05  Dave Love  <fx@gnu.org>
10155         * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
10156         new defs.
10158 2001-03-05  Kenichi Handa  <handa@etl.go.jp>
10160         * language/ethio-util.el (ethio-toggle-space):
10161         Update current-input-method-title if necessary.
10162         (ethio-toggle-punctuation): Likewise.
10164         * international/quail.el (quail-title): Fix for the case that a
10165         title of an input method is specified by a list of the same form
10166         as used in mode-line-format.
10168         * international/mule-cmds.el (activate-input-method):
10169         If current-input-method-title is set by activating INPUT-METHOD,
10170         respect that value.
10172 2001-03-05  Gerd Moellmann  <gerd@gnu.org>
10174         * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
10176 2001-03-05  Alex Schroeder  <alex@gnu.org>
10178         * sql.el (sql-sybase): Fix typo (was: query user about server two
10179         times instead of server and database).
10181         * sql.el (sql-sybase): Doc change.
10182         (sql-mysql): Doc change.
10183         (sql-postgres): Doc change.
10185 2001-03-05  Kenichi Handa  <handa@etl.go.jp>
10187         * international/mule-conf.el (emacs-mule, raw-text):
10188         Docstring modified.
10190 2001-03-04  Eli Zaretskii  <eliz@is.elta.co.il>
10192         * term/internal.el: Update copyright notice.
10194         * term/pc-win.el: Update copyright notice.
10196 2001-03-02  Dave Love  <fx@gnu.org>
10198         * files.el (insert-file-contents-literally):
10199         Bind inhibit-file-name-handlers and inhibit-file-name-operation,
10200         not jka-compr-compression-info-list.
10202 2001-03-02  Stefan Monnier  <monnier@cs.yale.edu>
10204         * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
10205         spaces in default comment-start-skip settings rather than \s-.
10207 2001-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
10209         * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
10210         default-frame-alist as well.
10212 2001-03-01  Dave Love  <fx@gnu.org>
10214         * textmodes/reftex.el (defvar): Wrap some defvars in
10215         eval-when-compile.  From Markus Rost <rost@math.ohio-state.edu>.
10217         * subr.el (event-basic-type): Doc fix.
10219         * international/quail.el: Doc fixes.
10221         * international/utf-8.el: Doc fixes.
10223         * international/mule-cmds.el: Doc fixes.
10224         (leim-list-header): Fix header text.
10226         * international/mule.el (coding-system-category): Doc fix.
10228         * international/ccl.el (ccl-compile): Doc fix.
10230 2001-03-01  Stefan Monnier  <monnier@cs.yale.edu>
10232         * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
10233         rather than (before|after)-change-functions.
10235 2001-03-01  Gerd Moellmann  <gerd@gnu.org>
10237         * ediff-util.el (ediff-scroll-horizontally): Arrange for
10238         scroll-left and scroll-right being called interactively so that
10239         they set the window's min_hscroll.
10241 2001-03-01  Eli Zaretskii  <eliz@is.elta.co.il>
10243         * info.el (info-insert-file-contents-1): Accept an additional
10244         argument `lfn': if it is non-nil, concatenate `filename' and
10245         `suffix'; otherwise use the complicated MS-DOS code.
10246         All callers changed.
10247         (info-insert-file-contents, Info-find-node): If the MS-DOS port
10248         can access long file names, try the long file-name version of
10249         `info-insert-file-contents-1', then the short file-name version.
10251 2001-02-28  TAKAHASHI Naoto  <ntakahas@m17n.org>
10253         * language/ethio-util.el (setup-ethiopic-environment-internal):
10254         Change bindings of functions keys to conform to "Emacs Lisp Coding
10255         Convention".
10257         * language/ethiopic.el ("Ethiopic"): Add documentation.
10259 2001-02-28  Kenichi Handa  <handa@etl.go.jp>
10261         * international/utf-8.el (mule-utf-8): Set coding-category
10262         property to coding-category-utf-8.
10264 2001-02-27  Richard M. Stallman  <rms@gnu.org>
10266         * lpr.el (lpr-page-header-switches, print-region-1):
10267         Undo 2000-07-06 change.
10268         (lpr-add-switches): Default to t on gnu/linux.
10270 2001-02-27  Gerd Moellmann  <gerd@gnu.org>
10272         * bs.el (bs-attributes-list): Doc fix.
10274 2001-02-26  Gerd Moellmann  <gerd@gnu.org>
10276         * help.el (describe-project): Display the file THE-GNU-PROJECT.
10278         * help.el (view-order-manuals): Use goto-address.
10280         * startup.el (command-line-1): Add info about ordering manuals
10281         to the not so fancy splash screens.
10283 2001-02-26  Andre Spiegel  <spiegel@gnu.org>
10285         * vc.el (vc-default-workfile-unchanged-p)
10286         (vc-default-latest-on-branch-p): Add missing BACKEND argument.
10288 2001-02-26  Gerd Moellmann  <gerd@gnu.org>
10290         * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
10291         fontify in the right buffer.
10293         * allout.el (outline-flag-region): Move macro in front of first
10294         use to avoid a run-time error.
10296 2001-02-24  Andrew Innes  <andrewi@gnu.org>
10298         * makefile.w32-in: Fix copyright notice.
10300 2001-02-24  Kenichi Handa  <handa@etl.go.jp>
10302         * international/utf-8.el (mule-utf-8): Set correct value for
10303         valid-codes property.
10305         * international/fontset.el (x-complement-fontset-spec): In the
10306         case that we use ASCII font for the other charsets, use only
10307         family and registry part of it.
10309 2001-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
10311         * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
10312         (shrink-window-if-larger-than-buffer): Doc fix.
10314 2001-02-23  Stefan Monnier  <monnier@cs.yale.edu>
10316         * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
10317         predicate passed to completing-read.
10319 2001-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
10321         * startup.el (command-line): Fix last change.
10323 2001-02-23  Jason Rumney  <jasonr@gnu.org>
10325         * startup.el (tool-bar-originally-present): New variable.
10326         (command-line): Set it if the tool-bar is switched on at startup.
10328         * frame.el (frame-notice-user-settings): Only adjust frame height
10329         for no tool-bar case if tool-bar was originally switched on.
10330         From E. Jay Berkenbilt.
10332 2001-02-22  Stefan Monnier  <monnier@cs.yale.edu>
10334         * server.el (server-switch-buffer): Only switch window if the
10335         current one is dedicated.
10337         * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
10338         rather than using (match-beginning 0) when searching for break point.
10340 2001-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
10342         * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
10343         @ follows an accent command such as @'.  Support optional braces
10344         in commands that insert accents, like makeinfo does.
10346 2001-02-22  Gerd Moellmann  <gerd@gnu.org>
10348         * startup.el (fancy-splash-text): Add a line for ordering
10349         manuals.  Reverse order of splash screens shown.
10350         (use-fancy-splash-screens-p): Adapt to the text line added.
10352         * menu-bar.el (menu-bar-help-menu): Add an item for ordering
10353         manuals from the FSF.
10355         * help.el (view-order-manuals): New function.
10356         (toplevel): Bind C-h C-m to this function.
10358 2001-02-21  Stefan Monnier  <monnier@cs.yale.edu>
10360         * newcomment.el (comment-forward): Skip the comment-start before
10361         searching for the comment-end.
10363 2001-02-21  Dave Love  <fx@gnu.org>
10365         * custom.el (custom-initialize-changed, defcustom): Doc fix.
10367         * international/mule-cmds.el, international/mule.el: Doc fixes.
10369 2001-02-21  Gerd Moellmann  <gerd@gnu.org>
10371         * startup.el (fancy-splash-screens): Use display-hourglass
10372         instead of display-busy-cursor.
10374         * frame.el (display-hourglass): Renamed from busy-cursor.
10375         (hourglass-delay): Renamed from busy-cursor-delay-seconds.
10376         (show-cursor-in-non-selected-windows): Doc fix.
10378 2001-02-20  Dave Love  <fx@gnu.org>
10380         * international/utf-8.el: Doc and commentary fixes.
10382 2001-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
10384         * ehelp.el (with-electric-help): Doc fix.
10386 2001-02-20  Gerd Moellmann  <gerd@gnu.org>
10388         * msb.el (msb-mode): Call the update-buffers function explicitly
10389         with a FORCE argument.
10391         * menu-bar.el (menu-bar-update-buffers): Add optional parameter
10392         FORCE.  If set, update the menu even if frame-or-buffer-changed-p
10393         returns nil.
10395 2001-02-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
10397         * ps-print.el: Timestamp package replacement.  Some enhancements.
10398         Some XEmacs compatibility.  Doc fix.
10399         (ps-print-version): New version number (6.4).
10400         (ps-printer-name): Initialization fix.
10401         (ps-zebra-stripe-follow): Funcionality enhancement.
10402         (ps-prologue-file): Code enhancement.
10403         (ps-right-header): Timestamp package replacement.
10404         (ps-setup, ps-face-bold-p, ps-face-italic-p)
10405         (ps-get-page-dimensions)
10406         (ps-generate-header, ps-begin-file, ps-begin-job)
10407         (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
10408         (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
10409         (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
10410         (coding-system-for-write): Var declaration (XEmacs compatibility).
10412 2001-02-20  Miles Bader  <miles@gnu.org>
10414         * image-file.el (image-file-name-extensions): Add "tif".
10416 2001-02-19  Gerd Moellmann  <gerd@gnu.org>
10418         * wid-edit.el (widget-button-click): Save the selected window
10419         around the code handling clicks on buttons.
10421 2001-02-18  Dave Love  <fx@gnu.org>
10423         * imenu.el (imenu--generic-function): Use mapc to iterate over
10424         syntax characters.
10426 2001-02-17  Richard M. Stallman  <rms@gnu.org>
10428         * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
10430         * uniquify.el (uniquify-buffer-name-style): Doc fix.
10432 2001-02-16  Gerd Moellmann  <gerd@gnu.org>
10434         * mouse.el (mouse-save-then-kill): If the distance from the new
10435         point to the mark is equal to the distance of point from the new
10436         point, move point instead of the mark.
10438 2001-02-16  Dave Love  <fx@gnu.org>
10440         * textmodes/flyspell.el (flyspell-get-word): Return string without
10441         properties.
10443 2001-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
10445         * generic.el (generic-find-file-regexp): Doc fix.
10446         (generic-ignore-files-regexp): New defcustom.
10447         (generic-mode-find-file-hook): If the file's name matches the
10448         regexp in `generic-ignore-files-regexp', don't enter
10449         default-generic-mode.  Doc fix.
10451 2001-02-16  Gerd Moellmann  <gerd@gnu.org>
10453         * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
10454         Add autoload cookies.
10456         * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
10457         of cal-tex-24.
10459 2001-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
10461         * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
10463         * progmodes/compile.el (grep-regexp-alist): Remove the blank from
10464         the character class after the (optional) drive, to support file
10465         names with embedded blanks.
10467 2001-02-15  Sam Steingold  <sds@gnu.org>
10469         * textmodes/tex-mode.el (tex-shell-running):
10470         Check the process buffer too.
10472 2001-02-15  Dave Love  <fx@gnu.org>
10474         * battery.el (battery-status-function): Fix doc, :type.
10476         * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
10478 2001-02-15  Gerd Moellmann  <gerd@gnu.org>
10480         * subr.el (read-passwd): Clear Lisp memory holding password.
10482 2001-02-15  Miles Bader  <miles@gnu.org>
10484         * info.el (Info-copy-current-node-name): New function.
10485         (Info-mode-menu): Add it to the menu.
10487 2001-02-14  Richard M. Stallman  <rms@theobromine.ai.mit.edu>
10489         * international/mule-cmds.el (toggle-input-method): Doc fix.
10491 2001-02-13  Stefan Monnier  <monnier@cs.yale.edu>
10493         * replace.el (occur): Stop at end of buffer.
10495 2001-02-13  Eli Zaretskii  <eliz@is.elta.co.il>
10497         * international/mule-cmds.el (set-input-method): Another doc fix.
10499 2001-02-13  David M. Koppelman <koppel@ee.lsu.edu>
10501         * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
10503 2001-02-13  Miles Bader  <miles@gnu.org>
10505         * faces.el (set-face-background, set-face-foreground)
10506         (set-face-stipple): Treat a value of nil as being `unspecified'.
10508 2001-02-12  Dave Love  <d.love@dl.ac.uk>
10510         * international/latin1-disp.el:  Doc fixes.
10511         (latin1-display) <defgroup>: Add :link.
10512         (latin1-display) <function>: Set variable latin1-display.
10514 2001-02-12  Eli Zaretskii  <eliz@is.elta.co.il>
10516         * international/mule-cmds.el (set-input-method): Doc fix.
10518 2001-02-12  Eric M. Ludlam  <zappo@choochoo.ultranet.com>
10520         * speedbar.el (speedbar-frame-parameters): No toolbar lines.
10521         (speedbar-line-file): Return nil if not a file.
10522         (speedbar-buffers-line-path): Return file for tags, and dir for files.
10524 2001-02-12  Michael Kifer  <kifer@cs.sunysb.edu>
10526         * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
10527         for remote files.
10528         (ediff-coding-system-for-read): Replaced the no-conversion default
10529         with raw-text.
10531         * ediff-init.el: Removed :version from defcustom vars.
10533         * ediff-util.el (ediff-compute-custom-diffs-maybe):
10534         Better handling of the diff mode.
10536         * ediff.texi: Added ediff-coding-system-for-read.
10538         * viper.texi: Fix typos.
10540 2001-02-11  Dave Love  <fx@gnu.org>
10542         * shadowfile.el: Doc fixes.
10543         (shadow) <defgroup>: Add :link.
10544         (shadowfile-unload-hook): New function.
10545         (shadow-initialize): Use defalias, not fset.
10546         (shadow-define-cluster, shadow-define-literal-group)
10547         (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
10549         * international/mule.el: Doc and message fixes.
10551         * international/ccl.el (define-ccl-program): Doc fix.
10553 2001-02-11  Kenichi Handa  <handa@etl.go.jp>
10555         * faces.el (mode-line): Set :line-width property to -1.
10557 2001-02-10  Richard M. Stallman  <rms@gnu.org>
10559         * complete.el (partial-completion-mode): Doc fix.
10561         * simple.el (delete-key-deletes-forward-mode):
10562         Change `let' to `let*' to fix gross bug in last change.
10564         * repeat.el (repeat): Don't let execute-kbd-macro alter
10565         real-last-command.
10567 2001-02-10  Eli Zaretskii  <eliz@is.elta.co.il>
10569         * simple.el (eval-expression): Doc fix.
10571 2001-02-09  Dave Love  <fx@gnu.org>
10573         * imenu.el (imenu-generic-expression): Doc fix.
10575         * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
10576         From Juanma Barranquero.
10578         * emacs-lisp/authors.el (authors): Expand `root' before running find.
10580 2001-02-09  Kenichi Handa  <handa@etl.go.jp>
10582         * faces.el (set-face-attribute): Describe the case of a negative
10583         value specified for :line-width.
10585 2001-02-08  Stefan Monnier  <monnier@cs.yale.edu>
10587         * which-func.el (which-func-mode): Invert which-func-mode-global.
10588         From Juanma Barranquero <lektu@uol.com.br>.
10590 2001-02-08  Dave Love  <fx@gnu.org>
10592         * wid-edit.el (widget-plist-convert-widget): Replace binding of
10593         widget-plist-value-type.
10594         (widget-alist-convert-widget): Replace binding of
10595         widget-alist-value-type.
10597         * textmodes/paragraphs.el (sentence-end): Doc fix.
10599         * eshell/em-rebind.el (eshell-cannot-leave-input-list):
10600         Remove `backward-line'.
10602         * play/pong.el (pong-blank-color, pong-bat-color)
10603         (pong-ball-color, pong-border-color, pong-left-key)
10604         (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
10605         (pong-pause-key, pong-resume-key, pong-timer-delay):
10606         * mail/mh-comp.el (mh-compose-letter-function):
10607         * eshell/esh-mode.el (eshell-skip-prompt-function):
10608         * emulation/viper-ex.el (ex-unix-type-shell-options):
10609         * recentf.el (recentf-menu-filter):
10610         * ps-print.el (ps-print-region-function):
10611         * lpr.el (print-region-function):
10612         * forms.el (forms-mode-hooks):
10613         * dirtrack.el (dirtrack-directory-change-hook):
10614         * cus-start.el (temp-buffer-show-function, display-buffer-function):
10615         * textmodes/spell.el (spell-filter):
10616         * textmodes/fill.el (adaptive-fill-function):
10617         * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
10618         * progmodes/etags.el (find-tag-default-function):
10619         * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
10620         * progmodes/ada-mode.el (ada-popup-key): Fix :type.
10622 2001-02-07  Eli Zaretskii  <eliz@is.elta.co.il>
10624         * emulation/viper-init.el (viper-fast-keyseq-timeout)
10625         (viper-translate-all-ESC-keysequences): Doc fix.  From Jim
10626         Meyering <jim@meyering.net>.
10628         * loadup.el: Revert last change.
10630 2001-02-07  Kenichi Handa  <handa@etl.go.jp>
10632         * international/mule.el (transform-make-coding-system-args):
10633         Make it work also for coding systems not using CCL.
10635 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
10637         * simple.el (previous-matching-history-element)
10638         (next-matching-history-element): Doc fix.
10640         * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
10641         specific part.
10643 2001-02-06  Dave Love  <fx@gnu.org>
10645         * add-log.el (add-log-current-defun-function)
10646         (add-log-buffer-file-name-function, add-log-file-name-function):
10647         Fix :type.
10648         (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
10650 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
10652         * info.el (info-initialize): Remove the test for system-type when
10653         invocation-directory is non-nil.
10655         * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
10656         of `font-lock-defaults' to `backward-paragraph' rather than nil.
10658 2001-02-06  Andrew Innes  <andrewi@gnu.org>
10660         * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
10661         absolute.
10663 2001-02-06  David M. Koppelman <koppel@ee.lsu.edu>
10665         * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
10666         buffers.  When hi-lock turned on rather than only checking current
10667         buffer for regexps, all buffers are checked. Moved activation of
10668         font-lock to hi-lock-refontify. When font-lock turned off rather
10669         than removing added highlighting just in current buffer, remove it
10670         in all buffers.  Changed edit menu text from "Automatic
10671         Highlighting" to "Regexp Highlighting" Documentation for
10672         highlighting phrases, minor documentation changes.
10673         (hi-lock-set-file-patterns): Execute only if there are new or
10674         existing file patterns.
10675         (hi-lock-refontify): Assume font-lock-fontify-buffer will first
10676         unfontify and, if a support mode is active, will not refontify the
10677         whole buffer.  If necessary, turn on font lock. (Removed
10678         font-lock-unfontify and font-lock support-mode-specific calls,
10679         such as lazy-lock-fontify-window.)
10680         (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
10681         patterns are found. Not useful now since find-file-hook is removed
10682         if hi-lock is off, but may be needed for per-buffer hi-lock activation.
10683         (hi-lock-face-phrase-buffer): New function.  Also added related
10684         menu item and keybinding.
10685         (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
10686         (hi-lock-process-phrase): New function.
10687         (hi-lock-line-face-buffer): Doc fixes.
10688         (hi-lock-face-buffer): Doc fixes.
10689         (hi-lock-unface-buffer): Doc fixes.
10691 2001-02-06  Gerd Moellmann  <gerd@gnu.org>
10693         * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
10694         dabbrev-ignored-regexps.
10696 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
10698         * simple.el (kill-line): Doc fix.
10700 2001-02-05  Dave Love  <fx@gnu.org>
10702         * loadup.el: Revert last two changes -- bootstrapping works with
10703         regenerated loaddefs.
10705 2001-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
10707         * isearch.el (isearch-forward): Doc fix.
10709         * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
10710         of font-lock-defaults to backward-paragraph.
10712 2001-02-05  Gerd Moellmann  <gerd@gnu.org>
10714         * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
10715         X-Complaints-To, NNTP-Posting-Date, and User-Agent.
10717 2001-02-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
10719         * ebnf2ps.el: Eliminate time-stamp functions.
10720         (ebnf-version): New version (3.5).
10721         (ebnf-eps-finish-and-write): Replace time-stamp functions by
10722         format-time-string.
10724 2001-02-05  Gerd Moellmann  <gerd@gnu.org>
10726         * simple.el (next-line): Goto end-of-line before inserting a newline.
10728 2001-02-05  Miles Bader  <miles@gnu.org>
10730         * image-file.el (insert-image-file): When visiting an image, also
10731         set `truncate-lines' to t so that any fringe arrow looks correct.
10733 2001-02-05  Kenichi Handa  <handa@etl.go.jp>
10735         * isearch.el (isearch-forward): Add description about input method
10736         in the docsting.
10738 2001-02-04  Stefan Monnier  <monnier@cs.yale.edu>
10740         * skeleton.el (skeleton-internal-1): Always push the mark for @.
10742 2001-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
10744         * info.el (info-initialize): If installation-directory is nil, for
10745         DOS/Windows systems try looking in a sibling of invocation-directory.
10747 2001-02-02  Gerd Moellmann  <gerd@gnu.org>
10749         * wid-edit.el (widget-button-click): Fix last change.
10751         * frame.el (frame-notice-user-settings): When resizing the initial
10752         frame because the tool bar is off, also change the frame's top
10753         position if a negative top position was specified.
10755 2001-02-02  Miles Bader  <miles@gnu.org>
10757         * image-file.el (insert-image-file): When visiting an image,
10758         suppress the cursor in the image buffer.
10760 2001-02-01  Dave Love  <fx@gnu.org>
10762         * progmodes/f90.el (f90-mode): Remove startup message.
10764         * vc-cvs.el: Remove autoloads.  Require vc when compiling.
10766 2001-02-01  Gerd Moellmann  <gerd@gnu.org>
10768         * startup.el (command-line): Fix code determining whether or not
10769         to use delete-key-deletes-forward-mode.
10771 2001-02-01  Andre Spiegel  <spiegel@gnu.org>
10773         * vc.el (vc-diff-switches): New user option.
10774         (vc-version-diff): Use it.
10775         (vc-diff-switches-list): New macro.
10777         * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
10778         New customization options.
10779         (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
10781         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
10783 2001-02-01  Gerd Moellmann  <gerd@gnu.org>
10785         * msb.el (toplevel): Quote hook symbols.
10787 2001-02-01  Kenichi Handa  <handa@etl.go.jp>
10789         * international/mule.el (make-coding-system): Add description
10790         about recognized properties in the docstring.
10792         * international/mule-conf.el: Remove unused charsets
10793         mac-roman-lower and mac-roman-upper.
10795 2001-01-31  Gerd Moellmann  <gerd@gnu.org>
10797         * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
10798         is in front of the left-margin, if any.
10800         * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
10801         like `delete'.
10803         * bindings.el: Define `kp-delete' like `delete' in function-key-map.
10805         * term/w32-win.el (mouse-set-font): Doc fix.
10807 2001-01-31  Stefan Monnier  <monnier@cs.yale.edu>
10809         * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
10810         (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
10811         on already.
10813 2001-01-31  Markus Rost  <rost@math.ohio-state.edu>
10815         * files.el (save-buffer): Don't give message if (buffer-file-name)
10816         returns nil.
10818 2001-01-31  Eli Zaretskii  <eliz@is.elta.co.il>
10820         * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
10822         * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
10823         concat for integers.  From Juanma Barranquero <lektu@uol.com.br>.
10825         * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
10826         display problems.
10828 2001-01-31  Kenichi Handa  <handa@etl.go.jp>
10830         * international/mule.el (charset-info): Fix docstring.
10832         * international/mule-diag.el (describe-character-set): Check final
10833         char valid before printing it.
10835 2001-01-30  Gerd Moellmann  <gerd@gnu.org>
10837         * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
10839         * frame.el (frame-notice-user-settings): Do the tool-bar
10840         stuff only for graphical displays.  Fix a braino.
10842         * frame.el (frame-initialize): Create initial frame visible.
10843         (frame-notice-user-settings): When tool-bar has been switched off,
10844         correct the frame size and sync tool-bar-mode.
10846         * startup.el (command-line): Remove manipulation of frame
10847         height for tool bars.
10849 2001-01-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
10851         * lpr.el: Compatibility with XEmacs and doc fixes.
10852         (lpr-windows-system, lpr-lp-system): New vars.
10853         (lpr-printer-switch): New defcustom.
10854         (printer-name, lpr-command): Customization fix.
10855         (print-region-1): Code fix.
10856         (print-region-new-buffer, printify-region): Indentation fix.
10857         (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
10858         New functions.
10860 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
10862         * msb.el (toplevel): Fix the eval-after-load.
10864 2001-01-29  Dave Love  <fx@gnu.org>
10866         * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
10868         * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
10870         * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
10871         (tcl-using-emacs-19-23): Consider Emacs 21+.
10872         (tcl-help-directory-list, tcl-command-switches): Fix :type.
10873         (tcl-add-emacs-menu): Supply menu name.
10874         (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
10876 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
10878         * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
10880 2001-01-29  Stefan Monnier  <monnier@cs.yale.edu>
10882         * pcvs.el (cvs-mark-fis-dead): New function.
10883         (cvs-mode-add): Use it.
10884         (cvs-mode-add-change-log-entry-other-window):
10885         Rebind change-log-default-name to itself rather than to nil.
10887 2001-01-29  Sam Steingold  <sds@gnu.org>
10889         * vc-cvs.el: Replaced (require 'vc) with a bunch of
10890         `autoload' statements.
10892 2001-01-29  Eli Zaretskii  <eliz@is.elta.co.il>
10894         * files.el (confirm-kill-emacs): Doc fix.
10896         * frame.el (frame-initialize): Doc fix.
10898         * time-stamp.el (time-stamp-string): Doc fix.
10900         * woman.el (WoMan-log-1): Make the log buffer writable.
10901         From Markus Rost <rost@math.ohio-state.edu>.
10903 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
10905         * imenu.el (imenu-syntax-alist): Add autoload cookie for
10906         the `make-variable-buffer-local'.
10908 2001-01-29  Dave Love  <fx@gnu.org>
10910         * ansi-color.el (ansi-color-for-comint-mode): Add :version.
10911         (ansi-color-for-comint-mode-on, ansi-color-process-output):
10912         Add autoload cookie.
10913         (ansi-color-apply-sequence): Fix typo.
10915 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
10917         * menu-bar.el (menu-bar-files-menu): Add menu items for
10918         Postscript printing in black and white.
10920         * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
10921         X-Mailman-Version, Precedence, List-Help, List-Post,
10922         List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
10923         Content-Type, Content-Length.
10925 2001-01-29  Dave Love  <fx@gnu.org>
10927         * elide-head.el (elide-head): Make overlay evaporate.
10929         * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
10931 2001-01-28  Eli Zaretskii  <eliz@is.elta.co.il>
10933         * isearch.el (isearch-highlight): Don't punt if the display
10934         doesn't support colors, since isearch faces are defined for
10935         monochrome displays as well.
10937 2001-01-27  Sam Steingold  <sds@gnu.org>
10939         * shell.el (shell-write-history-on-exit): Make sure that we are in
10940         the shell buffer (M-x tex-file RET inserted the error message into
10941         the TeX buffer).
10943 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
10945         * simple.el (transient-mark-mode): Doc fix.
10947 2001-01-27  Gerd Moellmann  <gerd@gnu.org>
10949         * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
10951 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
10953         * shell.el (shell-unquote-argument): If the shell is one of the
10954         mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
10955         quote character.
10956         (shell-dumb-shell-regexp): Document that the shells which match
10957         this regexp are supposed to not treat a backslash as a quote character.
10959         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
10960         from 2001-01-12.  It is not needed, since backspace is mapped into DEL.
10962 2001-01-27  Richard M. Stallman  <rms@gnu.org>
10964         * dabbrev.el (dabbrev--substitute-expansion):
10965         Treat a one-capital-letter abbrev as "not all upper case",
10966         so as to force preservation of the expansion's pattern
10967         if the expansion starts with a capital letter.
10969 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
10971         * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
10972         Doc fix.
10974         * simple.el (transient-mark-mode): Document the fact that many
10975         commands act on the region when mark is active.
10977 2001-01-27  Kenichi Handa  <handa@etl.go.jp>
10979         * international/quail.el (quail-setup-completion-buf): Make the
10980         multibyteness of current buffer inherited to Quail completion buffer.
10981         (quail-show-guidance-buf): Make the multibyteness of current
10982         buffer inherited to Quail guidance buffer.
10983         (quail-help): Make the multibyteness of current buffer inherited
10984         to Quail help buffer.
10986 2001-01-26  Dave Love  <fx@gnu.org>
10988         * time-stamp.el: Doc fixes.
10990         * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
10991         (delphi-keyword-face, delphi-other-face): Fix :type.
10993         * textmodes/flyspell.el: Doc fixes.  Add :version to new options.
10995         * mail/feedmail.el (feedmail): Add :link.
10996         (feedmail-send-it): Doc fix.
10998         * mail/sendmail.el: Doc fixes.
10999         (sendmail-send-it): Fix the non-ASCII regexp and use
11000         rfc2047-encode-string.
11002         * dired.el, dired-aux.el: Revert last change.
11004 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
11006         * makefile.w32-in (DONTCOMPILE): Add various term files.
11008 2001-01-26  Dave Love  <fx@gnu.org>
11010         * Makefile.in (DONTCOMPILE): Add various term files.
11012 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
11014         * man.el (Man-default-man-entry, Man-mode): Doc fix.
11016         * startup.el (display-startup-echo-area-message): Make sure
11017         the echo area is resized to fit the size of the startup message.
11019         * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
11020         part of which is a constant.
11022 2001-01-26  Eli Zaretskii  <eliz@is.elta.co.il>
11024         * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
11026 2001-01-26  Richard M. Stallman  <rms@gnu.org>
11028         * simple.el (next-line): Don't let `newline' expand abbrevs.
11029         Simplify slightly.
11030         (open-line): Don't let `newline' expand abbrevs.
11032 2001-01-25  John Wiegley  <johnw@gnu.org>
11034         * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
11035         to `repeat' in the :type field.
11037         * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
11038         allow a choice of regexp or nil.
11039         (pcomplete-dir-ignore): Same.
11041         * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
11042         a command) to always fail.
11044 2001-01-25  Gerd Moellmann  <gerd@gnu.org>
11046         * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
11047         discard the result.
11048         (iswitchb-to-end): Likewise.
11050 2001-01-25  Sam Steingold  <sds@gnu.org>
11052         * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
11053         Require vc.
11055 2001-01-25  Stefan Monnier  <monnier@cs.yale.edu>
11057         * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
11059         * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
11061 2001-01-25  Dave Love  <fx@gnu.org>
11063         * lisp/international/mule-diag.el (describe-char-after): Doc fix.
11064         (describe-coding-system): Tweak the English text.
11066         * loadup.el: Preload international/ccl for utf-8.
11068 2001-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
11070         * mail/rmail.el (rmail-redecode-body): Doc fix.
11072 2001-01-25  Kenichi Handa  <handa@etl.go.jp>
11074         * international/mule-cmds.el (reset-language-environment):
11075         Reset coding-category-utf-8 to mule-utf-8.
11077         * international/mule-conf.el (coding-category-utf-8):
11078         Initialize to mule-utf-8.
11080         * loadup.el: Preload international/utf-8.
11082         * international/utf-8.el: New file.
11084 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
11086         * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
11088 2001-01-24  Sam Steingold  <sds@gnu.org>
11090         * dired.el (dired-replace-in-string): Removed.
11091         (dired-sort-toggle): Use `replace-regexps-in-string'
11092         instead of `dired-replace-in-string'.
11094         * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
11095         (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
11097         * gs.el (gs-replace-in-string): Removed.
11098         (gs-options): Use `replace-regexps-in-string'
11099         instead of `gs-replace-in-string'.
11101 2001-01-24  Eli Zaretskii  <eliz@is.elta.co.il>
11103         * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
11104         bug report is mailed to an email list and posted to a news group.
11106 2001-01-24  Gerd Moellmann  <gerd@gnu.org>
11108         * comint.el (comint-replace-by-expanded-history-before-point):
11109         Fix change of 2000-08-03 to move point to the start of the line again.
11111         * startup.el (tool-bar-images-pixel-height): New variable.
11112         (command-line): After loading the user's init file, when
11113         tool-bar-mode is on, increase the frame's size by some lines for
11114         the tool-bar.
11116         * frame.el (frame-initialize): Create the initial frame invisible.
11118 2001-01-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
11120         * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
11121         (chinese-big5): MIME:Big5.
11123 2001-01-24  Gerd Moellmann  <gerd@gnu.org>
11125         * international/mule-cmds.el (universal-coding-system-argument):
11126         Handle commands with prefix args.
11128 2001-01-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11130         * calendar/diary-lib.el (diary-float): Fix case of MONTH
11131         being a list of numbers.
11132         (diary-mail-entries): Rewritten.
11134 2001-01-23  Dave Love  <fx@gnu.org>
11136         * international/mule.el (make-coding-system): Fix typo.
11138         * textmodes/outline.el (outline-mode) <font-lock-defaults>:
11139         Add backward-paragraph as font-lock-beginning-of-syntax-function.
11141 2001-01-23  Eli Zaretskii  <eliz@is.elta.co.il>
11143         * font-lock.el (font-lock-mode): Doc fix.
11145 2001-01-23  Kenichi Handa  <handa@etl.go.jp>
11147         * international/mule.el (make-translation-table): Fix docstring.
11149 2001-01-22  Eli Zaretskii  <eliz@is.elta.co.il>
11151         * mail/rmail.el (rmail-redecode-body): New function.
11153         * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
11155 2001-01-22  Gerd Moellmann  <gerd@gnu.org>
11157         * isearch.el (isearch-lazy-highlight-case-fold-search)
11158         (isearch-lazy-highlight-regexp): New variables.
11159         (isearch-lazy-highlight-cleanup): Update lazy highlight if
11160         case-fold search or regexp search has been toggled.
11162         * wid-edit.el (widget-button-click): Avoid a save-excursion
11163         around running a global binding.
11165         * isearch.el (isearch-lazy-highlight-initial-delay): Set default
11166         to 0.25.
11168 2001-01-20  Miles Bader  <miles@gnu.org>
11170         * cus-edit.el (custom-face-save): Do post-processing on the face's
11171         new value like `custom-face-set' does.
11173 2001-01-19  Eli Zaretskii  <eliz@is.elta.co.il>
11175         * mail/emacsbug.el (report-emacs-bug): Report the value of
11176         LC_CTYPE, not LC_TYPE.
11178         * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
11179         isearch-toggle-regexp and isearch-edit-string to doc string.
11181 2001-01-19  Gerd Moellmann  <gerd@gnu.org>
11183         * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
11184         as font-lock-beginning-of-syntax-function in font-lock-defaults.
11186         * jit-lock.el (jit-lock-fontify-now): Don't bind
11187         font-lock-beginning-of-syntax-function to nil.
11189 2001-01-19  Eli Zaretskii  <eliz@is.elta.co.il>
11191         * mail/emacsbug.el (report-emacs-bug): Report values of
11192         locale-coding-system, default-enable-multibyte-characters, and the
11193         environment variables LC_ALL, LC_TYPE, and LANG.
11195 2001-01-19  Gerd Moellmann  <gerd@gnu.org>
11197         * font-lock.el (font-lock-default-fontify-region): Fix last change.
11199         * font-lock.el (font-lock-multiline): Default to nil.
11200         (font-lock-default-fontify-region): If font-lock-multiline is
11201         nil, don't check the property `font-lock-multiline'.
11203         * jit-lock.el (jit-lock-after-change): If font-lock-multiline
11204         is nil, don't check the `font-lock-multiline' text property.
11206 2001-01-19  Michael Kifer  <kifer@cs.sunysb.edu>
11208         * viper.el: Call initial-major-mode on startup.
11210         * ediff.el (ediff-patch-file): Use better defaults.
11212         * ediff-vers.el: Fix for 8+3 DOS file systems.
11214 2001-01-19  Colin Walters <walters@cis.ohio-state.edu>
11216         * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
11217         diff mode, if available.
11219 2001-01-19  Michael Kifer  <kifer@cs.sunysb.edu>
11221         * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
11223         * ediff-init.el (subst-char-in-string): Define and use it, unless
11224         it's already defined.
11226 2001-01-18  Gerd Moellmann  <gerd@gnu.org>
11228         * tooltip.el (tooltip-hide-delay): New user-option.
11229         (tooltip-show): Use tooltip-hide-delay instead of the default.
11231 2001-01-18  Kenichi Handa  <handa@etl.go.jp>
11233         * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
11234         kill-local-variable doesn't work for enable-multibyte-characters.
11236 2001-01-17  Dave Love  <fx@gnu.org>
11238         * ediff-init.el (ediff-before-setup-hook)
11239         (ediff-merge-filename-prefix): Add :version.
11241         * international/latin1-disp.el: Require disp-table.
11242         (latin1-display): Fix :set.
11244         * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
11246 2001-01-17  Gerd Moellmann  <gerd@gnu.org>
11248         * isearch.el (isearch-lazy-highlight-initial-delay)
11249         (isearch-lazy-highlight-interval): Default to 0.
11251 2001-01-17  Bob Glickstein  <bobg@zanshin.com>
11253         * isearch.el (isearch-highlight): Set isearch-overlay priority to
11254         1 here rather than each time through
11255         isearch-lazy-highlight-new-loop.
11256         (isearch-lazy-highlight-max): Variable deleted.
11257         (isearch-lazy-highlight-max-at-a-time): New user variable, like
11258         isearch-lazy-highlight-max but controls a single invocation of
11259         isearch-lazy-highlight-update.
11260         (isearch-lazy-highlight-wrapped): Variable recreated.
11261         (isearch-lazy-highlight-window-start): New variable.
11262         (isearch-lazy-highlight-cleanup): Restored to behavior of
11263         before 2-Jan.
11264         (isearch-lazy-highlight-remove-overlays): Function deleted;
11265         behavior folded into isearch-lazy-highlight-cleanup.  "Keep"
11266         behavior removed.
11267         (isearch-lazy-highlight-new-loop): Restore old behavior of calling
11268         isearch-lazy-highlight-update in a loop rather than just once.
11269         Test isearch-invalid-regexp here and decide not to start a new
11270         loop, rather than testing it each time through
11271         isearch-lazy-highlight-update.
11272         (isearch-lazy-highlight-search): Function restored.
11273         (isearch-lazy-highlight-update): Get called in a timer loop again,
11274         but this time highlight more than one match each time through.
11275         Only highlight matches in the visible part of the window.
11276         Start at point, move in the direction of the search, and wrap around at
11277         the edge of the window.  Use sit-for to force redisplay and ensure
11278         window-start is credible.  "Face suppressing" behavior removed;
11279         overlay priorities should make it unnecessary, right?
11280         (isearch-highlight): Face suppressing behavior removed.
11281         (isearch-dehighlight): Face suppressing behavior removed.
11282         (isearch-set-lazy-highlight-faces-at): Removed.
11284 2001-01-17  Kenichi Handa  <handa@etl.go.jp>
11286         * language/european.el ("Latin-1"): Make the format of description
11287         about additional language environments same as that of Latin-2.
11289 2001-01-16  Dave Love  <fx@gnu.org>
11291         * isearch.el (isearch-lazy-highlight): Add :version.
11293         * simple.el (backward-delete-char-untabify-method)
11294         (next-line-add-newlines): Add :version.
11296 2001-01-16  Gerd Moellmann  <gerd@gnu.org>
11298         * bindings.el: Bind <backspace> and <delete> via function-key-map.
11299         Don't bind <delete> otherwise.
11301         * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
11302         and <delete> via function-key-map.
11304         * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
11305         Subject line only if point is after the `Subject:'.
11307 2001-01-16  Kenichi Handa  <handa@etl.go.jp>
11309         * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
11310         japanese-jisx0213-2 in `charset' property of this lang. env.
11312         * language/european.el ("Latin-1"): Add description for Dutch and
11313         Spanish lang. env.
11315         * international/mule.el (decode-char): Fix conditions.
11316         (encode-char): Handle eight-bit-control too.
11317         (transform-make-coding-system-args): New function.
11318         (make-coding-system): Accept XEmacs style arguments for CCL base
11319         coding system.
11321 2001-01-15  Gerd Moellmann  <gerd@gnu.org>
11323         * progmodes/etags.el (find-tag-noselect): Save the value of
11324         tags-file-name before switching buffers, for the case it has a
11325         buffer-local value.
11327 2001-01-15  Alex Schroeder  <alex@gnu.org>
11329         * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11330         From Dave Love <fx@gnu.org>.
11331         (ansi-color-for-comint-mode): Fix :version.
11333 2001-01-15  Alex Schroeder  <alex@gnu.org>
11335         * ansi-color.el (ansi-color-unfontify-region): Doc change.
11337 2001-01-14  Eli Zaretskii  <eliz@is.elta.co.il>
11339         * dired.el (dired-insert-directory): If file-system-info fails,
11340         remove the " free " part, but don't signal an error.
11342 2001-01-12  Sam Steingold  <sds@gnu.org>
11344         * bookmark.el (bookmark-maybe-historicize-string):
11345         Use new backquote syntax.
11347 2001-01-12  Richard M. Stallman  <rms@gnu.org>
11349         * subr.el (last): Handle a list that doesn't end in nil.
11351 2001-01-12  Sam Steingold  <sds@gnu.org>
11353         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
11354         to `backward-delete-char-untabify'.
11356 2001-01-12  Dave Love  <fx@gnu.org>
11358         * cus-edit.el (customize-menu-create): Fix the :filter following
11359         easymenu change.
11361         * wid-edit.el (function): Add :match-alternatives.
11362         (widget-color-action): Doc fix.
11364 2001-01-12  Gerd Moellmann  <gerd@gnu.org>
11366         * calendar/calendar.el (calendar-basic-setup): Doc fix.
11368 2001-01-12  Kenichi Handa  <handa@etl.go.jp>
11370         * international/mule-cmds.el (prefer-coding-system): Fix docstring.
11372         * international/ccl.el (define-ccl-program): Fix docstring.
11374 2001-01-11  Dave Love  <fx@gnu.org>
11376         * international/mule-cmds.el (standard-display-european-internal):
11377         Set display table for 2208 as for 160.
11379         * progmodes/ada-mode.el (ada-popup-key): Fix last change.
11381         * progmodes/fortran.el (fortran-mode-map): Modify Customization
11382         entry for custom-menu-create change.
11383         (fortran-strip-sqeuence-nos): Make arg optional.  Fix regexp and
11384         don't cons it in the search loop.
11386         * imenu.el (imenu--truncate-items): Revert last change.
11388 2001-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
11390         * info.el (Info-setup-header-line): If the node header includes
11391         either Next: or Prev: links, don't show the File: and Node: parts
11392         in the header line.
11394 2001-01-11  Gerd Moellmann  <gerd@gnu.org>
11396         * comint.el (comint-goto-process-mark): Don't print a message
11397         when running in batch mode.
11399         * isearch.el (isearch-search): In the condition-case handler for
11400         `error', set isearch-invalid-regexp to the whole error message.
11402         * subr.el (eval-after-load): Call load-symbol-file-load-history to
11403         ensure that eval-after-load works for files dumped with Emacs.
11405         * help.el (load-symbol-file-load-history): New function extracted
11406         from function symbol-file.
11407         (symbol-file): Use it.
11409         * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
11411 2001-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
11413         * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
11414         behave as if there were no prefix argument.
11415         (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
11416         argument were nil.
11418 2001-01-11  Richard M. Stallman  <rms@gnu.org>
11420         * isearch.el (isearch-lazy-highlight-update):
11421         Don't look for more potential matches once maximum is exceeded.
11422         Use overlays-in to check correctly for overlap with current match.
11423         Ignore empty matches.
11425 2001-01-11  Miles Bader  <miles@gnu.org>
11427         * textmodes/ispell.el (ispell-adjusted-window-height): New function.
11428         (ispell-overlay-window, ispell-help, ispell-show-choices)
11429         (ispell-command-loop): Use it instead of `window-height'.
11431 2001-01-10  Gerd Moellmann  <gerd@gnu.org>
11433         * files.el (confirm-kill-emacs): New user-option.
11434         (save-buffers-kill-emacs): Ask for final confirmation before
11435         killing Emacs.
11437         * isearch.el (isearch-done): Set isearch-lazy-highlight-start
11438         to nil.
11440 2001-01-10  Dave Love  <fx@gnu.org>
11442         * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
11444         * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
11446         * hi-lock.el (hi-lock-exclude-modes): Fix :type.
11448         * calculator.el (calculator-number-digits): Fix :type.
11450         * vc-cvs.el (vc-cvs-header): Fix :type.
11451         * vc-rcs.el (vc-rcs-header): Fix :type.
11452         * vc-sccs.el (vc-sccs-header): Fix :type.
11454         * progmodes/ada-mode.el (ada-popup-key): Fix :type.
11456         * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
11458         * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
11460 2001-01-10  Gerd Moellmann  <gerd@gnu.org>
11462         * simple.el (set-variable): Force a thorough redisplay for the
11463         case that the variable has an effect on the display, like
11464         `tab-width' has.
11466 2001-01-10  Andre Spiegel  <spiegel@gnu.org>
11468         * vc.el: Add documentation for backend interface.
11470 2001-01-10  Kenichi Handa  <handa@etl.go.jp>
11472         * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
11474         * international/mule-conf.el (latin-extra-code-table): Set to t
11475         for \223 and \224.
11477 2001-01-09  Kenichi Handa  <handa@etl.go.jp>
11479         * international/mule-cmds.el (locale-language-names): Map "es" to
11480         "Spanish" and "nl" to "Dutch".
11482 2001-01-09  Gerd Moellmann  <gerd@gnu.org>
11484         * bindings.el (global-map): Bind <home> to beginning-of-line,
11485         <end> to end-of-line, C-<home> to beginning-of-buffer, and
11486         C-<end> to end-of-buffer.
11488         * language/european.el: Add Dutch and Spanish language info
11489         to be able to use the appropriate tutorials.
11491 2001-01-09  Alex Schroeder  <alex@gnu.org>
11493         * ansi-color.el (ansi-color-process-output): Use markers instead
11494         of positions for start and end of region.
11495         (ansi-color-apply-on-region): Rewrote code to make it more robust.
11496         Previously, occasional mistakes happend when fontifying many
11497         chunks of output (eg. ls --color=yes /dev).  This happened
11498         whenever an overlay was created up to the end of the region, which
11499         coincided with the process-mark.  New text would then be added
11500         within that overlay instead of after it.
11501         (ansi-color-make-extent): Overlays are created with the property
11502         `modification-hooks' set to '(ansi-color-freeze-overlay).
11503         (ansi-color-freeze-overlay): New function.  When inserting text at
11504         the end of the overlay, the overlay will resize.
11506 2000-01-09  Alex Schroeder  <alex@gnu.org>
11508         * ansi-color.el (ansi-color-process-output): Doc change.
11509         (ansi-color-unfontify-region): Doc change.  No longer installed
11510         automatically in font-lock-unfontify-region-function.
11511         (ansi-color-apply): Doc change.
11512         (ansi-color-apply-on-region): Use extents or overlays instead of
11513         text-properties.
11514         (ansi-color-make-extent): New function.
11515         (ansi-color-set-extent-face): New function.
11517 2000-01-09  Alex Schroeder  <alex@gnu.org>
11519         * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
11520         both use ansi-color-process-output, now.
11521         (ansi-color-process-output): Doesn't return string anymore.  It is
11522         installed in comint-output-filter-functions for both Emacs and
11523         XEmacs, now.
11524         (ansi-color-unfontify-region): Simplified code removing variables
11525         pos and start-ansi.
11526         (ansi-color-apply): Put text-property ansi-color before putting
11527         text-property face because ansi-color-unfontify-region is called
11528         immediately after the call to put-text-property.
11529         (ansi-color-context-region): Doc change.
11530         (ansi-color-filter-region): Simplified code.
11531         (ansi-color-apply-on-region): Changed start to start-marker, using
11532         a marker explicitly.  Put text-property ansi-color before putting
11533         text-property face because ansi-color-unfontify-region is called
11534         immediately after the call to put-text-property.
11536 2000-01-09  Alex Schroeder  <alex@gnu.org>
11538         * ansi-color.el (ansi-color-faces-vector): Doc change.
11539         (ansi-color-for-comint-mode): Changed :type property to choice.
11540         (ansi-color-last-context): Removed.
11541         (ansi-color-process-output): Don't use ansi-color-last-context, as
11542         the main functions will store their context now.
11543         (ansi-color-context): Doc change.
11544         (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
11545         Uses ansi-color-context such that repeated calls will strip
11546         partial escape sequences, too.
11547         (ansi-color-apply): Simplified code.  Colorize end of string if
11548         face is not null.  Store context in new (FACE STRING) format, such
11549         that repeated calls will strip partial escape sequences, too.
11550         Append faces to face property using ansi-color-apply-sequence such
11551         that cumulative mode actually works.
11552         (ansi-color-context-region): New variable.
11553         (ansi-color-filter-region): Rewrote it based on
11554         ansi-color-apply-on-region.  Uses ansi-color-context-region such
11555         that repeated calls will strip partial escape sequences, too.
11556         (ansi-color-apply-on-region): Simplified code.  Colorize end of
11557         region if face is not null.  Store context in new (FACE POS)
11558         format, such that repeated calls will strip partial escape
11559         sequences, too.  Append faces to face property using
11560         ansi-color-apply-sequence such that cumulative mode actually works.
11561         (ansi-color-apply-sequence): New function.
11562         (ansi-color-get-face): When the default face is added to the list
11563         of faces, all previous settings are discarded and the list of
11564         faces is set to '(default).
11566 2000-01-09  Alex Schroeder  <alex@gnu.org>
11568         * ansi-color.el (ansi-color-faces-vector): Use nil for the default
11569         face, such that ansi-color-apply and ansi-color-apply-on-region
11570         will do the right thing.
11571         (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
11572         returns nil, set the list of faces back to nil instead of
11573         appending the result of ansi-color-get-face to the front of the list.
11575 2000-01-09  Alex Schroeder  <alex@gnu.org>
11577         * ansi-color.el (ansi-color-for-comint-mode): Doc change.
11578         (ansi-color-process): Doc change.
11579         (ansi-color-last-context): New buffer-local variable.
11580         (ansi-color-process-output): New function.  It is automatically
11581         added to comint-output-filter-functions if this is XEmacs.
11582         (ansi-color-unfontify-region): New optional parameter for XEmacs
11583         compatibility.  Check wether font-lock-syntactic-keywords is
11584         boundp before removing the syntax table text property, as XEmacs
11585         doesn't have it.
11586         (ansi-color-filter-region): Doc change.
11587         (ansi-color-apply-on-region): Doc change.
11588         (ansi-color-make-face): New function.  Compatibility layer for
11589         XEmacs.  Return temporary faces instead of cons cells for XEmacs.
11590         (ansi-color-make-color-map): Use ansi-color-make-face.
11591         (ansi-color-get-face): Avoid face text property '(nil) as results
11592         in an errow for XEmacs.
11594 2000-01-09  Alex Schroeder  <alex@gnu.org>
11596         * ansi-color.el (ansi-color-unfontify-region): New function.
11597         Uses text-property ansi-color in order to preserve fontification by
11598         ansi-color.  When the package is loaded, a lambda expression is
11599         put onto font-lock-mode-hook.  This lambda expression will check
11600         font-lock-unfontify-region-function and replace
11601         font-lock-default-unfontify-region with ansi-color-unfontify-region.
11602         (ansi-color-apply): Add text-property ansi-color in addition to
11603         text-property face.
11604         (ansi-color-apply-on-region): Add text-property ansi-color in
11605         addition to text-property face.
11606         (save-buffer-state): Copy of the macro that is also used by
11607         lazy-lock and font-lock.
11609         (ansi-color-for-comint-mode): New option.
11610         (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
11611         (ansi-color-for-comint-mode-off): Ditto.
11612         (ansi-color-for-comint-mode-filter): Ditto.
11613         (ansi-color-process): New function.  Uses ansi-color-for-comint-mode to
11614         decide what to do.  This function is added to
11615         comint-preoutput-filter-functions when the package is loaded.
11617         (ansi-color-for-shell-mode-set): Removed.
11618         (ansi-color-for-shell-mode): Removed.
11620 2000-01-09  Alex Schroeder  <alex@gnu.org>
11622         * ansi-color.el (ansi-color-for-shell-mode-set): New function with
11623         the lambda expression from the ansi-color-for-shell-mode :set
11624         property.  Additionally, modify shell-mode-hook to enable or
11625         disable font-lock-mode for future shell buffers.
11626         (ansi-color-for-shell-mode): The :set property calls
11627         ansi-color-for-shell-mode-set instead of a lambda expression.
11629 2000-01-09  Alex Schroeder  <alex@gnu.org>
11631         * ansi-color.el (ansi-color-for-shell-mode): Doc change.
11632         (ansi-color-context): New variable.
11633         (ansi-color-apply): Save context between calls.
11635 2001-01-09  Eli Zaretskii  <eliz@is.elta.co.il>
11637         * isearch.el (isearch, isearch-lazy-highlight-face):
11638         New definitions for face colors and attributes.
11640         * wid-edit.el (widget-choose): Call display-popup-menus-p instead
11641         of display-mouse-p.
11643 2001-01-09  Kenichi Handa  <handa@etl.go.jp>
11645         * international/mule.el (make-coding-system): If the coding system
11646         accepts extra latin codes, register such codes as safe for the
11647         coding system.
11649 2001-01-08  Richard M. Stallman  <rms@gnu.org>
11651         * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
11652         don't mention the file name or the date here, because they are
11653         logged at the start of the file.
11655 2001-01-08  Richard M. Stallman  <rms@gnu.org>
11657         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
11658         Change screen-width to frame-width.
11660 2001-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
11662         * info.el (Info-search): Print the default as part of the prompt.
11664 2001-01-08  Andre Spiegel  <spiegel@gnu.org>
11666         * vc.el (vc-default-latest-on-branch-p): New function, replaces
11667         constant implementations in backends.
11669         * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
11670         (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
11672         * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
11673         WRITABLE to EDITABLE.
11675         * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
11676         (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
11677         to EDITABLE.
11679 2001-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
11681         * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
11682         (copyright, copyright-update): Compute the current year at run time.
11684 2001-01-08  Gerd Moellmann  <gerd@gnu.org>
11686         * isearch.el (isearch-old-signal-hook): Removed.
11687         (isearch-mode): Add isearch-done to kbd-macro-termination-hook
11688         instead of setting signal-hook-function.
11689         (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
11691 2001-01-08  Kevin Gallagher  <kevingal@onramp.net>
11693         * emulation/edt.el: Update to version 4.0.  Provide support for
11694         EDT scroll margins at top and bottom of the window.  Provide an
11695         emulation of the EDT SUBS command (bound to GOLD-Enter, by
11696         default).  Enhance edt-quit, bound to GOLD-q by default, to warn
11697         user when file-related buffer modifications exist.
11698         Provide support for running EDT Emulation in XEmacs.
11699         Provide customize access to some user updatable variables.
11700         Add Commentary section to file header.
11701         Fixed a few minor bugs and cleaned up some code.
11703         * emulation/edt-mapper.el: Update to version 4.0.  Provide support
11704         for detecting a keypress that generates an ASCII key sequence.
11705         (Previously, only a keypress that generates a vector was
11706         recognized.)  Embed Window Manager name into name of the generated
11707         EDT Emulation initialization file since the initialization file is
11708         Window Manager specific.  Add Commentary section to file header.
11710 2001-01-07  Eli Zaretskii  <eliz@is.elta.co.il>
11712         * mail/sendmail.el (mail-mode): Doc fix.
11714         * info.el (Info-goto-emacs-command-node): Doc fix.
11715         (Info-goto-emacs-key-command-node): Doc fix.
11717 2001-01-06  Eli Zaretskii  <eliz@is.elta.co.il>
11719         * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
11720         systems without long file-name support.
11722 2001-01-06  Andrew Innes  <andrewi@gnu.org>
11724         * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
11726 2001-01-06  Eli Zaretskii  <eliz@is.elta.co.il>
11728         * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
11729         (isearch-lazy-highlight-update): Doc fix.
11731         * ffap.el (ffap-bindings): Doc fix.
11733         * dired-x.el (dired-virtual-guess-dir): Doc fix.
11735 2001-01-05  Dave Love  <fx@gnu.org>
11737         * emacs-lisp/cl-seq.el (remove, remq): Remove.
11739 2001-01-05  Gerd Moellmann  <gerd@gnu.org>
11741         * mouse-drag.el (mouse-drag-safe-scroll):
11742         Bind scroll-preserve-screen-position to nil.
11744         * isearch.el (isearch-old-signal-hook): New variable.
11745         (isearch-mode): Set signal-hook-function to isearch-done.
11746         (isearch-done): Restore old signal-hook-function.
11748         * info.el (Info-fontify-node): Mark one more char as intangible.
11750 2000-01-05  Kenichi Handa  <handa@etl.go.jp>
11752         * composite.el (compose-last-chars): New argument COMPONENTS.
11753         If it is non-nil, compose preceding characters by compose-region with
11754         COMPONENTS.
11756         * international/quail.el (quail-input-string-to-events): New function.
11757         (quail-input-method): Convert input string to events here.
11758         (quail-start-translation): Return input string, not event list.
11759         (quail-start-conversion): Likewise.
11761 2001-01-04  Gerd Moellmann  <gerd@gnu.org>
11763         * tooltip.el (tooltip-cancel-delayed-tip)
11764         (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
11765         and tooltip-add-timeout.
11766         (tooltip-show): Set border color from faces's foreground.
11767         (tooltip-show-help-function): If called with the same help string
11768         as last time, do nothing.
11769         (tooltip-help-tips): Don't set tooltip-help-message to nil.
11771         * startup.el (fancy-splash-screens): Don't bind show-help-function
11772         to nil.
11774         * tooltip.el (tooltip-frame-parameters): Remove colors.
11775         (tooltip): New face
11776         (tooltip-set-param): New function.
11777         (tooltip-show): Set up color frame parameters from face `tooltip'.
11778         Display the tooltip text in face `tooltip'.
11780 2001-01-04  Dave Love  <fx@gnu.org>
11782         * whitespace.el (whitespace-global-mode): Fix typo.
11784         * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
11786 2001-01-04  Eli Zaretskii  <eliz@is.elta.co.il>
11788         * help.el (help-for-help): Fix a typo in a doc string.
11789         From kwzh@gnu.org (Karl Heuer).
11791 2001-01-03  Dave Love  <fx@gnu.org>
11793         * dired-x.el: Doc fixes.  Maintainer change.
11794         (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
11795         (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
11796         (dired-guess-shell-alist-user): Customize.
11797         (dired-x-help-address): Set to bug-gnu-emacs.
11798         (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
11799         (dired-default-directory): Renamed from default-directory.
11801         * hl-line.el (hl-line): Doc fix.
11803 2001-01-03  Karl Fogel  <kfogel@red-bean.com>
11805         * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
11807 2001-01-02  Richard M. Stallman  <rms@gnu.org>
11809         * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
11810         to remove all the current alternative-match highlighting.
11811         If nil, remove only what's outside the current window.
11812         (isearch-lazy-highlight-remove-overlays): Take optional
11813         region within which NOT to remove them.
11814         (isearch-lazy-highlight-new-loop): Greatly simplified.
11815         (isearch-lazy-highlight-update): Find all the other occurrences
11816         visible in the window, in just one call.
11817         (isearch-lazy-highlight-start): Now holds start of region to scan.
11818         (isearch-lazy-highlight-end): Now holds end of region to scan.
11819         (isearch-lazy-highlight-wrapped): Variable deleted.
11820         (isearch-lazy-highlight-search): Function deleted.
11822 2000-01-02  Andrew Innes  <andrewi@gnu.org>
11824         * w32-fns.el (convert-standard-filename): Do length check on name
11825         before aref.
11827 2001-01-02  Dave Love  <fx@gnu.org>
11829         * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
11830         value.
11831         (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
11833         * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
11835         * net/browse-url.el (browse-url-filename-alist): Avoid backquote
11836         read syntax.
11838         * calendar/todo-mode.el (todo): Add :link, :version.
11839         (todo-save-top-priorities): Remove autoload cookie.
11840         (todo-add-category, todo-add-item-non-interactively)
11841         (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
11843 2001-01-02  Gerd Moellmann  <gerd@gnu.org>
11845         * comint.el (comint-input-history-ignore): New variable.
11846         (comint-read-input-ring): Ignore entries matching
11847         comint-input-history-ignore.
11849 2001-01-02  Eric M. Ludlam  <zappo@gnu.org>
11851         * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
11852         (lm-copyright-mark): New function.
11853         (lm-crack-copyright): New function.
11854         (lm-verify): Check that the file has a copyright.
11855         Check that the file is copyright Free Software Foundation.
11857 2000-12-30  Kenichi Handa  <handa@etl.go.jp>
11859         * international/mule-diag.el (print-fontset): Indent font name by
11860         24 columns, not 25.
11862 2000-12-29  Gerd Moellmann  <gerd@gnu.org>
11864         * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
11865         in Subject line.
11867         * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
11868         Use mail-mode-hook instead of mail-setup-hook.
11869         Otherwise continuing an interrupted message with C-u C-x m for
11870         instance, winds up in Mail mode without abbrevs.
11872 2000-12-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11874         * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
11875         non-nil.  Adding almost all customization variables on ps-setup.
11876         Doc fix.
11877         (ps-print-version): New version number (6.3.3).
11878         (ps-end-with-control-d): Initialization fix.
11879         (ps-lines-printed): New var.
11880         (ps-skip-newline): New fun.
11881         (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
11882         (ps-next-line, ps-continue-line, ps-plot-region)
11883         (ps-generate-postscript-with-faces, ps-end-job): Code fix.
11885 2000-12-29  Kenichi Handa  <handa@etl.go.jp>
11887         * international/fontset.el (x-complement-fontset-spec):
11888         Resolve ASCII font name so that the same family name is used for fonts
11889         registered in x-font-name-charset-alist.
11890         (create-fontset-from-fontset-spec): Adjusted for the above change.
11891         The name of fontset alias should be a unresolved ASCII font name.
11893 2000-12-28  Gerd Moellmann  <gerd@gnu.org>
11895         * simple.el (delete-key-deletes-forward-mode): Bind backspace
11896         and delete in isearch-mode-map.
11898 2000-12-28  Richard M. Stallman  <rms@gnu.org>
11900         * dired-x.el (dired-guess-shell-alist-default):
11901         Use xpdf instead of acroread.
11903 2000-12-28  Kenichi Handa  <handa@etl.go.jp>
11905         * textmodes/artist.el (artist-butlast): Deleted.
11906         (artist-ellipse-mirror-quadrant): Use butlast instead of
11907         artist-butlast.
11909         * subr.el (butlast, nbutlast): Moved from cl.el to here.
11911         * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
11913 2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
11915         From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
11917         * ls-lisp.el: Better support for the Mac and MS-Windows.
11918         (ls-lisp): New defgroup.
11919         (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
11920         (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
11921         (ls-lisp-support-shell-wildcards): New defcustoms.
11922         (ls-lisp-parse-symlink): New function.
11923         (insert-directory): Code to convert switches to a list and set up
11924         the wildcard argument copied from ls-lisp-insert-directory.
11925         (ls-lisp-insert-directory): New argument TIME-INDEX.  Add support
11926         for -C and -R switches.
11927         (ls-lisp-column-format): New function.
11928         (ls-lisp-delete-matching, ls-lisp-handle-switches)
11929         (ls-lisp-format-time): Add doc strings.
11930         (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
11931         Support ls-lisp-dirs-first.
11932         (ls-lisp-classify, ls-lisp-extension): New functions.
11933         (ls-lisp-format): Optionally support emulation of symlinks.
11934         Support -i, -s, and -G switches.
11936 2000-12-27  Gerd Moellmann  <gerd@gnu.org>
11938         * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
11940         * version.el (emacs-version): Print X scroll bar information.
11942         * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
11943         instead of x-toolkit-scroll-bars-p.
11945         * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
11946         of x-toolkit-scroll-bars-p.
11948 2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
11950         * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
11951         (ffap-bindings): Doc fix, to reflect the above change.
11953 2000-12-27  Kenichi Handa  <handa@etl.go.jp>
11955         * term.el (term-char-mode): Define all non-ascii self-inserting
11956         characters to 'term-send-raw in term-raw-map.
11958 2000-12-25  Michael Kifer  <kifer@cs.sunysb.edu>
11960         * viper-init (viper-restore-cursor-type): Added condition-case guard.
11962         * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
11963         Changed initialization; use add-hook.
11964         (ediff-file-remote-p): Use file-local-copy.
11966         * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
11968         * ediff.el (ediff-patch-buffer): Bug fix.
11969         (ediff-revision): Allow selection of the file at the prompt.
11971 2000-12-23  Stefan Monnier  <monnier@cs.yale.edu>
11973         * subr.el (combine-run-hooks): Remove.
11975         * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
11976         and remove the rogue second spec.
11978 2000-12-23  Gerd Moellmann  <gerd@gnu.org>
11980         * progmodes/compile.el (compilation-forget-errors): Fix indentation.
11982 2000-12-22  Stefan Monnier  <monnier@cs.yale.edu>
11984         * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
11985         Use minibuffer menu prompt for the `=' prefix.
11986         (smerge-command-prefix): Change default to C-^.
11987         (smerge-mode): Don't assume font-lock doesn't move point.
11989         * skeleton.el (skeleton-internal-1): Make sure the first line of
11990         the region is also re-indented.
11991         (skeleton-end-newline): New var.
11992         (skeleton-end-hook): Use it.
11994 2000-12-22  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11996         * comint.el (comint-password-prompt-regexp): Support CVS.
11998 2000-12-22  Gerd Moellmann  <gerd@gnu.org>
12000         * simple.el (delete-key-deletes-forward-mode): Simplify.
12001         Also backspace key combinations, depending on
12002         delete-key-deletes-forward.
12004         * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
12006         * simple.el (delete-key-deletes-forward): Doc fix.
12008 2000-08-22  Emmanuel Briot  <briot@gnat.com>
12010         * xml.el (top level comment): Updated to reflect the fact that
12011         white spaces are relevant in the XML file.
12012         (xml-parse-file): Do not kill an existing Emacs buffer if the file
12013         to parse was already edited. This allows for on-the-fly analysis
12014         of XML files.
12015         (xml-parse-tag): Check that the casing is the same in the start
12016         tag and end tag, since XML is case-sensitive.  Allows for spaces
12017         in the end tag, after the name of the tag.
12018         (xml-parse-attlist): Allow for the character '-' in the name of
12019         attributes, as in the standard http-equiv attribute Do not save
12020         the properties in the XML tree, since they are not relevant.
12022 2000-12-21  Stefan Monnier  <monnier@cs.yale.edu>
12024         * generic.el (generic-read-type): Undo last change, inline into
12025         `generic-mode' and then remove.
12026         (generic-mode): Inline generic-read-type.
12027         (define-generic-mode): Push the symbol name rather than the symbol
12028         onto generic-mode-list.
12030 2000-12-21  Gerd Moellmann  <gerd@gnu.org>
12032         * generic.el (generic-read-type): Build an alist for
12033         completing-read as in 20.7.
12035         * play/landmark.el (lm): Use interactive spec `P'.
12036         (toplevel): Don't set debug-on-error.
12038         * server.el (server-switch-buffer): Choose a window on a visible frame.
12040 2000-12-21  Dave Pearson  <davep@davep.org>
12042         * quickurl.el: Commentry change, I've moved my web site.
12044 2000-12-21  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
12046         * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
12047         ranges like \177-\237, but accepts the character sequence from \177 to
12048         \237.  Doc fix.
12049         (ebnf-version): New version (3.4).
12050         (ebnf-setup): Code fix.
12051         (ebnf-range-regexp): New fun.
12052         (ebnf-8-bit-chars): Const fix.
12054         * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
12055         entry.  Doc fix.
12056         (ebnf-bnf-lex): Code fix.
12057         (ebnf-bnf-comment-chars): Const fix.
12059         * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
12060         entry.  Doc fix.
12061         (ebnf-iso-comment-chars): Const fix.
12063         * ebnf-otz.el: Doc fix.
12065         * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
12066         entry.  Doc fix.
12067         (ebnf-yac-skip-code): Code fix.
12068         (ebnf-yac-comment-chars): Const fix.
12070 2000-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
12072         * files.el (insert-directory-safely): New function.
12073         (recover-file): Use it instead of insert-directory.
12074         From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12076 2000-12-21  Kenichi Handa  <handa@etl.go.jp>
12078         * international/mule-cmds.el (select-safe-coding-system):
12079         Check coding-category-list more rigidly.  Improve help message.
12081         * dired.el (dired-move-to-filename-regexp): Fix previous change.
12083 2000-12-21  Miles Bader  <miles@gnu.org>
12085         * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
12087 2000-12-21  Kenichi Handa  <handa@etl.go.jp>
12089         * international/mule-diag.el (describe-char-after): Make *Help*
12090         buffer inherit multibyteness of the current buffer.
12092         * international/mule.el (make-char): Docstring adjusted for the
12093         change of make-char-internal.
12095 2000-12-20  Stefan Monnier  <monnier@cs.yale.edu>
12097         * international/iso-cvt.el: Docstrings fix.
12099 2000-12-20  Dave Love  <fx@gnu.org>
12101         * subr.el (eval-after-load): Doc fix.
12103 2000-12-20  Kenichi Handa  <handa@etl.go.jp>
12105         * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
12106         for numbers.
12108 2000-12-20  Miles Bader  <miles@gnu.org>
12110         * international/quail.el (quail-help): Resize the help window
12111         again after it has all its contents.  Remove unneeded progn.
12113 2000-12-19  Gerd Moellmann  <gerd@gnu.org>
12115         * pcmpl-linux.el: Fix copy/paste error.
12117 2000-12-19  Andrew Innes  <andrewi@gnu.org>
12119         * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
12121 2000-12-19  Carsten Dominik  <dominik@strw.leidenuniv.nl>
12123         * progmodes/idlw-rinfo.el: Fixed copyright notice.
12125         * progmodes/idlw-toolbar.el: Fixed copyright notice.
12127         * progmodes/idlw-shell.el: Fixed copyright notice.
12129         * progmodes/idlwave.el: Fixed copyright notice.
12131         * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
12132         TAB as key separators.
12134 2000-12-19  Alex Schroeder  <alex@gnu.org>
12136         * sql.el (sql-sybase-options): New option.
12137         (sql-sybase): Use it.  Add sql-database to the list of parameters
12138         provided for login.  The options -w 2048 -n are not used any more.
12139         (sql-postgres-options): Changed default from "--pset" to "-P".
12140         (sql-mysql-options): Doc change.
12141         (sql-stop): Doc change.
12143 2000-12-19  Kenichi Handa  <handa@etl.go.jp>
12145         * international/quail.el (quail-input-method): Always hide
12146         the guidance buffer on exiting.
12148 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
12150         * tooltip.el (tooltip-mode): Signal an error if x-show-tip
12151         isn't fboundp.
12153         * server.el (server-buffer-done): Bury the buffer before
12154         killing it.
12156         * faces.el (face-spec-set): Interpret a nil in specs for
12157         foreground and background colors as `unspecified', for
12158         compatibility with 20.x.
12160 2000-12-18  Dave Love  <fx@gnu.org>
12162         * simple.el (mail-user-agent): Doc fix.
12163         (input-mode-8-bit): Removed.
12165         * international/mule.el (set-keyboard-coding-system): Doc fix.
12166         (keyboard-coding-system): New option.
12168         * mail/sendmail.el (send-mail-function): Customize.
12170 2000-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
12172         * international/codepage.el (cp866-decode-table): New table.
12174 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
12176         * version.el (emacs-version): Remove `%a' from the time format
12177         because the weekday doesn't fit well into each locale.
12179 2000-12-18  Miles Bader  <miles@gnu.org>
12181         * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
12183         * textmodes/artist.el (artist-replace-chars, artist-replace-char):
12184         Check that emacs-major-version is `=' to 20, not `>='.
12185         (artist-replace-chars): Use `make-string' instead of a loop.
12187 2000-12-17  Stefan Monnier  <monnier@cs.yale.edu>
12189         * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
12190         (cvs-execute-single-file): Don't change directory.
12191         Patch from Per Cederqvist.
12193 2000-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
12195         * textmodes/ispell.el (check-ispell-version):
12196         If `ispell-program-name' is "aspell", pass it the -v switch instead
12197         of -vv.
12199 2000-12-16  Kenichi Handa  <handa@etl.go.jp>
12201         * international/mule-diag.el (mule-diag): Insert information about
12202         configure options, multibyte awareness, language env.
12204         * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
12205         regexp to search for candidates.
12207 2000-12-15  Eli Zaretskii  <eliz@is.elta.co.il>
12209         * info.el (Info-forward-node): If the node has an
12210         Info-header-line, widen the buffer before searching for "next:"
12211         and "up:" pointers, and set the search limit to stay in the
12212         current node.
12214 2000-12-16  Miles Bader  <miles@gnu.org>
12216         * simple.el (delete-trailing-whitespace): Remove extraneous let.
12218 2000-12-15  Miles Bader  <miles@gnu.org>
12220         * comint.el (comint-send-string, comint-send-region): Also accept
12221         a buffer, buffer-name, or nil for PROCESS, for compatibility with
12222         process-send-string/region.
12224 2000-12-15  Gerd Moellmann  <gerd@gnu.org>
12226         * isearch.el (isearch-lazy-highlight-max): New user-option.
12227         (isearch-lazy-highlight-update): Don't highlight more than
12228         isearch-lazy-highlight-max matches.
12230         * mail/mh-utils.el (mh-find-path): Set read-mail-command.
12232 2000-12-15  Richard M. Stallman  <rms@gnu.org>
12234         * sort.el (sort-columns): Fix error message.
12236         * dabbrev.el (dabbrev--last-case-pattern): Value is now
12237         `upcase' or `downcase' or nil.
12238         (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
12239         Pass new record-case-pattern arg to dabbrev--substitute-expansion.
12240         (dabbrev--substitute-expansion): New arg record-case-pattern.
12241         If it is non-nil, set dabbrev--last-case-pattern.
12242         If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
12244         * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
12246 2000-12-15  Miles Bader  <miles@gnu.org>
12248         * paths.el (Info-default-directory-list): Don't delete
12249         configure-info-directory from the list of standard info
12250         directories when appending it to the end -- their order is important.
12252         * faces.el (read-face-attribute): If there's no entry for the
12253         user's input in VALID, just use it as-is (this will often result
12254         in an error, but it may be OK for e.g. colors using hexadecimal
12255         notation, and at least will yield a better error message).
12257         * window.el (mode-line-window-height-fudge): Function removed.
12258         (height-affecting-face-attributes, mode-line-window-height-fudge):
12259         Variables removed.
12260         * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
12261         window is really the right size.  Use vertical-motion
12262         rather than forward-line.
12263         (ispell-help): Don't use ispell-mode-line-window-height-fudge.
12264         (ispell-command-loop, ispell-show-choices): Use the variable
12265         ispell-choices-win-default-height, rather than the function.
12266         (ispell-choices-win-default-height): Function removed.
12267         (ispell-mode-line-window-height-fudge): Function removed.
12269 2000-12-14  Stefan Monnier  <monnier@cs.yale.edu>
12271         * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
12273 2000-12-14  Eli Zaretskii  <eliz@is.elta.co.il>
12275         * paths.el (Info-default-directory-list):
12276         If configure-info-directory is not one of the standard directories,
12277         put it first in the list; otherwise put it last.  Doc string
12278         changed accordingly.
12280         * info.el (Info-directory-list): Change doc string to reflect the
12281         change in Info-default-directory-list.
12283         * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
12284         windows-nt as windowed environments, even under -nw.
12286         * startup.el (command-line): Don't call x-backspace-delete-keys-p
12287         if not fboundp.  Switch delete-forward mode for the <delete> key
12288         on all PC platforms, even under -nw.
12290         * term/internal.el ([M-delete]): Remap to M-d.
12292 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
12294         * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
12296 2000-12-14  Eli Zaretskii  <eliz@is.elta.co.il>
12298         * frame.el (show-cursor-in-non-selected-windows): Doc fix.
12300 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
12302         * startup.el (command-line): Call delete-key-deletes-forward-mode,
12303         if appropriate.
12305         * simple.el (delete-key-deletes-forward): New user-option.
12306         (delete-key-deletes-forward-mode): New function.
12308         * bindings.el: Bind `delete' to backward-delete-char.
12310         * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
12311         Test if symbol is bound before getting its value.
12313         * tooltip.el (tooltip-show): If an error is signaled in
12314         x-show-tip, display that error, and display the help in the
12315         echo area.
12317 2000-12-14  Kenichi Handa  <handa@etl.go.jp>
12319         * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
12320         Show "... entries" messages for every 10000 entries, not 10.
12322 2000-12-13  Karl Fogel  <kfogel@red-bean.com>
12324         * bookmark.el: Provide a generic exit hook, as suggested by
12325         Ovidiu Predescu <ovidiu@cup.hp.com>:
12326         (bookmark-exit-hook): New var.
12327         (bookmark-exit-hook-internal): New func, replaces
12328         old raw lambda form in `kill-emacs-hook', and runs new
12329         `bookmark-exit-hooks'.  No longer tests for the bookmark feature,
12330         as logically that feature must have been provided if this function
12331         is running.
12332         Removed ;;;###autoload before the `add-hook' call.
12334 2000-12-13  Stefan Monnier  <monnier@cs.yale.edu>
12336         * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
12337         (easy-menu-current-active-maps): New function.
12338         (easy-menu-get-map): Use it.
12339         Make a proper menu entry when creating a new keymap.
12341 2000-12-13  Kenichi Handa  <handa@etl.go.jp>
12343         * international/characters.el: Fix cases and syntaxes for
12344         mule-unicode-0100-24ff.
12346         * dired.el (dired-move-to-filename-regexp): Fixed for the case
12347         that a Japanese character is not appended after day and year.
12349         * info.el (Info-suffix-list): Change format for a command that
12350         requires arguments.
12351         (info-insert-file-contents): Adjusted for the above change.
12353 2000-12-12  Andreas Schwab  <schwab@suse.de>
12355         * tar-mode.el (tar-extract): Base the name of the subfile buffer
12356         on the name of the tar buffer.  Verify that the existing buffer is
12357         visiting the same subfile.
12359 2000-12-12  Dave Love  <fx@gnu.org>
12361         * subdirs.el: Add obsolete.
12363 2000-12-12  Gerd Moellmann  <gerd@gnu.org>
12365         * mail/rmailsum.el (rmail-summary-expunge)
12366         (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
12367         instead of rmail-confirm-expunge.
12369         * replace.el (perform-replace): Don't use an empty match adjacent
12370         to a non-empty match when computing the next match before the
12371         replacement is performed.
12373 2000-12-12  Milan Zamazal  <pdm@freesoft.cz>
12375         * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
12376         definition (patch by Stefan Monnier).
12377         (glasses-mode): Use jit-lock instead of `after-change-functions'
12378         (patch by Stefan Monnier).
12380 2000-12-12  Miles Bader  <miles@gnu.org>
12382         * info.el (Info-last-preorder): Don't barf on nodes without a prev.
12383         (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
12385 2000-12-12  Andrew Choi  <akochoi@i-cable.com>
12387         * term/mac-win.el: Remove load for ls-lisp.
12389         * loadup.el: Load ls-lisp for system-type `macos'.
12391 2000-12-12  Miles Bader  <miles@gnu.org>
12393         * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
12394         Respect field end too.
12395         (just-one-space): Respect fields as `delete-horizontal-space'.
12396         (newline-and-indent, reindent-then-newline-and-indent):
12397         Use `delete-horizontal-space'.
12399 2000-12-11  Stefan Monnier  <monnier@cs.yale.edu>
12401         * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
12402         (so as to obey the field property in the minibuffer).
12404         * obsolete/c-mode.el: Moved from lisp/progmodes.
12405         * obsolete/auto-show.el: Moved from lisp.
12406         * obsolete/ooutline.el: Moved from lisp/textmodes.
12408 2000-12-11  Carsten Dominik  <dominik@strw.leidenuniv.nl>
12410         * progmodes/idlwave.el: Updated to IDLWAVE version 4.7.  Too many
12411         changes to list them here.
12413         * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
12414         Too many changes to list them here.
12416         * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
12417         Too many changes to list them here.
12419         * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
12421 2000-12-11  Gerd Moellmann  <gerd@gnu.org>
12423         * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
12425         * cus-edit.el (custom-save-variables, custom-save-faces):
12426         Comment fix.
12428         * hscroll.el: Moved to `obsolete' subdir.
12430 2000-12-11  Miles Bader  <miles@gnu.org>
12432         * window.el (window-text-height): Function removed (now in C).
12434 2000-12-10  Stefan Monnier  <monnier@cs.yale.edu>
12436         * log-edit.el (log-edit-parent-buffer): New var.
12437         (log-edit): Set it.  Add BUFFER argument.
12438         (log-edit-done): Use char-before.
12439         Don't bother checking validity of vc-comment-ring.
12440         Only bury the buffer if log-edit popped it up.
12442         * pcvs.el: Update references to CVS-Edit (now Log-Edit).
12443         (cvs-mode-diff-help): Remove.
12444         (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
12445         (cvs-mode-marked): Set up the default for CMD manually.
12447         * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
12448         Remove binding for ? now made unnecessary.
12450 2000-12-10  Carsten Dominik  <dominik@strw.leidenuniv.nl>
12452         * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
12453         (reftex-TeX-master-file): Check for `tex-main-file' early enough.
12455         * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
12456         when master file is not open.
12458 2000-12-09  Stefan Monnier  <monnier@cs.yale.edu>
12460         * progmodes/ada-stmt.el: Update `maintainer'.
12462 2000-12-09  Stephen Gildea  <gildea@stop.mail-abuse.org>
12464         * time-stamp.el (time-stamp-old-format-warn): Reorder custom
12465         choices to match documentation string.
12467 2000-12-09  Miles Bader  <miles@gnu.org>
12469         * minibuf-eldef.el: New file.
12471         * window.el (fit-window-to-buffer): Don't pass last argument to
12472         pos-visible-in-window-p, now that its meaning is inverted.
12474 2000-12-08  Eli Zaretskii  <eliz@is.elta.co.il>
12476         * image.el (create-image): Doc fix; spotted by Per Cederqvist
12477         <ceder@lysator.liu.se>.
12479 2000-12-08  Stefan Monnier  <monnier@cs.yale.edu>
12481         * autoinsert.el (auto-insert-alist): Add missing final \n.
12483         * pcvs-defs.el (cvs-menu): Move.  Make submenu for diff commands.
12484         (cvs-menu-map): Remove.
12485         * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
12486         (cvs-mode-quit): Turn it back into a plain function.
12488         * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
12489         (texinfo-filter): Remove (move to texinfo.el).
12491         * textmodes/texinfo.el: Move the (require 'cl) to the front of the
12492         file where it's more visible.
12493         (texinfo-filter, texinfo-chapter-level-regexp): New variables
12494         moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
12495         (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
12496         (texinfo-inside-macro-p): Only catch `scan-error's.
12497         (texinfo-inside-env-p): Make better use of the match info.
12498         (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
12499         (texinfo-insert-@end): Slight re-organization.
12500         Also remove useless `looking-at' call.
12502 2000-12-08  Andrew Innes  <andrewi@gnu.org>
12504         * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
12505         accessible in -nw mode.
12507         * term/w32-win.el: Remove stuff about selection timeout, which is
12508         irrelevant on Windows.  Move clipboard support to w32-fns.el, so
12509         it is accessible in -nw mode.
12511 2000-12-08  Dave Love  <fx@gnu.org>
12513         * emacs-lisp/lisp-mode.el (lisp-mode):
12514         Set font-lock-keywords-case-fold-search.
12516 2000-12-08  Gerd Moellmann  <gerd@gnu.org>
12518         * textmodes/ispell.el (ispell): Doc fix.
12520 2000-12-08  Kenichi Handa  <handa@etl.go.jp>
12522         * international/quail.el (quail-insert-decode-map): Check the
12523         frame width of a window displaying the current buffer, not that of
12524         the selected frame.
12525         (quail-help): Make sure that the help buffer has window before
12526         inserting text in it.
12528 2000-12-07  Sam Steingold  <sds@gnu.org>
12530         * loadup.el: Load emacs-lisp/backquote instead of autoloading.
12531         Backquote is used in isearch.el, so autoloading saves nothing.
12533 2000-12-07  Eli Zaretskii  <eliz@is.elta.co.il>
12535         * startup.el (normal-top-level-add-subdirs-to-load-path):
12536         Ignore the CVS and RCS subdirectories case-insensitively.
12538         * dired.el (dired-insert-directory): If file-system-info is
12539         fboundp, call it instead of invoking dired-free-space-program.
12541 2000-12-07  Gerd Moellmann  <gerd@gnu.org>
12543         * server.el (server-visit-files): Push files on file-name-history.
12545         * progmodes/cc-langs.el: Update copyright.
12547         * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
12549         * bindings.el (mode-line-mode-menu): Add glasses-mode.
12551         * bindings.el (mode-line-mode-menu): Reverse the order
12552         of define-keys so that the menu appears in alphabetical order.
12554 2000-12-07  Milan Zamazal  <pdm@freesoft.cz>
12556         * progmodes/glasses.el (glasses-mode): Update mode line at the end
12557         of the function.
12559 2000-12-07  Dave Love  <fx@gnu.org>
12561         * jka-compr.el (jka-compr-compression-info-list): Fix :type.
12563         * facemenu.el (facemenu-unlisted-faces): Fix value.
12565 2000-12-07  Stefan Monnier  <monnier@cs.yale.edu>
12567         * font-lock.el (font-lock-default-fontify-region):
12568         Include the terminating \n (off-by-one error).
12569         (font-lock-set-defaults): Use dolist.
12571         * derived.el (define-derived-mode): Don't use combine-run-hooks.
12573 2000-12-07  Kenichi Handa  <handa@etl.go.jp>
12575         * international/mule-cmds.el (describe-language-environment):
12576         Fix for the case that an input method title is not string but a list.
12578         * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
12579         of wrong SIZE record.
12581 2000-12-06  Dave Love  <fx@gnu.org>
12583         * newcomment.el (comment-region, comment-dwim): Doc fix.
12585         * textmodes/texinfo.el: Require tex-mode when compiling.
12586         (texinfo-update-node): Doc fix.
12587         (texinfo-imenu-generic-expression): Add @anchor.
12588         (texinfo-font-lock-keywords): Add @uref.
12589         (texinfo-inside-macro-p): Don't use ignore-errors.
12590         (texinfo-insert-quote): Match more contexts.
12592         * international/mule.el (decode-char, encode-char): Doc fix.
12593         (auto-coding-alist): Customize.
12595         * files.el (load-file): Fix change of 2000-03-12.
12597         * wid-edit.el (widget-text-keymap): Doc fix.
12599 2000-12-06  Andrew Innes  <andrewi@gnu.org>
12601         * makefile.w32-in (lisp): Set to an absolute directory, namely
12602         $(CURDIR).
12604 2000-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
12606         * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
12607         read generated-autoload-file, and set buffer-file-coding-system to
12608         raw-text-unix after reading the file.
12610         * international/mule-conf.el (file-coding-system-alist):
12611         Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
12613 2000-12-06  Gerd Moellmann  <gerd@gnu.org>
12615         * replace.el (occur): Make line-number-width 1 smaller for the
12616         colon following the line number.
12618         * startup.el (fancy-splash-text, command-line-1):
12619         Use `File' for the menu name instead of `Files'.
12621         * tmm.el: Update copyright.
12623         * cus-start.el: Add entry for even-window-heights.
12625 2000-12-06  Miles Bader  <miles@gnu.org>
12627         * faces.el (frame-set-background-mode): Avoid stomping on
12628         locally modified faces.
12630 2000-12-06  Kenichi Handa  <handa@etl.go.jp>
12632         * international/fontset.el: Correct the font registries for
12633         japanese-jisx0213-1 and japanese-jisx0213-2.
12635 2000-12-05  Gerd Moellmann  <gerd@gnu.org>
12637         * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
12639         * iswitchb.el: Update customization commentary.
12641 2000-12-05  Rob Riepel  <riepel@Stanford.EDU>
12643         * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
12644         (tpu-search-highlight): Fixed comparison of overlay end positions.
12645         (tpu-trim-line-ends): Implemented trimming logic locally.
12647         * emulation/tpu-extras.el (tpu-write-file-hook)
12648         (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
12650 2000-12-05  Kenichi Handa  <handa@etl.go.jp>
12652         * language/chinese.el (chinese-iso-8bit): Change mime-charset name
12653         to cn-gb.
12654         (cn-gb, gb2312): New aliases for chinese-iso-8bit.
12656 2000-12-04  Dave Love  <fx@gnu.org>
12658         * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
12660 2000-12-04  Gerd Moellmann  <gerd@gnu.org>
12662         * mail/rmailsum.el (rmail-summary-expunge)
12663         (rmail-summary-expunge-and-save): Ask for confirmation with
12664         rmail-expunge-confirmed.
12666         * mail/rmail.el (rmail-expunge-confirmed): New function.
12667         (rmail-expunge): Use it.
12669 2000-12-04  Philippe Waroquiers  <wao@gull.tact.cfmu.eurocontrol.be>
12671         * progmodes/etags.el (tag-partial-file-name-match-p): New function.
12672         (etags-recognize-tags-table, find-tag-in-order):
12673         New functionality: interpret file names as tags.
12675 2000-12-04  Eli Zaretskii  <eliz@is.elta.co.il>
12677         * info.el (Info-scroll-prefer-subnodes): New defcustom.
12678         (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
12679         the first subnode until the bottom of the current node is visible.
12681 2000-12-04  Gerd Moellmann  <gerd@gnu.org>
12683         * format.el (format-decode): Don't change buffer's undo list.
12685 2000-12-04  Kenichi Handa  <handa@etl.go.jp>
12687         * faces.el (face-font-registry-alternatives): Add entries for CJK
12688         fonts.  Doc-string adjusted for the actual usage of this data.
12690         * international/fontset.el: Change the font registries for CJK
12691         fonts in the default fontset.  Don't append '*' to registries.
12693 2000-12-03  Stefan Monnier  <monnier@cs.yale.edu>
12695         * emacs-lisp/easy-mmode.el (define-derived-mode)
12696         (easy-mmode-derived-mode-p): Remove (moved to derived.el).
12698         * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
12699         (derived-mode-p): New function.
12700         (derived-mode-make-docstring): Add `docstring' argument.
12701         Use it if available and complete it if necessary.
12703 2000-12-03  Andreas Schwab  <schwab@suse.de>
12705         * type-break.el (type-break): Don't make parent of itself.
12707 2000-12-03  Miles Bader  <miles@gnu.org>
12709         * simple.el (delete-trailing-whitespace): Don't delete newlines too.
12711 2000-12-02  Stefan Monnier  <monnier@cs.yale.edu>
12713         * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
12714         (tex-main-file, tex-file): Simplify.
12715         (tex-generate-zap-file-name): Use subst-char-in-string.
12716         (tex-strip-dots): Remove.
12718         * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
12720         * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
12721         to check if the match succeeded.
12723 2000-12-02  Gerd Moellmann  <gerd@gnu.org>
12725         * startup.el (use-fancy-splash-screens-p): New function.
12726         (command-line-1): Use it to determine whether or not to use
12727         a fancy splash screen.
12729 2000-12-02  Andreas Schwab  <schwab@suse.de>
12731         * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
12733 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
12735         * international/mule.el (make-char): Fix last change.
12737         * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
12738         New defcustoms.
12739         (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
12740         autoloading tex-mode; instead, do the same manually.
12741         Use texinfo-open-quote and texinfo-close-quote.  Insert literal quote
12742         with numeric argument.  Docstring fix.
12743         (toplevel): Require cl when compiling.
12745         * international/mule.el (make-char): Doc fix.
12747 2000-12-02  Jason Rumney  <jasonr@gnu.org>
12749         * term/w32-win.el (x-select-enable-clipboard): Customize (as per
12750         the Emacs Lisp manual)
12752 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
12754         * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
12756         * term/pc-win.el (x-select-enable-clipboard): Customize (as per
12757         the Emacs Lisp manual).
12759 2000-12-02  Gerd Moellmann  <gerd@gnu.org>
12761         * simple.el (next-line-add-newlines): Change default to nil.
12763 2000-12-01  Eli Zaretskii  <eliz@is.elta.co.il>
12765         * files.el (revert-buffer, recover-file):
12766         Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
12768 2000-12-01  Gerd Moellmann  <gerd@gnu.org>
12770         * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12772 2000-12-01  Miles Bader  <miles@gnu.org>
12774         * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
12776 2000-12-01  Kenichi Handa  <handa@etl.go.jp>
12778         * international/mule-diag.el (describe-char-after): Fix typo.
12779         (describe-character-set, non-iso-charset-alist): Fix typo.
12781 2000-12-01  Miles Bader  <miles@gnu.org>
12783         * image-file.el (image-file-name-regexp): Automatically add
12784         upper-case variants of each filename extension in
12785         `image-file-name-extensions', since they seem to be common.
12787         * simple.el (minibuffer-contents)
12788         (minibuffer-contents-no-properties, delete-minibuffer-contents):
12789         New functions.
12790         * filecache.el (file-cache-directory-name)
12791         (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
12793 2000-12-01  Milan Zamazal  <Milan.Zamazal@qbizm.com>
12795         * filecache.el (file-cache-minibuffer-complete): Don't try to
12796         delete the minibuffer prompt.
12798 2000-11-30  Dave Love  <fx@gnu.org>
12800         * cus-start.el: Fix read-buffer-function type.
12802 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
12804         * md5.el: Removed.  There's a built-in function, now.
12806 2000-11-30  Markus Rost  <rost@math.ohio-state.edu>
12808         * mail/rmail.el (rmail-set-message-counters): Don't use "D"
12809         as dummy 0-th char of rmail-deleted-vector.
12811 2000-11-30  Eli Zaretskii  <eliz@is.elta.co.il>
12813         * ps-print.el (ps-end-job): Bind case-fold-search only after
12814         switching to ps-spool-buffer.
12816 2000-11-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
12818         * ps-print.el: Line number font customization.  PostScript: Lines and
12819         PageCount are initialized on each page.  Doc Fix.
12820         (ps-print-version): New version number (6.3.2).
12821         (ps-lpr-switches, ps-font-info-database, ps-font-size)
12822         (ps-header-font-size, ps-header-title-font-size, ps-left-header)
12823         (ps-right-header): Customization fix.
12824         (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
12825         Fix code.
12826         (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
12827         New vars.
12829 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
12831         * bs.el: Fix typos and spelling errors.
12832         (bs-appearance) <defgroup>: Renamed from bs-appearence.
12833         (bs-configuration): Doc fix.
12835         * bs.el: Undo mistaken change of 2000-11-28.  Update copyright.
12837 2000-11-30  Rob Riepel  <riepel@Stanford.EDU>
12839         * emulation/tpu-edt.el (tpu-version): New version.
12840         (tpu-search-overlay, tpu-replace-overlay): New initial range.
12841         (tpu-original-mode-line): Variable deleted.
12842         (tpu-mark-flag): New initial value.
12843         (tpu-set-mode-line): Don't redefine mode-line-format.
12844         Add tpu-mark-flag to minor-mode-alist.
12845         (tpu-update-mode-line): New mark flag logic.
12846         (tpu-get): Use find-file-wildcards.
12847         (tpu-search-highlight): Move overlay less, reset overlay properly.
12848         (tpu-unselect): Deactivate mark.
12849         (tpu-lm-replace): Reset overlay properly.
12850         (tpu-forward-line): Use forward-visible-line.
12851         (tpu-edt-on): Set transient mark mode.  ispell autoloads deleted.
12853         * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
12855 2000-11-30  Per Abrahamsen  <abraham@dina.kvl.dk>
12857         * cus-edit.el (custom-face-value-create): Always emphasize tag.
12859 2000-11-30  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
12861         * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
12862         and skip whitespace and newlines.
12864 2000-11-30  Stefan Monnier  <monnier@cs.yale.edu>
12866         * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
12868 2000-11-29  Gerd Moellmann  <gerd@gnu.org>
12870         * help.el (describe-function-1): Regexp-quote function name
12871         when used as part of a regexp.
12873         * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
12874         Use face-attribute instead of face-foreground and face-background.
12875         (tool-bar-add-item): Likewise, and handle unspecified colors.
12877         * enriched.el (enriched-face-ans): Use face-attribute instead
12878         of face-foreground and face-background.
12880         * faces.el (face-foreground, face-background, face-stipple):
12881         Return nil if attribute is unspecified, for backward compatibility.
12883         * files.el (auto-mode-alist): Add an entry for antlr-mode.
12885         * play/5x5.el: Remove version info.
12887         * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
12889         * frame.el (blink-cursor-mode): Doc fix.
12891 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
12893         * antlr-mode.el: New commands to run ANTLR from within Emacs and
12894         to create Makefile rules.
12895         (antlr-tool-command): New user option.
12896         (antlr-ask-about-save): New user option.
12897         (antlr-makefile-specification): New user option.
12898         (antlr-file-formats-alist): New variable.
12899         (antlr-special-file-formats): New variable.
12900         (antlr-unknown-file-formats): New user option.
12901         (antlr-help-unknown-file-text): New variable.
12902         (antlr-help-rules-intro): New variable.
12903         (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
12904         (antlr-mode-menu): Add entries.
12905         (antlr-file-dependencies): New function.
12906         (antlr-directory-dependencies): New function.
12907         (antlr-superclasses-glibs): New function.
12908         (antlr-run-tool): New command.
12909         (antlr-makefile-insert-variable): New function.
12910         (antlr-insert-makefile-rules): New function.
12911         (antlr-show-makefile-rules): New command.
12913         * antlr-mode.el: More Emacs/XEmacs stuff.
12914         (antlr-no-action-keywords): New constant with value nil.
12915         (antlr-font-lock-keywords-alist): Use it.  Old value would break
12916         syntax highlighting in Emacs-21.0.
12917         (antlr-default-directory): Emacs/XEmacs dependend function.
12918         (antlr-read-shell-command): Ditto.
12919         (antlr-with-displaying-help-buffer): Ditto.
12921 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
12923         * antlr-mode.el: imenu, parsing and highlighting changes.
12924         (antlr-imenu-create-index-function): Don't create extra submenus
12925         for definitions in different grammar classes.  It is not necessary
12926         for the menu and would make command `imenu' awkward to use.
12927         (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
12928         header actions and more than one.
12929         (antlr-font-lock-tokendef-face): Changed color.
12930         (antlr-font-lock-tokenref-face): Changed color.
12931         (antlr-font-lock-additional-keywords): Also highlight lowercase.
12932         (antlr-mode-syntax-table): New variable.
12933         (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
12934         (antlr-with-syntax-table): Don't copy syntax table.
12936 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
12938         * antlr-mode.el: Minor changes: language setting.
12939         (antlr-language-alist): The value for file option "language" can
12940         be both an identifier and a string.
12941         Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
12942         (antlr-language-limit-n-regexp): Change accordingly.
12944 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
12946         * antlr-mode.el: Minor changes: tabs, hiding.
12947         (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
12948         (antlr-action-visibility): Also allow value nil to also hide the
12949         braces.  Renamed from `antlr-tiny-action-length'.
12950         Suggested by Jay@aol.com.
12951         (antlr-hide-actions): Change accordingly.  Hide line if completely
12952         hidden action is on a line of its own.
12954 2000-11-29  Stefan Monnier  <monnier@cs.yale.edu>
12956         * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
12958         * sort.el (sort-columns): Don't concat strings with numbers.
12960 2000-11-29  Dave Love  <fx@gnu.org>
12962         * cus-edit.el (face): Fix :format.
12964         * mail/feedmail.el: Require smtpmail when compiling.
12965         (mail-do-fcc): Autoload.
12966         (feedmail) <defgroup>: Fix :link.
12967         (feedmail-nuke-body-in-fcc): Fix :type.
12968         (feedmail-send-it): Add autoload cookie.
12970 2000-11-29  Stefan Monnier  <monnier@cs.yale.edu>
12972         * newcomment.el (comment-indent): Save excursion around call to
12973         comment-indent-function.
12975 2000-11-29  Miles Bader  <miles@gnu.org>
12977         * subr.el (member-ignore-case): Return the tail of the list who's
12978         car matches, like `member', not the matching element itself.
12980 2000-11-29  Kenichi Handa  <handa@etl.go.jp>
12982         * xml.el (xml-parse-tag): Fix finding opening tag.  A tag name
12983         should not contain `\n'.
12985 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
12987         * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
12989         * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
12991         * dired-aux.el (dired-do-create-files): Construct default file
12992         name for dired-mark-read-file-name so that when the user enters
12993         just RET, the target file will end up in the target directory.
12995         * abbrev.el (prepare-abbrev-list-buffer): Get the value of
12996         local-abbrev-table before changing buffers because it might
12997         have a buffer-local binding.
12999 2000-11-28  Miles Bader  <miles@gnu.org>
13001         * simple.el (delete-horizontal-space): Handle fields more generally.
13003 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
13005         * simple.el (delete-horizontal-space): Handle minibuffer prompt.
13007 2000-11-28  Dave Love  <fx@gnu.org>
13009         * progmodes/ps-mode.el (ps-mode): Set comment-start and
13010         comment-start-skip locally.
13012         * progmodes/fortran.el (fortran-mode): Don't set
13013         fortran-comment-line-start-skip.  Set comment-start to
13014         fortran-comment-line-start.
13015         (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
13016         (fortran-comment-line-start-skip): Simplify slightly.
13018 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
13020         * play/5x5.el: Remove RCS keyword.
13022         * bs.el: Mistaken commit, undone 2000-11-30.
13024 2000-11-28  Milan Zamazal  <pdm@freesoft.cz>
13026         * textmodes/tildify.el (tildify-string-alist):
13027         Add `plain-tex-mode' here.
13029 2000-11-28  Colin Walters  <walters@cis.ohio-state.edu>
13031         * chistory.el (Command-history-setup): Remove extraneous `keymap'
13032         reference.
13034 2000-11-28  Miles Bader  <miles@gnu.org>
13036         * cus-face.el (custom-face-attributes): Add post-filter function
13037         for :box.  Make pre-filter function for :box handle all cases.
13039         * wid-edit.el (widget-choose): Make sure pop-up window is large
13040         enough to display all the choices, as there's no way to scroll it.
13042 2000-11-28  Kenichi Handa  <handa@etl.go.jp>
13044         * international/mule-conf.el: Make the coding system no-conversion
13045         safe for all characters.
13047 2000-11-27  Dave Love  <fx@gnu.org>
13049         * net/ldap.el (ldap) <defgroup>: Add :version.
13051         * tooltip.el (tooltip-use-echo-area): Doc fix.
13053         * cus-start.el <minibuffer-prompt-properties>: Add version.
13054         <read-buffer-function>: Add.
13056         * apropos.el (apropos-print): Add help-echo to active text.
13058         * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
13060 2000-11-27  Gerd Moellmann  <gerd@gnu.org>
13062         * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
13063         type, group and version.
13065 2000-11-27  Eli Zaretskii  <eliz@is.elta.co.il>
13067         * select.el (x-get-selection): Docstring fix.
13069 2000-11-27  Dave Pearson <davep@hagbard.demon.co.uk>
13071         * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
13073 2000-11-27  Andrew Innes  <andrewi@gnu.org>
13075         * makefile.nt (.SUFFIXES): Add .SUFFIXES.
13077         * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
13079 2000-11-27  Miles Bader  <miles@gnu.org>
13081         * dired.el (dired-get-filename): Return filename verbatim if
13082         LOCALP is `verbatim'.
13083         * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
13084         `verbatim' so that we don't inadvertently delete a non-existant
13085         directory name.
13087 2000-11-27  Kenichi Handa  <handa@etl.go.jp>
13089         * international/characters.el: Specify cases and syntaxes for
13090         mule-unicode-0100-24ff.
13092 2000-11-27  Gerd Moellmann  <gerd@gnu.org>
13094         * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
13095         that foreground and/or background colors of the face `tool-bar'
13096         are unspecified.
13098 2000-11-27  Miles Bader  <miles@gnu.org>
13100         * wid-edit.el (widget-field-buffer, widget-field-start)
13101         (widget-field-end): Handle widget field `pseudo-overlays'.
13102         (widget-field-value-delete): Delete WIDGET from `widget-field-new'
13103         if it's there instead of in `widget-field-list'.
13105         * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
13106         (help-make-xrefs): Delete extraneous newlines at the end of the
13107         docstring.
13109 2000-11-25  Jason Rumney  <jasonr@gnu.org>
13111         * startup.el (command-line): Call set-locale-environment after
13112         Window System init file is read, as it can result in a call to
13113         redraw-frame.
13115 2000-11-25  Eli Zaretskii  <eliz@is.elta.co.il>
13117         * simple.el (shell-command): Mention the effect of the prefix
13118         argument in the doc string.
13120 2000-11-25  Miles Bader  <miles@gnu.org>
13122         * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
13124         * wid-edit.el (widget-field-value-delete): Don't try to delete
13125         overlay when it's the `pseudo-overlay' that exists at some points.
13127 2000-11-24  Jason Rumney  <jasonr@gnu.org>
13129         * international/mule-cmds.el (locale-language-names): Add "jp" as
13130         a non-standard alternative for Japanese.
13132 2000-11-24  Andre Spiegel  <spiegel@gnu.org>
13134         * vc-hooks.el: Require 'cl during compilation.
13136 2000-11-24  Gerd Moellmann  <gerd@gnu.org>
13138         * faces.el (face-set-after-frame-default): Let face attributes
13139         specified for new frames override frame parameters.
13141         * startup.el (command-line): Fix computation of the source file
13142         for user-init-file when user-init-file is a compiled file.
13144 2000-11-24  Miles Bader  <miles@gnu.org>
13146         * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
13147         (custom-post-filter-face-spec): New functions.
13148         (custom-face-set, custom-face-value-create): Filter the face spec
13149         before and after customization.
13150         (custom-face-set): If VALUE specifies a null face, pass a
13151         non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
13152         * cus-face.el (custom-face-attributes): Remove SET and GET
13153         functions.  Add some IN-FILTER and OUT-FILTER functions in the few
13154         cases they're needed.
13156         * wid-edit.el (checkbox): Add a small `X' to the :on-glyph, so
13157         that it's distinguishable from the :off-glyph on dark-background
13158         displays.  Set its background color too.
13160         * cus-start.el (all): Restore entry for `mode-line-inverse-video',
13161         so that people can easily turn it off.
13163 2000-11-24  Michael Kifer  <kifer@cs.sunysb.edu>
13165         * ediff-diff.el: Moved variables around to have it compile under NT.
13167         * ediff-help.el (ediff-use-long-help-message): Made it customizable.
13169         * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
13171         * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
13172         redundant skip-small-frames test.
13174         * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
13175         (viper-downgrade-to-insert): Protect against errors in hooks.
13177         * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
13178         (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
13179         (viper-restore-cursor-type,viper-set-insert-cursor-type):
13180         New functions.
13182         * viper-util.el (viper-memq-char): Bug fixes.
13184         * viper.el (viper-mode): Fix cursor handling.
13186 2000-11-24  Kenichi Handa  <handa@etl.go.jp>
13188         * international/mule-diag.el (list-iso-charset-chars):
13189         For two-byte charset, fix the `while' condition.
13190         (list-non-iso-charset-chars): Fix the `while' condition.
13192 2000-11-23  Stefan Monnier  <monnier@cs.yale.edu>
13194         * subr.el (add-hook, remove-hook): Don't call make-local-hook
13195         if the variable is make-variable-buffer-local.
13197         * progmodes/ada-stmt.el (ada-template-map):
13198         Initialize and bind it to C-c t in ada-mode-map.
13199         (ada-stmt-mode-hook): New function extracted from old code.
13200         Only change the buffer-local side of skeleton-*.
13201         (ada-mode-hook): Use it.
13203 2000-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
13205         * iswitchb.el (iswitchb-minibuf-depth): New variable.
13206         (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
13207         we expect to be returned by minibuffer-depth once we prompt the
13208         user in the minibuffer.
13209         (iswitchb-entryfn-p): If minibuffer-depth returns the same value
13210         as recorded in iswitchb-minibuf-depth, return non-nil.
13212 2000-11-23  Eli Zaretskii <eliz@is.elta.co.il>
13214         * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
13215         (hscroll-window-maybe): Docstring fix.
13217 2000-11-23  Dave Love  <fx@gnu.org>
13219         * rect.el (string-rectangle): Don't test delete-selection-mode.
13221 2000-11-23  Gerd Moellmann  <gerd@gnu.org>
13223         * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
13224         is in the tool bar.
13226         * dired-aux.el (dired-add-entry): Don't call dired-get-filename
13227         with `no-dir'; we want the directory part to be able to remove it.
13229 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
13231         * textmodes/outline.el (outline-flag-region):
13232         Don't bind inhibit-read-only since we don't modify the buffer.
13233         (outline-isearch-open-invisible): Don't jump to overlay-start
13234         since we're trying to unhide text around point.
13235         (outline-discard-overlays): Use dolist.
13237         * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
13239 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
13241         * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
13243 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
13245         * textmodes/tex-mode.el (tex-font-lock-keywords-1):
13246         Fix ARG regexp to skip quoted braces.
13247         (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
13248         Remove `bf' and `it' from `bold' and `italic' (they were wrong and
13249         are (correctly) handled separately).
13250         Remove `caption' and `footnote' from `citations': they contain text.
13251         Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
13252         (latex-skeleton-end-hook): New function.
13253         (latex-mode): Use it.
13254         (tex-start-tex-marker): Remove.
13255         (tex-send-tex-command): Don't set tex-start-tex-marker.
13256         (tex-error-parse-syntax-table): New var.
13257         (tex-compilation-parse-errors): Use it.
13258         Ignore tex-start-tex-marker.  Don't bother with marker-position.
13259         (tex-validate-buffer): Don't bother with marker-position.
13261         * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
13262         (flyspell-generic-progmode-verify): Use it.
13264 2000-11-22  Sam Steingold  <sds@gnu.org>
13266         * simple.el (delete-trailing-whitespace): New interactive function.
13268         * progmodes/ada-mode.el (ada-mode): Use it instead of
13269         `ada-remove-trailing-spaces'.
13270         (ada-remove-trailing-spaces): Removed.
13272         * textmodes/two-column.el (2C-merge): Recommend it in the doc.
13274         * textmodes/picture.el (picture-clean): Removed.
13275         (picture-mode-exit): Call it instead of `picture-clean'.
13277 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
13279         * frame.el (show-cursor-in-non-selected-windows): Doc fix.
13281         * hi-lock.el (hi-lock-refontify): Don't call non-existent
13282         jit-lock-fontify-buffer; it should anyway be unneccessary to
13283         do anything special when jit-lock is active.
13284         (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
13286 2000-11-22  Dave Love  <fx@gnu.org>
13288         * calendar/todo-mode.el (todo-top-priorities): Use
13289         todo-tmp-buffer-name.  From Milan Zamazal <Milan.Zamazal@qbizm.com>.
13291         * language/chinese.el, language/cyrillic.el:
13292         * language/devanagari.el, language/ethiopic.el, language/greek.el:
13293         * language/hebrew.el, language/indian.el, language/japanese.el:
13294         * language/korean.el, language/lao.el, language/misc-lang.el:
13295         * language/thai.el, language/tibetan.el, language/vietnamese.el:
13296         Use provide.
13298         * cus-edit.el (custom-buffer-create-internal): Save some consing.
13299         (custom-variable-set): Improve validation error mesage.
13301         * rect.el (string-rectangle): Revert last change.
13302         (string-rectangle-line): New arg DELETE.
13303         (string-rectangle): Check delete-selection-mode.
13305         * emacs-lisp/edebug.el (edebug-version)
13306         (edebug-maintainer-address): Deleted.
13307         (edebug-submit-bug-report): Just alias to report-emacs-bug.
13308         (edebug-read-function): Account for other `'#' read forms.
13309         (edebug-mode-menus): Make some items toggles.
13310         (edebug-outside-unread-command-event, unread-command-event):
13311         Remove these to avoid warnings.
13313 2000-11-22  David Ponce  <david@dponce.com>
13315         * recentf.el (recentf-menu-items-for-commands)
13316         (recentf-make-menu-items, recentf-make-menu-item)
13317         (recentf-filter-changer): Added :help and :active menu-item properties.
13319         (recentf-build-dir-rules, recentf-dump-variable)
13320         (recentf-edit-list, recentf-open-files-item)
13321         (recentf-open-files): Replaced unnecessary `mapcar' with new
13322         built-in `mapc'.
13324 2000-11-23  Miles Bader  <miles@gnu.org>
13326         * faces.el (menu): Make inverse-video on ttys too.
13328 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
13330         * simple.el (comment-line-break-function): Use the new name
13331         indent-new-comment-line -> comment-indent-new-line.
13332         (clone-indirect-buffer): Don't ignore NORECORD.
13333         (next-completion): Properly handle the case where items are adjacent.
13335         * mouse.el (popup-menu): Stupid typo.
13337 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
13339         * emacs-lisp/authors.el: Remove autoload cookies, add author,
13340         maintainer, keywords tags.
13342         * rect.el (replace-rectangle): Don't call string-rectangle-line
13343         with too many arguments.
13345 2000-11-22  Andre Spiegel  <spiegel@gnu.org>
13347         * ediff-util.el (ediff-file-checked-out-p)
13348         (ediff-file-checked-in-p): Call vc-state instead of
13349         vc-locking-user, which no longer exists.
13351         * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
13353 2000-11-22  Dave Love  <fx@gnu.org>
13355         * md5.el (md5): Provide.
13356         (md5): Fix error call.
13358 2000-11-22  Miles Bader  <miles@gnu.org>
13360         * textmodes/refill.el (refill-adjust-ignorable-overlay)
13361         (refill-fill-paragraph-at): Remove debugging code.
13363         * calendar/calendar.el (generate-calendar-window): When we don't
13364         call `fit-window-to-buffer', make sure the top line is fully visible.
13366         * image-file.el (insert-image-file): Don't make `read-only'
13367         property rear-nonsticky.
13369         * isearch.el (isearch-original-minibuffer-message-timeout): New var.
13370         (isearch-mode): Set `minibuffer-message-timeout' to nil, after
13371         stashing away its original value.
13372         (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
13373         in the recursive edit.
13374         Bind `isearch-original-minibuffer-message-timeout' to protect it.
13375         (isearch-done): Restore `minibuffer-message-timeout'.
13377         * cus-start.el: Remove entry for `mode-line-inverse-video'.
13379 2000-11-21  Stefan Monnier  <monnier@cs.yale.edu>
13381         * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
13383         * find-lisp.el (find-lisp-find-files-internal):
13384         Use dolist, when and file-name-as-directory.
13386         * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
13387         (define-derived-mode, define-minor-mode): Add specs.
13389         * window.el: General comment and spacing fixes.
13390         (save-selected-window): Use backquotes.
13391         (window-safely-shrinkable-p): New function.
13392         (shrink-window-if-larger-than-buffer): Use it.
13394         * subr.el (make-local-hook): Docstring fix.
13396         * shell.el (shell-mode): Use define-derived-mode.
13398         * newcomment.el (comment-indent): Insert comment before calling
13399         comment-indent-function.  Don't insert in column 0.
13400         (comment-dwim): Indent before inserting comment.
13402         * isearch.el (isearch-mode-map): Fix docstring.  Init in defvar.
13403         (minibuffer-local-isearch-map): Init in defvar.  Use inheritance.
13404         (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
13405         Use mapc rather than map.
13407         * files.el (find-buffer-visiting): Compare all attributes before
13408         declaring two files identical (rather than just their inode-no).
13409         (auto-mode-alist): Use \' rather than $.
13411         * which-func.el: Update maintainer line.
13413         * pcvs.el (uniquify-buffer-file-name): Remove advice.
13414         * uniquify.el (uniquify-list-buffers-directory-modes): New var.
13415         (uniquify-buffer-file-name): Use it.
13417 2000-11-22  Miles Bader  <miles@gnu.org>
13419         * cus-start.el: Add entry for `minibuffer-prompt-properties'.
13420         * simple.el (minibuffer-avoid-prompt): New function.
13422 2000-11-21  Gerd Moellmann  <gerd@gnu.org>
13424         * Makefile.in (.SUFFIXES): Add .SUFFIXES.
13426 2000-11-21  Miles Bader  <miles@gnu.org>
13428         * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
13429         inclusion of `track-mouse'.
13431         * textmodes/refill.el (refill-ignorable-overlay): New variable.
13432         (refill-adjust-ignorable-overlay): New function.
13433         (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
13434         only the paragraph's tail if possible.
13435         Update `refill-ignorable-overlay'.
13436         (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
13438         * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13439         point inside the fill-prefix.
13441         * textmodes/refill.el (refill-post-command-function): Don't reset
13442         refill-doit in the case where a self-insertion command doesn't
13443         case a refill.  Use `refill-fill-paragraph-at', getting position
13444         from `refill-doit'.
13445         (refill-after-change-function): Set `refill-doit' to END.
13446         (refill-fill-paragraph-at): New function, mostly from old
13447         refill-fill-paragraph.
13448         (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
13449         (refill-pre-command-function): New function.
13450         (refill-mode): Add it to `pre-command-hook'.
13452 2000-11-20  Gerd Moellmann  <gerd@gnu.org>
13454         * textmodes/artist.el (artist-mode): Fix autoload cookie.
13456         * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
13457         javadoc tags.
13459 2000-11-20  Andre Spiegel  <spiegel@gnu.org>
13461         * vc.el, vc-hooks.el: Undo prev change (moved functions back to
13462         vc.el).
13464         * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
13465         require vc.
13467         * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
13468         checkouts.
13470 2000-11-20  Dave Love  <fx@gnu.org>
13472         * Makefile.in (DONTCOMPILE): Omit bindings.el.
13474 2000-11-20  Eli Barzilay <eli@www.barzilay.org>
13476         * calculator.el (calculator-paste): Use `if' instead of `and'
13477         and `or'.
13478         (calculator-help): Don't use electric-describe-mode for XEmacs.
13480 2000-11-19  Gerd Moellmann  <gerd@gnu.org>
13482         * info.el (info-menu-5): Doc fix.
13484         * textmodes/artist.el: New file.
13486 2000-11-19  Andre Spiegel  <spiegel@gnu.org>
13488         * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
13489         and differentiate according to checkout model.
13490         (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
13491         since this function is only concerned with master state.
13493         * vc-hooks.el (vc-workfile-unchanged-p)
13494         (vc-default-workfile-unchanged-p): Moved here from vc.el.
13496         * vc.el (vc-workfile-unchanged-p)
13497         (vc-default-workfile-unchanged-p): See above.
13499 2000-11-19  Miles Bader  <miles@gnu.org>
13501         * image-file.el (insert-image-file): Make `intangible' and
13502         `read-only' properties rear-nonsticky too.
13504 2000-11-18  Gerd Moellmann  <gerd@gnu.org>
13506         * ps-print.el: Update copyright notice.
13508         * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
13509         (tooltip-show): Use the offsets.
13511         * bindings.el (mode-line-modified): Fix a typo.
13512         (mode-line-toggle-modified, mode-line-widen)
13513         (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
13515 2000-11-17  Vinicius Jose Latorre <vinicius@cpqd.com.br>
13517         * ps-print.el (toplevel): Test for find-coding-system being
13518         fboundp before calling ps-x-find-coding-system.
13520 2000-11-16  Stefan Monnier  <monnier@cs.yale.edu>
13522         * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
13523         (vc-version-backup-file): Docstring fix.
13525 2000-11-16  Gerd Moellmann  <gerd@gnu.org>
13527         * files.el (basic-save-buffer): Don't add a newline if
13528         find-file-literally is non-nil.
13529         (find-file-literally): Extend doc string.
13531         * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
13532         sort(1) with the `-f' argument.
13534 2000-11-16  Andre Spiegel  <spiegel@gnu.org>
13536         * vc.el: Updated backend documentation.
13537         (vc-default-check-headers): New function.
13539         * vc-{cvs,rcs,sccs}.el: Functions reordered.
13541         * vc.el (vc-revert-buffer): Ask for confirmation if file seems
13542         up-to-date.
13543         (vc-do-command): In the asynchronous case, output messages only if
13544         the minibuffer is not active.
13546         * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
13547         `vc-cvs-use-edit' is on.
13548         (vc-cvs-checkout): When this is used for reverting the workfile,
13549         make a backup of the original contents and revert to that in case
13550         of error.
13551         (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
13552         remote repositories.
13554         * vc.el (vc-annotate): Changed handling of prefix arg; now asks
13555         for both version and ratio in the minibuffer.
13557         * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
13558         Use vc-do-command to perform the annotation, not call-process.
13560 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
13562         * international/quail.el (quail-start-translation): Don't call
13563         `message' before reading key sequence.
13565 2000-11-16  Miles Bader  <miles@lsi.nec.co.jp>
13567         * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
13569 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
13571         * window.el (fit-window-to-buffer): Be sure to acquire at least
13572         one text line even if the buffer is empty.
13574 2000-11-16  Gerd Moellmann  <gerd@gnu.org>
13576         * net/ange-ftp.el (ange-ftp-file-writable-p)
13577         (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
13578         Bind ange-ftp-process-verbose to nil.
13580 2000-11-15  Dave Love  <fx@gnu.org>
13582         * wid-edit.el (widget-specify-field, widget-specify-button):
13583         If :help-echo is a function, set help-echo of overlay to
13584         widget-mouse-help.
13585         (widget-mouse-help): New function.
13586         (widget-echo-help): Rewritten for :help-echo functions only taking
13587         a widget arg.
13589         * net/eudc-bob.el (eudc-bob-can-display-inline-images):
13590         Use display-graphic-p.
13591         (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
13592         and that JPEG is available.
13593         (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
13595         * international/mule-cmds.el (locale-charset-language-names):
13596         Match @euro.
13598 2000-11-15  Gerd Moellmann  <gerd@gnu.org>
13600         * faces.el (face-set-after-frame-default):
13601         If `inhibit-default-face-x-resources' is bound, don't intialize the
13602         default face from X resources.
13604 2000-11-15  Eli Zaretskii  <eliz@is.elta.co.il>
13606         * Makefile.in (custom-deps, finder-data, autoloads, recompile):
13607         Don't set EMACSLOADPATH.
13609 2000-11-15  Eli Zaretskii  <eliz@is.elta.co.il>
13611         * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
13612         texinfo-insert-@url.
13613         (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
13614         (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
13616 2000-11-14  Stefan Monnier  <monnier@cs.yale.edu>
13618         * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
13619         (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
13620         (checkdoc-minor-keymap): Backward compatibility.
13621         (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
13622         (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
13623         (checkdoc-this-string-valid-engine): Be a bit more strict
13624         to avoid matching substrings of `...' quoted vars/funs.
13625         (checkdoc-defun-info): Only look for `interactive' if alone.
13626         (debug-ignored-errors): Add "arg doesn't appear in docstring".
13628         * progmodes/compile.el (grep): `tag-default' can be nil.
13630         * newcomment.el (comment-indent): Paren typo.
13632 2000-11-14  Dave Love  <fx@gnu.org>
13634         * calculator.el: New maintainer version.
13636         * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
13638         * cmuscheme.el: Doc fixes.
13639         (cmuscheme) <defgroup>: Use `scheme' as parent.
13640         (cmuscheme-program-name): Remove.  Change uses to scheme-program-name.
13642         * xscheme.el (scheme-program-name): Don't define here.
13644         * progmodes/scheme.el (scheme-program-name): New variable
13645         (originally in cmuscheme).
13647 2000-11-14  Miles Bader  <miles@gnu.org>
13649         * window.el (fit-window-to-buffer): Handle windows without mode-lines.
13650         Handle header-lines.  Don't loop forever if we can't enlarge the
13651         window anymore.  Simplify a bit.
13653 2000-11-14  Kenichi Handa  <handa@etl.go.jp>
13655         * window.el (fit-window-to-buffer): Don't check
13656         window-text-height.  Assure that the last line is fully visible.
13658         * international/quail.el (quail-show-guidance-buf):
13659         Call fit-window-to-buffer to assure the enough height of the guidance
13660         buffer.
13661         (quail-update-guidance): Avoid making the guidance buffer shorter.
13663 2000-11-14  Stefan Monnier  <monnier@cs.yale.edu>
13665         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
13666         rather than `prepend' and add an interesting comment.
13667         (tex-math-face, tex-font-lock-syntactic-face-function):
13668         New face and function to use it.
13669         (tex-define-common-keys, tex-mode-map): Use menu-item rather
13670         than `menu-enable' symbol property.
13671         (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
13672         (tex-mode): Add some latex-mode commands for auto-selection.
13673         Use tex-font-lock-syntactic-face-function.
13674         (tex-insert-quote): Simplify.
13675         (tex-shell): New mode.
13676         (tex-start-shell): Use it.
13677         (tex-shell-proc, tex-shell-buf): New functions.
13678         (tex-send-command): Use it.
13679         (tex-main-file): Fix the meaning of the new arg REALFILE.
13680         (tex-send-tex-command): New function split from `tex-start-tex'.
13681         Set compilation-last-buffer and compilation-parsing-end.
13683         * newcomment.el (comment-indent-default): Stick \s<\s< to the left
13684         when it follows non-comment text on the line.
13686         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13687         Set font-lock-defaults.
13688         (lisp-mode-shared-map): Init inside the defvar.
13689         (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
13690         Use define-derived-mode.
13692 2000-11-14  Miles Bader  <miles@lsi.nec.co.jp>
13694         * faces.el (header-line): Use `:box nil' for color/gs displays too.
13696 2000-11-14  Gerd Moellmann  <gerd@gnu.org>
13698         * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
13699         Don't recursively optimize body because that can lead to infinite
13700         recursion; see comment there.
13702 2000-11-13  Eli Zaretskii  <eliz@is.elta.co.il>
13704         * faces.el (face-spec-set-match-display): Revert the change from
13705         2000-10-24.  Add a FIXME for after v21.1.
13707 2000-11-13  Miles Bader  <miles@gnu.org>
13709         * textmodes/fill.el (skip-line-prefix): New function.
13710         (fill-region-as-paragraph, fill-region):  Return the fill-prefix.
13711         (fill-paragraph): Don't leave point inside the fill-prefix.
13712         * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
13713         point inside the fill-prefix.
13715 2000-11-13  Miles Bader  <miles@lsi.nec.co.jp>
13717         * calendar/calendar.el (generate-calendar-window):
13718         Use `fit-window-to-buffer'.
13720 2000-11-12  Stefan Monnier  <monnier@cs.yale.edu>
13722         * gud.el (gud-minor-mode): New var.
13723         (gud-symbol, gud-val): New functions.
13724         (gud-find-file): Copy gud-minor-mode to the new buffer.
13725         (gud-menu-map): Include entries for commands that are not always
13726         available, using :enable to (de)activate them.
13727         (gud-minor-mode-map): New map.  Add it to minor-mode-map-alist.
13728         (gud-mode-map): New map.
13729         (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
13730         (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
13731         Don't set up gud's menu (it's done by the minor-mode).
13732         (gud-minibuffer-local-map): New.
13733         Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
13734         (gud-query-cmdline): New function.
13735         (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it.  Set gud-minor-mode.
13736         (gud-mode): Use define-derived-mode.
13737         Don't set up gud's menu (it's done by the minor-mode).
13738         (gud-chop-words): Remove.
13739         (gud-common-init): Use split-string instead.
13740         (gud-new-keymap, gud-make-debug-menu): Eradicate.
13742         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
13743         Add keyword arg :name.
13745         * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
13746         (diff-count-matches, diff-split-hunk): New functions.
13747         (diff-mode-map): Bind C-c C-s to diff-split-hunk.
13749         * pcvs-info.el (cvs-fi-conflict-face): New var.
13751         * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
13752         Make it into a simple syntax-table, shared among all submodes.
13753         (sh-heredoc-face): Re-introduce.
13754         (sh-font-lock-syntactic-face-function): New function.
13755         (sh-mode): Use it.  Also use define-derived-mode.
13756         Remove old bogus setting of indent-region-function.
13757         (sh-set-shell): Don't set the syntax-table any more.
13758         (sh-mode-syntax-table) <defun>: Remove.
13760 2000-11-12  Miles Bader  <miles@gnu.org>
13762         * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
13763         message if interactive.
13765 2000-11-12  Dave Love  <fx@gnu.org>
13767         * mail/feedmail.el: Fix header,
13768         (feedmail) <defgroup>: Add :link.
13770         * view.el: Use local-map property, not keymap on mode-line string.
13772         * scroll-all.el (scroll-all-mode): Customize variable.
13773         Add autoload cookie to function.
13775         * lazy-lock.el: Remove compatibility code.
13777         * finder.el (finder-known-keywords): Add `files', remove `vms'.
13778         (finder-help-echo): New variable.
13779         (finder-mouse-face-on-line): Add help-echo stuff.
13780         (finder-list-keywords, finder-list-matches): Use mapc.
13782         * faces.el (face-font-registry-alternatives): Add :version.
13784         * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
13785         tags-table-list.
13787         * net/browse-url.el (browse-url-browser-function): Update :version.
13789         * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
13790         (mail-mode): Use [:alnum:] in some regexps.
13792 2000-11-10  Dave Love  <fx@gnu.org>
13794         * ediff.el (ediff-regions-internal, ediff-documentation):
13795         * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
13796         fundamental mode.
13798         * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
13799         buffer into fundamental mode.
13800         (ediff-set-difference): Use copy-sequence if available.
13802         * ediff-ptch.el (ediff-dispatch-file-patching-job):
13803         Check ediff-patch-map non-nil.
13804         (ediff-fixup-patch-map, ediff-fixup-patch-map)
13805         (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
13806         buffer into fundamental mode.
13808         * ediff-merg.el (state-or-merge): Defvar when compiling.
13810 2000-11-10  Jason Rumney  <jasonr@gnu.org>
13812         * w32-fns.el (w32-add-charset-info): New function.
13813         (w32-charset-info-alist): Use it.
13815 2000-11-10  Gerd Moellmann  <gerd@gnu.org>
13817         * faces.el (face-font-registry-alternatives): New user-option.
13819 2000-11-10  Stefan Monnier  <monnier@cs.yale.edu>
13821         * textmodes/texinfo.el (texinfo-block-default): New var.
13822         (texinfo-insert-block): Use it.  Insert a newline if needed.
13824         * textmodes/fill.el (fill-indent-according-to-mode): New var.
13825         (fill-region-as-paragraph): Use it.
13827         * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
13828         (latex-mode): Tweak tex-*-(head|trail)er regexps.
13829         Tweak paragraph regexps to allow a leading [ \t]*.
13830         (tex-latex-block): Insert a newline if necessary.
13831         (latex-insert-item): Only insert a newline if necessary.
13832         (tex-guess-main-file): New function.
13833         (tex-main-file): Use it.  Add arg `realfile'.  Trim `.tex'.
13834         Set tex-main-file if TeX-master is provided.
13835         (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
13837 2000-11-10  Gerd Moellmann  <gerd@gnu.org>
13839         * startup.el (command-line): Set the default tooltip-mode
13840         to t for graphical displays which implement x-show-tip.
13842         * tooltip.el (tooltip-mode): Add a comment about startup.el
13843         setting the default value of this user-option.
13845 2000-11-09  Stefan Monnier  <monnier@cs.yale.edu>
13847         * font-lock.el (font-lock-*-face) <defvar>: Move.
13848         (font-lock-defaults-alist): Mark obsolete.
13849         (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
13850         (font-lock-mode): Use define-minor-mode.
13851         (font-lock-support-mode): Tweak type to default to jit-lock-mode.
13852         (font-lock-turn-off-thing-lock): Be more explicit.
13853         (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
13854         (font-lock-syntactic-face-function): New var.
13855         (font-lock-fontify-syntactically-region): Use it.
13856         (font-lock-doc-face): New.
13858         * pcvs.el (cvs-enabledp): Ignore errors.
13859         (cvs-commit-filelist): Never query.
13860         (cvs-mode-insert): Always add a terminating / in the initial prompt.
13861         (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
13862         (cvs-do-removal): Use cvs-partition rather than delete-if.
13863         Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
13864         cvs-bury-buffer.
13866         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13867         Allow `next' to jump to after the end of the last match.
13869 2000-11-09  Gerd Moellmann  <gerd@gnu.org>
13871         * simple.el (byte-compiling-files-p): New function.
13873         * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
13874         if it is there.
13876         * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
13877         nil again.
13879         * textmodes/ispell.el (ispell-library-path): Don't call
13880         check-ispell-version when byte-compiling because that starts
13881         an ispell process, and ispell might not be installed.
13882         (toplevel): Don't set up a menu when byte-compiling.
13884         * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
13885         it, so that a boundp test can be used to determine if we're
13886         currently byte-compiling.
13888 2000-11-09  Dave Love  <fx@gnu.org>
13890         * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
13892 2000-11-09  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
13894         * ps-print.el: Patch for variable initialization when spooling.
13895         Doc fix.
13896         (ps-output-list): Fun eliminated.
13897         (ps-begin-file, ps-begin-job): Code fix.
13899 2000-11-08  Dave Love  <fx@gnu.org>
13901         * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
13903 2000-11-08  Gerd Moellmann  <gerd@gnu.org>
13905         * simple.el (shell-command, display-message-or-buffer)
13906         (shell-command-on-region): Mention resize-mini-windows in the doc
13907         string.
13908         (display-message-or-buffer): Take the value of resize-mini-windows
13909         into account.
13911 2000-11-07  Gerd Moellmann  <gerd@gnu.org>
13913         * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
13915         * dired.el (dired-between-files): Add `^. find' as an alternative
13916         to the regular expression, for find-dired.
13918 2000-11-06  Stefan Monnier  <monnier@cs.yale.edu>
13920         * textmodes/texnfo-upd.el: Require texinfo.
13921         (defmacro, defgroup): Remove.
13922         (texinfo-section-to-generic-alist): Remove.
13923         Use texinfo-section-list instead (i.e. level is changed string->int).
13924         (texinfo-filter): New function.
13925         (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
13926         (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
13927         Use it.  And use regexp-opt.
13928         (texinfo-find-higher-level-node, texinfo-hierarchic-level)
13929         (texinfo-update-menu-region-beginning)
13930         (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
13931         (texinfo-update-the-node, texinfo-sequentially-update-the-node)
13932         (texinfo-update-menu-same-level-regexps): Update.
13933         (texinfo-update-node, texinfo-every-node-update)
13934         (texinfo-sequential-node-update): Remove autoload cookie.
13936         * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
13937         (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
13938         (texinfo-chapter-level-regexp): Remove.
13939         (texinfo-mode): Hard code texinfo-chapter-level-regexp.
13941 2000-11-06  Dave Love  <fx@gnu.org>
13943         * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
13945         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13946         Match defun*.
13948 2000-11-06  Kenichi Handa  <handa@etl.go.jp>
13950         * composite.el (composition-function-table): Variable declaration
13951         moved to src/composite.c.
13952         (compose-chars-after): New optional arg object.
13954 2000-11-06  Gerd Moellmann  <gerd@gnu.org>
13956         * bindings.el (mode-line-toggle-read-only)
13957         (mode-line-toggle-modified, mode-line-widen)
13958         (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
13959         (make-mode-line-mouse2-map): Rewritten.
13960         (mode-line-modified, mode-line-format, minor-mode-alist): Use new
13961         functions so that C-h k can show something with a doc string.
13963         * startup.el (fancy-splash-delay): Set to 10 seconds.
13964         (fancy-splash-max-time): New user-option.
13965         (fancy-splash-stop-time): New variable.
13966         (fancy-splash-screens): Set it.  Catch `stop-splashing'.
13967         (fancy-splash-screens-1): Throw `stop-splashing' when current
13968         time is greater than fancy-splash-stop-time.
13970 2000-11-06  Stefan Monnier  <monnier@cs.yale.edu>
13972         * vc-hooks.el (vc-insert-file): Don't assume byte==char.
13974         * pcvs.el (cvs-mode-marked): New arg `noquery'.
13975         Prompt user for a file rather than raising an error.
13976         (cvs-enabledp): Fix call to cvs-mode-marked.
13977         (cvs-insert-file): New function (extracted from cvs-mode-insert).
13978         (cvs-mode-insert): Use it.  Change the init prompt' value.
13979         (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
13981         * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
13982         Don't pass default arg to ewoc-locate.
13983         (ewoc-collect): Return result in the right order.
13985         * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
13987         * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
13988         (cvs-status-get-tags): Fix regexp.
13989         (cvs-status-trees, cvs-status-cvstrees):
13990         Combine after change hooks and don't sit-for.
13991         (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
13992         (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
13993         Use make-char rather than hard-coded cryptic data.
13994         (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
13996         * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
13998         * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
13999         (cvs-insert-strings): New function.
14001 2000-11-06  Miles Bader  <miles@lsi.nec.co.jp>
14003         * mwheel.el (mouse-wheel-scroll-amount): Renamed from
14004         `mwheel-scroll-amount'.
14005         (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
14006         (mouse-wheel-mode): Use (featurep 'xemacs) instead of
14007         string-matching against the version string.
14009 2000-11-06  Kenichi Handa  <handa@etl.go.jp>
14011         * language/thai.el ("Thai"): Set a lisp form that produces
14012         composed string in `sample-text' language info.
14014         * language/tibetan.el ("Tibetan"): Set a lisp form that produces
14015         composed string in `sample-text' language info.
14017         * international/mule-cmds.el (describe-language-environment):
14018         Eval `sample-text' data and insert the result.
14020         * international/mule-conf.el (compound-text): Define this coding
14021         system here.  Make x-ctext and ctext aliases of it.
14023         * language/european.el (compound-text, ctext): Moved to
14024         international/mule-conf.el.
14026 2000-11-05  Andrew Innes  <andrewi@gnu.org>
14028         * w32-fns.el (w32-version): New function.
14030 2000-11-05  Stefan Monnier  <monnier@cs.yale.edu>
14032         * progmodes/awk-mode.el: Update copyright.
14033         (awk-mode-abbrev-table): Remove.
14034         (awk-font-lock-keywords): Use regexp-opt.
14035         (awk-mode): Use define-derived-mode.
14037         * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
14038         when extracting a suffix.
14040 2000-11-04  Andre Spiegel  <spiegel@gnu.org>
14042         * vc-hooks.el (vc-insert-file): Rewritten.  Don't bother about
14043         auto-save-mode.
14045 2000-11-04  Jason Rumney  <jasonr@gnu.org>
14047         * language/european.el (decode-mac-roman): Test against r1 not r0.
14049 2000-11-03  Stefan Monnier  <monnier@cs.yale.edu>
14051         * progmodes/icon.el (icon-mode-map): Don't rebind \t.
14052         (icon-mode): Define indent-line-function.
14053         (icon-comment-indent): Simplify.
14054         (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
14056         * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
14058         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
14059         Bind change-log-default-mode to defeat the caching done on it.
14060         Don't bother saving excursion any more.
14062         * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
14064         * frame.el (after-setting-font-hook): Rename hooks -> hook.
14065         (set-frame-font): Use the new name (and the old for compatibility).
14067         * toolbar/tool-bar.el (tool-bar-mode):
14068         * time.el (display-time-mode):
14069         * recentf.el (recentf-mode):
14070         * paren.el (show-paren-mode):
14071         * mwheel.el (mouse-wheel-mode):
14072         * msb.el (msb-mode):
14073         * jka-compr.el (auto-compression-mode):
14074         * image-file.el (auto-image-file-mode):
14075         * hl-line.el (hl-line-mode):
14076         * delsel.el (delete-selection-mode):
14077         * autoinsert.el (auto-insert-mode):
14078         * complete.el (partial-completion-mode): Drop unneeded positional args.
14080         * info.el (Info-mode):
14081         * comint.el (comint-mode): Don't bother with make-local-hook.
14083         * log-edit.el (log-edit-menu): New menu.
14085 2000-11-03  Miles Bader  <miles@gnu.org>
14087         * wid-edit.el (widget-end-of-line): Reinstate, with a new
14088         definition, so that trailing spaces are handled properly.
14089         (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
14091 2000-11-03  Gerd Moellmann  <gerd@gnu.org>
14093         * startup.el (fancy-splash-text, fancy-splash-text): Use a single
14094         tab character.
14095         (fancy-splash-screens): Set tab-width to 20.
14097 2000-11-03  Dave Love  <fx@gnu.org>
14099         * comint.el (comint-completion-addsuffix): Fix custom type.
14101 2000-11-02  Stefan Monnier  <monnier@cs.yale.edu>
14103         * font-lock.el (font-lock-buffers): Remove.
14104         (font-lock-global-modes): Define with easy-mmode-define-global-mode.
14105         (font-lock-change-major-mode): Remove.
14106         (turn-on-font-lock-if-enabled): Only apply to the current buffer.
14107         (font-lock-default-fontify-region): Extend the multiline
14108         fontification to whole lines.
14109         (font-lock-fontify-anchored-keywords)
14110         (font-lock-fontify-keywords-region): If matching just one
14111         line (with \n) only mark the \n as multiline.
14113         * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
14114         Correctly handle the case where several :group args are supplied.
14115         Allow :extra-args.
14116         (easy-mmode-define-global-mode): Allow :extra-args.
14117         Correctly handle the case where several :group args are supplied.
14119 2000-11-02  Miles Bader  <miles@gnu.org>
14121         * calendar/calendar.el (diary-face, calendar-today-face)
14122         (holiday-face): Remove dependency on `window-system'.
14124 2000-11-02  Ken Raeburn  <raeburn@gnu.org>
14126         * Makefile.in (emacs): Set EMACSLOADPATH always.
14127         (update-authors, .el.elc, compile-files): Don't do it explicitly here.
14128         (compile-files): Bomb out if compilation of a file fails.
14130 2000-11-02  Dave Love  <fx@gnu.org>
14132         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
14134 2000-11-02  Eli Zaretskii  <eliz@is.elta.co.il>
14136         * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
14137         punctuation in the warning inserted into the *mail* buffer.
14139 2000-11-02  Gerd Moellmann  <gerd@gnu.org>
14141         * emacs-lisp/authors.el (authors-public-domain-files): New variable.
14142         (authors-public-domain-p): New function.
14143         (authors-print): Use it.
14145         * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
14147         * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
14149 2000-11-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14151         * ps-print.el: Extension for even/odd printing.  Doc fix.
14152         (ps-print-version): New version number (6.3.1).
14153         (ps-even-or-odd-pages): Customization fix.
14154         (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
14155         (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
14156         (ps-page-count): Var replaced by `ps-page-column'.
14157         (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
14158         (ps-print-sheet-p): New fun.
14160 2000-11-02  Miles Bader  <miles@lsi.nec.co.jp>
14162         * tooltip.el (tooltip-gud-tips-setup): New function.
14163         (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
14164         (tooltip-mode): Call tooltip-gud-tips-setup.
14165         (tooltip-gud-tips): Use `gud-basic-call' instead of
14166         process-send-string, so the prompt gets frobbed appropriately.
14167         Handle nil return value from `tooltip-gud-print-command'.
14169 2000-11-01  Eric M. Ludlam  <zappo@ultranet.com>
14171         * comint.el (comint-add-to-input-history): New function.
14172         (comint-send-input): Use `comint-add-to-input-history'.
14174 2000-11-02  Miles Bader  <miles@lsi.nec.co.jp>
14176         * info.el (info-menu-header): New face.
14177         (Info-fontify-menu-headers): New function.
14178         (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
14180         * info.el (Info-insert-dir): Don't include blank lines at
14181         beginning of additional dir files (one is added automatically).
14183 2000-11-01  Stefan Monnier  <monnier@cs.yale.edu>
14185         * emacs-lisp/easy-mmode.el (define-minor-mode):
14186         Revert the latest changes.
14187         Allow the three positional arguments to be skipped and replaced
14188         by keyword arguments.
14189         Add a :toggle argument to determine whether a nil arg means toggle
14190         or means turn-on.  The default is unchanged.
14191         Add a call to force-mode-line-update.
14193 2000-11-01  Dave Love  <fx@gnu.org>
14195         * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
14197 2000-11-01  Miles Bader  <miles@lsi.nec.co.jp>
14199         * calendar/calendar.el (diary-face, holiday-face):
14200         Add dark-background variants.
14202 2000-10-31  Sam Steingold  <sds@gnu.org>
14204         * textmodes/tex-mode.el (tex-file): Use `default-directory' when
14205         `tex-main-file' does not have directory in it.
14207 2000-10-31  Stefan Monnier  <monnier@cs.yale.edu>
14209         * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
14211 2000-10-31  Thien-Thi Nguyen  <ttn@gnu.org>
14213         * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
14214         functional change.
14216 2000-10-31  Gerd Moellmann  <gerd@gnu.org>
14218         * files.el (find-file-noselect): When we expand a wildcard, return
14219         a list of buffers, as we should do according to the doc string.
14221 2000-10-31  Ken Raeburn  <raeburn@gnu.org>
14223         * loadup.el (top level): Adjust load path if program name is
14224         "../src/bootstrap-emacs", in case it's not dumped and thus the
14225         load path adjustment hasn't already been done.
14227 2000-10-31  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14229         * ps-print.el: Fix bug on selected pages for printing.
14230         Use `color-values' for Emacs 21.  Ensure fontification when jit-lock
14231         is on.  Try to avoid warning messages when compiling.  Doc Fix.
14232         (ps-print-version): New version number (6.3).
14233         (ps-color-device): Use `color-values' to determine if device
14234         supports color.
14235         (ps-color-values): Try to use `x-color-values' when using XEmacs.
14236         (ps-print-page-p): Changed from defsubst to defun.
14237         (ps-page-number): Changed from defmacro to defun.
14238         (ps-header-sheet, ps-header-page): Fix bug on selected pages for
14239         printing.
14240         (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
14241         (ps-end-file, ps-dummy-page): Funs eliminated.
14242         (ps-print-color-scale): Changed default value.
14243         (ps-page-n-up, ps-print-page-p): New internal vars.
14244         (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
14245         (ps-plot-region, ps-generate, ps-end-job): Code fix.
14247         * delim-col.el: Little programming improvement.
14248         (delimit-columns-str): New macro.
14249         (delimit-columns-region, delimit-columns-rectangle): Code fix.
14251 2000-10-31  Kenichi Handa  <handa@etl.go.jp>
14253         * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
14254         Moved to european.el.
14255         (ccl-encode-mac-roman-font, fontset-mac): Modified for
14256         mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14257         (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
14258         (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
14260 2000-10-30  Dave Love  <fx@gnu.org>
14262         * progmodes/cc-menus.el (imenu-generic-expression)
14263         (imenu-progress-message): Only defvar when compiling.
14265         * emacs-lisp/elp.el (elp-unload-hook): New function.
14267         * loadhist.el (unload-feature): Call elp-restore-function,
14268         checking for symbols; don't use elp-restore-all.
14269         (loadhist-hook-functions): Doc fix.
14271 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
14273         * log-edit.el (log-edit-confirm): Fix the default.
14275 2000-10-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14277         * delim-col.el: Little fix: replace delimit-columns-align-columns by
14278         delimit-columns-format.
14279         (delimit-columns-region, delimit-columns-rectangle): Code fix.
14281 2000-10-30  Miles Bader  <miles@lsi.nec.co.jp>
14283         * comint.el (comint-replace-by-expanded-history): Don't use
14284         comint-get-old-input (we're not looking at *old* input).
14285         (comint-get-old-input-default): If using fields, signal an error
14286         when the point is not in an input field.
14288 2000-10-30  Kenichi Handa  <handa@etl.go.jp>
14290         * international/mule-conf.el: New charsets mule-unicode-2500-33ff
14291         and mule-unicode-e000-ffff.
14293         * international/mule.el (decode-char, encode-char): New functions.
14294         (make-coding-system): Accept a symbol of translation table as a
14295         value of property `safe-chars'.
14297         * international/mule-cmds.el (encode-coding-char): Check property
14298         safe-chars instead of safe-charsets.
14300         * international/fontset.el (fontset-default): Modified for
14301         mule-unicode-2500-33ff and mule-unicode-e000-ffff.
14302         (x-font-name-charset-alist): Likewise.
14303         (ccl-encode-unicode-font): New CCL program.  Record it in
14304         font-ccl-encoder-alist to be used for fonts "ISO10646-1".
14306         * language/european.el (mac-roman-decoder, mac-roman-encoder):
14307         New translation tables.
14308         (decode-mac-roman, encode-mac-roman): Definition of these CCL
14309         programs are modified and moved from mac-win.el.
14310         (mac-roman): Definition of this coding system is modified and
14311         moved from mac-win.el.
14313 2000-10-29  Michael Kifer  <kifer@cs.sunysb.edu>
14315         * ediff-wind.el (ediff-setup-control-frame): Enclose
14316         face-attribute in condition-case to avoid errors in older emacsen.
14318 2000-10-29  Miles Bader  <miles@gnu.org>
14320         * custom.el (custom-add-to-group): Allow multiple entries for a
14321         given value OPTION, as long as their widget types are different.
14322         * cus-edit.el (custom-face-value-create): If face name doesn't end
14323         with "face", add such here (similar to custom group widgets).
14325         * comint.el (comint-highlight-prompt): Add :type.
14327 2000-10-28  John Wiegley  <johnw@gnu.org>
14329         * calendar/timeclock.el (timeclock-log): Doc fix.
14330         (timeclock-last-event): Doc fix.
14331         (timeclock-log): Kill the timelog buffer after appending a new event.
14332         (timeclock-find-discrep): Use a temp buffer to read in the
14333         timelog, instead of visiting the file.
14334         (timeclock-log-data): A new function, along with a host of helper
14335         functions, for the purpose of making timelog data accessible to
14336         programmers.
14338         * eshell/esh-mode.el (window-height test): Make certain that
14339         `eshell-stringify-t' is non-nil.
14340         (eshell-password-prompt-regexp): Changed to a much simpler
14341         password regexp.
14342         (eshell-send-input): If `eshell-invoke-directly' returns t,
14343         directly invoke the parsed command using `eval'.  This improves
14344         turn-around time on simple commands by a factor of three or
14345         greater, such as cd, ls, pwd, etc. -- which get used very often.
14346         It also conserves thousands of cons cells per call (since
14347         `eshell-do-eval' consumes memory like a Cookie Monster set loose
14348         in the Pacific Cookie Company).
14350         * eshell/esh-test.el (eshell-test): Whitespace fix.
14352         * eshell/em-ls.el (eshell-ls-insert-directory):
14353         Make `eshell-ls-initial-args' nil when inserting directory contents.
14355         * eshell/em-script.el (eshell-script-initialize): Add names to
14356         `eshell-complex-commands, since `source' and `.' are complex.
14358         * eshell/esh-cmd.el (eshell-rewrite-for-command)
14359         (eshell-rewrite-while-command): Use `eshell-protect' instead of
14360         `eshell-copy-handles'.
14361         (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
14362         bodies.
14363         (eshell-separate-commands): Whitespace fix.
14364         (eshell-complex-commands): Added a new list of names, for
14365         determining whether a given command is as simple as it looks.
14366         (eshell-invoke-directly): New function.  Returns t if a command
14367         should be invoked directly (using `eval'), rather than indirectly
14368         using `eshell-do-eval'.
14369         (eshell-do-eval): Whitespace fix.
14371         * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
14372         which provides an emulation of the DOS shell behavior of assuming
14373         that cp/mv/ln should copy/move/link to the current directory.
14374         (eshell-remove-entries): Added a doc string.
14375         (eshell-shuffle-files): Removed the check for `target' being null.
14376         (eshell-mvcp-template, eshell-mvcpln-template): Renamed
14377         `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
14378         it to do a smarter check of whether a destination was provided.
14379         (eshell/mv, eshell/cp): Enable `:preserve-args'.
14380         (eshell/ln): Enable `:preserve-args', and use
14381         `eshell-mvcpln-template' to implement the body of the function.
14382         (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
14383         (eshell/du, eshell/diff, eshell/locate): Stringify the argument
14384         list after flattening it.  This makes it possible to cat files
14385         with numerical names.
14386         (eshell-unix-initialize): Added several names to
14387         `eshell-complex-commands.
14388         (eshell-unix-command-complex-p): Return t if a given command name
14389         may result in external processes being invoked.
14391         * eshell/em-glob.el (eshell-glob-show-progress): Make this
14392         variable nil by default, since it slows down glob processing by a
14393         factor of two or more, and increases memory consumption.
14395         * eshell/em-smart.el: Added a note about how memory consumptive
14396         smart display mode can be (at least this is true in Emacs 21).
14397         (eshell-smart-initialize): Whitespace fix.
14398         (eshell-refresh-windows): Use `if' instead of `when'.
14399         (eshell-smart-scroll-window): Calling `save-current-buffer' was
14400         not necessary.
14401         (eshell-currently-handling-window): Added a missing global variable.
14403         * eshell/em-ls.el (eshell-do-ls): Code simplification.
14404         (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
14405         Whitespace fix.
14406         (eshell-ls-exclude-hidden): Added this variable in addition to
14407         `eshell-ls-exclude-regexp'.  This one prevents files beginning
14408         with . from even being read, which can improve memory consumption
14409         quite a bit.
14410         (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
14411         read file entries beginning with a dot.  In home directories with
14412         lots of hidden files, fully two-thirds of the time spent in ls is
14413         used to read directory entries that are immediately thrown away.
14414         (eshell-ls-initial-args): Added back this configuration variable,
14415         for specifying default initial arguments to every call to ls.
14416         Much faster than using an alias to do the same thing.
14417         (eshell-do-ls): Use `eshell-ls-initial-args', if set.
14418         (eshell-ls-dir): Whitespace change.
14420         * eshell/em-dirs.el (eshell/pwd): Small code simplification.
14422         * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
14423         (eshell-stringify-t): Added a customization variable, to indicate
14424         whether `t' should be rendered as a string at all.  If not, one
14425         can still determine if the result of an expression is true using
14426         "file-exists-p FILE && echo true".
14427         (eshell-stringify): If `eshell-stringify-t' is nil, don't
14428         stringify t!
14430         * eshell/esh-module.el: Whitespace fix.
14432         * eshell/em-alias.el (eshell-alias-initialize):
14433         Added `eshell-command-aliased-p' to `eshell-complex-commands'.
14434         (eshell-command-aliased-p): New function that returns t if a
14435         command name names an aliased.
14437 2000-10-29  Michael Kifer  <kifer@cs.sunysb.edu>
14439         * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
14440         redrawing the screen when changing cursor color.
14441         (viper-insert-state-pre-command-sentinel)
14442         (viper-replace-state-pre-command-sentinel)
14443         (viper-replace-state-post-command-sentinel):
14444         Use viper-preserve-cursor-color.
14445         Many functions changed to use viper= instead of = when comparing
14446         characters.
14447         * viper-util.el (viper-memq-char,viper=): New functions for
14448         working with characters.
14449         (viper-change-cursor-color): Fixed buglet.
14450         Many functions changed to use viper= instead of = when comparing
14451         characters.
14452         * viper.el (viper-insert-state-mode-list): Added eshell.
14454         * ediff-init.el (ediff-before-setup-hook): New hook.
14455         Several typos fixed in various docstrings.
14456         * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
14457         * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
14458         (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
14459         * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
14460         (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
14461         (ediff-get-selected-buffers): New function.
14462         * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
14463         (ediff-vc-merge-internal,ediff-rcs-merge-internal):
14464         Use save-window-excursion.
14465         * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
14466         termination check in while loop.
14467         * ediff.el (ediff-get-default-file-name): Better defaults when in
14468         dired buffer.
14469         (ediff-files,ediff-merge-files,ediff-files3)
14470         (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
14472 2000-10-28  Dave Love  <fx@gnu.org>
14474         * info.el (Info-fontify-node): Add help-echo for menu items.
14476 2000-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
14478         * startup.el (normal-top-level): If the value of $TERM indicates
14479         we are running from xterm or one of its work-alikes, default to a
14480         light background mode.
14482         Support for -fg, -bg, and -rv command-line arguments for TTYs:
14483         * faces.el (tty-handle-reverse-video): New function.
14484         (tty-create-frame-with-faces): Call it.
14486         * frame.el (frame-notice-user-settings): Don't apply
14487         default-frame-alist and initial-frame-alist to MS-DOS frames.
14488         Call tty-handle-reverse-video, frame-set-background-mode, and
14489         face-set-after-frame-default for non-MS-DOS frames.
14491         * startup.el (tty-long-option-alist): New variable.
14492         (tty-handle-args): New function.
14493         (command-line): Call tty-handle-args.
14495         * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
14496         startup.el now does that for all character-terminal frames.
14498 2000-10-28  Miles Bader  <miles@gnu.org>
14500         * emacs-lisp/easy-mmode.el (define-minor-mode):
14501         Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
14502         is global.  If :global is followed by a non-nil but non-t value,
14503         make the mode buffer-local, but also generate a `global-MODE'
14504         version using `easy-mmode-define-global-mode'.
14505         Add :conditional-turn-on keyword argument.
14507 2000-10-28  Dave Love  <fx@gnu.org>
14509         * international/latin1-disp.el (latin1-char-displayable-p):
14510         Don't use window-system.
14512 2000-10-27  Eli Zaretskii  <eliz@is.elta.co.il>
14514         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
14515         Don't call find-buffer-file-type-coding-system.  Instead, just
14516         set eol-type to -unix if inhibit-eol-conversion is in effect, or
14517         if the file is on an untranslated filesystem.
14518         (add-untranslated-filesystem): Use "D" instead of "f" inside
14519         interactive.
14521 2000-10-27  Dave Love  <fx@gnu.org>
14523         * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
14524         (refill-mode): Use it.
14526 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
14528         * international/quail.el (quail-activate): Don't make-local-hook.
14530 2000-10-27  Andre Spiegel  <spiegel@gnu.org>
14532         * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
14533         manual backups and file.~<rev>.~ for automatic ones.
14534         (vc-make-version-backup): Don't do it on MS-DOS without long file
14535         names.
14537         * vc.el (vc-version-other-window): If an automatic backup of the
14538         desired version exists, rename it instead of copying it.
14540         * vc-cvs.el (vc-cvs-checkin): Check both status and error message
14541         after command.  If there's an unexpected error, signal it instead
14542         of being silent.
14543         (vc-cvs-merge-news): Be prepared for no news at all.
14545 2000-10-27  Miles Bader  <miles@lsi.nec.co.jp>
14547         * shell.el (shell): Add BUFFER argument.
14548         * comint.el (make-comint-in-buffer): New function.
14549         (make-comint): Use it.
14551         * faces.el (face-spec-choose): Change syntax so that the list of
14552         attribute-value pairs is now the cdr of each clause, not the cadr.
14553         Detect old-style entries, and handle them.  Use pop.
14555 2000-10-26  Stefan Monnier  <monnier@cs.yale.edu>
14557         * cus-edit.el (custom-mode-map): Use a sparse map.
14558         (custom-mode): Don't bother with make-local-hook.
14560         * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
14562         * vc.el (vc-start-entry): Only erase the buffer if comment is set.
14564 2000-10-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14566         * ps-print.el: Avoid compilation gripes.
14567         (ps-print-version): New version number (6.2.1).
14569 2000-10-26  Dave Love  <fx@gnu.org>
14571         * menu-bar.el: Modify some menu item help strings.
14572         (menu-bar-help-menu): Add link to MORE.STUFF.
14574         * cus-edit.el (custom-mode): Add `special' mode-class property.
14576         * wid-browse.el (widget-browse-mode): Likewise.
14578         * wid-edit.el (widget-specify-field): Revert to using local-map
14579         property, not keymap.
14581 2000-10-26  Miles Bader  <miles@lsi.nec.co.jp>
14583         * wid-edit.el (widget-field-end): When checking for a `boundary'
14584         field, do so in the correct buffer.
14586         * simple.el (undo): Correctly distinguish between numeric and
14587         non-numeric prefix args in non-transient-mark-mode, as per the doc
14588         string.  When in transient-mark-mode, treat all prefix-args as
14589         numeric.
14591         * simple.el (previous-matching-history-element): Miscellaneous cleanup.
14592         Position point on match.  Handle N == 0 correctly.
14594         * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
14595         (comint-mode-map): Reverse order of `comint-write-output' and
14596         `comint-append-output-to-file'.
14597         (comint-append-output-to-file): Reinstate this function, for the
14598         benefit of the menu.
14600 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
14602         * vc.el (vc-version-other-window): Bind `file'.
14604 2000-10-25  Gerd Moellmann  <gerd@gnu.org>
14606         * Makefile.in (update-authors): New target for maintenance purposes.
14608         * emacs-lisp/authors.el (batch-update-authors): New function.
14609         (authors-fixed-entries): New defconst.
14610         (authors-add-fixed-entries): New function.
14611         (authors): Call it.: Don't process lispref/.
14613 2000-10-25  Jason Rumney  <jasonr@gnu.org>
14615         * cus-edit.el (custom-button-face, custom-button-pressed-face):
14616         Merge x w32 and mac definitions.
14618 2000-10-25  Gerd Moellmann  <gerd@gnu.org>
14620         * menu-bar.el (menu-bar-options-menu): Add a help string for
14621         `uniquify'.
14623 2000-10-25  Stephen Gildea  <gildea@stop.mail-abuse.org>
14625         * time-stamp.el (time-stamp-string-preprocess):
14626         Fix a wrong type argument error.
14628 2000-10-25  Miles Bader  <miles@gnu.org>
14630         * recentf.el (recentf-mode): Variable removed.
14631         (recentf-mode): Use `define-minor-mode'.
14633         * mwheel.el (mouse-wheel-mode): New global minor mode.
14634         (mwheel-install): Use `mouse-wheel-mode'.
14636 2000-10-25  Dave Love  <fx@gnu.org>
14638         * progmodes/cperl-mode.el (cperl-mode):
14639         Set normal-auto-fill-function correctly.
14641         * wid-edit.el (widget-field-keymap, widget-text-keymap):
14642         Don't inherit from global-map and don't nullify menu-bar and tool-bar
14643         bindings.
14645 2000-10-25  Miles Bader  <miles@lsi.nec.co.jp>
14647         * wid-edit.el (widget-field-at): New function.
14648         (widget-at, widget-field-activate): Use it.
14649         (widget-tabable-at): Use `widget-at'.
14650         (widget-specify-field): If the terminating character of the widget
14651         field (which is read-only) is a newline, put it into a special
14652         `boundary' field so that C-n/C-p act more naturally.
14653         (widget-field-end): Also don't subtract one if a special
14654         `boundary' field has been added after the widget field.
14656         * comint.el (comint-output-filter, comint-send-input):
14657         Don't bother adding stickiness fields to overlays to fool the field
14658         code, since it should notice the overlay insertion-types now.
14660         * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
14661         Replace with aliases of the normal emacs b-o-l/e-o-l functions.
14662         (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
14664 2000-10-24  Gerd Moellmann  <gerd@gnu.org>
14666         * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
14667         (authors): Set file coding system to iso-2022-7bit.
14668         Add file-local variables to output buffer.
14670         * files.el (after-find-file): Don't print any warnings if
14671         WARN is nil.
14673 2000-10-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14675         * ps-print.el (ps-generate): Fix odd/even pages printing bug.
14677         * delim-col.el: Now there is a column formatting mechanism.
14678         Modified to customization mechanisms convention.  Doc fix.
14679         (columns): New group for delim-col.
14680         (delimit-columns-before, delimit-columns-after)
14681         (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
14682         (delimit-columns-end): New vars.
14683         (delimit-columns-customize, delimit-columns-format): New funs.
14684         (delimit-columns-region, delimit-columns-rectangle)
14685         (delimit-columns-rectangle-line): Modified to support column
14686         formatting.
14688 2000-10-24  Dave Love  <fx@gnu.org>
14690         * log-edit.el (log-edit): Add :version and a :group for vc.
14692 2000-10-24  Gerd Moellmann  <gerd@gnu.org>
14694         * files.el (after-find-file): Don't print a message ``New file''
14695         if WARN is nil.
14697         * wid-edit.el (widget-field-keymap, widget-text-keymap):
14698         Define the tool-bar map as nil, as for the menu-bar.  Otherwise, we'll
14699         get duplicate tool-bar entries because we'll see the global ones
14700         on more than one path through keymaps.
14702         * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
14704         * progmodes/cmacexp.el: Change Francesco's email address.
14706 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
14708         * window.el (fit-window-to-buffer): Adjust point of the window
14709         buffer, not that of the current buffer.
14711 2000-10-24  Eli Zaretskii  <eliz@is.elta.co.il>
14713         * progmodes/cmacexp.el: Update the euthor's email address.
14715 2000-10-24  Miles Bader  <miles@lsi.nec.co.jp>
14717         * faces.el (face-spec-set-match-display): Add `graphic' display
14718         type (the inverse of `tty').  Use `display-graphic-p' instead of
14719         the window-system variable.
14721 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
14723         * international/isearch-x.el (isearch-with-input-method):
14724         Call input-method-function with the first event in
14725         unread-command-events.
14727 2000-10-24  Miles Bader  <miles@lsi.nec.co.jp>
14729         * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
14731 2000-10-24  Andrew Choi  <akochoi@i-cable.com>
14733         * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
14734         New charsets.
14736         * term/mac-win.el: Remove definitions of mac-roman-lower and
14737         mac-roman-upper, require dired, and define instead of set
14738         mac-ready-for-drag-n-drop to avoid compilation error.
14740 2000-10-23  Andrew Innes  <andrewi@gnu.org>
14742         * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
14743         Remove superfluous calls to subst-char-in-string; instead apply
14744         expand-file-name after convert-standard-filename to ensure
14745         expected directory separators are used.
14747 2000-10-23  Eli Zaretskii  <eliz@is.elta.co.il>
14749         * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
14751 2000-10-23  Dave Love  <fx@gnu.org>
14753         * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
14754         (tool-bar-add-item): Set foreground and background for XBM icons.
14756         * international/latin1-disp.el (latin1-char-displayable-p):
14757         New function (from Handa).
14758         (latin1-display-check-font): Use it.
14760         * imenu.el (imenu--create-keymap-2): Build menu with menu-item
14761         using :key-sequence, making it much more usable.
14762         Use nconc, not append.
14763         (imenu--create-keymap-1): Avoid append.
14765         * textmodes/refill.el: Remove bits redundant with define-minor-mode.
14767 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
14769         [the following changes fix a bug where `define-minor-mode' didn't
14770         correctly generate :require clauses for defcustoms in compiled files]
14771         * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
14772         (byte-compile-log-file, byte-compile-log-1): Don't set
14773         `byte-compile-current-file' to nil.  Instead set
14774         `byte-compile-last-logged-file' to it.  Test whether
14775         byte-compile-current-file equals byte-compile-last-logged-file
14776         instead of whether its nil.
14777         (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
14779 2000-10-23  Stefan Monnier  <monnier@cs.yale.edu>
14781         * textmodes/refill.el: Fix var names in doc.
14782         (refill-mode): Don't bother with make-local-hook anymore.
14784 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
14786         * faces.el (face-user-default-spec, face-default-spec): New functions.
14787         (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
14788         (frame-set-background-mode, face-set-after-frame-default):
14789         Use `face-user-default-spec'.  Simplify code slightly.
14791         * woman.el (woman-italic-face, woman-bold-face)
14792         (woman-unknown-face): Add dark-background variants.
14793         (woman-default-faces): Renamed from `woman-colour-faces'.
14794         Set using the stored defaults, rather than using hard-wired colors.
14795         (woman-monochrome-faces): Renamed from `woman-black-faces'.
14796         Just make the foreground `unspecified' rather than "black".
14797         (woman-menu): Rename menu entries accordingly.
14799         * faces.el (header-line): Make more reasonable on mono/grayscale
14800         displays.
14802 2000-10-23  Andrew Choi  <akochoi@i-cable.com>
14804         * cus-edit.el (custom-button-face): Use 3D look for mac.
14805         (custom-button-pressed-face): Likewise.
14807         * faces.el (set-face-attributes-from-resources): Handle mac frames
14808         in the same way as x and w32 frames.
14809         (face-valid-attribute-values): Likewise.
14810         (read-face-attribute): Likewise.
14811         (defined-colors): Likewise.
14812         (color-defined-p): Likewise.
14813         (color-values): Likewise.
14814         (display-grayscale-p): Likewise.
14815         (face-set-after-frame-default): Likewise.
14816         (mode-line): Same default face as for x and w32.
14817         (tool-bar): Likewise.
14819         * frame.el: Remove call to frame-notice-user-settings at end of
14820         the file.
14822         * info.el (Info-fontify-node): Make underlines invisible for mac
14823         as for x, pc, and w32 frame types.
14825         * term/mac-win.el: New file.
14827 2000-10-22  Dave Love  <fx@gnu.org>
14829         * textmodes/refill.el: New file.
14831 2000-10-22  Andre Spiegel  <spiegel@gnu.org>
14833         * vc-hooks.el (vc-version-backup-file-name): New optional args
14834         MANUAL and REGEXP.
14835         (vc-delete-automatic-version-backups, vc-make-version-backup):
14836         New functions.
14837         (vc-before-save): Use the latter.
14838         (vc-default-make-version-backups-p): Added `-p' suffix to avoid
14839         confusion.
14841         * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
14842         expected by vc[-hooks].el.
14844         * vc.el (vc-checkout): Added `-p' suffix in call to
14845         vc-make-version-backups-p; use vc-make-version-backup to actually
14846         make the backup.
14847         (vc-version-other-window, vc-version-backup-file): Handle both
14848         automatic and manual backups.
14849         (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
14850         of all of them.
14852 2000-10-22  Miles Bader  <miles@gnu.org>
14854         * comint.el (comint-highlight-input, comint-highlight-prompt):
14855         Renamed, `-face' at end removed.
14856         (comint-send-input, comint-output-filter): Use renamed faces.
14858         * window.el (fit-window-to-buffer): Change defaulting of
14859         MAX-HEIGHT slightly.
14861         * faces.el (color-values, color-defined-p): Use `member', not
14862         `memq', because it works correctly for strings.
14863         (frame-set-background-mode): Actually, "unspecified-fg" and
14864         "unspecified-bg" *are* strings.  Use `member', not `memq', and
14865         `equal', not `eq', when a string value is possible.
14867 2000-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
14869         * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
14871 2000-10-21  Stefan Monnier  <monnier@cs.yale.edu>
14873         * progmodes/sh-script.el (sh-mode-map): Remove bindings for
14874         sh-electric-rparen, sh-electric-less and sh-electric-hash.
14875         (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
14876         (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
14877         (sh-font-lock-syntactic-keywords): Use them.
14878         (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
14879         (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
14880         (sh-mode): Don't override font-lock-unfontify-region-function.
14881         Use a copy of sh-font-lock-syntactic-keywords.
14882         (sh-set-shell): Don't set sh-electric-rparen-needed-here.
14883         Don't call sh-scan-buffer since font-lock does it on the fly.
14884         (sh-get-indent-info): Use `face' rather than `syntax-table'
14885         text-property to detect here-documents.
14886         Replace sh-special-syntax with sh-st-punc.
14887         (sh-prev-line): Use `face' rather than `syntax-table'
14888         text-property to skip over here-documents.
14889         (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
14890         (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
14891         (sh-electric-less, sh-set-here-doc-region)
14892         (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
14893         (sh-scan-buffer, sh-rescan-buffer): Remove.
14895 2000-10-21  Andrew Innes  <andrewi@gnu.org>
14897         * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
14898         remote (ange-ftp) file names.
14900 2000-10-21  Miles Bader  <miles@gnu.org>
14902         * window.el (fit-window-to-buffer): New function.
14903         (shrink-window-if-larger-than-buffer): Use it.
14904         (window-text-height): Don't expect minibuffers to have mode-lines.
14906         * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
14907         * international/quail.el (quail-update-guidance):
14908         Use `fit-window-to-buffer' instead of `set-window-text-height'.
14910         * international/quail.el (quail-show-guidance-buf): Make sure
14911         guidance window really has enough room.
14912         (quail-update-guidance): If quail-guidance-win is already shown,
14913         make sure its height is OK.
14915         * window.el (window-text-height, set-window-text-height):
14916         New functions.
14917         (shrink-window-if-larger-than-buffer): Use `window-text-height'
14918         instead of `window-height' & `mode-line-window-height-fudge'.
14919         (mode-line-window-height-fudge): Add FACE parameter.
14920         * help.el (resize-temp-buffer-window): Use `set-window-text-height'
14921         instead of `enlarge-window' & `mode-line-window-height-fudge'.
14923 2000-10-20  Miles Bader  <miles@gnu.org>
14925         * window.el (height-affecting-face-attributes): Use `defconst'.
14927         * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
14928         New function, conditionally aliased to `mode-line-window-height-fudge'.
14929         (ispell-help): Use it.
14930         (ispell-choices-win-default-height): Don't include mode-line fudge.
14931         (ispell-choices-win-default-height): New function.
14932         (ispell-show-choices, ispell-command-loop): Use function
14933         `ispell-choices-win-default-height' instead of variable.
14935 2000-10-20  Miles Bader  <miles@lsi.nec.co.jp>
14937         * window.el (mode-line-window-height-fudge): New variable.
14938         (height-affecting-face-attributes): New variable.
14939         (mode-line-window-height-fudge): New function.
14940         (shrink-window-if-larger-than-buffer): Use it.
14941         * help.el (resize-temp-buffer-window): Likewise.
14943         * info.el (Info-fontify-node): Add support for @subsubsection
14944         titles, which use `Info-title-4-face'.
14945         (Info-title-4-face): New face.
14946         (Info-title-3-face): Inherit from Info-title-4-face instead of
14947         variable-pitch.
14949 2000-10-19  Jason Rumney  <jasonr@gnu.org>
14951         * dired.el (dired-insert-directory): Do not let errors signalled by
14952         attempt to run dired-free-space-program prevent dired from working.
14954 2000-10-19  Stefan Monnier  <monnier@cs.yale.edu>
14956         * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
14958 2000-10-19  Gerd Moellmann  <gerd@gnu.org>
14960         * dirtrack.el (dirtrack): Fix call to run-hooks.
14962         * cmuscheme.el (cmuscheme-program-name): Renamed from
14963         scheme-program-name because xscheme.el contains a defcustom with
14964         the same name.  As a consequence, customizing group `cmuscheme'
14965         loaded `xscheme' which redefined run-scheme.
14966         (run-scheme): Use cmuscheme-program-name.
14968         * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
14970         * play/doctor.el (doctor-death): Update the Samaritans'
14971         anonymous address, and add a website for Befrienders International.
14973 2000-10-19  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14975         * ps-print.el: Even/odd pages fix.  Fix little bug on XEmacs.
14976         Avoid compilation gripes.  Doc fix.
14977         (ps-print-version): New version number (6.2).
14978         (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
14979         (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
14980         (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
14981         (ps-x-extent-priority, ps-x-extent-start-position)
14982         (ps-x-face-font-instance, ps-x-find-coding-system)
14983         (ps-x-font-instance-properties, ps-x-make-color-instance)
14984         (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
14985         avoid compilation gripes without defining functions.
14986         (ps-e-find-composition): Alias for function find-composition, to have a
14987         suitable function depending on Emacs version.
14988         (ps-color-device, ps-color-values, ps-face-foreground-name)
14989         (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
14990         (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
14991         (ps-print-ensure-fontified): Function definitions surrounded by
14992         `eval-and-compile' to avoid compilation gripes.
14993         (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
14994         by symbol-value to avoid compilation gripes.
14995         (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
14996         (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
14998 2000-10-19  Miles Bader  <miles@lsi.nec.co.jp>
15000         * startup.el (normal-top-level): Call `frame-set-background-mode'
15001         after `frame-notice-user-settings' because the latter doesn't call
15002         the former on a tty.
15004         * faces.el (frame-set-background-mode): `unspecified' &c are
15005         symbols, not strings.
15007 2000-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
15009         * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
15010         why some "light*" colors are deliberately absent from the alist.
15012         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
15013         Change colors for tty's, as suggested by Miles Bader.
15015 2000-10-19  Kenichi Handa  <handa@etl.go.jp>
15017         * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
15018         (ccl-encode-mule-unicode-0100-24ff): New CCL program.  Register it
15019         for ISO10646-1 fonts.
15020         (x-font-name-charset-alist): Add an entry for "iso10646-1".
15022 2000-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
15024         * faces.el (frame-set-background-mode): If a tty frame defines a
15025         background color, use that to compute the background mode, instead
15026         of always defaulting to "dark".
15028 2000-10-19  Miles Bader  <miles@lsi.nec.co.jp>
15030         * comint.el (comint-write-output): New function.
15031         (comint-mode-map): Add it to the menu.
15032         Bind `C-c C-s' to comint-write-output.
15034 2000-10-18  Gerd Moellmann  <gerd@gnu.org>
15036         * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
15037         Use fancy-splash-delay.
15039 2000-10-18  Alex Schroeder  <alex@gnu.org>
15041         * progmodes/sql.el (sql-sybase-options): New option.
15042         (sql-sybase): Use it.  Add sql-database to the list of parameters
15043         provided for login.  The options -w 2048 -n are not used any more.
15045         * comint.el (comint-read-input-ring): Bugfix such that the first
15046         and the last entry of the input ring file are not lost.
15048 2000-10-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
15050         * ps-print.el: Internal variable changes to defcustom,
15051         make-local-hook changes to defvar.  Doc fix.
15052         (ps-print-version): New version number (6.1).
15053         (ps-setup, ps-do-despool): Code fix.
15054         (ps-printer-name): Customization fix.
15055         (ps-printer-name-option): Now is a defcustom instead of an
15056         internal variable.
15057         (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
15058         (ps-print-begin-column-hook): Now are defvar instead of
15059         make-local-hook.
15061 2000-10-18  Miles Bader  <miles@gnu.org>
15063         * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
15064         (comint-kill-output): Changed into an alias for `comint-delete-output',
15065         and made obsolete.
15066         (comint-mode-map): Rename references to comint-kill-output.
15068 2000-10-18  Eli Zaretskii  <eliz@is.elta.co.il>
15070         * diff-mode.el (diff-header-face, diff-file-header-face)
15071         (diff-changed-face): Add bold and italic attributes to tty faces.
15072         (diff-function-face): New face.
15073         (diff-font-lock-keywords): Use it.
15075 2000-10-18  Miles Bader  <miles@lsi.nec.co.jp>
15077         * comint.el (comint-output-filter): Fixup comint-last-input-end too.
15078         Remove commented-out call to force-mode-line-update.
15079         (comint-kill-output): Use `forward-line 0' instead of
15080         beginning-of-line to make sure we get past the prompt.
15082 2000-10-17  Stefan Monnier  <monnier@cs.yale.edu>
15084         * diff-mode.el (diff-header-face, diff-file-header-face):
15085         Add specific setting for dark background.
15086         (diff-context-face): Renamed from diff-comment-face.
15087         Set explicitly rather than inheriting from font-lock-comment-face.
15089 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
15091         * startup.el (command-line): Move the code which sets the default
15092         TTY colors to before before-init-hook.
15094 2000-10-17  Gerd Moellmann  <gerd@gnu.org>
15096         * jit-lock.el (jit-lock-stealth-time): Doc fix.
15098 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
15100         * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
15101         extensions, for MS-DOS.
15103         * diff-mode.el (diff-header-face, diff-file-header-face)
15104         (diff-changed-face): Define tty-specific colors.
15106 2000-10-17  Gerd Moellmann  <gerd@gnu.org>
15108         * startup.el (fancy-splash-text): Realign the text.
15110 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
15112         * font-lock.el (font-lock-comment-face): Define a separate default
15113         for dark-background tty's.
15115 2000-10-17  Miles Bader  <miles@gnu.org>
15117         * help.el (resize-temp-buffer-window): Add hack to avoid last line
15118         being obscured by whizzy mode-lines on graphics displays.
15120 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
15122         * info.el (Info-title-1-face, Info-title-2-face)
15123         (Info-title-3-face): Define colors for tty's.
15124         (info-header-node): Remove unneeded tty-specific definition.
15126 2000-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
15128         * term/pc-win.el (msdos-handle-reverse-video): Don't remove
15129         reverse from the frame parameters, and don't invert foreground and
15130         background colors.
15132 2000-10-16  Miles Bader  <miles@gnu.org>
15134         * info.el (Info-set-mode-line): Use `%b' instead of hardwired
15135         string "*Info*".  Call propertized-buffer-identification to spruce
15136         up the result.
15138 2000-10-16  Gerd Moellmann  <gerd@gnu.org>
15140         * help.el: Provide `help' for the sake of define-minor-mode
15141         which generates defcustoms with requires.
15143         * jit-lock.el (jit-lock-after-change): If we're in text that
15144         matches a multi-line font-lock pattern, make sure the whole text
15145         will be redisplayed.
15147         * emacs-lisp/authors.el (authors-add): Don't add an entry if
15148         author's name is unknown.
15150         * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
15151         * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
15152         * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
15153         * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
15154         * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
15155         * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
15156         * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
15157         * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
15158         * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
15159         Add author information.
15161 2000-10-16  Miles Bader  <miles@lsi.nec.co.jp>
15163         * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
15164         * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
15165         full-color version (using the Gimp) to eliminate dithering artifacts.
15167 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
15169         * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
15171         * simple.el (syntax-flag-table, string-to-syntax): Remove.
15173 2000-10-15  Dave Love  <fx@gnu.org>
15175         * progmodes/sh-script.el: Require skeleton and comint when compiling.
15177         * pcomplete.el (pcomplete) <defgroup>: Add :version.
15179         * whitespace.el: Doc fixes.
15180         (top-level): Don't add hooks here.
15181         (whitespace-running-emacs): Deleted.
15182         (timer): Don't require.
15183         (whitespace): Add back :version conditional on xemacs test.
15184         (whitespace-spacetab-regexp, whitespace-indent-regexp)
15185         (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
15186         (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
15187         (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
15188         Avoid specific xemacs test.
15189         (whitespace-global-mode): New option.
15190         (whitespace-global-mode): New command.
15191         (whitespace-unload-hook): New function.
15193         * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
15194         (Info-fontify-node, Info-goto-node, Info-mode-menu)
15195         (Info-fontify-node): `Goto' goes to `Go to'.
15196         (Info-fontify-node): Add help-echo to xref links.
15198 2000-10-15  Eli Zaretskii  <eliz@is.elta.co.il>
15200         * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
15202 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
15204         * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
15205         Use plist-get and allow :inherit.
15207         * emacs-lisp/cl-macs.el (cl-do-arglist):
15208         Use plist-get and plist-member instead of memq.
15210         * emacs-lisp/ewoc.el (ewoc-location): New function.
15211         (ewoc-enter-after, ewoc-enter-before): Document return value.
15212         * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
15213         Don't need make-local-hook any more.
15214         (cvs-addto-collection): Return the new tin.
15215         (cvs-mode-insert): Jump to the new line.
15217         * jit-lock.el (jit-lock-fontify-buffer): Remove.
15219         * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
15221         * font-lock.el (font-lock-syntactically-fontified): New var.
15222         (font-lock-fontify-syntactic-keywords-region): Use it.
15223         (font-lock-mode): Fix docstring.  Don't need make-local-hook anymore.
15225         * diff-mode.el (diff-find-file-name): Fix regexp.
15227         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
15228         (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
15230         * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
15231         (sh-mode-syntax-table): Add punctuation syntax for < and >.
15232         (sh-mode): Don't make all vars local here.
15233         (sh-kw): Reformat.
15234         (sh-set-shell): Use dolist.  Don't set indent-region-function.
15235         (sh-mode-syntax-table): Use pop.
15236         (sh-remember-variable): Use push.
15237         (sh-help-string-for-variable): Use memq.
15238         (sh-safe-backward-sexp): Remove.
15239         (sh-safe-forward-sexp): Add ARG.
15240         (sh-get-indent-info, sh-prev-stmt): Use it.
15241         (sh-prev-line): Simplify by using forward-comment.
15242         (sh-this-is-a-continuation): Simplify.
15243         (sh-learn-buffer-indent): Use dolist.
15244         (sh-do-nothing): Remove.
15245         (sh-set-char-syntax, sh-set-here-doc-region):
15246         Use inhibit-modification-hooks.
15247         (sh-name-style): Use mapcar and push.
15248         (sh-load-style): Use dolist.
15249         (sh-save-styles-to-buffer): Use with-current-buffer and pp.
15250         (sh-case, sh-while-getopts): Use propertize directly rather
15251         than sh-electric-rparen.
15253 2000-10-14  Stefan Monnier  <monnier@cs.yale.edu>
15255         * textmodes/tex-mode.el: Require CL when compiling.
15256         (tex-mode-syntax-table): Init immediately.
15257         (tex-mode-map): Bind M-RET to latex-insert-item.
15258         (latex-mode): Set indent-line-function to latex-indent.
15259         (tex-common-initialization): Don't setup the syntax-table any more.
15260         (latex-insert-item): New skeleton.
15261         (tex-next-unmatched-end): Fix copy/paste braino.
15262         (latex-syntax-after, latex-skip-close-parens, latex-down-list)
15263         (latex-indent, latex-find-indent): New functions.
15264         (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
15265         (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
15266         (tex-compilation-parse-errors): Use with-syntax-table.
15268 2000-10-15  Miles Bader  <miles@gnu.org>
15270         * font-lock.el (font-lock-comment-face): Change dark-background,
15271         color, non-tty, default to `chocolate1'.
15273 2000-10-13  John Wiegley  <johnw@gnu.org>
15275         * eshell/esh-util.el (require): Added a missing `require' form,
15276         needed when compiling (for an ange-ftp macro definition).
15278 2000-10-13  Dave Love  <fx@gnu.org>
15280         * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
15282 2000-10-13  Gerd Moellmann  <gerd@gnu.org>
15284         * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
15286         * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
15287         transparent -colors 8).
15289 2000-10-13  Stephen Gildea  <gildea@stop.mail-abuse.org>
15291         * time-stamp.el (time-stamp): Fixed bug in new multi-line code
15292         that breaks with old list format timestamps.
15293         (time-stamp-warn-inactive, time-stamp-old-format-warn)
15294         (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
15296 2000-10-13  John Wiegley  <johnw@gnu.org>
15298         * align.el, pcomplete.el, calendar/timeclock.el,
15299         eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
15301         * calendar/timeclock.el (timeclock-find-discrep): A fix to some
15302         faulty math, where holiday hours were being computing as seconds.
15304 2000-10-13  John Wiegley  <johnw@gnu.org>
15306         * desktop.el (desktop-buffer-modes-to-save): Added a global for
15307         specifying what "other" kinds of buffers should be saved.
15308         This used to be hard-coded.
15309         (desktop-buffer-misc-functions): A global for specifying how
15310         auxiliary data should be determined for special buffer types.
15311         (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
15312         instead of hard-coding the special buffer types.
15313         (desktop-save): Run `desktop-buffer-misc-functions' to gather
15314         auxiliary data, instead of hard-coding for Info buffers and dired.
15315         (desktop-buffer-info-misc-data): Aux function for determining Info
15316         buffer auxiliary info.
15317         (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
15318         (desktop-buffer-info): Changed this function to use the info
15319         gathered above.
15320         (desktop-create-buffer): Be a little more careful about what
15321         `minor-mode' means before calling it.  This is important for some
15322         buffer types.
15324 2000-10-13  John Wiegley  <johnw@gnu.org>
15326         * eshell/esh-util.el: Added a global form which declares an
15327         autoload for `parse-time-string', if that function is not already
15328         defined, and if parse-time.el is available on the user's system.
15330         * eshell/em-ls.el (eshell-ls-applicable): Extended this function
15331         to be aware of ange-ftp user info.
15332         (eshell-do-ls): Bind `ange-cache'.  Also, use `eshell-file-attributes'.
15333         (eshell-ls-annotate): Use `eshell-file-attributes'.
15334         (eshell-ls-file): Made the user-id printing code a bit smarter.
15336         * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
15337         allow identification of alias user ids in remote directories.
15338         It's manual, but there's no other way to know when the current user
15339         on the local machine, is also the owning user on the remote machine.
15340         (fboundp): Bind `ange-cache'.
15341         (eshell-directory-files-and-attributes): Re-organized the logic a
15342         bit to use `eshell-file-attributes' instead of `file-attributes'.
15343         The former is more sensitive to directories that are read via FTP,
15344         and knows how to use ange-ftp to determine full attribute
15345         information, instead of just the name and last modtime.
15346         (eshell-current-ange-uids): Return the current user id when in a
15347         remote directory.
15348         (eshell-parse-ange-ls): Parse a full directory listing that has
15349         been returned by ange-ftp.
15350         (eshell-file-attributes): This beefed up version of
15351         `file-attributes' is only special if the user is currently in a
15352         remote directory, in which case it does a lot of work to find out
15353         what the real attributes of a file are, as they appear on the
15354         remote machine.  This makes usage of remote directories (i.e.,
15355         ange-ftp pathnames) much more useful.  You can now use Eshell as a
15356         full-fledged FTP client, with much more manipulation ability than
15357         most other clients.
15359         * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
15360         variable, which means that Eshell's du should always be preferred
15361         in remote directories.
15362         (eshell-shuffle-files): Use `eshell-file-attributes', rather than
15363         just `file-attributes'.
15364         (eshell-mvcp-template): Bind `ange-cache', to improve performance
15365         when reading remote directories.  This is an Eshell-specific
15366         variable (not part of ange-ftp).
15367         (eshell/ln): Bind `ange-cache'.
15368         (eshell/du): Added some extra logic for determining when to use
15369         Eshell's du (which is slow), and when to use the external version
15370         (which may or may not exist).
15372         * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
15373         Call `eshell-interactive-process', rather than using
15374         `get-buffer-process', since backgrounded processes don't count in
15375         the context of this function's logic.
15377         * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
15378         `forward-char', so that null strings are parsed correctly.
15380 2000-09-13  John Wiegley  <johnw@gnu.org>
15382         * eshell/em-pred.el (eshell-pred-file-type)
15383         (eshell-pred-file-links, eshell-pred-file-size):
15384         Use `eshell-file-attributes'.  This is more correct over ange-ftp.
15386         * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
15387         that remote file globbing is more efficient.
15389         * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
15390         gathering the files and attributes within a directory.
15392         * eshell/em-unix.el (eshell/cat): If any of the files passed on
15393         the command line is a special file (not a regular file, directory
15394         or symlink), always attempt to call the external version of cat.
15396 2000-09-13  John Wiegley  <johnw@gnu.org>
15398         * eshell/esh-mode.el (eshell-find-tag): Corrections to the
15399         Eshell-friendly version of find-tag.
15401 2000-10-13  Miles Bader  <miles@lsi.nec.co.jp>
15403         * image-file.el (image-file-name-extensions)
15404         (image-file-name-regexps): Add autoload cookies.
15406 2000-10-13  Kenichi Handa  <handa@etl.go.jp>
15408         * international/mule-cmds.el (select-safe-coding-system): If FROM
15409         is string, show it in *Warning* buffer.
15411 2000-10-13  Eli Zaretskii  <eliz@is.elta.co.il>
15413         * startup.el (normal-top-level): Use display-popup-menus-p instead
15414         of window-system.
15415         (command-line): Use display-graphic-p instead of window-system.
15416         (command-line-1): Use display-popup-menus-p and display-mouse-p
15417         instead of window-system.
15419 2000-10-12  Sam Steingold  <sds@gnu.org>
15421         * tooltip.el (tooltip-use-echo-area): New user variable.
15422         (tooltip-show): Use it to choose between `x-show-tip' and `message'.
15424 2000-10-12  Dave Love  <fx@gnu.org>
15426         * recentf.el: Maintainer's checkdoc fixes.
15428         * startup.el (normal-top-level-add-subdirs-to-load-path):
15429         Use character class, not ASCII when matching file names.
15430         (fancy-splash-head): Add trailing slash to URL.
15431         (command-line): Don't require XPM support for toolbar.
15433         * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
15434         (cperl-invalid-face): Revert last change.
15435         (cperl-init-faces): Quote cperl-invalid-face.
15437 2000-10-12  Kenichi Handa  <handa@etl.go.jp>
15439         * startup.el (fancy-splash-text): Remove superfluous quote.
15441 2000-10-12  Gerd Moellmann  <gerd@gnu.org>
15443         * startup.el (fancy-splash-screens): Don't add a pre-command hook.
15444         (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
15445         (command-line-1): Don't use fancy-splash-pending-command.
15446         (fancy-splash-screens-1): Goto point-min after inserting text.
15448         * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
15450         * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
15451         instead of shared-lisp-mode-map.
15453 2000-10-12  Miles Bader  <miles@lsi.nec.co.jp>
15455         * faces.el (header-line): Change tty-variant to use underlining.
15457         * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
15458         (isearch-highlight): Restore lazy-isearch face properties at old
15459         position, and suppress them at new position.
15460         (isearch-dehighlight): Restore lazy-isearch face properties.
15461         (isearch-lazy-highlight-update): Add lazy-isearch overlays even
15462         over the real isearch overlay, but in that case, don't give it a
15463         face property.  Use `push'.
15465 2000-10-12  Kenichi Handa  <handa@etl.go.jp>
15467         * man.el (Man-getpage-in-background): Fix previous change.
15468         Decode the process output only when we are in multibyte mode.
15470 2000-10-11  Dave Love  <fx@gnu.org>
15472         * info.el (Info-mode-menu): Fix some help.
15473         (info-tool-bar-map): Add entry for Info-last.
15475         * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
15476         * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
15477         * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
15478         * toolbar/cut.xpm, toolbar/mail_compose.xpm:
15479         * toolbar/search-replace.xpm, toolbar/exit.xpm:
15480         * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
15481         * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
15482         * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
15483         * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
15484         * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
15485         Reduce colour requirements to 25 overall.  (Probably wants
15486         revisiting from the originals to reduce further.)
15488 2000-10-11  Eli Zaretskii  <eliz@is.elta.co.il>
15490         * hexl.el (hexlify-buffer): Bind coding-system-for-write to
15491         buffer-file-coding-system, instead of raw-text.
15492         (dehexlify-buffer): Bind coding-system-for-read to
15493         buffer-file-coding-system, instead of raw-text.
15495 2000-10-11  Sam Steingold  <sds@gnu.org>
15497         * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
15498         `underline' - fixes the bug introduced on 2000-09-21.
15500 2000-10-11  Dave Love  <fx@gnu.org>
15502         * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
15503         Avoid compiler warnings.
15504         (scheme-mode): Doc fix.
15505         (scheme-font-lock-keywords-1): Match `define-syntax'.
15507 2000-10-11  Miles Bader  <miles@lsi.nec.co.jp>
15509         * faces.el (frame-set-background-mode): Pay attention to saved
15510         face specs as well as default ones.  Only do anything if the
15511         bg-mode or display-type has actually changed.  Use `dolist'.
15512         (region): Make dark-background `region' face less in-your-face.
15514 2000-10-10  Sam Steingold  <sds@gnu.org>
15516         * chistory.el, ielm.el, ledit.el:
15517         * progmodes/inf-lisp.el, progmodes/scheme.el:
15518         Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
15520 2000-10-10  Stefan Monnier  <monnier@cs.yale.edu>
15522         * textmodes/texinfo.el: Update copyright and fix typo.
15524         * desktop.el (desktop-modes-not-to-save): New var.
15525         (desktop-save-buffer-p): Use it.
15526         Also, obey desktop-buffers-not-to-save even for non-file buffers.
15527         (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
15529 2000-10-10  Dave Love  <fx@gnu.org>
15531         * toolbar/tool-bar.el (tool-bar-add-item)
15532         (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
15534         * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
15535         * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
15536         * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
15537         * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
15538         * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
15539         * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
15540         * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
15541         * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
15542         * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
15543         * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
15544         the .xpms; probably need retouching.
15546 2000-10-10  Miles Bader  <miles@lsi.nec.co.jp>
15548         * subr.el (add-to-list): Add optional argument APPEND.
15549         * battery.el (display-battery): Use `add-to-list'.
15551 2000-10-09  Thien-Thi Nguyen  <ttn@gnu.org>
15553         * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
15554         properties.
15555         (zone, zone-when-idle, zone-leave-me-alone)
15556         (zone-pgm-whack-chars): Use new symbol properties.
15558         * battery.el (display-battery): Doc spelling fix.
15560         * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
15561         property.
15563 2000-10-09  Dave Love  <fx@gnu.org>
15565         * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
15566         has been initialized before calling tool-bar-setup.
15567         (tool-bar-add-item-from-menu): Add autoload cookie.
15569 2000-10-09  Eli Zaretskii  <eliz@is.elta.co.il>
15571         * menu-bar.el (send-mail-item-name): New function.
15572         (menu-bar-tools-menu) <compose-mail>: Use it to display the value
15573         of mail-user-agent in the menu.  Don't display the "Send Mail"
15574         item if mail-user-agent is nil or its value is ignore.
15575         (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
15576         if read-mail-command is nil or its value is ignore.
15578         * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
15580 2000-10-09  Miles Bader  <miles@gnu.org>
15582         * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
15583         Correct image size.
15584         * toolbar/left_arrow.xpm: Correct image size.
15586         * jka-compr.el: Don't call `jka-compr-install' when loading (it
15587         will be done by the definition of `auto-compression-mode' if
15588         necessary.  Move code to uninstall existing file-name handler
15589         before definition of `auto-compression-mode'.
15591         * image-file.el (auto-image-file-mode): Move to the end of the
15592         file, because `define-minor-mode' actually calls the mode-function
15593         if the associated variable is non-nil, which requires that all
15594         needed functions be already defined.
15596         * mouse.el (popup-menu): Balance parens.
15598 2000-10-08  Stefan Monnier  <monnier@cs.yale.edu>
15600         * mouse.el (popup-menu): Move the command call outside the loop
15601         so that popup-menu returns whatever the command returns.
15603         * progmodes/etags.el: Docstring fixes.  Maintainer line updated.
15604         (initialize-new-tags-table): Use run-hook-with-args-until-success.
15605         (find-tag): Use pop-to-buffer if switch-to-buffer failed.
15606         (tags-table-format-functions): Renamed from tags-table-format-hooks.
15608         * vc.el (vc-version-diff): diff-switches can be a list.
15609         Use relative filenames for prettier output.
15611         * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
15612         (vc-post-command-functions): Remove old-VC compatibility code.
15614         * newcomment.el (comment-indent-default): Autoload.
15616         * font-lock.el (font-lock-defaults): Make buffer-local.
15617         (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
15618         (font-lock-choose-keywords):
15619         Ignore LEVEL unless KEYWORDS is a list of syms.
15620         (c-keywords, c++-keywords, objc-keywords, java-keywords):
15621         Don't wrap regexp-opt things in \(...\) unnecessarily.
15623         * jit-lock.el: Don't require font-lock any more.
15624         (jit-lock-functions): Make buffer-local.
15625         (jit-lock-saved-fontify-buffer-function): Remove.
15626         (jit-lock-mode): Remove autoload cookie.
15627         Remove font-lock specific code.
15628         (jit-lock-unregister): Don't bother handling complex hooks any more.
15629         (jit-lock-refontify): New function.
15630         (jit-lock-fontify-buffer): Use it.
15631         (jit-lock-function-1): Replaced by jit-lock-fontify-now.
15632         (jit-lock-fontify-now): Renamed from jit-lock-function-1.
15633         Add optional args START and END.
15634         Never call font-lock-fontify-region directly.
15635         (jit-lock-function, jit-lock-stealth-fontify): Use it.
15637         * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
15639 2000-10-08  Dave Love  <fx@gnu.org>
15641         * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
15643         * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
15645         * play/studly.el (studlify-region, studlify-word): Add autoload
15646         cookie.
15648         * play/morse.el (morse-region, unmorse-region): Add autoload
15649         cookie.
15651         * play/spook.el (spook-phrases-file): Use expand-file-name, not
15652         concat.
15654         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
15655         insist on symbols starting with word syntax.
15656         (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
15657         (eval-defun-1): Doc fix.
15658         (indent-sexp): Use nconc to build up indent-stack.
15660         * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
15661         Gnus with little use.
15662         (mail-setup-hook): Add mail-abbrevs-setup to options.
15664         * recentf.el: Doc fixes.
15666         * vcursor.el (vcursor-cs-binding): Remove compatibility code.
15667         Clean up remainder.
15669         * timezone.el (timezone-parse-date): Doc fix.  Fix regexps for (5)
15670         without timezone and (8) with timezone to enforce some whitespace.
15671         Simplify code somewhat.
15673         * options.el (list-options): Doc that you should use customize.
15675         * iswitchb.el (iswitchb-mode): Add :require.
15677         * info.el (Info-goto-node, Info-menu): Doc fix.
15678         (Info-mode-menu): Bind beginning-of-buffer, Info-edit
15679         (info-tool-bar-map): New variable.
15680         (Info-mode): Use it.
15681         (Info-edit-map): Define all in defvar.
15682         (speedbar-attached-frame): Avoid compiler warning.
15684         * toolbar/tool-bar.el (tool-bar-map): Define it empty.
15685         (global-map): Bind [tool-bar] to a filtered map.
15686         (tool-bar-add-item): Remove MAP arg.  Allow PBM icons.
15687         (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
15688         Allow PBM icons.
15689         (tool-bar-setup): Adjust calls of tool-bar-add-item.
15691         * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
15692         * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
15693         * toolbar/right_arrow.xpm: New files.  Renamed from tigert's
15694         icons, except up_arrow, which is left-arrow rotated.
15696         * imenu.el (imenu-add-to-menubar): Fix last change.
15698 2000-10-08  Peter Breton  <pbreton@ne.mediaone.net>
15700         * generic-x.el (rul-generic-mode): Remove eval-when-compile
15701         statements. Suggested by Stefan Monnier  <monnier@cs.yale.edu>.
15703 2000-10-08  Eli Zaretskii  <eliz@is.elta.co.il>
15705         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
15706         typos in doc strings.
15708         * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
15709         the doc strings how to customize Font Lock faces.
15711         * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
15712         computing growth when dragging the header line.
15714 2000-10-08  Eli Zaretskii  <eliz@is.elta.co.il>
15716         * simple.el (kill-line): Doc fix.
15718 2000-10-08  Miles Bader  <miles@gnu.org>
15720         * faces.el (secondary-selection): Make foreground visible on tty.
15722         * jka-compr.el (auto-compression-mode): Move to the end of the
15723         file, because `define-minor-mode' actually calls the mode-function
15724         if the associated variable is non-nil, which requires that all
15725         needed functions be already defined.
15726         (with-auto-compression-mode): Add autoload cookie.
15728 2000-10-07  Eli Zaretskii  <eliz@is.elta.co.il>
15730         * files.el (find-backup-file-name) [ms-dos]: If support for long
15731         file names is not available, behave as if version-control were set
15732         to never.
15734 2000-10-07  Dave Love  <fx@gnu.org>
15736         * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
15737         (browse-url-gnome-moz): New function.
15738         (browse-url-browser-function): Use it.
15739         Suggested by Colin Walters <walters@cis.ohio-state.edu>.
15741 2000-10-07  Stefan Monnier  <monnier@cs.yale.edu>
15743         * indent.el (tab-always-indent): New var.
15744         (indent-for-tab-command): Use it.
15746         * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
15747         raise an error.  This way it can still default to a sane value.
15749 2000-10-06  Stefan Monnier  <monnier@cs.yale.edu>
15751         * startup.el (fancy-splash-screens): Use local rather than global map.
15752         Don't use `update-menu-bindings' any more.
15753         Get rid of assumptions about keymap representation.
15755 2000-10-06  Dave Love  <fx@gnu.org>
15757         * textmodes/fill.el (sentence-end-double-space)
15758         (sentence-end-without-period):  Doc fix.
15759         (adaptive-fill-regexp): Purecopy.
15760         (unjustify-current-line): Use line-end-position.
15761         (fill-individual-paragraphs-prefix): Use line-beginning-position.
15763         * net/eudc-vars.el (eudc): Add :version, :link.
15765         * international/mule-conf.el (file-coding-system-alist): Use \', not $.
15767         * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
15768         Fix for define-minor-mode.
15769         (function-at-point): Alias to function-called-at-point.
15771         * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
15773         * simple.el (backward-word): Doc fix.
15775         * image-file.el (image-file-name-regexp): image-file-regexps ->
15776         image-file-name-regexps.
15777         (image-file-name-extensions): Add pbm.
15779 2000-10-06  Stefan Monnier  <monnier@cs.yale.edu>
15781         * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
15782         and add filename to the names so that diff-mode can jump to source.
15784         * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
15785         (tex-font-lock-keywords, tex-font-lock-keywords-2)
15786         (tex-font-lock-keywords-1): Remove.
15787         (font-lock-turn-on-thing-lock): Use jit-lock-register.
15788         (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
15789         (font-lock-default-fontify-region):
15790         Expand beg..end correctly when just following a multiline region.
15791         (font-lock-fontify-anchored-keywords):
15792         Include the anchor text as part of the multiline.
15794 2000-10-06  Gerd Moellmann  <gerd@gnu.org>
15796         * loadup.el (toplevel): Load `loaddefs' before `help' because the
15797         latter needs the autoloaded define-minor-mode macro during the
15798         bootstrap.
15800         * startup.el (command-line): For now, activate tool-bar-mode only
15801         if XPM images are supported.
15803         * mouse.el (mouse-drag-header-line): Don't allow resizing a
15804         window by dragging a header-line at the top of the frame; that's
15805         confusing because the header-line doesn't move.
15806         (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
15807         of treating the event as a list.  Some cleanup.
15809 2000-10-06  Miles Bader  <miles@gnu.org>
15811         * simple.el (display-message-or-buffer): New function.
15812         (shell-command-on-region): Use `display-message-or-buffer'.
15814         * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
15815         docstring parts.
15817         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
15818         (smbclient-prompt-regexp): Add usage note to doc string.
15819         (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
15820         (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
15821         Use add-hook for adding the comint filter function, and only do so
15822         if it's not already in the global hook list.
15823         (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
15824         to `make-local-variable'.
15825         (nslookup-font-lock-keywords): Remove prompt entry.
15826         (nslookup): Don't set the process-filter.
15827         (finger): Exit the loop correctly when the regexps list runs out.
15828         (ftp, smbclient, smbclient-list-shares):
15829         Set the real major mode immediately, not after execing.
15830         Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
15832         * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
15834 2000-10-05  Stefan Monnier  <monnier@cs.yale.edu>
15836         * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
15838         * which-func.el (which-func-format): Remove spurious space.
15839         (which-func-mode): Don't make it permanent-local.
15840         (which-func-ff-hook): Allow which-func-maxout to be nil.
15841         (which-func-update): Simplify a bit.  Only run if which-func-mode is t.
15842         (which-func-mode): Simplify.
15843         Use post-command-idle-hook rather than post-command-hook.
15844         Go through all buffers and update their state.
15845         (which-function): Also try add-log-current-defun-function.
15847         * vc.el (with-vc-properties): Use conses rather than length-2 lists.
15848         (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
15849         Update call to with-vc-properties accordingly.
15850         (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
15851         (vc-revert-buffer): More careful about window selection and deletion.
15852         (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
15854         * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
15855         (cvs-retrieve-revision): Reuse a pre-existing buffer.
15856         (cvs-dired-action): Change the default to quickdir.
15858         * newcomment.el (comment-indent): Delegate to indent-according-to-mode
15859         if comment-indent-function returns nil.
15860         (comment-indent-default): New function.
15861         (comment-indent-function): Use it and document the new semantics.
15863         * image-file.el: Docstring fixes.
15865         * help.el (help-xref-on-pp): Use match-string.
15866         (describe-variable): New arg BUFFER.
15867         Store the current buffer in the help-xref-stack.
15868         (temp-buffer-resize-mode): Use define-minor-mode.
15870         * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
15871         consistently with its docstring.
15872         Set jit-lock-first-unfontify-pos in an idempotent way.
15873         (jit-lock-register): Autoload and add arg CONTEXTUAL.
15875 2000-10-05  Alex Schroeder  <alex@gnu.org>
15877         * sql.el (sql-mysql-options): New variable.
15878         (sql-mysql): Use it.
15880 2000-10-05  Miles Bader  <miles@lsi.nec.co.jp>
15882         * image.el (image): New group.
15884         * smerge-mode.el (smerge-mine-face, smerge-other-face)
15885         (smerge-base-face, smerge-markers-face): Add dark-background variants.
15887 2000-10-04  Peter Breton  <pbreton@ne.mediaone.net>
15889         * net/net-utils.el (nslookup-font-lock-keywords)
15890         (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15891         Ignore the value of wqindow-system; always define keywords
15893 2000-10-05  Kenichi Handa  <handa@etl.go.jp>
15895         * startup.el (fancy-splash-screens): Remove the code for
15896         debugging; `(trace-to-stderr "EXITTT\n")'.
15898 2000-10-05  Miles Bader  <miles@gnu.org>
15900         * diff-mode.el (diff-goto-source): Update call to
15901         `diff-hunk-status-msg' to reflect new REV variable.
15903 2000-10-04  Stefan Monnier  <monnier@cs.yale.edu>
15905         * progmodes/icon.el (icon-mode):
15906         Don't gratuitously override the default for comment-column.
15908         * vc-hooks.el (vc-mode-line): Fix interactive spec.
15910         * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
15911         (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
15912         (jit-lock-functions): New var.
15913         (jit-lock-function-1): Use it if non-nil.
15914         Don't switch the syntax-table.  Don't set parse-sexp-lookup-properties.
15915         Set the `fontified' property before doing the fontification to avoid
15916         repeatedly going through the same error.
15917         Don't turn errors into messages.
15918         (jit-lock-register, jit-lock-unregister): New functions.
15920         * dired.el (dired-mark-pop-up): Turn comment into docstring.
15921         Use with-current-buffer.
15923         * dired-aux.el (dired-do-create-files, dired-kill-tree):
15924         Turn comment into docstring.
15926         * apropos.el (apropos-mode): Use define-derived-mode.
15928 2000-10-04  Gerd Moellmann  <gerd@gnu.org>
15930         * startup.el (fancy-splash-pending-command): New variable.
15931         (fancy-splash-pre-command): New function.
15932         (fancy-splash-screens): Rewritten.
15933         (command-line-1): If fancy-splash-pending-command is set, call it
15934         interactively.
15936 2000-10-04  Dave Love  <fx@gnu.org>
15938         * toolbar/tool-bar.el (tool-bar-setup): New function.
15939         (tool-bar-mode): Use it.
15941         * subr.el (substitute-key-definition): Doc fix.
15942         (play-sound-file): New command.
15944 2000-10-04  Andre Spiegel  <spiegel@gnu.org>
15946         * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
15947         vc-version-backup-file-name): New functions.
15949         * files.el (basic-save-buffer): Call vc-before-save before saving.
15951         * vc-cvs.el (vc-cvs-make-version-backups): Return t if
15952         vc-cvs-stay-local-p.
15954         * vc.el (vc-revert-buffer): Handle empty diff properly.
15955         (vc-version-backup-file): New function.
15956         (vc-checkout): Create a version backup if necessary.
15957         (vc-checkin): If a version backup file exists, delete it.
15958         (vc-version-diff): Diff locally using version backups, if available.
15959         (vc-revert-file): If there's a version backup, revert locally.
15960         (vc-transfer-file): Use version backup for base version, if
15961         available.  If not, ask for confirmation whether to get it from the
15962         server.  Update mode line before check-in.
15964 2000-10-04  Dave Love  <fx@gnu.org>
15966         * toolbar/tool-bar.el (tool-bar-setup): New function.
15967         (tool-bar-mode): Use it.
15969 2000-10-04  Peter Breton  <pbreton@ne.mediaone.net>
15971         * net/net-utils.el (nslookup-font-lock-keywords)
15972         (ftp-font-lock-keywords, smbclient-font-lock-keywords):
15973         Only set if window-system is non-nil
15974         (net-utils-run-program): Returns buffer.
15975         (network-connection-reconnect): Added this function.
15977         * generic.el:
15978         Incorporates extensive cleanup and docfixes by
15979         Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
15980         Uses cl compile-time macros.
15981         (generic-mode-name, generic-comment-list)
15982         (generic-keywords-list, generic-font-lock-expressions)
15983         (generic-mode-function-list, generic-mode-syntax-table):
15984         Removed variables.
15985         (generic-mode-alist): Renamed to generic-mode-list.
15986         (generic-find-file-regexp): Default changed to "^#".
15987         (generic-read-type): Uses completing read on generic-mode-list.
15988         (generic-mode-sanity-check): removed this function.
15989         (generic-add-to-auto-mode): Removed this function
15990         (generic-mode-internal): Bind mode-specific definitions
15991         into function instead of putting them in alist.
15992         (generic-mode-set-comments): Reworked extensively.
15993         (generic-mode-find-file-hook): Simplified regexp searching
15994         (generic-make-keywords-list): Omit extra pair of parens
15996         * find-lisp.el (find-lisp-find-files-internal):
15997         Make sure directory name ends with "/".
15999         * generic-x.el (apache-conf-generic-mode):
16000         Regexp now allows leading whitespace.
16001         (rc-generic-mode): Added eval-when-compile
16002         around generic-make-keywords-list.
16003         Deleted duplicate regexp
16004         (rul-generic-mode): Added eval-when-compile
16005         around generic-make-keywords-list.
16006         (etc-fstab-generic-mode): New generic mode.
16007         (rul-generic-mode): Removed one eval-when-compile
16008         which caused a max-specpdl-size exceeded error.
16010 2000-10-04  Miles Bader  <miles@gnu.org>
16012         * simple.el (minibuffer-temporary-goal-position): New variable.
16013         (next-history-element): Try to keep the position of point in the
16014         input string constant.
16016         * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
16017         (dired-do-create-files): If there's only one file, pass it in as
16018         the DEFAULT arg to dired-mark-read-file-name.
16020 2000-10-03  Stefan Monnier  <monnier@cs.yale.edu>
16022         * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
16023         (diff-goto-source): Be smarter when choosing REVERSE or not.
16025         * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
16026         (texinfo-mode-menu): Add an explicit shortcut for update all.
16028 2000-10-03  Andre Spiegel  <spiegel@gnu.org>
16030         * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
16031         factorize backend-specific code cleanly (this was essentially
16032         conceived by Stefan Monnier).
16033         (vc-unregister): Function removed.
16034         (vc-revert-file): New function.
16035         (vc-revert-buffer): Delegate some of the work to it.
16037         * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
16038         default branch unconditionally.
16039         (vc-rcs-set-default-branch): New function.
16040         (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
16041         (vc-rcs-checkin): If an appropriate default branch has been set,
16042         force creation of that branch.
16043         (vc-rcs-receive-file): Rewritten to contain only backend-specific
16044         code (as suggested by Stefan Monnier).
16046 2000-10-02  Gerd Moellmann  <gerd@gnu.org>
16048         * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
16049         highlighting overlay with a different face over the overlay
16050         isearch uses to highlight the current match because that can lead
16051         to bad face combinations.
16053         * loadup.el (toplevel): Load faces before isearch.
16055         * isearch.el (isearch-faces): New custom group.
16056         (isearch): New defface; was already tested for in the code.
16057         (isearch-lazy-highlight-face): Changed to defface from defcustom.
16058         (isearch-highlight): Always use face `isearch'.
16060 2000-10-02  Dave Love  <fx@gnu.org>
16062         * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
16063         unused vars.  Treat byte-constant2 like byte-constant.  Fix bogus
16064         comparison of opcode with operand.
16066 2000-10-03  Miles Bader  <miles@gnu.org>
16068         * play/yow.el (yow): Don't display multi-line quotations in a *Help*
16069         buffer, since the echo area will now grow to accommodate them.
16071 2000-10-02  Andre Spiegel  <spiegel@gnu.org>
16073         * vc-hooks.el (vc-registered): If FILE used to be registered under
16074         a certain backend, try that one first.
16076         * vc.el (vc-responsible-backend): Undo the previous change in the
16077         argument list.  Handle multiple backends correctly.
16078         (vc-find-new-backend): Function removed.
16079         (vc-register): Use vc-responsible-backend, as before.
16080         (vc-next-action-on-file): Do use vc-registered, not vc-backend.
16082 2000-10-02  Gerd Moellmann  <gerd@gnu.org>
16084         * startup.el (fancy-splash-head): Change message below the
16085         logo.
16087 2000-10-02  Miles Bader  <miles@lsi.nec.co.jp>
16089         * diff-mode.el (diff-goto-source): Emit a status message.
16090         (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
16091         (diff-test-hunk): Fix doc string.
16092         (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
16093         (diff-advance-after-apply-hunk): New variable.
16094         (diff-apply-hunk): Don't return a value.
16096 2000-10-01  Stefan Monnier  <monnier@cs.yale.edu>
16098         * vc.el (vc-editable-p): Minor optimization.
16099         (edit-vc-file, vc-next-action-on-file): Don't use find-file.
16100         (vc-find-new-backend): New function split from vc-responsible-backend.
16101         (vc-register): Use it.
16102         (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
16103         (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
16104         (vc-default-unregister, vc-revert-buffer): Docstring fix.
16105         (vc-clear-headers): Don't use find-file.
16106         (vc-revert-buffer): Use `and' again (must have been a braino).
16107         (vc-switch-backend): Only prompt if requested.
16108         Short circuit if nothing is to be done.
16109         Don't use vc-resynch-buffer which could lose unsaved editing.
16110         (vc-default-receive-file): Update call to vc-unregister.
16111         (with-vc-file, vc-next-action-on-file):
16112         Use vc-backend rather than vc-registered.
16113         (vc-next-action-on-file): Use intern-soft.
16114         Deal with read-only *vc-diff* buffer.
16115         (vc-transfer-file): Docstring fix.
16117         * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
16118         (vc-rcs-receive-file): Avoid with-vc-properties.
16119         Update call to vc-unregister.
16120         Use constant `RCS' rather than (dynamically bound) var `backend'.
16122 2000-10-01  Andre Spiegel  <spiegel@gnu.org>
16124         * vc.el (vc-next-action-on-file): Update mode line only if file
16125         is visited.
16126         (vc-start-entry): New argument initial-contents.  Don't visit the file
16127         if it isn't already visited.  Brought documentation up-to-date.
16128         (vc-next-action, vc-register): Updated calls to vc-start-entry.
16129         (vc-checkin): New optional arg initial-contents, which is passed to
16130         vc-start-entry.
16131         (vc-finish-logentry): Make sure to bury log buffer only if there
16132         really is one.  Call `vc-resynch-buffer' on log-file, not
16133         buffer-file-name.
16134         (vc-default-comment-history, vc-default-wash-log): New functions.
16135         (vc-index-of): Removed.
16136         (vc-transfer-file): Make do without the above.
16137         (vc-default-receive-file): Call comment-history unconditionally.  Pass
16138         the resulting string to vc-checkin, instead of inserting it into the
16139         comment ring.
16141         * vc-rcs.el (vc-rcs-receive-file): Call comment-history
16142         unconditionally.  Use the comments as initial contents of the log
16143         entry buffer.  Document the trick to force branch creation with no
16144         changes.
16146 2000-10-01  Miles Bader  <miles@gnu.org>
16148         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
16149         `recenter' with an arg to prevent redrawing the display.
16151 2000-09-30  Stefan Monnier  <monnier@cs.yale.edu>
16153         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
16155         * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
16157         * progmodes/c-mode.el (c-mode):
16158         Don't gratuitously override the default for comment-column.
16160         * textmodes/tex-mode.el (latex-metasection-list): New var.
16161         (latex-imenu-create-index): Use it.
16162         Move the regexp construction outside loops (and use push).
16163         (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
16164         (tex-font-lock-keywords): Moved from font-lock.el.
16165         (tex-comment-indent): Remove.
16166         (tex-common-initialization): Don't set comment-indent-function.
16167         (latex-block-default): New var.
16168         (tex-latex-block): Use it to provide a default choice.
16169         Add any unknown choice to latex-block-names.
16170         Insert [...] after {...}.
16171         (tex-last-unended-begin): Simplify regexp.
16172         (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
16173         (latex-forward-sexp-1, latex-forward-sexp): New functions.
16174         (latex-mode): Set forward-sexp-function.
16176         * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
16177         Add regexp for @ignore ... @end ignore.
16178         (texinfo-heading-face): New face.
16179         (texinfo-font-lock-keywords): Use it.
16180         (texinfo-mode-menu): New menu.
16181         (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
16182         New functions.
16183         (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
16184         (texinfo-section-types-regexp, texinfo-section-level-regexp)
16185         (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
16186         Remove declaration.
16187         (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
16189         * delsel.el (delete-selection-mode): Use define-minor-mode.
16191         * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
16193 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
16195         * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
16197 2000-09-30  Gerd Moellmann  <gerd@gnu.org>
16199         * replace.el (keep-lines-read-args): New function.
16200         (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
16201         read arguments interactively.  Add parameters RSTART and REND.
16202         Operate on the active region in Transient Mark mode.
16204         * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
16206         * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
16207         (authors-obsolete-files-regexps): New variable.
16208         (authors-add): Don't record changes in obsolete files.
16210 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
16212         * autoinsert.el (auto-insert-mode): Use define-minor-mode.
16214         * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
16215         (comment-indent): Make sure there's a space between code and comment.
16216         Shift comments left to avoid going past fill-column.
16218 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
16220         * startup.el (startup-echo-area-message): New function.
16221         (display-startup-echo-area-message): Use it.
16222         (fancy-splash-screens): Rewritten to use keymaps and a timer.
16223         (fancy-splash-default-action): New function.
16224         (fancy-splash-screens-1): New function.
16225         (fancy-splash-head): Put a help-echo and a keymap under the image.
16227 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
16229         * diff-mode.el (diff-add-log-file-name): Remove.
16230         (diff-mode): Use add-log-buffer-file-name-function.
16232         * add-log.el (find-change-log): New arg BUFFER-FILE.
16233         (add-log-file-name): Obey add-log-file-name-function.
16234         (add-log-buffer-file-name-function): New var.
16235         (add-change-log-entry): Use it.
16237 2000-09-29  Miles Bader  <miles@gnu.org>
16239         * image-file.el (image-file-name-extensions): New variable.
16240         (image-file-name-regexps): Renamed from `image-file-regexps'.
16241         New default value is nil.  Call `auto-image-file-mode'.
16242         (image-file-name-regexp): New function.
16243         (auto-image-file-mode): New minor mode.
16244         (insert-image-file): Don't make conditional on the image-file
16245         handler being enabled.
16246         (image-file-handler): Make the call here conditional instead.
16247         (set-image-file-handler-enabled, enable-image-file-handler)
16248         (disable-image-file-handler): Functions removed.
16250         * emacs-lisp/authors.el (authors-print): Rephrase many-files
16251         string.
16253 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
16255         * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
16256         it's a function from CL.
16257         (latex-imenu-create-index): Replace eval-when-compile with progn
16258         because latex-section-alist is not bound while compiling.
16260 2000-09-28  Stefan Monnier  <monnier@cs.yale.edu>
16262         * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
16263         (outline-mode): Use define-derived-mode.
16265         * progmodes/perl-mode.el (perl-mode):
16266         * progmodes/awk-mode.el (awk-mode):
16267         * progmodes/asm-mode.el (asm-mode):
16268         Don't gratuitously override the default for comment-column.
16270         * emacs-lisp/lisp.el (lisp-complete-symbol):
16271         Distinguish the let-binding case from the funcall case.
16272         (forward-sexp-function): New variable.
16273         (forward-sexp): Use it.
16275         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
16276         (easy-mmode-defmap): Remove the now useless autoload.
16278         * time.el (display-time-mode): Use define-minor-mode.
16280         * subr.el (add-minor-mode): Don't eval NAME.
16281         Don't depend on the presence of TOGGLE-FUN for any special behavior.
16282         Use if rather than cond.
16284         * simple.el (read-expression-map): Define more properly.
16285         (comment-indent-hook): Remove.
16286         (string-to-syntax): Bug fix.
16288         * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
16289         (cvs-ediff-diff): Fix typo.
16290         (cvs-revert-if-needed): Don't bother preserving read-only.
16292         * paren.el (show-paren-mode): Use define-minor-mode.
16294         * jka-compr.el (auto-compression-mode): Use define-minor-mode.
16295         (toggle-auto-compression): Remove.
16296         (jka-compr-build-file-regexp): Remove useless grouping.
16298         * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
16299         Avoid user-reserved bindings.
16300         (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
16301         (diff-header-face): Revert to grey85.
16303         * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
16305         * complete.el (partial-completion-mode) <defcustom>: Remove.
16306         (partial-completion-mode): Use define-minor-mode.
16307         (PC-do-completion): Understand `completion-auto-help = delay'
16308         to mean to popup the completion buffer only the second time.
16309         (PC-include-file-all-completions, PC-include-file-all-completions)
16310         (PC-include-file-all-completions): Don't quote lambda.
16312         * comint.el (comint-mode-hook): Docstring fix.
16313         (comint-mode): Use define-derived-mode.
16314         (comint-mode-map): Remove obsolete comment.
16315         (make-comint): Minor stylistic change.
16316         (comint-insert-clicked-input): Be more careful to find the overlay.
16317         Use this-command-keys rather than hardcoding mouse-2.
16319         * font-lock.el: Replace confusing (,@ with ,
16320         (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
16321         Don't use regexp-opt-depth.  Spice up the regexp for args.
16322         Don't distinguish between cmds that can take an opt arg or not.
16323         Use `append' and `prepend' rather than `keep'.
16325         * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
16326         (latex-outline-regexp): New var.
16327         (latex-outline-level): New fun.
16328         (latex-section-alist): New var.
16329         (latex-imenu-create-index): Use it.  Use `push' as well.
16330         (tex-shell-map): Initialize it properly.
16331         (tex-mode): Minor stylistic change.
16332         (plain-tex-mode): Use define-derived-mode.
16333         (latex-mode): Use define-derived-mode.
16334         Construct the paragraph regexps in a more readable way.
16335         Set the buffer-local outline-{level,regexp} vars.
16336         (slitex-mode): Derive from latex-mode.
16337         (tex-common-initialization): Don't kill-all-vars anymore.
16338         Add setting for comment-add and font-lock-defaults.
16339         (tex-start-shell): Use with-current-buffer and don't re-init keymap.
16340         (tex-main-file): New fun.  Obey TeX-master as well and remove `.tex'.
16341         (tex-start-tex): New arg DIR (and send a chdir command for it).
16342         Also display the shell buffer and save it in tex-last-buffer-texed.
16343         (tex-region): Use expand-file-name rather than concat.
16344         Remove code made useless by changes in tex-start-tex.
16345         (tex-file): Use tex-main-file and adapt to new tex-start-tex.
16347         * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
16349 2000-09-28  Dave Love  <fx@gnu.org>
16351         * eshell/eshell.el (eshell) <defgroup>: Add :version.
16353 2000-09-28  Gerd Moellmann  <gerd@gnu.org>
16355         * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
16356         `append'.
16358 2000-09-28  Stefan Monnier  <monnier@cs.yale.edu>
16360         * info.el (Info-extract-pointer): Undo last change.
16361         Instead, fix the position of the `bound' arg to re-search-backward.
16363 2000-09-27  Stefan Monnier  <monnier@cs.yale.edu>
16365         * info.el (Info-extract-pointer):
16366         Widen more carefully, to avoid finding pointers in other nodes.
16367         (Info-index): Use push.
16369 2000-09-27  Gerd Moellmann  <gerd@gnu.org>
16371         * frame.el (set-frame-font): Remove call to obsolete function
16372         frame-update-faces.
16373         (set-foreground-color, set-background-color): Likewise for
16374         frame-update-face-colors.
16376 2000-09-27  Miles Bader  <miles@gnu.org>
16378         * image-file.el: New file.
16380 2000-09-27  Gerd Moellmann  <gerd@gnu.org>
16382         * frame.el (frame-notice-user-settings): Don't call
16383         frame-update-faces, which is a no-op now.
16385         * ediff-wind.el (ediff-control-frame-parameters): Add zero
16386         tool-bar-lines.
16388 2000-09-27  Dave Love  <fx@gnu.org>
16390         * mouse.el: Fix last change.
16392 2000-09-27  Miles Bader  <miles@lsi.nec.co.jp>
16394         * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
16396 2000-09-22  Kenichi Handa  <handa@etl.go.jp>
16398         * international/quail.el (quail-help): The output message is
16399         improved.
16401 2000-09-26  Dave Love  <fx@gnu.org>
16403         * mouse.el (popup-menu): If POSITION is nil, set it using
16404         mouse-position.
16406 2000-09-25  Sam Steingold  <sds@gnu.org>
16408         * net/browse-url.el (browse-url-file-url): Check for null maps.
16410 2000-09-26  Gerd Moellmann  <gerd@gnu.org>
16412         * frame.el (frame-notice-user-settings): Don't add a
16413         tool-bar-lines frame parameter to default-frame-alist in batch mode.
16415         * frame.el (frame-notice-user-settings):
16416         Make tool-bar-mode and default-frame-alist consistent.
16418         * toolbar/tool-bar.el (tool-bar-help): New function.
16420 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
16422         * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
16423         current-load-list in top-level forms.  Else this leaks a cons cell
16424         every time a defun is called.
16426         * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
16428 2000-09-25  Dave Love  <fx@gnu.org>
16430         * startup.el (fancy-splash-head): Check XPM is available.
16432         * autoinsert.el (auto-insert): Doc fix.
16433         (auto-insert-alist): Following GNU notices, don't say `copyright
16434         _by_'.  Use line-beginning-position.
16435         (auto-insert): Check buffer-file-name is non-nil before use.
16437 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
16439         * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
16440         starting with `@def' or `@multitable', in addition to ones
16441         specified by the user in auto-fill-inhibit-regexp.
16443 2000-09-25  Markus Rost  <rost@math.ohio-state.edu>
16445         * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
16446         rmail-dont-reply-to-names matches the empty string.
16448 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
16450         * startup.el (command-line-1, fancy-splash-text): Change the
16451         text to sound more friendly.
16453 2000-09-23  Thien-Thi Nguyen  <ttn@gnu.org>
16455         * progmodes/hideshow.el: Update author email address.
16456         Generally, sync w/ maintainer version 5.22.
16457         (hs-hide-all-non-comment-function): New var.
16458         (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
16459         (hs-hide-all): Use `hs-hide-all-non-comment-function'.
16460         (hs-show-region): Delete this command.
16461         (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
16463 2000-09-22  Dave Love  <fx@gnu.org>
16465         * hl-line.el (hl-line-overlay): Don't make it buffer-local.
16466         (hl-line-highlight): Specify buffer when moving overlay.
16468         * progmodes/fortran.el (fortran-mode): Locally set
16469         normal-auto-fill-function.
16470         (fortran-auto-fill-mode): Just alias to auto-fill-mode.
16471         (fortran-mode-map): Adjust auto-fill menu entry.
16473 2000-09-22  Gerd Moellmann  <gerd@gnu.org>
16475         * vc-rcs.el (toplevel): Require `vc' when compiling.
16477         * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
16479 2000-09-22  Andre Spiegel  <spiegel@gnu.org>
16481         * vc.el (vc-switch-backend): Signal an error if the file is not
16482         registered under the new backend.
16484         * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
16485         without explicit revision number.
16487 2000-09-21  Stefan Monnier  <monnier@cs.yale.edu>
16489         * diff-mode.el (diff-file-header-face): Reset to its previous value.
16490         (diff-hunk-text): Correctly use offsets rather than buffer-positions.
16491         (diff-xor): New function.
16492         (diff-find-source-location): Use it.  Fix a stupid name clash.
16493         (diff-hunk-status-msg): New function.
16494         (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
16495         (diff-test-hunk): Use diff-find-source-location.
16496         (diff-goto-source): Favor the `reverse'.
16497         (diff-hunk-text): Properly handle one-sided context diffs.
16498         (diff-apply-hunk): When done, advance to the next hunk.
16500 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
16502         * startup.el (command-line): If frame was created with a non-zero
16503         tool-bar-lines parameter, switch tool-bar-mode on.
16505         * add-log.el (change-log-date-face, change-log-name-face)
16506         (change-log-email-face, change-log-file-face)
16507         (change-log-list-face, change-log-conditionals-face)
16508         (change-log-function-face, change-log-acknowledgement-face):
16509         New faces, inheriting from font-lock faces.
16510         (change-log-font-lock-keywords): Use them.
16512 2000-09-21  Dave Love  <fx@gnu.org>
16514         * progmodes/cperl-mode.el (top-level): Clean up
16515         `eval-when-compile's and assorted defvars.
16516         (cperl-invalid-face): Don't double-quote value.  Change custom
16517         type.
16518         (cperl-mode): Set normal-auto-fill-function and don't zap
16519         auto-fill-function.
16520         (cperl-imenu--function-name-regexp-perl): Renamed from
16521         imenu-example--function-name-regexp-perl.
16522         (cperl-imenu--create-perl-index): Renamed from
16523         imenu-example--create-perl-index.
16524         (cperl-xsub-scan): Don't require cl.
16526         * msb.el (msb-mode-map): Use substitute-key-definition.
16527         (msb-mode): Use msb-mode-map.
16529 2000-09-21  Andre Spiegel  <spiegel@gnu.org>
16531         * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
16532         New functions.
16533         (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
16534         (vc-switch-backend): New function.
16535         (vc-prefix-map): Bind `vc-switch-backend' to `b'.
16536         (vc-register): Fix prompt.
16537         (vc-unregister, vc-default-unregister): New functions.
16538         (vc-version-diff): Handle empty buffer in sentinel.
16540         * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
16541         (vc-rcs-state-heuristic): Use it to guess the state of files with
16542         non-strict locking.
16543         (vc-rcs-find-most-recent-rev): Handle the case when a branch has
16544         been set with -b, but not created yet.
16545         (vc-rcs-fetch-master-state): With non-strict locking, compare file
16546         contents in order to find the state.
16547         (vc-rcs-checkin): Allow creation of branches with no changes.
16548         (vc-rcs-unregister, vc-rcs-receive-file)
16549         (vc-rcs-set-non-strict-locking): New functions.
16551         * vc-hooks.el (vc-name): Force correct computation of the value
16552         in case it is missing.
16554 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
16556         * startup.el (fancy-splash-tail): Use a different foreground
16557         color on a dark frame background.
16559 2000-09-21  Miles Bader  <miles@lsi.nec.co.jp>
16561         * info.el: Use the correct capitalization when making Info-mode
16562         and Info-edit-mode `special' modes.
16564 2000-09-20  Stefan Monnier  <monnier@cs.yale.edu>
16566         * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
16567         (diff-mode): Add support for add-log.el.
16568         (diff-hunk-text): Use char offsets rather than line offsets.
16569         (diff-find-source-location): Replace LINE with line-offset (nil
16570         if not found) and always set POS to a meaningful position.
16571         Adapt to the new char-offsets.
16572         (diff-apply-hunk): Drop support for the unused `select' POPUP.
16573         Adapt to the new diff-find-source-location.
16574         (diff-goto-source): Adapt to the new diff-find-source-location.
16576         * add-log.el (add-log-file-name): New function (split out of
16577         add-change-log-entry).
16578         (add-change-log-entry): Use it.
16579         Call add-log-file-name-function with the changelog file name if
16580         the current buffer is not associated with any file.
16581         Avoid find-file if the selected window is dedicated.
16583         * diff-mode.el (diff-find-source-location):
16584         Move code from diff-apply-hunk.  Return buffer rather than file.
16585         (diff-apply-hunk): Use the new result from  diff-find-source-location.
16586         (diff-goto-source): Use the new diff-find-source-location.
16588 2000-09-20  Dave Love  <fx@gnu.org>
16590         * iswitchb.el: Some doc fixes.
16591         (iswitchb-mode-map): Define completely initially.  Inherit
16592         minibuffer-local-map.
16593         (iswitchb-completion-help) <!iswitchb-xemacs>: Use
16594         fundamental-mode.
16595         (iswitchb-global-map): New variable.
16596         (iswitchb-summaries-to-end): Amalgamate regexps.
16597         (iswitchb-mode): New.
16598         (iswitchb-mode-hook): New variable.
16599         (iswitchb) <defgroup>: Add URL link.  Use group `completion', not
16600         `extensions'.
16602 2000-09-20  Gerd Moellmann  <gerd@gnu.org>
16604         * ehelp.el (electric-help): New defgroup.
16605         (electric-help-shrink-window): New user-option.
16606         (with-electric-help): Use it.
16608         * window.el (shrink-window-if-larger-than-buffer): If face
16609         `mode-line' has a :box, and we're on a graphical frame, add 1
16610         to the needed window height.
16612         * frame.el (frame-notice-user-settings): Add a last parameter nil
16613         to a call to `append', because the last list passed to `append' is
16614         not copied, and so subsequent calls to assq-delete-all will modify
16615         default-frame-alist.
16617         * startup.el (fancy-splash-image): Change :type.
16618         (fancy-splash-head): Use an XBM image if appropriate.
16619         (command-line-1): Show splash screens in more cases.
16621         * startup.el (fancy-splash-text): Don't quote faces.
16623         * dired.el (dired-font-lock-keywords): Undo last change.
16624         (dired-readin): Bind indent-tabs-mode to nil.
16626         * startup.el (fancy-splash-head): If frame's background mode
16627         is `dark', change the black background of the image to gray.
16628         (fancy-splash-screens): Display startup echo area message.
16629         (display-startup-echo-area-message): New function.
16631 2000-09-20  Miles Bader  <miles@lsi.nec.co.jp>
16633         * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
16635         * info.el (info-header-node): Tweak for color ttys.
16637         * faces.el (face-valid-attribute-values): Make sure directories we
16638         search for stipples both exist and are readable before trying to
16639         search them.
16641         * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
16642         in the dry-run case.
16644         * jka-compr.el (with-auto-compression-mode): New macro.
16646         * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
16647         (custom-group-tag-face, custom-variable-tag-face): Use relative
16648         :height and inherit from `variable-pitch' face instead of
16649         hardwiring :family.
16650         * hi-lock.el (hi-black-hb): Likewise.
16652         Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
16653         * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
16654         toolbar-add-item, if image doesn't have a mask add a `:mask
16655         heuristic'.
16657 2000-09-19  Stefan Monnier  <monnier@cs.yale.edu>
16659         * diff-mode.el: Docstring fixes.
16660         (diff-header-face, diff-comment-face): New faces.
16661         (diff-font-lock-keywords): Highlight a bit differently.
16662         (diff-find-source-location): Don't return SPAN any more.
16663         (diff-hunk-text): Don't bother erasing the temp buffer.
16664         (diff-find-text): Drop argument LINE.
16665         (diff-apply-hunk): Update calls to diff-find-text.
16666         (diff-goto-source): Use pop-to-buffer again and don't raise an error.
16668         * calendar/calendar.el: Docstring fixes.
16669         (calendar-make-alist): Don't quote lambda.
16670         (calendar-star-date): Use make-local-variable.
16672 2000-09-19  Dave Love  <fx@gnu.org>
16674         * toolbar/tool-bar.el: Renamed from toolbar.el.
16675         Change `toolbar' to `tool-bar' generally in symbols.
16676         Make some items invisible in `special' major modes.
16677         (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
16678         Add arg PROPS.
16680         * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
16681         Add :version here.
16682         (fancy-splash-delay, fancy-splash-image): Remove :version here.
16684 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
16686         * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
16688         * files.el (find-file-suppress-same-file-warnings): New user-option.
16689         (find-file-noselect): Use it.
16691         * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
16692         (fancy-splash-screen): Defgroup.
16694         * add-log.el (change-log-font-lock-keywords): Match names
16695         more exactly for the case that font-lock-constant-face is
16696         underlined.
16698 2000-09-19  Richard M. Stallman  <rms@gnu.org>
16700         * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
16702 2000-09-19  Andre Spiegel  <spiegel@gnu.org>
16704         * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
16706 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
16708         * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
16709         * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
16710         * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
16711         * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
16712         * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
16713         * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
16714         * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
16715         * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
16716         * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
16717         * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
16718         * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
16719         * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
16721         * startup.el (fancy-splash-text): New variable.
16722         (fancy-splash-delay, fancy-splash-image): New user-options.
16723         (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
16724         (fancy-splash-screens): New functions.
16725         (command-line-1): If display has a `display' frame parameter, has
16726         colors, and we have XPM support, show more fancy splash screens.
16728 2000-09-19  Dave Love  <fx@gnu.org>
16730         * map-ynp.el (map-y-or-n-p): Check use-dialog-box.  Don't lose
16731         with null `help'.  Use modern backquote syntax.
16733 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
16735         * font-lock.el (font-lock-mode): Change message telling the user
16736         that ``the buffer is too big''.
16738         * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
16739         for instance for the case that tab-width is 2.
16741 2000-09-18  Gerd Moellmann  <gerd@gnu.org>
16743         * toolbar/toolbar.el (toolbar-like-menu-item): Like in
16744         toolbar-add-item, if image doesn't have a mask add a `:mask
16745         heuristic'.
16747 2000-09-18  Miles Bader  <miles@lsi.nec.co.jp>
16749         * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
16750         and return a cons if it's non-nil.
16751         (diff-apply-hunk): Try to jump to the line in the source text
16752         corresponding to the position of point in the in the hunk.
16754         * info.el (Info-title-3-face, Info-title-2-face)
16755         (Info-title-1-face): Use face inheritance and relative sizes
16756         instead of hard-wiring things.
16758         * faces.el (secondary-selection): Make dark-background variant sane.
16760 2000-09-16  Andrew Innes  <andrewi@gnu.org>
16762         * makefile.w32-in (compile-files-CMD): No need to make .elc files
16763         read-only, since they aren't under VC now.
16765 2000-09-17  Dave Love  <fx@gnu.org>
16767         * tmm.el: Replace mapcar with mapc in several places.
16769         * loadhist.el (unload-feature): Maybe call elp-restore-list and
16770         ad-unadvise.
16772         * international/latin1-disp.el: New file.
16774         * calendar/cal-move.el (scroll-calendar-left)
16775         (scroll-calendar-right): Make arg optional (for active mode line).
16777         * calendar/calendar.el (calendar-mode-line-format): Make fields
16778         mouse-sensitive.
16779         (calendar-read-date, calendar-read-date, calendar-window-list):
16780         Unquote lambda.
16781         (calendar-month-name): Use aref, not sref.
16783         * view.el (minor-mode-alist): Propertize the string.
16785         * international/characters.el (standard-case-table): Add entries
16786         for Greek.
16788 2000-09-18  Miles Bader  <miles@gnu.org>
16790         * info.el (info-node, info-xref): Add dark-background variants.
16792         * faces.el (header-line): Change defaults to be less confusing
16793         when mixed with mode-lines.
16795         * info.el (Info-fontify-node): Make a few cleanups.
16796         Add extra `help-echo' and `local-map' props to node xrefs.
16797         Use header-specific faces for node-names & xrefs.
16798         (Info-use-header-line): New variable.
16799         (info-header-xref, info-header-node): New faces.
16800         (Info-setup-header-line): New function.
16801         (Info-select-node): Call Info-setup-header-line when enabled.
16802         (Info-extract-pointer): Work even if the header line is hidden.
16803         (Info-header-line): New variable.
16805 2000-09-16  Stefan Monnier  <monnier@cs.yale.edu>
16807         * vms-patch.el (print-region-function): Don't quote lambda.
16809         * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
16811         * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
16812         (lm-get-header-re): Allow spaces between the header and the colon.
16813         (lm-header): Allow $ in non-RCS headers.
16814         (lm-header-multiline): Put the strings back into order.
16815         Stop at an empty line.  Don't require two space chars if the
16816         line is clearly not another header line.
16818         * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
16819         (popup-menu-popup): Remove.
16821 2000-09-15  Gerd Moellmann  <gerd@gnu.org>
16823         * toolbar/toolbar.el (toolbar-add-item): Use the same image
16824         specification if or if not tool-bar item contains an `:enabled'
16825         property.
16827         * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
16828         current buffer has no file name.
16830 2000-09-15  Dave Love  <fx@gnu.org>
16832         * strokes.el: Sync with maintainer's current version with changes
16833         for Emacs, but avoid runtime cl and levents.
16834         (toplevel):  Change autoloads and compilation requires.
16835         (strokes-version, strokes-bug-address, strokes-lift): Values
16836         changed.
16837         (strokes-xpm-header, strokes-insinuated): New variable.
16838         (strokes): Add :link.
16839         (strokes-mode): Customized.
16840         (strokes-while-inhibiting-garbage-collector): New macro.
16841         (strokes-remassoc): Avoid remove-if.
16842         (strokes-fix-button2-command): Don't use ad-do-it.
16843         (strokes-insinuate): New function.
16844         (strokes-button-press-event-p, strokes-button-release-event-p):
16845         New functions, used instead of non-`strokes-' versions..
16846         (strokes-mouse-event-p): Rewritten.
16847         (strokes-event-closest-point): Avoid event-point.
16848         (strokes-get-grid-position): Avoid cdadr, caadr
16849         (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
16850         functions.
16851         (strokes-help): Use with-output-to-temp-buffer.
16852         (strokes-window-configuration-changed-p): New function.
16853         (strokes-update-window-configuration): Use buffer-live-p,
16854         strokes-window-configuration-changed-p.
16855         (strokes-mode): Use strokes-insinuate.  Alter mouse bindings.
16856         (strokes-char-face): New face.
16857         (strokes-char-table, strokes-base64-chars): New variable.
16858         (strokes-xpm-for-stroke, strokes-list-strokes)
16859         (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
16860         (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
16861         (strokes-xpm-to-compressed-string, strokes-decode-buffer)
16862         (strokes-encode-buffer, strokes-xpm-for-compressed-string)
16863         (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
16864         functions.
16866 2000-09-15  Gerd Moellmann  <gerd@gnu.org>
16868         * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
16870         * image.el (create-image): Doc fix.
16872         * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
16873         instead of `:heuristic-mask t'.
16875 2000-09-14  Andrew Innes  <andrewi@gnu.org>
16877         * makefile.w32-in: Revert to Unix line endings.
16879 2000-09-14  Andrew Innes  <andrewi@gnu.org>
16881         * makefile.w32-in: Add bootstrap support.  Also copy lisp source
16882         when installing.
16884         * makefile.nt (DONTCOMPILE): Fix typo.
16886         * shell.el (shell-write-history-on-exit): New function.
16887         (shell-dumb-shell-regexp): New custom variable.
16888         (shell-mode): Make shell-write-history-on-exit the process
16889         sentinel if shell name matches shell-dumb-shell-regexp.
16891         * w32-fns.el: Comment out before-init-hook function which resets
16892         source-directory based; this breaks bootstrap.
16894 2000-09-14  Dave Love  <fx@gnu.org>
16896         * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
16897         toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
16898         toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
16899         toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
16900         toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
16901         toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
16902         toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm:  New.
16903         From Tuomas Kuosmanen <tigert@gimp.org>.  (Gnome icons fetched
16904         from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
16906         * toolbar/toolbar.el: New.
16908         * subdirs.el: Add toolbar.
16910 2000-09-14  Gerd Moellmann  <gerd@gnu.org>
16912         * indent.el (indent-for-tab-command): Doc fix.
16914 2000-09-14  Alex Schroeder  <alex@gnu.org>
16916         * ansi-color.el (ansi-colors): Doc change.
16917         (ansi-color-get-face): Simplified regexp.
16918         (ansi-color-faces-vector): Added more faces, doc change.
16919         (ansi-color-names-vector): Doc change.
16920         (ansi-color-regexp): Simplified regexp.
16921         (ansi-color-parameter-regexp): New regexp.
16922         (ansi-color-filter-apply): Doc change.
16923         (ansi-color-filter-region): Doc change.
16924         (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
16925         deal with zero length parameters.
16926         (ansi-color-apply-on-region): Doc change.
16927         (ansi-color-map): Doc change.
16928         (ansi-color-map-update): Removed debugging message.
16929         (ansi-color-get-face-1): Added condition-case to trap
16930         args-out-of-range errors.
16931         (ansi-color-get-face): Doc change.
16932         (ansi-color-make-face): Removed.
16933         (ansi-color-for-shell-mode): New option.
16935 2000-09-13  Kenichi Handa  <handa@etl.go.jp>
16937         * international/quail.el (quail-start-translation): Translate KEY
16938         if necessary even if it doesn't have any mapping in the current
16939         input method.
16940         (quail-start-conversion): Likewise.
16941         (quail-help): The output message is improved.
16943 2000-09-13  Miles Bader  <miles@gnu.org>
16945         * comint.el (comint-output-filter): Revert to using
16946         `insert-before-markers'.  Add bletcherous hack to undo damage
16947         caused by `insert-before-markers'.  Put `front-sticky' property on
16948         overlays created here so that the field code understands how the
16949         overlay works.  Use a let when making comint-last-prompt-overlay,
16950         so that the code is easier to read.
16952 2000-09-13  Dave Love  <fx@gnu.org>
16954         * wid-edit.el (widget-default-format-handler): DTRT when
16955         doc-property is a function.
16957 2000-09-12  Francesco Potorti`  <pot@gnu.org>
16959         * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
16960         filed name if it's not there.
16962 2000-09-12  Dave Love  <fx@gnu.org>
16964         * simple.el (read-mail-command): Doc fix.
16965         (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
16967         * vc.el (vc-dired-listing-switches): Fix :version.
16969         * vc-hooks.el: Doc fixes.
16971         * subr.el (add-minor-mode): Use toggle-fun arg.
16973         * speedbar.el: Add :version to several defcustoms.
16975         * imenu.el (imenu--truncate-items, imenu--cleanup)
16976         (imenu--generic-function): Avoid mapcar.
16977         (imenu--replace-spaces): Function removed.
16978         (imenu--completion-buffer): Use subst-char-in-string.
16979         (imenu-add-to-menubar): Use keymap inheritance.
16981 2000-09-12  Miles Bader  <miles@gnu.org>
16983         * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
16984         (diff-mode-map): Bind `diff-test-hunk'.
16985         (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
16987 2000-09-11  Gerd Moellmann  <gerd@gnu.org>
16989         * bytecomp.el (byte-compile-defvar): Undo last change
16990         because it breaks '(make-variable-buffer-local (defvar ...)'
16991         which is used at least in dired.
16993 2000-09-12  Kenichi Handa  <handa@etl.go.jp>
16995         * international/quail.el (quail-define-package): Docstring
16996         modified.
16998 2000-09-12  Kenichi Handa  <handa@etl.go.jp>
17000         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
17001         extra docstrings for "chinese-ccdospy", "chinese-ecdict",
17002         "chinese-etzy", "chinese-sw", and "chinese-ziranma".  Modify the
17003         docstring of "chinese-py".
17005         * international/quail.el (quail-translation-docstring): New
17006         variable.
17007         (quail-show-keyboard-layout): Docstring modified.
17008         (quail-select-current): Likewise.
17009         (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
17010         infinite recursive call.
17011         (quail-help): Check quail-translation-docstring.  Format of the
17012         output changed.
17013         (quail-help-insert-keymap-description): Adjusted for the above
17014         change.
17016 2000-09-11  Gerd Moellmann  <gerd@gnu.org>
17018         * bytecomp.el (byte-compile-defvar): Only cons onto
17019         current-load-list in top-level forms.  Else this leaks a cons cell
17020         every time a defun is called.
17022 2000-09-11  Miles Bader  <miles@lsi.nec.co.jp>
17024         * diff-mode.el (diff-apply-hunk): Function basically rewritten.
17025         Now understands non-unified diffs.  Some functionality moved into
17026         `diff-hunk-text' and `diff-find-text'.  Add OTHER-FILE, DRY-RUN,
17027         POPUP, and NOERROR arguments.  If DRY-RUN is true, don't actually
17028         modify anything.  Only reposition point in the patched file if the
17029         patch succeeds.  Only pop up another window if POPUP is true.
17030         Emit a message describing what happened if successful, and at what
17031         line-offset.  Automatically detect reversed hunks and do something
17032         appropriate.
17033         (diff-hunk-text, diff-find-text): New functions.
17034         (diff-filter-lines): Function removed.
17035         (diff-test-hunk): New function.
17036         (diff-goto-source): Rewritten in terms of diff-apply-hunk.
17038 2000-09-10  Dave Love  <fx@gnu.org>
17040         * textmodes/tildify.el: Minor doc/commentary fixes.
17041         (tildify) <defgroup>: Add :version.
17043         * faces.el (face-x-resources): Make custom type more specific.
17044         (frame-background-mode): Use mapc.
17045         (region) <defcustom>: Add :version.
17047 2000-09-08  Stefan Monnier  <monnier@cs.yale.edu>
17049         * vc-sccs.el (vc-sccs-register):
17050         * vc-rcs.el (vc-rcs-register):
17051         * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
17052         * vc.el (vc-register): Clear file's properties.
17054 2000-09-08  Gerd Moellmann  <gerd@gnu.org>
17056         * faces.el (face-spec-set): Only face-spec-reset-face when
17057         ATTRS is non-nil.
17059 2000-09-08  Eli Zaretskii  <eliz@is.elta.co.il>
17061         * help.el (help-insert-xref-button): Fix a typo in doc string.
17063 2000-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
17065         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
17066         Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
17067         methods.
17069         * menu-bar.el (read-mail-item-name): New function.
17070         (menu-bar-tools-menu): Use it to compute and display the package
17071         used to read email.
17072         (menu-bar-tools-menu): Fix typo in GUD's help string.
17074 2000-09-07  Dave Love  <fx@gnu.org>
17076         * diff-mode.el (diff-mouse-goto-source): New function.
17078         * vc-sccs.el: Doc fixes.
17079         (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
17081         * vc-rcs.el: Doc fixes.
17082         (vc-rcs-register-switches, vc-rcs-checkin-switches)
17083         (vc-rcs-checkout-switches, vc-rcs-header)
17084         (vc-rcs-master-templates): Add or change :version.
17086         * vc-cvs.el: Doc fixes.
17087         (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
17088         (vc-cvs-stay-local): Add :version.
17090         * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
17092 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
17094         * international/quail.el (quail-help): Fix previous change.
17096 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
17098         * faces.el (color-values): Doc fix.
17100         * faces.el (frame-set-background-mode): Use frame-parameter
17101         instead of frame-parameters.
17103         * frame.el (filtered-frame-list): Reduce consing.
17104         (frames-on-display-list): Call frame-parameter instead of
17105         frame-parameters.
17107 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
17109         * language/devan-util.el (devanagari-to-indian-region): In the
17110         loop, change the following char, not preceding char.
17112 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
17114         * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
17115         instead of frame-parameters.
17117         * faces.el (set-face-attribute): Simplify by calling
17118         internal-set-lisp-face-attribute with FRAME being 0.
17120         * vc.el: Remove `Id' version control keyword.
17122 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
17124         * help.el (help-make-xrefs): Adjusted for the change of
17125         help-xref-mule-regexp.
17126         (help-insert-xref-button): New function.
17128         * international/mule-cmds.el (help-xref-mule-regexp-template):
17129         Include the pattern for character set.
17130         (leim): New group.
17132         * international/quail.el: Don't require face.
17133         (quail): New group.
17134         (quail-other-command): Dummy command to make quail-help work better.
17135         (quail-keyboard-layout-alist): Add Keyboard type "jp106".
17136         (quail-keyboard-layout-substitution): New variable.
17137         (quail-update-keyboard-layout): New function.
17138         (quail-keyboard-layout-type): New customizable variable.
17139         (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
17140         (quail-keyboard-translate): Pay attention to
17141         quail-keyboard-layout-substitution.
17142         (quail-insert-kbd-layout): New function.
17143         (quail-show-keyboard-layout): New function.
17144         (quail-get-translation): If the definition is a vector of length
17145         1, and the element is a string of length 1, return the character
17146         in that string.
17147         (quail-update-current-translations): Fix the case of
17148         relative-index out of range.
17149         (quail-build-decode-map, quail-insert-decode-map): New Functions.
17150         (quail-help): Show keyboard layout by quail-insert-kbd-layout.
17151         Show key sequences for all available characters.
17152         (quail-help-insert-keymap-description): Don't show such verbose
17153         key bindings as quail-self-insert-command.
17155         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
17156         Format changed, and each element now have extra documentations.
17157         (tit-process-header): Delete invalid characters from TIT-PROMPT.
17158         Adjusted for the change of quail-cxterm-package-ext-info.
17160 2000-09-06  Gerd Moellmann  <gerd@gnu.org>
17162         * vc-hooks.el (toplevel): Don't require `vc' during compilation;
17163         requiring it leads to a recursive loading of vc.el and vc-hooks.el
17164         during bootstrap.
17166 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
17168         * vc.el: (toplevel): Don't require `dired' at run-time.
17169         (vc-dired-resynch-file): Remove autoload cookie.
17171 2000-09-05  Andre Spiegel  <spiegel@gnu.org>
17173         * vc.el: Made several backend functions optional.
17174         (vc-default-responsible-p): New function.
17175         (vc-merge): Use RET for first version to trigger merge-news, not
17176         prefix arg.
17177         (vc-annotate): Handle backends that do not support annotation.
17178         (vc-default-merge-news): Removed.  The existence of a merge-news
17179         implementation is now checked on caller sites.
17181         * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
17182         case.
17184         * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
17185         special case that has been removed from the default in vc-hooks.el.
17187 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
17189         * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
17191 2000-09-05  Andre Spiegel  <spiegel@gnu.org>
17193         * vc-hooks.el: Require vc during compilation.
17194         (vc-file-setprop): Use `vc-touched-properties' if bound by the new
17195         macro `with-vc-properties' in vc.el.
17196         (vc-file-getprop): Doc fix.
17197         (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
17199         * vc.el: Require dired-aux during compilation.
17200         (vc-name-assoc-file): Moved to vc-sccs.el.
17201         (with-vc-properties): New macro.
17202         (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
17203         vc-finish-steal): Use it.
17204         (vc-cancel-version): Moved RCS-specific code to vc-rcs.el.  The call
17205         to the backend-specific function is now supposed to do the checkout,
17206         too.
17207         (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
17209         * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
17210         set file properties; that gets done in the generic code now.
17212         * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
17213         Changed parameter list, added code from vc.el that does the
17214         checkout, possibly with a double-take.
17216         * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
17217         (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
17218         the above under the new name.
17219         (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'.  Changed
17220         parameter list, added checkout command.
17221         (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
17222         properties; that gets done in the generic code now.
17224 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
17226         * vc.el: Docstring fixes (courtesy of checkdoc).
17228 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
17230         * vc.el (vc-checkout-writable-buffer-hook)
17231         (vc-checkout-writable-buffer): Remove.
17232         (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
17233         (vc-log-mode): Make it into a clean derived major mode.
17234         (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
17235         vc-log-mode if log-edit is not available.
17236         (vc-dired-mode-map): Don't set-keymap-parent yet.
17237         (vc-dired-mode): Do set-keymap-parent here.
17238         (vc-dired-buffers-for-dir): Nop if dired is not loaded.
17240 2000-09-05  Gerd Moellmann  <gerd@gnu.org>
17242         * faces.el (set-face-attribute, face-spec-reset-face)
17243         (face-spec-set): Avoid consing by removing calls to `apply'.
17245         * frame.el (frame-parameter): Move to C code.
17247 2000-09-05  Dave Love  <fx@gnu.org>
17249         * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
17250         insert-before-markers-and-inherit.  Now checked systematically!
17252 2000-09-05  Alex Schroeder  <alex@gnu.org>
17254         * sql.el (sql-postgres): Use sql-postgres-options.
17255         (sql-postgres-options): New variable.
17257 2000-09-05  Alex Schroeder  <alex@gnu.org>
17259         * sql.el (sql-mode-menu): Work around missing variable mark-active
17260         in XEmacs.
17261         (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
17262         (sql-interactive-mode): Added call to easy-menu-add for XEmacs
17263         compatibility.
17265 2000-09-04  Gerd Moellmann  <gerd@gnu.org>
17267         * vc.el (vc-dired-resynch-file): Add autoload cookie.
17269         * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
17271         * Makefile.in (DONTCOMPILE): Fix typo in file name.
17273 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17275         * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
17276         don't support anything else under SCCS yet.
17278         * vc-hooks.el: Minor doc fixes.
17280 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17282         * vc.el (vc-next-action-on-file): Do not visit the file if it's
17283         not necessary.  If verbose in state `needs-patch', do the same as
17284         under `up-to-date'.  When NOT verbose and `needs-patch', check out
17285         latest version instead of `merge-news'.
17286         (vc-next-action-dired): Don't mess with default-directory here; it
17287         breaks other parts of dired.  It is the job of the
17288         backend-specific functions to adjust it temporarily if they need it.
17289         (vc-next-action): Remove a special CVS case.
17290         (vc-clear-headers): New optional arg FILE.
17291         (vc-checkin, vc-checkout): Set properties vc-state and
17292         vc-checkout-time properly.
17293         (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
17294         (vc-print-log): Use new backend function `show-log-entry'.
17295         (vc-cancel-version): Do the checks in a different order.  Added a
17296         FIXME concerning RCS-only code.
17298         * vc-rcs.el (vc-rcs-show-log-entry): New function.
17299         (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
17301         * vc-cvs.el (vc-cvs-show-log-entry): New function.
17303         * vc-hooks.el (vc-default-mode-line-string): Show state
17304         `needs-patch' as a `-' too.
17306 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17308         * vc.el (vc-responsible-backend): New optional arg REGISTER.
17309         (vc-default-could-register): New function.
17310         (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
17311         (vc-resynch-buffer): Call vc-dired-resynch-file.
17312         (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
17313         vc-resynch-buffer instead of vc-resynch-window.
17314         (vc-next-action-dired): Don't redisplay here, that gets done as a
17315         result of the individual file operations.
17316         (vc-retrieve-snapshot): Corrected prompt order.
17318         * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
17320         * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
17321         as well.
17322         (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p.  Handle
17323         hostname regexps.  Updated all callers.
17324         (vc-cvs-responsible-p): Handle directories as well.
17325         (vc-cvs-could-register): New function.
17326         (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
17327         properties up-to-date.
17329         * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
17330         user whether to create one.
17332 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17334         * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
17335         check out a non-existing file.
17337         * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
17338         workfile does not exist.
17340         * vc.el (vc-version-diff): Use `require' to check for existence of
17341         diff-mode.
17343 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17345         * vc-cvs.el (vc-cvs-registered): Use new function
17346         vc-cvs-parse-entry to do the actual work.
17348 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17350         * vc-hooks.el (vc-find-backend-function): If function doesn't
17351         exist, return nil instead of error.
17352         (vc-call-backend): Doc fix.
17354         * vc.el (vc-do-command): Doc fix.
17355         (vc-finish-logentry): When checking in from vc-dired, choose the
17356         right backend for logentry check.
17357         (vc-dired-mode-map): Inherit from dired-mode-map.
17358         (vc-dired-mode): Local value of dired-move-to-filename-regexp
17359         simplified.
17360         (vc-dired-state-info): Removed, updated caller.
17361         (vc-default-dired-state-info): Use parentheses instead of hyphens.
17362         (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
17363         (vc-dired-listing-switches): New variable.
17364         (vc-directory): Use it, instead of dired-listing-switches.
17366         * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
17367         (vc-cvs-dir-state): New function.
17368         (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
17369         (vc-cvs-parse-entry): New function, also to be used in
17370         vc-cvs-registered.
17372 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17374         * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
17375         *or* single-window-frames.
17377 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17379         * vc.el (vc-update-changelog): Split into generic part and default
17380         implementation.  Doc string adapted.
17381         (vc-default-update-changelog): New function.  Call the `rcs2log'
17382         script in exec-directory, to fix a long-standing nuisance.
17384         * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
17385         simply signals an error.
17387 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17389         * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
17390         control-flow more clear and to avoid running `cvs' twice.
17392         * vc.el (vc-next-action-on-file): Doc fix.
17393         (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
17394         (vc-print-log): Eval `file' before constructing the continuation.
17396 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17398         * vc.el (vc-next-action-on-file): Corrected several messages.
17399         (vc-merge): Add prefix arg `merge-news'; handle it.
17401         * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
17402         is not reached.  It is.
17403         (vc-cvs-merge): Set state to 'edited after merge.
17404         (vc-cvs-merge-news): Set workfile version to nil if not known.
17405         (vc-cvs-latest-on-branch-p): Recommented.  Candidate for removal.
17407         * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
17408         via stdout. (Merge from main line.)
17410 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17412         * vc.el (vc-finish-logentry): Thinko in the "same comment"
17413         detection.
17415 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17417         * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
17418         against kill-all-local-variables.
17419         (vc-log-edit): Don't save vc-parent-buffer any more.
17420         (vc-last-comment-match): Initialize to an empty string.
17421         (vc-post-command-functions): New hook.
17422         (vc-do-command): Run it.
17423         (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
17424         (vc-finish-logentry): Only add the comment to the ring if it's
17425         different from the last comment entered.
17426         (vc-new-comment-index): New function.
17427         (vc-previous-comment): Use it.  Make the minibuffer message
17428         slightly less terse.
17429         (vc-comment-search-reverse): Make it work forward as well.  Don't
17430         set vc-comment-ring-index if no match is found.  Use
17431         vc-new-comment-index.
17432         (vc-comment-search-forward): Use vc-comment-search-reverse.
17433         (vc-dired-mode-map): Don't inherit from dired-mode-map since
17434         define-derived-mode will do it for us.  Bind `v' to a keymap that
17435         inherits from vc-prefix-map so that we can bind `vt' without
17436         binding C-x v t.
17437         (vc-retrieve-snapshot): Parenthesis typo.
17439         * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
17440         to 1.  Make sure to switch to *vc* before looking for an error
17441         message.  Use vc-parse-buffer.
17443 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17445         * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
17446         and NAME.
17447         (vc-retrieve-snapshot): Split into two parts.
17448         (vc-default-retrieve-snapshot): New function.
17450         * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
17451         (vc-cvs-retrieve-snapshot): New function (untested).
17452         (vc-cvs-stay-local): Default to t.
17453         (vc-cvs-remote-p): New function and property.
17454         (vc-cvs-state): Stay local only if the above is t.
17455         (vc-handle-cvs): Removed.
17456         (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
17457         done via vc-handled-backends now.
17458         (vc-cvs-header): Escape Id.
17460 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17462         * vc.el (vc-do-command): Remove unused commands.
17463         (vc-version-diff): Make sure default-directory ends with a slash.
17464         Move the window commands into a vc-exec-after.
17465         (vc-print-log): Move more of the code into the `vc-exec-after'.
17467 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17469         * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
17470         (vc-print-log): Search current revision from beginning of buffer.
17471         (vc-revert-buffer): Clear echo area after the diff is finished.
17472         (vc-prefix-map): Removed definition of "t" for terse display in vc
17473         dired.
17474         (vc-dired-mode-map): Inherit from dired-mode-map.  Added
17475         definition of "vt" for terse display.
17476         (vc-dired-mode): Fix dired-move-to-filename-regexp.
17478 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17480         * vc.el (vc-exec-after): Avoid caddr.
17482 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17484         * vc.el (vc-exec-after): New function.
17485         (vc-do-command): Use it to add a termination message for async
17486         procs.
17487         (vc-checkout): Try to handle a missing-backend situation.
17488         (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
17489         of a directory with a backend using async diffs.
17490         (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
17491         present.
17493         * vc-sccs.el (vc-sccs-state-heuristic): Use
17494         file-ownership-preserved-p.
17496         * vc-rcs.el (vc-rcs-state-heuristic): Use
17497         file-ownership-preserved-p.
17498         (vc-rcs-checkout): Remove the error-handling for missing-rcs.
17500 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17502         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
17503         vc-do-command.
17505         * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
17506         when there are no changes.
17508 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17510         * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
17512         * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
17514 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17516         * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
17518         * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
17519         the `fset' outside of the defvar so that it works even if
17520         vc-prefix-map was already defined.
17521         (vc-setup-buffer): New function, split out of vc-do-command.
17522         (vc-do-command): Allow BUFFER to be t to mean `just use the
17523         current buffer without any fuss'.
17524         (vc-version-diff): Change the `diff' backend operation to just put
17525         the diff in the current buffer without erasing it.  Always use
17526         *vc-diff* even for directory-diffs.  Use vc-setup-buffer.  Protect
17527         shrink-window-if-larger-than-buffer.
17528         (vc-print-log): Change the `print-log' backend operation to just
17529         put the log in the current buffer without erasing it.  Protect
17530         shrink-window-if-larger-than-buffer.
17531         (vc-update-change-log): Fix setd typo.
17533         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
17534         (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
17536         * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
17537         (vc-rcs-diff): Insert in the current buffer and remove unused arg
17538         CMP.
17540         * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
17541         with-temp-file.  Use the new BUFFER=t argument to vc-do-command.
17542         (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
17544 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17546         * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
17547         not possible, use vc-BACKEND-workfile-unchanged-p.
17548         (vc-default-workfile-unchanged-p): New function.  Delegates to a
17549         full vc-BACKEND-diff.
17551         * vc-hooks.el (vc-simple-command): Removed.
17553         * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
17554         instead of vc-simple-command.
17555         (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
17556         avoid doing a diff when opening a file.
17557         (vc-rcs-state): Added check for unlocked-changes.
17558         (vc-rcs-header): Escape Id.
17559         (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
17560         (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
17561         version.
17563         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
17564         (vc-sccs-diff): Remove optional arg CMP.
17565         (vc-sccs-state): Call vc-workfile-unchanged-p, not the
17566         SCCS-specific function.
17568         * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
17569         vc-simple-command.
17571 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17573         * vc.el (vc-editable-p): Renamed from vc-writable-p.
17574         (with-vc-file, vc-merge): Use vc-editable-p.
17575         (vc-do-command): Remove unused var vc-file and fix the
17576         doubly-defined `status' var.  Add a user message when starting an
17577         async command.
17578         (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
17579         (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
17580         Use with-current-buffer.
17581         (vc-buffer-sync): Use unless.
17582         (vc-next-action-on-file): If the file is 'edited by read-only,
17583         make it read-write instead of trying to commit.
17584         (vc-version-diff, vc-update-change-log): Use `setq
17585         default-directory' rather than `cd'.
17586         (vc-log-edit): Don't forget to set default-directory in the
17587         buffer.
17589         * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
17590         (vc-sccs-state-heuristic): Use file-writable-p instead of
17591         comparing userids.
17592         (vc-sccs-checkout): Use `unless'.
17594         * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
17595         of comparing userids.
17596         (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
17597         Simplify the logic by eliminating unreachable code.
17598         (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
17599         just do a recursive call if we need to retry.
17600         (vc-rcs-checkout): Handle the case where rcs is missing by making
17601         the buffer read-write if requested and re-signalling the error.
17603         * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
17605 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17607         * vc-hooks.el (vc-handled-backends): Docstring change.
17608         (vc-ignore-vc-files): Mark obsolete.
17609         (vc-registered): Check vc-ignore-vc-files.
17610         (vc-find-file-hook, vc-file-not-found-hook): Don't check
17611         vc-ignore-vc-files.
17613         * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
17615 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17617         * vc.el (vc-checkout): Don't do anything special for ange-ftp
17618         files since ange-ftp already has vc-registered return nil.
17620         * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
17621         (vc-sccs-workfile-version): Use with-temp-buffer and new
17622         vc-parse-buffer and don't bother setting the property.
17623         (vc-sccs-add-triple): Use with-current-buffer and
17624         find-file-noselect.
17625         (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
17627         * vc-rcs.el (vc-rcs-find-most-recent-rev): New function.  The code
17628         derives from the old vc-parse-buffer but uses the revision number
17629         rather than the date (much easier to compare robustly).
17630         (vc-rcs-fetch-master-state): Use `with-temp-buffer'.  Adapt to the
17631         new vc-parse-buffer (and vc-rcs-find-most-recent-rev).  Find the
17632         locking-user more directly.  Check strict locking and set
17633         checkout-model appropriately.
17634         (vc-rcs-parse-locks): Remove.
17635         (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
17636         new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
17637         (vc-rcs-system-release): Use with-current-buffer and
17638         vc-parse-buffer.
17639         (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
17641         * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
17642         (vc-simple-command): Docstring fix.
17643         (vc-registered): Align the way the file-handler is called with the
17644         way the function itself works.
17645         (vc-file-owner): Remove.
17647         * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer.  Reorder
17648         extraction of fields and call to file-attributes because of a
17649         temporary bug in rcp.el.
17650         (vc-cvs-fetch-status): Use with-current-buffer.
17652 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17654         * vc.el (vc-do-command): Use file-relative-name.
17655         (vc-responsible-backend): Use vc-backend if possible.
17656         (vc-create-snapshot): Improve the `interactive' spec. Add support
17657         for branches and dispatch to backend-specific `create-snapshot'.
17658         (vc-default-create-snapshot): New function, containing the bulk of
17659         the old vc-create-snapshot.
17660         (vc-retrieve-snapshot): Improve the interactive spec.
17662         * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
17663         (vc-backend-hook-functions): Remove.
17664         (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
17665         (vc-backend): Reintroduce the test for `file = nil' now that I
17666         know why it was there (and added a comment to better remember).
17668         * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
17669         code from vc-sccs-hooks.el.
17670         (vc-sccs-release, vc-sccs-system-release): Remove.  Don't require
17671         'vc anymore.
17672         (vc-sccs-responsible-p): Use expand-file-name instead of concat
17673         and file-directory-p instead of file-exists-p.
17674         (vc-sccs-check-headers): Simplify the regexp.
17676         * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
17677         from vc-rcs-hooks.el.  Don't require 'vc anymore.
17678         (vc-rcs-responsible-p): Use expand-file-name instead of concat and
17679         file-directory-p instead of file-exists-p.
17681         * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
17682         from vc-cvs-hooks.el.
17683         (proto vc-cvs-registered): Require 'vc-cvs instead of
17684         'vc-cvs-hooks.  Don't require 'vc anymore.
17685         (vc-cvs-responsible-p): Use expand-file-name instead of concat and
17686         file-directory-p instead of file-exists-p.
17687         (vc-cvs-create-snapshot): New function, replacing
17688         vc-cvs-assign-name.
17689         (vc-cvs-assign-name): Remove.
17691 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17693         * vc-cvs.el (vc-cvs-header): New var.
17695         * vc-rcs.el (vc-rcs-exists): Remove.
17696         (vc-rcs-header): New var.
17698         * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
17699         `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
17700         (vc-sccs-header): New var.
17702         * vc.el (vc-do-command): Get rid of the `last' argument.
17703         (vc-header-alist): Remove, replaced by vc-X-header.
17704         (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
17705         (vc-dired-hook): Use expand-file-name instead of concat.
17706         (vc-directory): Use file-name-as-directory.
17707         (vc-snapshot-precondition, vc-create-snapshot)
17708         (vc-retrieve-snapshot): Allow the command to operate on any
17709         directory.
17711         * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
17712         just removing the 'WORKFILE argument or by removing the 'MASTER
17713         argument and replacing `file' with (vc-name file).
17715 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17717         * vc.el: Update Copyright and add a crude list of backend funs.
17718         (vc-writable-p): New function.
17719         (with-vc-file): Use vc-writable-p.
17720         (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
17721         (vc-register): Avoid vc-name.
17722         (vc-locking-user): Remove.
17723         (vc-steal-lock): Make the `owner' arg non-optional.
17724         (vc-merge): Use vc-writable-p instead of vc-locking-user and
17725         vc-checkout-model.
17726         (vc-default-dired-state-info): Use vc-state instead of
17727         vc-locking-user and return special strings for special states.
17728         (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
17729         and get rid of one of the special CVS cases.
17730         (vc-cancel-version): prettify error message with \\[...].
17731         (vc-rename-master): New function.
17732         (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
17733         use vc-rename-master) instead of vc-BACKEND-record-rename.  Make
17734         the CVS special case generic.
17735         (vc-default-record-rename): Remove.
17736         (vc-file-tree-walk-internal): Only call FUNC for files that are
17737         under control of some VC backend and replace `concat' with
17738         expand-file-name.
17739         (vc-file-tree-walk): Update docstring.
17740         (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
17741         (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
17743         * vc-sccs.el (vc-sccs-rename-file): Renamed from
17744         vc-sccs-record-rename.  Use `find-file-noselect' rather than
17745         `find-file' and call `vc-rename-master' to do the actual move.
17746         (vc-sccs-diff): Remove unused `backend' variable.
17748         * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
17749         to delay loading of vc-sccs until it is really used.
17750         (vc-sccs-master-templates): Preload.
17751         (vc-sccs-state): Update call to vc-sccs-parse-locks.
17752         (vc-sccs-project-dir): Remove (merged into
17753         vc-sccs-search-project-dir).
17754         (vc-sccs-search-project-dir): Rewrite using file name handling ops
17755         rather than `concat', make sure it is preloaded and don't bother
17756         to check that the file actually exists.
17757         (vc-sccs-parse-locks): Remove unused `file' argument, remove
17758         `locks' argument (use buffer's content instead) and eliminate n^2
17759         behavior.
17761         * vc-rcs.el: Update Copyright.
17762         (vc-rcs-rename-file): New function.
17763         (vc-rcs-diff): Remove unused `backend' variable.
17765         * vc-hooks.el: Update Copyright.
17766         (vc-backend): Don't accept a nil argument any more.
17767         (vc-up-to-date-p): Turn into a defsubst.
17768         (vc-possible-master): New function.
17769         (vc-check-master-templates): Use `vc-possible-master' and allow
17770         funs in vc-X-master-templates to return a non-existent file.
17772         * vc-cvs.el: Update Copyright.
17773         (vc-cvs-diff): Remove unused `backend' variable.
17774         (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
17776         * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
17778 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17780         * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
17781         since it can be called from vc-rcs.el.
17782         (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
17784 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17786         * vc.el (vc-version-diff): Expand file name read from the
17787         minibuffer.  Handle the case when a previous version number can't
17788         be guessed.  Give suitable messages when there were no differences
17789         found.
17790         (vc-clear-headers): Call backend-specific implementation, if one
17791         exists.
17792         (vc-cancel-version): Made error checks generic.  When done, clear
17793         headers generically, too.
17795         * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
17796         from vc-clear-headers in vc.el.
17798         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
17799         correctly.
17800         (vc-rcs-latest-on-branch-p): Made second argument VERSION
17801         optional.  Handle the case when it's not there.
17803 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17805         * vc.el (vc-locking-user): Moved from vc-hooks.el.
17807 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17809         * vc-hooks.el (vc-loadup): Remove.
17810         (vc-find-backend-function): Use `require'.  Also, handle the case
17811         where vc-BACKEND-hooks.el doesn't exist.
17812         (vc-call-backend): Cleanup.
17814 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17816         * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
17817         vc-rcs-grab-templates)
17818         (vc-rcs-registered): Remove.  The default function works as well.
17819         * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
17820         vc-sccs-grab-templates)
17821         (vc-sccs-registered): Remove.  The default function works as well.
17823         * vc.el (vc-version-diff): Left out a vc- in call to
17824         vc-call-backend.
17825         (vc-default-dired-state-info, vc-default-record-rename)
17826         (vc-default-merge-news): Update for the new backend argument.
17828         * vc-hooks.el (vc-find-backend-function): Return a cons cell if
17829         using the default function.
17830         (vc-call-backend): If calling the default function, pass it the
17831         backend as first argument.  Update the docstring accordingly.
17832         (vc-default-state-heuristic, vc-default-mode-line-string): Update
17833         for the new backend argument.
17834         (vc-make-backend-sym): Renamed from vc-make-backend-function.
17835         (vc-find-backend-function): Use the new name.
17836         (vc-default-registered): New function.
17838 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17840         * vc.el (vc-merge): Use vc-find-backend-function.
17842         * vc-hooks.el (vc-backend-functions): Remove.
17843         (vc-loadup): Don't setup 'vc-functions.
17844         (vc-find-backend-function): New function.
17845         (vc-call-backend): Use above fun and populate 'vc-functions
17846         lazily.
17847         (vc-backend-defines): Remove.
17849 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17851         * vc.el (vc-register): Put a FIXME note for a newly found bug.
17852         Call vc-call-backend without the leading vc-.
17853         (vc-responsible-backend, vc-finish-logentry, vc-annotate)
17854         (vc-check-headers): Call vc-call-backend without the leading vc-.
17855         (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
17856         (vc-annotate-display): Replace confusing use of `cond' with `or'.
17857         Call vc-call-backend without the leading vc-.
17859         * vc-cvs.el (tail): Provide vc-cvs.
17860         * vc-sccs.el (tail): Provide vc-sccs.
17861         * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
17863         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
17864         (vc-make-backend-function, vc-call): Pass names without leading
17865         `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
17866         (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
17867         (vc-call-backend): Always try to load vc-X-hooks.
17868         (vc-registered): Remove vc- in call to vc-call-backend.
17870 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17872         * vc.el (vc-process-filter): New function.
17873         (vc-do-command): Setup `vc-process-filter' for the async process.
17874         (vc-maybe-resolve-conflicts): New function to reduce
17875         code-duplication.  Additionally, it puts the buffer in
17876         `smerge-mode' if applicable.
17877         (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
17878         calling `merge-news'.
17879         (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
17880         (vc-log-edit): New function.  Replacement for `vc-log-mode' by
17881         interfacing to log-edit.el.
17882         (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
17883         log-edit is available.
17884         (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
17886 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17888         * vc.el (vc-register): Remove `vc-buffer-backend' setup.
17889         (vc-log-mode-map): New name for vc-log-entry-mode and merge the
17890         defvar and the initialization.
17891         (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
17893         * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
17894         (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
17896         * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
17898 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17900         * vc.el (vc-file-clear-masterprops): Removed.
17901         (vc-checkin, vc-revert-buffer): Removed calls to the above.
17902         (vc-version-diff): Use buffer-size without argument.
17903         (vc-register): Heed vc-initial-comment.
17905         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
17906         default branch.
17908         * vc-rcs.el (vc-rcs-register): Parse command output to find master
17909         file name and workfile version.
17910         (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
17912         * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
17913         vc-file-clear-masterprops.
17915         * vc-sccs.el (vc-sccs-checkout): Removed call to
17916         vc-file-clear-masterprops.  If writable, set vc-state to 'edited
17917         rather than user login name.
17920 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17922         * vc.el (vc-workfile-unchanged-p): Remove unused argument
17923         `want-differences-if-changed' and simplify.
17924         (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
17925         (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
17926         output (which is invalid for async vc-diff) to decide whether to
17927         do the revert silently or not.
17929 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17931         * vc-hooks.el (vc-loadup): Load files quietly.
17932         (vc-call-backend): Oops, brain fart.
17934 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17936         * vc-cvs.el (vc-cvs-state): Typo.
17937         (vc-cvs-merge-news): Return the status code rather than the error msg.
17939 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17941         * vc.el (with-vc-file, vc-next-action, vc-version-diff)
17942         (vc-dired-mark-locked): Replaced usage of vc-locking-user with
17943         vc-state or vc-up-to-date-p.
17944         (vc-merge): Use vc-backend-defines to check whether merging is
17945         possible.  Set state to 'edited after successful merge.
17947         * vc-hooks.el (vc-locking-user): If locked by the calling user,
17948         return that name.  Redocumented.
17950 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17952         * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
17953         new `vc-state' semantics.
17954         (vc-finish-steal): Set 'vc-state to 'edited rather than setting
17955         'vc-locking-user to the current user.
17956         (vc-merge): Inline vc-backend-merge.  Comment out code that I
17957         don't understand and hence can't adapt to the new `vc-state' and
17958         `vc-locking-user' semantics.
17959         (vc-backend-merge): Remove.
17961         * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
17962         rather than 'vc-locking-user.
17964         * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
17966         * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
17967         (vc-state): Don't use 'reserved any more.  Just use the same
17968         convention as the one used for vc-<backend>-state where the
17969         locking user (as a string) is returned.
17970         (vc-locking-user): Update, based on the above convention. The
17971         'vc-locking-user property has disappeared.
17972         (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
17974         * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
17975         with a heuristic one.
17976         (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
17977         (vc-cvs-checkin): Do a trivial parse to set the state in case of
17978         error.  That allows us to get to 'needs-merge even in the
17979         stay-local case.  There's still no way to detect 'needs-patch in
17980         such a setup (or to force an update for that matter).
17981         (vc-cvs-logentry-check): Remove, the default works as well.
17983 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
17985         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
17987         * vc.el (vc-do-command): kill-all-local-variables, to reset any
17988         major-mode in which the buffer might have been put earlier.  Use
17989         `remove' and `when'.  Allow `okstatus' to be `async' and use
17990         `start-process' in this case.
17991         (vc-version-diff): Handle the case where the diff looks empty
17992         because of the use of an async process.
17994 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
17996         * vc.el (vc-next-action-on-file): Removed optional parameter
17997         `simple'.  Recompute state unconditionally.
17998         (vc-default-toggle-read-only): Removed.
18000         * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
18001         (vc-toggle-read-only): Undid prev change.
18003         * vc-cvs.el (vc-cvs-stay-local): Renamed from
18004         vc-cvs-simple-toggle.  Redocumented.
18005         (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
18006         (vc-cvs-toggle-read-only): Removed.
18008 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
18010         * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
18011         (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
18012         (vc-release-greater-or-equal-p): Move to vc-rcs.el.
18013         (vc-file-clear-masterprops): Braindead "fix".  It was a nop and
18014         still is. So maybe it should be removed.
18015         (vc-head-version, vc-find-binary): Remove.
18016         (vc-recompute-state): Move from vc-hooks.el.
18017         (vc-next-action-on-file): Add a `simple' argument to allow
18018         avoiding the `recompute' step (use for vc-cvs-simple-toggle).
18019         (vc-default-toggle-read-only, vc-default-record-rename): New funs.
18020         (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
18021         (vc-dired-mode-map): Properly defvar it.
18022         (vc-print-log): Call log-view-mode if available.
18023         (small-temporary-file-directory): defvar instead of use boundp.
18024         (vc-merge-news): Moved to vc-cvs.el.
18025         (vc-default-merge-news): New function.
18027         * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
18028         (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
18029         (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
18030         unknown `vc-latest-version' function.  It should probably refer to
18031         vc-workfile-version or somesuch, but it's very unclear to me and I
18032         don't have SCCS to test things.
18034         * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
18035         (vc-sccs-state-heuristic): Fix typo.
18036         (vc-sccs-workfile-unchanged-p): Add missing argument.
18038         * vc-rcs.el: Require vc and vc-rcs-hooks.
18039         (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
18040         (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
18041         (vc-release-greater-or-equal-p): Move from vc.
18042         (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
18043         vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
18044         (vc-rcs-checkout): Add a missing `new-version' argument in the
18045         call to vc-rcs-latest-on-branch-p.  Hopefully that was the right one.
18047         * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
18048         (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
18049         (vc-rcs-latest-on-branch-p): Use the `version' argument rather
18050         than the apparently unbound `workfile-version'.
18052         * vc-hooks.el (vc-master-templates): Def the obsolete var.
18053         (vc-file-prop-obarray): Use `make-vector'.
18054         (vc-backend-functions): Add new hookable functions
18055         vc-toggle-read-only, vc-record-rename and vc-merge-news.
18056         (vc-loadup): If neither backend nor default functions exist, use
18057         the backend function rather than nil.
18058         (vc-call-backend): If the function if not bound yet, try to load
18059         the non-hook file to see if it provides it.
18060         (vc-call): New macro plus use it wherever possible.
18061         (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
18062         nor `vc-find-binary' since it's only called from
18063         vc-mistrust-permission which is only used once the backend is known.
18064         (vc-checkout-model): Fix parenthesis.
18065         (vc-recompute-state, vc-prefix-map): Move to vc.el.
18067         * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
18068         (vc-cvs-release, vc-cvs-system-release): Remove.
18069         (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
18070         (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
18071         status symbols.
18072         (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
18073         (vc-cvs-toggle-read-only): First cut at a function to allow a
18074         cvs-status-free vc-toggle-read-only.
18075         (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
18076         (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
18077         vc-cvs-status.  Also set vc-state rather than vc-locking-user.
18078         (vc-cvs-checkout): Modify access rights directly if the user
18079         requested not to use `cvs edit'.  And refresh the mode line.
18081         * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
18082         (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
18084 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
18086         * vc-cvs.el (vc-cvs-checkout): Docstring fix.  Added a `(if
18087         workfile' that got lost when the code was extracted from vc.el.
18088         And merged the tail with the rest of the code (not possible in the
18089         old vc.el where the tail was shared among all backends).  And
18090         explicitly set the state to 'edited if `writable' is set.
18092         * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
18093         (vc-cvs-state): Be careful to return the value from
18094         vc-cvs-parse-state.
18095         (vc-cvs-parse-status): Use expand-file-name.  Don't set 'vc-state
18096         property but return it instead.  Also be careful to handle a nil
18097         or "" `rev' when workfile is non-nil (it was handled properly when
18098         workfile was nil).
18100         * vc.el: Removed those pesky unnecessary `(function' quotes.
18101         (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
18102         directly in the defvar.
18103         (vc-do-command): Bind inhibit-read-only so as to properly handle
18104         the case where the destination buffer has been made read-only.
18105         (vc-diff): Delegate to vc-version-diff in all cases.
18106         (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
18107         (vc-annotate-mode-variables): Removed (code moved partly to
18108         defvars and partly to vc-annotate-add-menu).
18109         (vc-annotate-mode): Turned into a derived-mode.
18110         (vc-annotate-add-menu): Moved in code in
18111         vc-annotate-mode-variables.
18112         (vc-update-change-log): Use make-temp-file if available.
18114 2000-09-04  Martin Lorentzson  <martinl@delysid.gnu.org>
18116         * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
18117         `vc-checkout-model' updated to `vc-cvs-update-model'.
18119 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18121         * vc.el (vc-next-action-on-file): Added handling of state
18122         `unlocked-changes'.
18123         (vc-checkout-carefully): Is now practically obsolete, unless the
18124         above is too slow to be enabled unconditionally.
18125         (vc-update-change-log): Fixed typo.
18127         * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
18129         * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
18130         Now handles state `unlocked-changes'.
18131         (vc-sccs-workfile-unchanged-p): New function, to support the above.
18133         * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
18135         * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
18136         (vc-rcs-fetch-master-state): Bug fixes.  Recognize state
18137         `unlocked-changes'.
18138         (vc-rcs-workfile-unchanged-p): Renamed from
18139         `vc-rcs-workfile-unchanged'.  This is not a real backend-specific
18140         function yet, but supposed to become one soon.
18142         * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
18143         `vc-steal-lock'.
18144         (vc-call-backend): Changed error message.
18145         (vc-state): Added description of state `unlocked-changes'.
18147 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18149         * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
18150         always return t in CVS-controlled directories.
18152         * vc.el (vc-responsible-backend): New function.
18153         (vc-register): Largely rewritten.
18154         (vc-admin): Removed (implementation moved into vc-register).
18155         (vc-checkin): Redocumented.
18156         (vc-finish-logentry): If no backend defined yet (because we are in
18157         the process of registering), use the responsible backend.
18159         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
18160         Updated function lists.
18161         (vc-call-backend): Fixed typo.
18163         * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
18164         New functions.
18165         (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
18166         Removed query option.  Redocumented.
18168 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18170         * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
18172         * vc.el: Updated callers of `vc-checkout-required' to use
18173         `vc-checkout-model'.
18175 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18177         * vc-rcs.el (vc-rcs-backend-release-p): function added.  other
18178         stuff updated to reference this function instead of the old
18179         `vc-backend-release-p'.
18181 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18183         * vc-sccs-hooks.el (vc-uses-locking): Renamed to
18184         vc-checkout-model.  Return appropriate values.  Updated callers.
18186 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18188         * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
18189         (vc-backend-revert): Function moved into `vc-revert';
18190         `vc-next-action' must be updated to accomodate this change.
18191         (vc-backend-steal): Function moved into `vc-finish-steal'.
18192         (vc-backend-logentry-check): Function moved into
18193         `vc-finish-logentry'.
18194         (vc-backend-printlog): Function moved into `vc-print-log'.
18195         (vc-backend-uncheck): Function moved into `vc-cancel-version'.
18196         (vc-backend-assign-name): Function moved into
18197         `vc-create-snapshot'.
18199 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18201         * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
18202         Rename to vc-checkout-model.  Return appropriate values.
18203         Update callers.
18205         * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
18206         to vc-checkout-model.
18207         (vc-checkout-required): Rename to vc-checkout-model.
18208         Re-implement and re-comment.
18209         (vc-after-save): Use vc-checkout-model.
18211 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18213         * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
18214         Update to use the vc-BACKEND-diff functions instead.
18215         `vc-diff' is now working.
18217         * vc-rcs.el (vc-rcs-logentry-check): New function.
18219         * vc-cvs.el (vc-cvs-logentry-check): New function.
18221         * vc-sccs.el (vc-sccs-diff): Function changed name from
18222         `vc-backend-diff'.  This makes `vc-diff' work.
18224         * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
18225         of functions possibly implemented in a vc-BACKEND library.
18226         (vc-checkout-required): Fix bug that caused an error to be
18227         signaled during `vc-after-save'.
18229         * vc.el: Fix typo.
18230         This checkin is made with our new VC code base for the very first time.
18231         A simple `(vc-checkin (buffer-file-name))' was used to perform it.
18233         * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
18234         `vc-checkout-required' updated to `vc-cvs-uses-locking'.
18236         * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
18237         updated to `vc-uses-locking'.
18238         (vc-checkout-required): Call to backend function.
18239         `vc-checkout-required' updated to `vc-uses-locking' instead.
18241         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
18242         `vc-checkout-required' updated to `vc-rcs-uses-locking'.
18244         * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
18245         to match the split into various backends.
18246         (vc-backend-checkin): Remove.  Merge with `vc-checkin'.
18247         (vc-retrieve-snapshot): Bug fix.
18249 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18251         * vc-sccs.el (vc-sccs-release): Doc fix.
18253 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18255         * vc.el (vc-next-action-on-file): Bug found and fixed.
18256         (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
18257         (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
18259         * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
18260         (vc-rcs-checkout): Name space cleaned up.  No more revision number
18261         crunching function names that are not prefixed with vc-rcs.
18262         (vc-rcs-checkout-model): Function added.  References to
18263         `vc-checkout-model' replaced.
18265 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18267         * vc.el (vc-next-action-on-file): Rewritten for the new state model.
18268         (vc-backend-merge-news): Renamed to `vc-merge-news'.  (Specific parts
18269         still need to be split, and implemented for RCS).
18271 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18273         * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
18275         * vc-sccs.el (vc-sccs-admin): Added the query-only option as
18276         required by the vc.el file.
18278         * vc-rcs.el (vc-rcs-admin): Added the query-only option as
18279         required by the vc.el file.
18280         (vc-rcs-exists): Function added.
18282         * vc-cvs.el (vc-cvs-admin): Added the query-only option as
18283         required by the vc.el file.
18285         * vc.el (vc-admin): Updated to handle selection of appropriate
18286         backend.  Current implementation is crufty and need re-thinking.
18288         * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
18290 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18292         * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
18293         beginning of annotate buffers correctly.
18295         * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
18296         (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
18297         functionality updated quite a lot to support multiple backends.
18298         Variables `vc-annotate-mode', `vc-annotate-buffers',
18299         `vc-annotate-backend' added.
18301         * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
18302         `vc-annotate-difference' added to supported backend functions.
18304 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18306         * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
18307         Use with-temp-file instead of /bin/sh.  Merged from mainline
18309 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18311         * vc-sccs-hooks.el (vc-sccs-registered): Updated.
18313         * vc-rcs-hooks.el (vc-rcs-registered): Updated.
18315         * vc-cvs-hooks.el (vc-cvs-registered): Updated.
18317 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18319         * vc-hooks.el: vc-state-heuristic added to
18320         vc-backend-hook-functions.
18322         * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
18324         * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
18326         * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
18327         `vc-uses-locking' to `vc-checkout-required'.  Rename the `locked'
18328         state to `reserved'.
18330         * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
18331         `vc-checkout-required'.  Rename the `locked' state to `reserved'.
18333 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18335         * vc-rcs-hooks.el: Implement new state model.  Hardly anything
18336         untouched.
18338         * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
18340         * vc.el (vc-update-change-log): Use small-temporary-file-directory,
18341         if defined.  (Merged from main line, slightly adapted.)
18343         * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
18344         millenium problem (merged from mainline).
18346 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18348         * vc-cvs.el: Split the annotate feature into a BACKEND-specific
18349         part and moved the non-BACKEND stuff to vc.el.
18351         * vc.el: Split the annotate feature into a BACKEND specific part
18352         and moved it from the vc-cvs.el file to this one.
18354 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18356         * vc-hooks.el: Implement new state model.
18357         (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
18358         (vc-locking-user): Simplify.  Now only needed if the file is
18359         locked by somebody else.
18360         (vc-lock-from-permissions): Remove.  Functionality is in
18361         vc-sccs-hooks.el and vc-rcs-hooks.el now.
18362         (vc-mode-line-string): New name for former vc-status.  Adapted.
18363         (vc-mode-line): Adapt to use the above.  Remove optional parameter.
18365         * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
18366         Various simplifications and adaptations all over the place.
18368         * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
18369         Simplify and adapt the rest.
18371         * vc.el (vc-resynch-window): Add TODO comment: check for
18372         interaction with view mode according to recent RCS change.
18373         (vc-backend-merge-news): Merge "CMUP" patch from mainline.
18375 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18377         * vc.el: Convert the remaining function comments to docstrings.
18379 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18381         * vc.el (vc-backend-release, vc-release-greater-or-equal)
18382         (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
18383         (vc-minor-part, vc-previous-version): Functions that operate and
18384         compare revision numbers got proper documentation.  Comments added
18385         about their possible removal.
18387 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18389         * vc.el (vc-latest-on-branch-p): Function removed and replaced in
18390         the vc-backend.el files.
18392         * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
18394         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
18395         (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
18396         (vc-rcs-previous-version): Functions added.
18398         * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
18400         * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
18402 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18404         * vc-hooks.el (vc-master-templates): Is really obsolete.
18405         Comment out the definition for now.  What is the right procedure
18406         to get rid of it?
18407         (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
18408         rewritten.
18409         (vc-default-registered): Remove.
18410         (vc-check-master-templates): New function; does mostly what the
18411         above did before.
18412         (vc-locking-user): Don't rely on the backend to set the property.
18414         * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
18415         Rewrite documentation.
18416         (vc-rcs-templates-grabbed): New variable.
18417         (vc-rcs-grab-templates): New function.
18418         (vc-rcs-registered): Rewrite to use above mechanism.
18420         * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
18421         Rewrite documentation.
18422         (vc-sccs-templates-grabbed): New variable.
18423         (vc-sccs-grab-templates): New function.
18424         (vc-sccs-registered): Rewrite to use above mechanism.
18425         (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
18426         Don't throw the result, simply return it.
18428         * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
18429         (vc-cvs-find-master): Remove.  Code is now in vc-cvs-registered.
18430         (vc-cvs-registered): Does the check itself now.  Simplify.
18432         * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
18433         from main line.
18435 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18437         * vc-cvs.el (vc-cvs-diff): New function.
18439         * vc-sccs.el (vc-sccs-diff): New function.
18441         * vc-rcs.el (vc-rcs-diff): New function.
18442         (vc-rcs-checkout): Bug (typo) found and fixed.
18443         (vc-rcs-register-switches): New variable.
18445         * vc.el (vc-backend-diff): Function removed and placed in the
18446         backend files.
18448 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18450         * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
18452         * vc.el (vc-backend-checkout): Function removed and replaced in
18453         the vc-backend.el files.
18455         * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
18457         * vc.el (vc-backend-admin): Removed and replaced in the
18458         vc-backend.el files.
18460         * vc.el (Martin): Removed all the annotate functionality since it
18461         is CVS backend specific.
18463 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18465         * spec.txt: Added specification of vc-state.
18467         * vc-sccs-hooks.el (vc-sccs-master-properties):
18468         Remove handling of vc-latest-version and
18469         vc-your-latest-version.  What used to be vc-latest-version, is now
18470         returned as vc-workfile-version.
18471         (vc-sccs-workfile-version): Adapt.
18473 2000-09-04  Dave Love  <fx@gnu.org>
18475         * vc.el: [Merged from mainline.]
18476         (vc-dired-mode): Make the dired-move-to-filename-regexp
18477         regexp match the date, to avoid treating date as file size.
18478         Add YYYY S option to WESTERN/
18480 2000-09-04  Dave Love  <fx@gnu.org>
18482         * vc.el: Require `compile' when compiling.
18483         (vc-logentry-check-hook): New option.
18484         (vc-steal-lock): Use compose-mail.
18485         (vc-dired-mode-map): Defvar when compiling.
18486         (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
18487         vc-sccs.el and renamed.  Callers changed.
18488         (vc-backend-checkout, vc-backend-logentry-check)
18489         (vc-backend-merge-news): Doc fix.
18490         (vc-default-logentry-check): New function.
18491         (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
18492         (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
18493         (vc-backend-merge): Doc fix.  Use backend functions.
18494         (vc-check-headers): Use backend functions.
18496         * vc-cvs.el: Require vc when compiling.
18497         (vc-cvs-register-switches): Doc fix.
18498         (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
18499         (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
18500         (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
18501         New functions (code from vc.el).
18502         (vc-annotate-display-default): Fix interactive spec.
18503         (vc-annotate-time-span): Doc fix.
18505         * vc-rcs.el: Require vc when compiling.
18506         (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
18507         (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
18508         (vc-rcs-checkin): New functions (code from vc.el).
18509         (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
18510         Doc fix.
18511         (vc-rcs-release): Deleted.  (Duplicated vc-rcs-system-release).
18513         * vc-sccs.el: Require vc when compiling.
18514         (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
18515         (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
18516         (vc-sccs-revert)
18517         (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
18518         from vc.el).
18519         (vc-sccs-add-triple, vc-sccs-record-rename)
18520         (vc-sccs-lookup-triple): Moved from vc.el and renamed.
18521         (vc-sccs-admin): Doc fix.
18523 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
18525         * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
18526         (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
18527         (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
18528         from vc.el.
18530         * vc-sccs.el (vc-admin-sccs): Added from vc.el
18532         * vc-cvs.el: Moved the annotate functionality from vc.el.
18533         (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
18535 2000-09-04  Dave Love  <fx@gnu.org>
18537         * vc.el (vc-backend-release): Call vc-system-release.
18539         * vc-sccs.el (vc-sccs-system-release):
18540         Renamed from vc-sccs-backend-release.
18542         * vc-rcs.el (vc-rcs-system-release):
18543         Renamed from vc-rcs-backend-release.
18545         * vc-cvs.el (vc-cvs-system-release):
18546         Renamed from vc-cvs-backend-release.
18548 2000-09-04  Dave Love  <fx@gnu.org>
18550         * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
18551         backend files.
18552         (vc-backend-release): Dispatch to backend functions.
18553         (vc-backend-release-p): Don't mention CVS, RCS.  [The SCCS case
18554         probably needs attention.]
18556         * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
18557         (vc-sccs-backend-release): New function.
18559         * vc-cvs.el (vc-cvs-release): Moved from vc.el.
18560         (vc-cvs-backend-release): New function.
18562         * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
18563         Doc fix.
18564         (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
18565         (vc-default-dired-state-info): New function.
18566         (vc-dired-state-info): Dispatch to backends.
18567         (vc-dired-hook): Doc fix.  Simplify, pending removal of CVS specifics.
18569         * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
18570         from vc.el and renamed.
18572 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18574         * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
18575         (vc-version-other-window, vc-backend-assign-name): Removed
18576         references to vc-latest-version; sometimes changed into
18577         vc-workfile-version.
18579         * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
18580         vc-rcs-master-workfile-version.
18581         (vc-rcs-workfile-version): Use the above.  Don't call
18582         vc-latest-version (that was unreachable code, anyway).
18583         (vc-rcs-fetch-master-properties): Doc fix.
18585         * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
18586         (vc-backend-hook-functions): Removed them from this list, too.
18587         (vc-fetch-properties): Removed.
18588         (vc-workfile-version): Doc fix.
18590         * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
18591         (vc-rcs-workfile-version, vc-rcs-locking-user)
18592         (vc-rcs-uses-locking): Use it.
18594         * vc-hooks.el (vc-consult-rcs-headers):
18595         Moved into vc-rcs-hooks.el, under the name
18596         vc-rcs-consult-headers.
18598         * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
18599         headers.
18600         (vc-cvs-find-master): Use this name only; correct different
18601         versions of the name.
18603         * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
18604         New functions.
18605         (vc-sccs-locking-user): Use the latter.
18607         * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
18608         New functions.
18610         * vc-hooks.el (vc-master-locks, vc-master-locking-user):
18611         Moved into both
18612         vc-rcs-hooks.el and vc-sccs-hooks.el.  These properties and access
18613         functions are implementation details of those two backends.
18615 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18617         * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
18618         (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
18620         * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
18621         (vc-sccs-parse-locks): SCCS-specific code moved here from
18622         vc-hooks.
18624         * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
18625         code moved here from vc-hooks.
18627         * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
18628         into back-end specific parts and removed.  Callers not updated
18629         yet; because I guess these callers will disappear into back-end
18630         specific files anyway.
18632 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18634         * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
18635         (vc-backend-checkout): Changed calls to `vc-checkout-model' to
18636         `vc-uses-locking'.
18638         * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
18639         Store yes/no in the property, and return t/nil.  Updated all
18640         callers.
18642         * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
18643         vc-sccs-uses-locking.  Don't set property.
18644         (vc-sccs-locking-user): Don't set property.
18646         * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
18647         vc-cvs-uses-locking.  Don't set property here; leave that to
18648         vc-hooks.
18649         (vc-cvs-locking-user): Reflect above change.  Streamlined.
18651         * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
18652         vc-rcs-uses-locking.
18653         (vc-rcs-locking-user): Reflect above change.
18655 2000-09-04  Dave Love  <fx@gnu.org>
18657         * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
18659         * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
18661         * vc-hooks.el (vc-checkout-model): Punt to backends.
18663         * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
18665         * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
18667         * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
18668         New functions.
18670         * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
18671         New functions.
18673         * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
18674         (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
18676         * vc-hooks.el (vc-default-locking-user): New function.
18677         (vc-locking-user, vc-workfile-version): Punt to backends.
18679 2000-09-04  Dave Love  <fx@gnu.org>
18681         * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
18682         (vc-master-workfile-version): Moved from vc-hooks.
18684         * vc-rcs-hooks.el: Fix duplicate code in last change.
18686         * vc-rcs-hooks.el: Require vc-hooks when compiling.
18687         (vc-rcs-master-templates): Improve :type.
18688         (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
18689         vc-master-workfile-version): Moved from vc-hooks.
18691         * vc-sccs-hooks.el: Require vc-hooks when compiling.
18692         (vc-sccs-master-templates): Improve :type.
18693         (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
18695         * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
18697         * vc-cvs-hooks.el: Require vc-hooks when compiling.
18698         (vc-cvs-master-templates): Improve :type.  Use
18699         vc-cvs-find-cvs-master.
18700         (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
18701         from vc-hooks.
18702         (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
18704         * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
18705         Moved to vc-cvs-hooks.
18707         * vc-hooks.el: Add doc strings in various places.  Simplify the
18708         minor mode setup.
18709         (vc-handled-backends): New user variable.
18710         (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
18711         simplification.
18713 2000-09-04  Dave Love  <fx@gnu.org>
18715         * vc.el: Some doc fixes for autoloaded and interactive functions.
18716         Fix compilation warnings from ediff stuff.
18717         (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
18719         * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
18721         * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
18723         * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
18725 2000-09-04  Dave Love  <fx@gnu.org>
18727         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
18728         New variable.
18729         (vc-make-backend-function, vc-loadup, vc-call-backend)
18730         (vc-backend-defines): New functions.
18732         * vc-hooks.el: Various doc fixes.
18733         (vc-default-back-end, vc-follow-symlinks): Custom fix.
18734         (vc-match-substring): Function removed.  Callers changed to use
18735         match-string.
18736         (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
18737         Simplify.
18739 2000-09-04  Dave Love  <fx@gnu.org>
18741         * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
18742         type.
18743         (vc-sccs-project-dir, vc-search-sccs-project-dir)
18744         (vc-sccs-registered): Doc fix.
18746         * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
18747         (vc-cvs-registered): Doc fix.
18749         * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
18750         (vc-rcs-registered): Doc fix.
18752 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18754         * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
18756         * vc-hooks.el: vc-registered has been renamed
18757         vc-default-registered.  Some functions have been moved to the
18758         backend specific files.  they all support the
18759         vc-BACKEND-registered functions.
18761 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
18763         * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
18765         * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
18767 2000-09-04  Dave Love  <fx@gnu.org>
18769         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
18770         menu-bar-update-hook.
18772         * help.el (help-manyarg-func-alist): Add
18773         find-operation-coding-system.
18775         * wid-edit.el (widget-sexp-validate): Fix garbled code.
18777         * custom.el (custom-set-variables): Print message about errors in
18778         setting.
18780 2000-09-03  Andrew Innes  <andrewi@gnu.org>
18782         * makefile.w32-in: Change to DOS line endings.
18784 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
18786         * mouse.el (mouse-popup-menubar): Supply the prompt string for
18787         minor-mode keymaps, if they don't have one.
18789 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
18791         * eshell/esh-module.el (eval-when-compile): Don't lose if
18792         esh-module.el's file name is truncated to DOS 8+3 limits.
18794 2000-09-01  John Wiegley  <johnw@gnu.org>
18796         * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
18797         predicate, which caused entries in the completion list to be
18798         doubled.
18800 2000-08-30  John Wiegley  <johnw@gnu.org>
18802         * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
18803         sending to subprocesses.  Also, hook pre-command-hook if
18804         `eshell-send-direct-to-subprocesses' is non-nil.
18805         (eshell-send-direct-to-subprocesses): New config variable.  If t,
18806         subprocess input is send immediately.
18807         (eshell-toggle-direct-send): New function.
18808         (eshell-self-insert-command): New function.
18809         (eshell-intercept-commands): New function.
18810         (eshell-send-input): If direct subprocess sending is enabled,
18811         don't echo any input to the Eshell buffer.  Let the subprocess
18812         handle that.  This requires "stty echo" in bash, for example.
18814 2000-08-28  John Wiegley  <johnw@gnu.org>
18816         * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
18817         completion function for Eshell's implementation of `unset'.
18819 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
18821         * info.el (Info-directory-list): Doc fix.
18823 2000-08-31  Peter Breton  <pbreton@ne.mediaone.net>
18825         * filecache.el (file-cache-add-directory-using-find): Don't quote
18826         wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
18828 2000-08-31  Kenichi Handa  <handa@etl.go.jp>
18830         * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
18831         coding systems.
18833 2000-08-30  Andrew Innes  <andrewi@gnu.org>
18835         * timer.el (run-with-idle-timer): Undo last change, so that timer
18836         is not activated immediately if Emacs is already idle.  Some
18837         existing code relies on this behaviour.
18839 2000-08-30  Miles Bader  <miles@gnu.org>
18841         * frame.el (set-frame-font): Do completion of font-name for
18842         interactive use.
18844 2000-08-30  Kenichi Handa  <handa@etl.go.jp>
18846         * international/quail.el (quail-start-translation): Bind locally
18847         last-command-event, last-command, and this-command.
18848         (quail-start-conversion): Likewise.
18849         (quail-self-insert-command): Fix docstring.
18851 2000-08-29  Gerd Moellmann  <gerd@gnu.org>
18853         * progmodes/executable.el
18854         (executable-make-buffer-file-executable-if-script-p): Check that
18855         buffer contains at least 2 characters.
18857 2000-08-29  Eli Zaretskii  <eliz@is.elta.co.il>
18859         * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
18861 2000-08-29  Dave Love  <fx@gnu.org>
18863         * diff-mode.el (diff-mode) <defgroup>: Add :version.
18864         (diff-mode-shared-map): Bind mouse-2.
18865         (diff-imenu-generic-expression): New variable.
18866         (diff-mode): Use it.
18868         * mouse.el (mouse-major-mode-menu): Use local-key-binding.
18869         (mouse-popup-menubar): Add minor mode menus.
18870         (popup-menu): Check for lookup-key returning number.
18872 2000-08-29  Miles Bader  <miles@gnu.org>
18874         * comint.el (comint-send-input): Create overlays using the proper
18875         front/read-advance arguments.
18877 2000-08-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18879         * ps-print.el: Even/odd pages printing.  Doc fix.
18880         (ps-print-version): New version number (6.0).
18881         (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
18882         (ps-background, ps-begin-file, ps-begin-job): Code fix.
18883         (ps-print-duplex-feature): Variable eliminated.
18884         (ps-even-or-odd-pages): New variable.
18886         * progmodes/ebnf2ps.el: Doc fix.
18887         (ebnf-version): New version (3.3).
18888         (ebnf-user-arrow): Change variable customization to sexp.
18889         (ebnf-user-arrow): Function eliminated.
18890         (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
18892 2000-08-29  Kenichi Handa  <handa@etl.go.jp>
18894         * help.el (help-xref-mule-regexp): New variable.
18895         (help-make-xrefs): Handle help-xref-mule-regexp.
18897         * international/mule-cmds.el (help-xref-mule-regexp-template): New
18898         variable.
18899         (describe-input-method): Temporarily activate the specfied input
18900         method to display the information.
18901         (describe-language-environment): Hyperlinks to mule related items.
18903         * international/mule-diag.el (charset-multibyte-form-string): New
18904         function.
18905         (list-character-sets-1): Use charset-multibyte-form-string.
18906         (describe-character-set): New function.
18907         (describe-coding-system): Hyperlinks to safe character sets.
18909         * international/quail.el (quail-help): New arg PACKAGE.
18910         Hyperlinks to mule related items.
18911         (quail-help-insert-keymap-description): Use
18912         substitute-command-keys instead of describe-bindings.
18913         (quail-translation-help): Hyperlinks to mule related items.
18915 2000-08-28  John Wiegley  <johnw@gnu.org>
18917         * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
18918         have a defsubst call itself.  Made `eshell-flatten-list' back into
18919         a function again.
18921         * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
18922         catch, in case re-centering point at bottom messes up the display.
18923         This happens frequently in Emacs 21, due I believe to variable
18924         line heights.
18926         * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
18927         to call `find-tag-interactive'.
18929         * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
18930         the list of remember directories.
18932 2000-08-28  John Wiegley  <johnw@gnu.org>
18934         * align.el: Test align-region-separate to see if it's a symbol.
18936 2000-08-28  John Wiegley  <johnw@gnu.org>
18938         * eshell/esh-util.el (eshell-flatten-list): Made this function
18939         into a defsubst form.  It gets used very frequently, although
18940         calls don't occur all that often.
18942         * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
18943         examining it.
18945         * eshell/esh-cmd.el (eshell-rewrite-while-command):
18946         (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
18947         `eshell-protect'.
18948         (eshell-copy-handles): Created a new macro for duplicating the
18949         current set of open handles.  This is needed by the looping
18950         functions.
18951         (eshell-do-eval): Fixed while and if, so that the eshell-test-body
18952         is not incorrectly stomped on.
18954         * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
18955         declaration for pcomplete-use-paring.
18956         (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
18957         value of eshell-cmpl-use-paring.
18958         * pcomplete.el (pcomplete-use-paring): New config variable, to
18959         indicate whether paring should be used.
18960         (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
18961         completion alternatives that have already been used.
18963         * eshell/esh-mode.el (eshell-repeat-argument): Added function,
18964         bound to C-c C-y, which will repeat the previous N arguments
18965         (based on prefix argument).
18966         (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
18968         * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
18969         if there is no *Help* buffer.  This is for XEmacs, which renames
18970         its help buffers uniquely.  TODO: Find out what the current buffer
18971         name to delete is.
18973         * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
18974         first entry that correlates to a passwd/group number.  Later
18975         entries (used for group/user name aliasing to multiple IDs) are
18976         ignored.
18978         * eshell/em-xtra.el (eshell/expr):
18979         * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
18980         (eshell-grep, eshell/diff, eshell/locate):
18981         * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
18982         argument list, before passing it to the system command.
18984         * eshell/esh-mode.el (eshell-find-tag): Added a special version of
18985         `find-tag' for use at final position in Eshell buffers (which
18986         otherwise triggers an error on Emacs 21).
18987         (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
18988         buffer, if it is currently bound to `find-tag'.
18990         * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
18991         in the list of matched Makefile names.
18992         (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
18993         directory, prefer its contents to Makefile.
18995         * eshell/em-dirs.el (eshell/cd): cd commands that look up
18996         directory parts (like "cd old new", or "cd =regexp"), are now case
18997         sensitive on non-Windows/DOS platforms.
18999         * eshell/esh-mode.el (eshell-parse-command-input): When a user
19000         types RET after an open delimiter (like "), display a message
19001         indicating that Eshell is waiting for the closing delimiter.
19003         * eshell/esh-var.el (eshell/unset): Added a command for unsetting
19004         environment variables.
19006         * eshell/em-unix.el (eshell/diff): Added logic to fail more
19007         gracefully if the user enters incorrect arguments.
19009         * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
19010         Eshell buffers.
19012         * eshell/esh-var.el (eshell-interpolate-variable):
19013         * eshell/esh-mode.el (eshell-move-argument):
19014         * eshell/em-unix.el (eshell-du-sum-directory):
19015         * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
19016         * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
19017         (not (= ...)).
19019         * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
19020         to ensure the `preserve' flag gets propagated when doing recursive
19021         directory copies.
19023 2000-08-28  Stefan Monnier  <monnier@cs.yale.edu>
19025         * eshell/em-hist.el (eshell-put-history, eshell-get-history):
19026         Don't convert \n into \0177 in memory.
19027         (eshell-read-history, eshell-write-history): Convert \n to \0177,
19028         and back again, when reading and writing.
19030 2000-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
19032         * eshell/esh-util.el (eshell-processp): Added to relieve constant
19033         testing of `fboundp' on `processp'.
19035         * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
19036         (eshell/jobs): Don't call process-list if it is not bound.
19037         (eshell-gather-process-output): Support systems where async
19038         subprocesses aren't supported.
19039         (eshell-scratch-buffer, eshell-last-sync-output-start): New
19040         variables.
19042         * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
19043         eshell-do-eval returns t.
19044         (eshell-do-pipelines-synchronously): New defmacro.
19045         (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
19046         when async subprocesses aren't supported.
19047         (eshell-do-eval): Use eshell-processp.  Don't throw eshell-defer
19048         if async subprocesses aren't supported.
19049         (eshell-resume-command): Don't assume STATUS is a string.
19051         * eshell/em-unix.el (eshell/rm): Use eshell-processp.
19053         * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
19054         (eshell-close-target, eshell-get-target): Use eshell-processp.
19055         (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
19056         fix.
19057         (eshell-get-target, eshell-create-handles): Doc fix.
19059 2000-08-28  Miles Bader  <miles@lsi.nec.co.jp>
19061         * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
19062         criterion to include commands that output something, as long as it
19063         leaves both the command and the end-of-buffer visible when the
19064         command has exited.
19065         (eshell-review-quick-commands): Adjust the help doc string
19066         accordingly.
19068 2000-08-28  Peter Breton  <pbreton@ne.mediaone.net>
19070         * locate.el (locate): Cleaned up locate command's interactive prompting
19071         Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
19073         * filecache.el (file-cache-case-fold-search): New variable
19074         (file-cache-assoc-function): New variable
19075         (file-cache-minibuffer-complete): Use file-cache-assoc-function.
19076         Use file-cache-case-fold-search variable
19077         (file-cache-add-file): Use file-cache-assoc-function
19078         (file-cache-delete-file): likewise
19079         (file-cache-directory-name): likewise
19080         (file-cache-debug-read-from-minibuffer): likewise
19082 2000-08-28  Gerd Moellmann  <gerd@gnu.org>
19084         * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
19085         (abbrev-table-name): New function.
19086         (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
19087         If non-nil list local abbrev, only.
19089 2000-08-28  Stanislav Shalunov  <shalunov@internet2.edu>
19091         * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
19092         from Gnus support code, and use special article copy buffer
19093         `(gnus-original-article-buffer)' instead.  This allows to get rid
19094         of article-hide-headers usage (which breaks in the latest Gnus
19095         version).  Thanks to Detlev Zundel.
19097 2000-08-28  Kenichi Handa  <handa@etl.go.jp>
19099         * international/quail.el (quail-use-package): Hide "... loaded"
19100         message.
19101         (quail-start-translation, quail-start-conversion): Likewise.
19103         * international/kkc.el (kkc-region): Hide "... loaded" message.
19105 2000-08-27  Dave Love  <fx@gnu.org>
19107         * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
19109 2000-08-27  Miles Bader  <miles@gnu.org>
19111         * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
19113 2000-08-27  Kenichi Handa  <handa@etl.go.jp>
19115         * international/ja-dic-cnv.el (skkdic-convert): Insert (require
19116         'ja-dic-cnv), not (require 'skkdic-cnv).
19118 2000-08-26  Miles Bader  <miles@gnu.org>
19120         * faces.el (face-x-resources): Add entry for :inherit.
19121         * cus-face.el (custom-face-attributes): Add support for :inherit
19122         attribute.  Add support for relative face heights.
19123         (custom-face-attributes-get): Treat `nil' as being a default value
19124         for :inherit (as well as `unspecified').
19126         * faces.el (set-face-attribute): Update doc string.
19127         (face-attribute-name-alist): Add :inherit.
19128         (face-valid-attribute-values): Handle :inherit.
19129         (face-read-string): Rephrase prompt to be less confusing.
19130         Assume that DEFAULT is a string, since we must return a string.
19131         (face-read-integer): Use `format' to turn DEFAULT into an
19132         acceptable default for face-read-string.  Match NEW-VALUE against
19133         the string "unspecified", not the symbol `unspecified', since
19134         that's what face-read-string returns.
19135         (read-face-attribute): Lookup a name for old-value in valid, and
19136         use it as a default if we find one.  Treat all values from
19137         face-read-string as strings.  If the default is used, don't do any
19138         more processing on the value, just use the old value directly.
19139         (read-face-and-attribute, modify-face): Tweak prompt.
19140         (read-face-name): Don't assume prompt ends with a space.
19142         * faces.el (describe-face): Add support for :inherit attribute.
19144 2000-08-25  Kenichi Handa  <handa@etl.go.jp>
19146         * terminal.el (terminal-emulator): Fix args to `concat'.  Now
19147         concat doesn't accept interger.
19149         * international/kkc.el: Remove SKK from Keywords.  Require
19150         ja-dic-utl instead of skkdic-utl.
19152         * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
19153         Provide ja-dic-cnv instead of skkdic-cnv.
19154         (ja-dic-filename): Renamed from skkdic-filename.  Referers changed
19155         (iso-2022-7bit-short): Add safe-charsets property.
19156         (skkdic-convert-postfix): Search Japanese chou-on character in
19157         addition to Hiragana character.
19158         (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
19159         (skkdic-convert): Change file names from skkdic.el to ja-dic.el
19160         (batch-skkdic-convert): Likewise.
19162         * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
19163         Provide ja-dic-utl instead of skkdic-utl.
19164         (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
19166 2000-08-24  Dave Love  <fx@gnu.org>
19168         * disp-table.el (standard-display-default): Make the test of `l'
19169         useful.
19171         * language/european.el ("Latin-8", "Latin-9"): Add input methods,
19172         mod sample text.
19174         * international/iso-ascii.el: Make pilcrow convenient string
19175         consistent with section.
19176         (iso-ascii-display): Set up multibyte characters as well as
19177         unibyte.
19179 2000-08-24  Kenichi Handa  <handa@etl.go.jp>
19181         * international/mule-cmds.el (reset-language-environment): Set
19182         default-process-coding-system to '(undecided . iso-latin-1), which
19183         makes process I/O almost consistent with file I/O.   Call this
19184         function when mule-cmds.el[c] is loaded.
19186 2000-08-22  Andrew Innes  <andrewi@gnu.org>
19188         * makefile.w32-in: New file.
19190 2000-08-22  Miles Bader  <miles@lsi.nec.co.jp>
19192         * comint.el (comint-output-filter): Compare end of
19193         comint-last-output-overlay with the start of the newly inserted
19194         text, not the end, when deciding whether to extend it.
19195         Set saved-point's insertion type to advance after insertion.
19197         * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
19198         since this is now done independently of font-lock mode.
19200 2000-08-21  Gerd Moellmann  <gerd@gnu.org>
19202         * server.el (server-kill-new-buffers): New user option.
19203         (server-existing-buffer): New buffer-local variable.
19204         (server-visit-files): When using an existing buffer, set
19205         server-existing-buffer to t.
19206         (server-buffer-done): If server-kill-new-buffers is t, kill the
19207         buffer, unless it was already present before visiting it with
19208         Emacs server.
19210 2000-08-21  Eli Zaretskii  <eliz@is.elta.co.il>
19212         * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
19213         even if the display doesn't support colors: some displays will
19214         support bold/underline faces.
19216 2000-08-21  Gerd Moellmann  <gerd@gnu.org>
19218         * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
19220         * startup.el (command-line): If user's init file had an error,
19221         add explanatory text to *Messages*.
19223 2000-08-21  Kenichi Handa  <handa@etl.go.jp>
19225         * man.el (Man-getpage-in-background): Decode the process output by
19226         the system locale coding system.
19228 2000-08-20  Dave Love  <fx@gnu.org>
19230         * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
19231         Don't test x-popup-menu.
19232         (function) <complete-function>: Complete only fbound symbols.
19233         <validate, value>: New.
19234         (variable) <complete-function>: Complete only bound symbols.
19235         (coding-system): Add :base-only, :complete-function, :validate,
19236         :value, :prompt-match.
19237         (widget-coding-system-prompt-value): Use read-coding-system and
19238         act on :base-only.
19239         (editable-field): Add :help-echo.
19240         (widget-push-button-gui, widget-push-button-cache)
19241         (widget-gui-action, widget-editable-list-gui): COmment out, along
19242         with uses.
19243         (widget-at): Make arg optional.
19244         (widget-echo-help): Adjust for current help-echo calling sequence.
19245         (widget-specify-field, widget-specify-button)
19246         (widget-specify-insert, widget-get-sibling, widget-image-find)
19247         (widget-convert, widget-insert, widget-leave-text)
19248         (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
19249         (widget-setup, widget-field-find, widget-before-change)
19250         (widget-after-change, widget-default-complete)
19251         (widget-default-create, widget-default-delete)
19252         (widget-push-button-value-create, editable-field)
19253         (widget-field-prompt-value, widget-field-validate)
19254         (widget-choice-value-create, widget-choice-action)
19255         (widget-choice-validate, widget-checklist-add-item)
19256         (widget-radio-add-item, widget-radio-chosen)
19257         (widget-radio-value-inline, widget-editable-list-value-create)
19258         (widget-editable-list-entry-create)
19259         (widget-documentation-link-add)
19260         (widget-documentation-string-value-create)
19261         (widget-regexp-validate, widget-file-complete)
19262         (widget-sexp-validate, widget-plist-convert-widget)
19263         (widget-plist-convert-widget, widget-alist-convert-widget)
19264         (widget-alist-convert-widget, widget-color-complete): Simplify,
19265         particularly to avoid bindings which aren't optimized out.
19267         * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
19268         Doc fix.
19269         (down-list, backward-up-list, up-list, kill-sexp)
19270         (backward-kill-sexp, mark-sexp): Make arg optional.
19271         (lisp-complete-symbol): Add optional arg PREDICATE.
19273         * cus-start.el: Add display-buffer-reuse-frames,
19274         file-coding-system-alist.
19276 2000-08-20  Gerd Moellmann  <gerd@gnu.org>
19278         * startup.el (command-line): Clear realized faces after
19279         modifying TTY color mappings.
19281 2000-08-20  Miles Bader  <miles@gnu.org>
19283         * faces.el (face-attr-match-p): Don't return true if ATTRS are
19284         merely a subset of FACE's attributes.
19286 2000-08-19  Miles Bader  <miles@gnu.org>
19288         * comint.el (comint-output-filter): Save the point with a marker,
19289         not just a buffer position.
19291         * international/mule.el (set-buffer-process-coding-system): Make
19292         interactive prompt less confusing.
19294 2000-08-19  Gerd Moellmann  <gerd@gnu.org>
19296         * hilit-chg.el: General cleanup of doc strings, comments and
19297         code formatting.
19299 2000-08-19  Miles Bader  <miles@gnu.org>
19301         * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
19302         Compiler macro removed; beginning-of-line is no longer always
19303         equivalent to forward-line, in the presence of fields.
19305         * comint.el (comint-output-filter): Remove ad-hoc saving of
19306         restriction, and just use save-restriction, now that it works
19307         correctly.  Don't adjust comint-last-input-start to account for
19308         our insertion; it shouldn't have moved because we don't use
19309         insert-before-markers anymore.  Comment out call to
19310         `force-mode-line-update'; why is it here?
19312         * gud.el (gud-basic-call): Temporarily widen gud comint buffer
19313         while checking for prompt to delete.  Use `forward-line 0'
19314         instead of beginning-of-line.
19315         (gud-filter): Temporarily widen gud comint buffer while
19316         examining output.
19318 2000-08-18  Stefan Monnier  <monnier@cs.yale.edu>
19320         * progmodes/sh-script.el: Big bag of typos.
19322         * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
19323         check since ispell-process is not bound when ispell is not yet loaded.
19325 2000-08-18  Dave Love  <fx@gnu.org>
19327         * image.el (find-image): Copy `spec' before using plist-put.
19329 2000-08-18  Gerd Moellmann  <gerd@gnu.org>
19331         * textmodes/ispell.el (ispell-dictionary-alist-6): Add
19332         `portugues'.
19334         * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
19335         backward-kill-sexp, analogous to kill-sexp.
19337         * progmodes/icon.el (icon-indent-line)
19338         (icon-is-continuation-line): Handle comments specially.
19340 2000-08-17  Ken Stevens <k.stevens@ieee.org>
19342         * ispell.el: Set to standard author/maintainer/keyword fields.
19343         Fine tuning to menu map appearance and operation, and added help.
19344         Remove `start' and `end' error messages when compiling.
19345         (ispell-choices-win-default-height): Fixed comment string.
19346         (ispell-dictionary-alist-1): Fixed regexp in castellano and
19347         castellano8 dictionaries.
19348         (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
19349         (ispell-dictionary-alist-4): Fixed regexp in francais-tex
19350         dictionary, added italiano dictionary.
19351         (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
19352         word character
19353         (ispell-tex-skip-alists): Added psfig support.
19354         (ispell-skip-html): Renamed from ispell-skip-sgml.
19355         (ispell-begin-skip-region-regexp, ispell-skip-region)
19356         (ispell-minor-check): Improved html skipping support to skip across
19357         code, and recognize `&' commands without propper `;' syntax;
19358         (ispell-process-line): Fix alignment error when manually
19359         correcting spelling.
19360         (ispell): Fix comment string.
19361         (ispell-add-per-file-word-list): Always put word list on new line.
19363 2000-08-17  Gerd Moellmann  <gerd@gnu.org>
19365         * format.el (format-encode-run-method): Fix error message to say
19366         `encode' instead of `decode'.  Use save-window-excursion around
19367         shell-command-on-region as in format-decode-run-method because
19368         shell-command-on-region can display a buffer with error output.
19369         (format-decode): Don't record undo information for the decoding.
19370         (format-annotate-function): Add parameter FORMAT-COUNT.  Make
19371         that number part of the temporary buffer name so that more than
19372         one decoding using a temporary buffer can happen safely.
19374         * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
19375         of `A-z' in the regexp.
19377         * hilit-chg.el: Fix typos in commentary.
19379         * help.el (view-emacs-news): Rewritten for new naming scheme
19380         for old NEWS files.
19382         * startup.el (command-line): Pop to *Messages* in case an error
19383         is signaled while loading user-init-file.
19385 2000-08-17  Andreas Schwab  <schwab@suse.de>
19387         * files.el (insert-directory): Don't lose original file name,
19388         undoing an undocumented change.
19390 2000-08-17  Alex Schroeder  <alex@gnu.org>
19392         * sql.el (sql-magic-go): Use comint-bol.
19393         (sql-copy-column): Use comint-line-beginning-position.
19394         (comint-line-beginning-position): Define a replacement for
19395         comint-line-beginning-position if it is not fboundp.
19397 2000-08-17  Alex Schroeder  <alex@gnu.org>
19399         * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
19400         it didn't have any effect anyway.
19402 2000-08-17  Alex Schroeder  <alex@gnu.org>
19404         * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
19405         --pset and pager=off instead of sending \\o|cat at the beginning
19406         of the session.
19408 2000-08-17  Miles Bader  <miles@gnu.org>
19410         * progmodes/octave-inf.el: Add compatibility definition of
19411         comint-line-beginning-position.
19413 2000-08-17  Kenichi Handa  <handa@etl.go.jp>
19415         * startup.el (normal-top-level): Look in each dir in load-path for
19416         a leim-list.el file too.  This assures of loading leim-list.el
19417         that is created at Emacs installation time even if a user have his
19418         own leim-list.el.
19420 2000-08-17  Miles Bader  <miles@gnu.org>
19422         * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
19423         foreground color to black if the background is dark.
19425 2000-08-16  Stefan Monnier  <monnier@cs.yale.edu>
19427         * loadhist.el (unload-feature): Typo.
19429         * finder.el (finder-compile-keywords):
19430         * cus-dep.el (custom-make-dependencies): Add local-variable settings
19431         to the generated file.
19433         * mail/mh-e.el (mh-make-local-vars):
19434         Replace make-variable-buffer-local with make-local-variable.
19436         * play/landmark.el:
19437         * options.el (Edit-options-{set,toggle,t,nil}):
19438         * mail/mailabbrev.el (mail-abbrevs-mode):
19439         * textmodes/tex-mode.el (tex-expand-files):
19440         * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
19442         * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
19444         * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
19445         (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
19446         Allow going past the last element.
19447         * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
19448         (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
19449         (cvs-mouse-toggle-mark): Don't move point.
19450         (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
19452         * progmodes/compile.el (grep): Provide a default set of files.
19453         (next-error): Docstring fix.
19454         (compilation-find-file): Avoid find-file (fails in a dedicated window).
19456         * emacs-lisp/easy-mmode.el (define-minor-mode):
19457         Use `symbol-value' to keep the byte-compiler quiet.
19459         * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
19460         (diff-find-source-location): New fun, extracted from diff-goto-source.
19461         (diff-goto-source): Use it.
19462         (diff-next-complex-hunk, diff-filter-lines): New function.
19463         (diff-apply-hunk): New command.
19465         * smerge-mode.el (smerge-mode-menu): Doc fix.
19467         * msb.el (msb-mode): Define it in terms of define-minor-mode.
19469 2000-08-16  Dave Love  <fx@gnu.org>
19471         * windmove.el (windmove) <defgroup>: Add :version.
19473         * net/goto-addr.el: Don't require browse-url.  Require thingatpt.
19474         (goto-address-fontify-p, goto-address-highlight-p)
19475         (goto-address-url-face, goto-address-url-mouse-face)
19476         (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
19477         (goto-address-url-regexp): Use thing-at-point-url-regexp.
19478         (goto-address-fontify, goto-address-at-mouse): Simplify,
19479         (goto-address-at-point): browse-url-url-at-point,
19480         goto-address-find-address-at-point can return nil.
19481         (goto-address-find-address-at-point): Return nil on failure.
19483         * align.el (align) <defgroup>: Add :version.
19485         * calculator.el (calculator): Add :version.
19486         (calculator): Use two lines for calculator window if `modeline'
19487         face is boxed.
19489         * play/5x5.el: Doc fixes.
19490         (5x5) <defgroup>: Add :version.
19492         * play/fortune.el (fortune) <defgroup>: Add :version.
19493         (fortune-append): Fix error message.
19494         (fortune-from-region): Doc fix.
19496         * play/pong.el (pong): Doc fix.
19498         * play/morse.el: Keywords, commentary, autoloads.
19500 2000-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
19502         * desktop.el (desktop-save): Don't look at symbol-value of a
19503         member of minor-mode-alist, unless it is boundp.
19505 2000-08-16  Sam Steingold  <sds@gnu.org>
19507         * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
19508         `while'; use `with-current-buffer' instead of `save-excursion'.
19509         Removed unnecessary kludges now that "*Buffer List*" is excluded.
19511 2000-08-16  Kenichi Handa  <handa@etl.go.jp>
19513         * international/ccl.el (declare-ccl-program): Docstring modified.
19514         (ccl-execute-with-args): Likewise.
19516 2000-08-16  Miles Bader  <miles@gnu.org>
19518         * progmodes/sql.el: Add compatibility definition of
19519         comint-line-beginning-position.
19521 2000-08-15  Gerd Moellmann  <gerd@gnu.org>
19523         * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
19524         'buffer-menu' property.
19525         (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
19526         fails.
19527         (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
19528         buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
19529         wasn't killed.
19531         * buff-menu.el (list-buffers-noselect): Don't display the
19532         *Buffer List* buffer.
19534         * font-lock.el: Require jit-lock to prevent a very late
19535         `Loading jit-lock' message.
19537         * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
19538         * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
19539         mail address.
19541 2000-08-15  Miles Bader  <miles@gnu.org>
19543         * textmodes/ispell.el (ispell-graphic-p): New constant.
19544         (ispell-choices-win-default-height, ispell-help): Use
19545         `ispell-graphic-p' instead of `xemacsp'.
19547 2000-08-15  Dave Love  <fx@gnu.org>
19549         * simple.el: Autoload widget-convert when compiling.
19550         (mail-user-agent): Doc fix.
19552         * help.el (function-called-at-point, variable-at-point): Use
19553         with-syntax-table.
19554         (help-manyarg-func-alist): Add insert-and-inherit.
19556         * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
19558         * delsel.el (delsel-unload-hook): New function.
19560         * find-file.el: Doc fixes.  Move provide to end.
19561         (ff) <defgroup>: Add :link.
19562         (ff-goto-click): Deleted.
19563         (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
19564         Use mouse-set-point.
19566         * textmodes/tildify.el: Doc fixes.
19567         (tildify) <defgroup>: Add:version.
19569         * progmodes/glasses.el (glasses) <defgroup>: Add :version.
19570         (glasses-custom-set): Use set-default, not set.
19571         (minor-mode-alist): Propertize the lighter.
19572         (glasses-mode): Provide optional arg.
19574         * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
19575         (global-cwarn-mode): Don't make it a user option.  Unquote lambda.
19576         (cwarn-font-lock-feature-keywords-alist): Don't make it a user
19577         option.  Provide :type.
19578         (cwarn-configuration): Provide :type.
19579         (cwarn-mode): Doc fix.
19581         * add-log.el (change-log-merge): Doc fix.
19582         (change-log-redate): New command.
19584         * net/browse-url.el (browse-url-filename-alist): Add a clause for
19585         Doze and Dog.
19586         (browse-url): Use dolist, not mapcar.
19587         (browse-url-at-point): Check for null url.
19588         (browse-url-event-buffer, browse-url-event-point): Functions
19589         deleted.
19590         (browse-url-at-mouse, browse-url-netscape): Simplify.
19592         * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
19593         modes.
19594         (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
19595         Fix previous change to mapcan.
19596         (msb--init-file-alist, msb--add-separators)
19597         (msb--make-keymap-menu): Simplify.
19598         (msb--choose-file-menu): Use copy-sequence.
19599         (msb-mode-map): Add title to keymap.
19600         (msb-unload-hook): New function.
19602         * bs.el: Fix indentation.
19603         (bs) <defgroup>: Add :links.
19604         (bs-show): Doc fix.
19605         (bs-apply-sort-faces): Don't use window-system.
19606         (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
19608 2000-08-15  Eli Zaretskii  <eliz@is.elta.co.il>
19610         * calendar/timeclock.el (timeclock-file): Run .timelog through
19611         convert-standard-filename.
19613 2000-08-14  Gerd Moellmann  <gerd@gnu.org>
19615         * emacs-lisp/authors.el: New file.
19617         * paren.el (show-paren-priority): New user option.
19618         (show-paren-function): Set overlay priorities to
19619         show-paren-priority.
19621 2000-08-14  Miles Bader  <miles@gnu.org>
19623         * comint.el (comint-bol): Use `forward-line 0' instead of calling
19624         beginning-of-line with inhibit-field-text-motion bound.
19626 2000-08-14  Gerd Moellmann  <gerd@gnu.org>
19628         * calendar/timeclock.el: New file.
19630 2000-08-14  David Ponce  <david@dponce.com>
19632         * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
19633         `widget-button-click'. so that one can use left mouse button to
19634         click on dialog buttons.
19636 2000-08-14  Emmanuel Briot  <briot@gnat.com>
19638         * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
19639         identifiers, since XML is case sensitive
19641 2000-08-12  Miles Bader  <miles@gnu.org>
19643         * comint.el (comint-output-filter): Don't bother frobbing
19644         window-start, it doesn't seem to be necessary.
19646         * comint.el (comint-send-string, comint-send-region): Make into
19647         real functions.  Snapshot the prompt before sending.
19649 2000-08-11  Eli Zaretskii  <eliz@is.elta.co.il>
19651         * info.el (Info-find-emacs-command-nodes): Rewrite to use
19652         technique similar to Info-index, instead of relying on specific
19653         names of relevant Index nodes.
19654         (Info-goto-emacs-command-node): Bind Info-history to nil when
19655         going to the first node found by Info-find-emacs-command-nodes.
19657 2000-08-11  Eli Zaretskii  <eliz@is.elta.co.il>
19659         * menu-bar.el (menu-bar-help-menu): Add a :help string.
19661 2000-08-10  Miles Bader  <miles@gnu.org>
19663         * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
19665 2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
19667         * info.el (Info-file-list-for-emacs): More elements for the
19668         autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
19669         and woman manuals.
19671 2000-08-10  Miles Bader  <miles@lsi.nec.co.jp>
19673         * comint.el (comint-send-input): Make the newline boundary overlay
19674         rear-nonsticky.  Use `insert' instead of `insert-before-markers'.
19675         (comint-output-filter): Use `insert' instead of
19676         `insert-before-markers'.  Extend comint-last-output-overlay when
19677         necessary since we can't rely on insert-before-markers to do it.
19678         * gud.el (gud-filter): Use `with-current-buffer' instead of
19679         save-excursion when inserting the output, so that point gets
19680         updated correctly; the old method relied on a rather dodgy
19681         side-effect of comint-output-filter to avoid the effect of
19682         save-excursion.
19684 2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
19686         * files.el (recover-file): Call insert-directory instead of
19687         invoking `ls' directly.
19689 2000-08-10  Miles Bader  <miles@gnu.org>
19691         * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
19692         (comint-last-prompt-overlay): New variables.
19693         (comint-output-filter): Implement prompt highlighting.
19694         (comint-snapshot-last-prompt): New function.
19695         (comint-send-input): Snapshot the last prompt.
19696         Use comint-highlight-input-face.
19697         (comint-highlight-input-face): Renamed from `comint-highlight-face'.
19698         Use defface instead of defcustom.
19699         (send-invisible, comint-send-eof): Snapshot the last prompt.
19700         (comint-delchar-or-maybe-eof): Use comint-send-eof.
19701         (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
19703 2000-08-09  Stefan Monnier  <monnier@cs.yale.edu>
19705         * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
19706         (regexp-opt-group): Use a list of chars for `letters'.
19707         (regexp-opt-charset): `chars' is now a list of chars.
19708         Use a char-table rather than a vector so it works for multibyte chars.
19710         * pcvs.el (cvs-menu): Don't move point.  Use popup-menu.
19711         Set cvs-minor-current-files to the selected fileinfo.
19712         (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
19713         (cvs-mode-insert): Manually macroexpand `ignore-errors'.
19715 2000-08-09  Eli Zaretskii  <eliz@is.elta.co.il>
19717         * files.el (insert-directory): Don't call access-file on
19718         directories on DOS and Windows.
19720 2000-08-09  Kenichi Handa  <handa@etl.go.jp>
19722         * international/ccl.el (ccl-embed-data): Make ccl-program-vector
19723         longer if necessary.
19724         (ccl-embed-code): Call ccl-embed-data to store CODE in
19725         ccl-program-vector.
19727 2000-08-09  Miles Bader  <miles@gnu.org>
19729         * comint.el (comint-output-filter): Properly handle the case where
19730         the text surrounded by comint-last-output-overlay was deleted.
19732 2000-08-08  Gerd Moellmann  <gerd@gnu.org>
19734         * info.el (Info-insert-dir): Use Info-additional-directory-list if
19735         non-nil.
19736         (Info-file-list-for-emacs): Remove "info" from the list because
19737         that leads to trying to use the documentation from file `info'
19738         in various situations where it isn't appropriate, for instance
19739         C-h C-k C-h i.
19741         * ffap.el (ffap-read-file-or-url-internal): Handle case that
19742         DIR and/or STRING are nil.
19744         * progmodes/compile.el (compilation-setup): Make variable
19745         compilation-error-screen-columns buffer-local, as some comment
19746         in the code suggests it should be.
19748         * files.el (auto-mode-interpreter-regexp): New variable.
19749         (set-auto-mode): Use it.
19751         * indent.el (indent-for-tab-command): Doc fix.
19753         * mouse-sel.el (mouse-sel-mode): Doc fix.
19755         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
19756         labels.
19758         * help.el (print-help-return-message): When
19759         display-buffer-reuse-frames is set, let the help window been quit,
19760         instead of deleting it, which might delete a reused frame.
19762 2000-08-08  Eli Zaretskii  <eliz@is.elta.co.il>
19764         * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
19765         rename a directory to a name that differs only by its letter case.
19767 2000-08-08  Kenichi Handa  <handa@etl.go.jp>
19769         * international/quail.el (quail-define-rules): Handle Quail decode
19770         map correctly.  Add code for supporting annotations.
19771         (quail-install-decode-map): New function.
19772         (quail-defrule-internal): New optional arguments decode-map and
19773         props.
19774         (quail-advice): New function.
19776 2000-08-07  Sam Steingold  <sds@gnu.org>
19778         * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
19779         `defconst', `define-condition', `with-slots'.
19780         * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
19782 2000-08-03  Miles Bader  <miles@gnu.org>
19784         * comint.el (comint-use-prompt-regexp-instead-of-fields):
19785         New variable.
19786         (comint-prompt-regexp, comint-get-old-input): Document dependence on
19787         comint-use-prompt-regexp-instead-of-fields.
19788         (comint-send-input): Add `input' field property to stuff we send to
19789         the process, if comint-use-prompt-regexp-instead-of-fields is nil.
19790         (comint-output-filter): Add `output' field property to process
19791         output, if comint-use-prompt-regexp-instead-of-fields is nil.
19792         (comint-replace-by-expanded-history)
19793         (comint-get-old-input-default, comint-show-output)
19794         (comint-backward-matching-input, comint-forward-matching-input)
19795         (comint-next-prompt, comint-previous-prompt):  Use field
19796         properties if comint-use-prompt-regexp-instead-of-fields is nil.
19797         (comint-line-beginning-position): New function.
19798         (comint-bol): Use comint-line-beginning-position.  Make ARG optional.
19799         (comint-replace-by-expanded-history-before-point): Use
19800         comint-line-beginning-position and line-end-position.
19801         (comint-last-output-overlay): New variable.
19802         (comint-mode): Make `comint-last-output-overlay' buffer-local.
19804         * shell.el (shell-prompt-pattern): Doc change.
19805         (shell-backward-command): Use line-beginning-position.
19807         * gud.el (gud-gdb-complete-command): Use
19808         comint-line-beginning-position.
19810         * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
19811         comint-bol doesn't actually go to the beginning of the line.
19813         * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
19814         if comint-use-prompt-regexp-instead-of-fields is non-nil.
19815         (try-expand-line-all-buffers): Likewise.
19817         * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
19818         explicitly matching comint-prompt-regexp.
19819         (sql-copy-column): Use comint-line-beginning-position instead of
19820         explicitly matching comint-prompt-regexp.
19822         * progmodes/octave-inf.el (inferior-octave-complete): Use
19823         comint-line-beginning-position.
19825         * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
19827         * progmodes/idlw-shell.el (idlwave-shell-send-command): When
19828         looking for a prompt, use `forward-line 0' instead of
19829         `beginning-of-line', to avoid getting caught by an input field.
19831 2000-08-07  Gerd Moellmann  <gerd@gnu.org>
19833         * files.el (shell-quote-wildcard-pattern): Make sure to return
19834         PATTERN, in the Unix case.
19836 2000-08-07  Eli Zaretskii  <eliz@is.elta.co.il>
19838         * play/zone.el (zone): Discard any pending input before running
19839         the randomly-chosen pgm.
19841 2000-08-07  Kenichi Handa  <handa@etl.go.jp>
19843         * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
19844         checking the existence of any multibyte characters.
19846 2000-08-06  Gerd Moellmann  <gerd@gnu.org>
19848         * help.el (describe-mode): Test minor-mode symbol for being
19849         bound before testing its value for being nil.
19851         * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
19852         `first', `second', and `third'.
19854         * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
19855         (second): Make it an alias for `cadr'.
19857 2000-08-06  Eli Zaretskii  <eliz@is.elta.co.il>
19859         * bs.el (bs-apply-sort-faces): Don't use window-system, since all
19860         types of display support faces now.
19862 2000-08-05  Gerd Moellmann  <gerd@gnu.org>
19864         * pcvs.el (require): Require `cl' during compilation, only.
19866         * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
19867         (toplevel): Remove `remq' and `remove' from autoloads.
19868         (cl-fake-autoloads): New variable.  If set, arrange for an error
19869         when CL functions etc. are autoloaded.
19871 2000-08-04  Eli Zaretskii  <eliz@is.elta.co.il>
19873         * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
19875         * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
19876         popped up, but the user clicks outside the menu, return an empty
19877         regexp (that causes unhighlight-regexp to have no effect).
19879         * menu-bar.el (menu-bar-games-menu): Add Zone.
19881         * hi-lock.el (toplevel): Require font-lock.
19883 2000-08-03  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
19885         * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
19886         (ebnf-8-bit-chars): New var for bug fix.
19887         (ebnf-string): Bug fix.
19889 2000-08-03  Sam Steingold  <sds@gnu.org>
19891         * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
19892         instead of `buffer-string'.
19893         (require 'cl): Always, not just when compiling.
19894         `ignore-errors' in `interactive', `list*', `defun*' &c make this
19895         necessary.
19897 2000-08-03  Eli Zaretskii  <eliz@is.elta.co.il>
19899         * international/mule-cmds.el (select-safe-coding-system): Make
19900         the message text about selecting a safe coding system more clear.
19902 2000-08-02  Gerd Moellmann  <gerd@gnu.org>
19904         * hi-lock.el: New file.
19906         * play/zone.el: New file.
19908         * replace.el (occur): Set tab-width in the *Occur* buffer to the
19909         value of tab-width in the original buffer.  Choose a line number
19910         format that's a multiple of the original buffer's tab width, so
19911         that lines appear right.
19913         * textmodes/ispell.el (ispell): New function, replacing an alias.
19914         Spell-check active region if in transient-mark-mode and mark
19915         is active; otherwise spell-check buffer.
19917 2000-08-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
19919         * ps-mule.el: Fix a customization problem on
19920         ps-mule-font-info-database-default.
19922 2000-08-02  Eli Zaretskii  <eliz@is.elta.co.il>
19924         * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
19925         display-mouse-p instead of window-system.
19926         (ebrowse-member-mode-map): Ditto.
19928 2000-08-01  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
19930         * progmodes/ebnf2ps.el: Update ps-print functions call.
19931         Indentation fix.  Doc fix.
19932         (ebnf-version): New version number (3.2).
19933         (ebnf-format-color, ebnf-begin-job): Code fix.
19935 2000-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
19937         * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
19938         font lock support on window-system.
19939         (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
19941         * textmodes/ispell.el (ispell-highlight-spelling-error): Use
19942         display-color-p, if fboundp, instead of window-system.
19944 2000-07-31  Eli Zaretskii  <eliz@is.elta.co.il>
19946         * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
19947         instead of window-system.
19949         * wid-edit.el (widget-choose): Use display-mouse-p instead of
19950         window-system.
19951         (widget-choice-mouse-down-action): Use display-popup-menus-p
19952         instead of window-system.
19954         * strokes.el (strokes-file): Run the file name through
19955         convert-standard-filename.
19956         (strokes-mode): Call display-mouse-p instead of looking at
19957         window-system.  Change the error message accordingly.
19959         * progmodes/cpp.el (toplevel): Support faces on tty's.
19961         * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
19962         (lm-plot-square, lm-init-display): Don't use window-system.
19964         * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
19965         (gomoku-plot-square, gomoku-init-display): Don't use window-system.
19967         * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
19968         instead of looking at window-system.
19970 2000-07-30  Gerd Moellmann  <gerd@gnu.org>
19972         * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
19973         of testing if iswitchb-prepost-hooks is bound, because the
19974         latter will always be true when invoking a recursive minibuffer
19975         from an active Iswitchb buffer.
19977 2000-07-30  Eli Zaretskii  <eliz@is.elta.co.il>
19979         * files.el (shell-quote-wildcard-pattern): New function.
19980         (insert-directory): Call it.  Only prepend "\" to command on Unix
19981         and GNU/Linux systems.
19983 2000-07-30  Gerd Moellmann  <gerd@gnu.org>
19985         * eshell/esh-groups.el: Change custom :link file names
19986         from `eshell.info' to `eshell'.
19988 2000-07-30  Francis Wright  <fjw@maths.qmw.ac.uk>
19990         * dired.el (dired-build-subdir-alist): Expand subdirectory names
19991         correctly in recursive ange-ftp listings.
19993 2000-07-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
19995         * ps-print.el: Fix bug 1: if ps-font-size-internal,
19996         ps-header-font-size-internal and
19997         ps-header-title-font-size-internal variables are not set,
19998         ps-nb-pages and ps-line-lengths-internal crashes.  Fix bug 2: if
19999         face text property is (foreground-color . COLOR) or
20000         `(background-color . COLOR)', ps-print crashes.  Doc fix.
20001         (ps-print-version): New version number (5.2.4).
20002         (ps-plot-region): Code fix.
20003         (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
20004         (ps-face-attribute-list, ps-face-attributes, ps-face-background):
20005         Bug fix 2.
20007 2000-07-30  Milan Zamazal  <pdm@freesoft.cz>
20009         * glasses.el (glasses-make-readable): Fix uncapitalization of
20010         identifiers like `myXMLDocument'.
20012 2000-07-28  Karl Fogel  <kfogel@red-bean.com>
20014         * mail/mail-hist.el (mail-hist-previous-input)
20015         (mail-hist-next-input): Do the obvious code factorization.
20016         (mail-hist-retrieve-and-insert): New func, contains common
20017         code of above two.
20018         If inserting a message body, leave point at top.
20020 2000-07-28  Sam Steingold  <sds@gnu.org>
20022         * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
20023         Use `<=', not `<' to compare times!
20024         (ange-ftp-ls): Remove.
20026 2000-07-27  Gerd Moellmann  <gerd@gnu.org>
20028         * play/cookie1.el: Add explanation of how to make cookie.el
20029         compatible with strfile(1) to comment.
20031         * subr.el (remove, remq): New functions.
20033         * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
20034         escape `*' in regexps.
20035         (midnight-find): Reverse order of arguments in the funcall of
20036         TEST.
20038         * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
20039         and `.class'.
20041         * play/meese.el: Add Commentary section.
20043 2000-07-27  Alex Schroeder  <alex@gnu.org>
20045         * sql.el (sql-ms): Added autoload cookie.
20046         (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
20047         (sql-oracle): Ditto.
20048         (sql-help): Doc change.
20050         (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
20051         types and exceptions.
20053 2000-07-27  Alex Schroeder  <alex@gnu.org>
20055         * sql.el (sql-placeholder-history): New variable.
20056         (sql-query-placeholders-and-send): New function that will query
20057         the user and replace placeholders with user input.
20058         (sql-oracle): If running on NT, set comint-input-sender to
20059         sql-query-placeholders-and-send.
20061         (sql-stop): If in the SQLi buffer, insert stop notification, else
20062         present it as a message.
20064 2000-07-27  Alex Schroeder  <alex@gnu.org>
20066         * sql.el (sql-input-ring-separator): Doc change.
20067         (sql-input-ring-file-name): Doc change.
20068         (sql-interactive-mode): Use `sql-input-ring-separator' and
20069         `sql-input-ring-file-name' to set the comint-mode equivalents
20070         without making them local variables.
20071         (sql-stop): Don't bind `sql-input-ring-separator' and
20072         `sql-input-ring-file-name' dynamically to their comint-mode
20073         equivalents.
20075 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
20077         * international/mule.el (register-char-codings): New function.
20078         (make-coding-system): Handle `safe-chars' specification in the arg
20079         PROPERTY.
20081         * international/mule-cmds.el
20082         (find-coding-systems-region-subset-p): This function deleted.
20083         (sort-coding-systems-predicate): New variable.
20084         (sort-coding-systems): New function.
20085         (find-coding-systems-region): Use
20086         find-coding-systems-region-internal.
20087         (find-coding-systems-string): Use find-coding-systems-region.
20088         (find-coding-systems-for-charsets): Check
20089         char-coding-system-table.
20090         (select-safe-coding-system-accept-default-p): New variable.
20091         (select-safe-coding-system): Mostly rewritten.  New argument
20092         ACCEPT-DEFAULT-P.
20093         (select-message-coding-system): Call select-safe-coding-system
20094         with ACCEPT-DEFAULT-P arg.
20095         (reset-language-environment): Reset default-sendmail-coding-system
20096         to the default value iso-latin-1.
20097         (set-language-environment): Don't set the obsolete variable
20098         charset-origin-alist.
20100         * international/codepage.el (cp-coding-system-for-codepage-1):
20101         Give `safe-chars' property to make-coding-system.
20103         * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
20104         calling select-message-coding-system twice.
20106         * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
20107         instead of `safe-charsets'.
20108         (cyrillic-alternativnyj): Likewise.
20109         (ccl-encode-alternativnyj): Don't check the charset
20110         cyrillic-iso8859-5.
20112 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
20114         * composite.el (compose-chars-after): Preserve match data.
20116 2000-07-26  Sam Steingold  <sds@gnu.org>
20118         * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
20119         (ange-ftp-real-file-newer-than-file-p): New function.
20120         (ange-ftp-verify-visited-file-modtime): Use `float-time'.
20121         (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
20123         * tooltip.el (tooltip-float-time): Removed (use `float-time').
20124         * midnight.el (midnight-float-time): Ditto.
20126 2000-07-26  Andreas Schwab  <schwab@suse.de>
20128         * files.el (normal-backup-enable-predicate): Correct
20129         interpretation of the return value of compare-strings.
20131 2000-07-26  Gerd Moellmann  <gerd@gnu.org>
20133         * isearch.el (isearch-resume): New function.
20134         (isearch-done): Add something to command-history to resume
20135         the search.
20136         (isearch-yank-line, isearch-yank-word): Use
20137         buffer-substring-no-properties instead of buffer-substring.
20139         * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
20140         of flyspell-mouse-map.
20142         * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
20143         duplicate definition.
20144         (makefile-mode): Remove duplicate setting of local-abbrev-table.
20146         * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
20147         (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
20149 2000-07-25  Sam Steingold  <sds@gnu.org>
20151         * net/ange-ftp.el: Get modtime over the net.
20152         (ange-ftp-file-modtime): New function.
20153         (ange-ftp-write-region, ange-ftp-insert-file-contents)
20154         (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
20155         Use it.
20156         (ange-ftp-dot-to-slash): New function.
20157         (ange-ftp-fix-name-for-vms): Use it.
20159         * midnight.el (midnight-buffer-display-time): Use
20160         `with-current-buffer'.
20162 2000-07-25  Gerd Moellmann  <gerd@gnu.org>
20164         * find-dired.el: Update copyright notice.
20165         (find-dired): Offer to kill a running `find'.
20167         * enriched.el (enriched-face-ans): For a `foreground-color'
20168         property, return '(("x-color" COLOR))' so that COLOR will be
20169         output as a parameter of the x-color annotation.  Likewise for the
20170         `background-color' property.  In the case of normal face
20171         properties, don't return annotations for unspecified foreground
20172         and background face attributes.
20174 2000-07-25  Kenichi Handa  <handa@etl.go.jp>
20176         * language/japan-util.el (japanese-katakana-region): Fix handling
20177         HANKAKU argument.
20179 2000-07-25  Miles Bader  <miles@gnu.org>
20181         * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
20182         constrain-to-field.  Pass nil ESCAPE-FROM-EDGE argument to
20183         constrain-to-field.
20185 2000-07-24  Andrew Innes  <andrewi@gnu.org>
20187         * timer.el (timer-activate-when-idle): Add optional parameter
20188         DONT-WAIT.  Update docstring.
20189         (run-with-idle-timer): Specify extra parameter to
20190         timer-activate-when-idle, so that timer will be activated
20191         immediately if Emacs is already idle.
20193         * w32-fns.el (w32-using-nt): Fix docstring.
20195 2000-07-24  Dave Love  <fx@gnu.org>
20197         * mouse.el (popup-menu): Set last-command-event.
20198         (mouse-major-mode-menu-prefix): Declare.
20200 2000-07-24  Gerd Moellmann  <gerd@gnu.org>
20202         * textmodes/flyspell.el: Update to author's version 1.5d.
20204         * progmodes/hideshow.el: Update copyright notice.
20206         * vcursor.el: Set maintainer to FSF, since author cannot
20207         be reached.
20209 2000-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
20211         * info.el (Info-goto-emacs-key-command-node): Leave a space after
20212         the prompt.
20214         * mouse.el (popup-menu): Run the keymap through indirect-function,
20215         in case it was defined with define-prefix-key.  If the menu is a
20216         list of keymaps, look up the binding of user's choice in each one
20217         of the keymaps.
20218         (mouse-popup-menubar): If the global and local menu-bar keymaps
20219         don't have a prompt string, create one and insert it into the
20220         keymap.  Don't barf if current-local-map returns nil.
20222 2000-07-24  Francis Wright  <fjw@maths.qmw.ac.uk>
20224         * dired.el (dired-sort-R-check): Added to allow recursive listing
20225         to be undone.
20226         (dired-sort-other): Use it.
20228 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20230         * Release of cc-mode 5.27
20232 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20234         * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
20235         c-beginning-of-statement-1 that caused a bad case of recursion
20236         which could consume a lot of CPU in large classes in languages
20237         that have in-expression classes (i.e. Java and Pike).
20239         * cc-engine.el (c-guess-basic-syntax): Check for in-expression
20240         statements before top level constructs (i.e. case 6 is moved
20241         before case 5 and is now case 4) to catch in-expression
20242         classes in top level expressions correctly.
20244 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20246         * cc-engine.el (c-guess-basic-syntax): Less naive handling of
20247         objc-method-intro. Case 4 removed and case 5I added.
20249         * cc-langs.el (c-append-paragraph-start): New variable used by
20250         c-common-init to get paragraph-start correct.
20251         * cc-langs.el (c-common-init): Use c-append-paragraph-start to
20252         initialize paragraph-start to make it correct both with and
20253         without the javadoc special case.
20255         * cc-mode.el (java-mode): Use c-append-paragraph-start to
20256         initialize paragraph-start for javadoc markup.
20258         * cc-vars.el (c-style-variables-are-local-p): Incompatible
20259         change by defaulting this to t.  It's motivated by the
20260         confusing behavior that otherwise arise from the style system
20261         when editing both java and non-java files at the same time
20262         (see the comments about style setting in c-common-init).
20264 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20266         * cc-cmds.el (c-indent-new-comment-line): Added a kludge
20267         similar to the one in c-fill-paragraph to check the fill
20268         prefix from the adaptive fill function for sanity.
20270 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20272         * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
20273         defun block.
20275 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20277         * cc-align.el (c-lineup-multi-inher): Handle lines with
20278         leading comma nicely. Extended to handle member initializers
20279         too.
20281         * cc-engine.el: (c-beginning-of-inheritance-list,
20282         c-guess-basic-syntax): Fixed recognition of inheritance lists
20283         when the lines begins with a comma.
20285         * cc-vars.el (c-offsets-alist): Changed default for
20286         member-init-cont to c-lineup-multi-inher since it now handles
20287         member initializers and indents better for leading commas.
20289 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20291         * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
20292         handling that caused class open lines to be recognized as
20293         statement-conts in some cases.
20295         * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
20296         guessed by the adaptive fill function unless point is on the
20297         first line of a block comment.
20299         * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
20300         when the buffer ends with a macro continuation char.
20302         * cc-engine.el (c-guess-basic-syntax): Added support for
20303         function definitions as statements in Pike.  The first
20304         statement in a lambda block is now labeled defun-block-intro
20305         instead of statement-block-intro.
20307         * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
20308         so that the class surrounding point is selected, not the one
20309         innermost in the state.
20311         * cc-engine.el (c-guess-basic-syntax): Fixed bug in
20312         recognition of switch labels having hanging multiline
20313         statements.
20315         * cc-engine.el (c-beginning-of-member-init-list): Broke out
20316         some code in c-guess-basic-syntax to a separate function.
20317         * cc-engine.el (c-just-after-func-arglist-p): Fixed
20318         recognition of member inits with multiple line arglists.
20319         * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
20320         member-init-cont when the commas are in funny places.
20322 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20324         * cc-defs.el (c-auto-newline): Removed this macro since it's
20325         not used anymore.
20327         * cc-engine.el (c-looking-at-bos): New helper function.
20328         * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
20329         inexpr and toplevel classes apart in Pike.
20331         * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
20332         of case 9A.
20334         * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
20335         constant, since "class" can introduce an in-expression class
20336         in Pike nowadays.
20338 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20340         * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
20341         indentation on cpp-macro lines.
20343         * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
20344         a syntax modifier like comment-intro, to make it possible to
20345         get syntactic indentation for preprocessor directives.  It's
20346         incompatible wrt to lineup functions on cpp-macro, but it has
20347         no observable effect in the 99.9% common case where cpp-macro
20348         is set to -1000.
20350 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20352         * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
20353         member-init-cont when the preceding arglist is several lines.
20355 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20357         * cc-styles.el (c-style-alist): The basic offset for the BSD
20358         style corrected to 8.
20360 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20362         * cc-styles.el (c-style-alist): Adjusted the indentation of
20363         brace list openers in the gnu style.
20365 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20367         * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
20369         * cc-cmds.el (c-electric-brace, c-electric-slash,
20370         c-electric-star, c-electric-semi&comma, c-electric-colon,
20371         c-electric-lt-gt, c-electric-paren): Don't reindent old lines
20372         when c-syntactic-indentation is nil.
20374         * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
20375         we were left at comments preceding the first statement when
20376         reaching the beginning of the buffer.
20378         * cc-vars.el (c-syntactic-indentation): New variable to turn
20379         off all syntactic indentation.
20381 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20383         * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
20384         between the text and the block comment ender when it hangs,
20385         depending on how many there are before the fill.
20387 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20389         * cc-engine.el (c-beginning-of-closest-statement): New helper
20390         function to go back to the closest preceding statement start,
20391         which could be inside a conditional statement.
20392         * cc-engine.el (c-guess-basic-syntax): Use
20393         c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
20395         * cc-engine.el (c-guess-basic-syntax): Better handling of
20396         arglist-intro, arglist-cont-nonempty and arglist-close when
20397         the arglist is nested inside parens.  Cases 7A, 7C and 7F
20398         changed.
20400         * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
20401         up-to-date with javadoc 1.2.
20403 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20405         * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
20406         multiline Pike type decls.
20408 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20410         * cc-cmds.el (c-indent-new-comment-line): Always break
20411         multiline comments in multiline mode, regardless of
20412         comment-multi-line.
20414 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20416         * cc-engine.el (c-guess-basic-syntax): Fixed bug with
20417         fully::qualified::names in C++ member init lists.  Preamble in
20418         case 5D changed.
20420 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20422         * cc-langs.el (c-common-init): Handling of obsolete variables
20423         moved to c-initialize-cc-mode.  More compatible style override
20424         when using global style variables.
20425         * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
20426         variables moved here.
20428         * cc-styles.el (c-make-styles-buffer-local): Flag style
20429         variable localness in c-style-variables-are-local-p to make
20430         the compatibility measure in c-common-init work well.
20432         * cc-styles.el (c-set-style-1): c-special-indent-hook can no
20433         longer contain set-from-style.
20434         * cc-styles.el (c-initialize-builtin-style): Don't check for
20435         set-from-style on c-special-indent-hook.
20436         * cc-styles.el (c-copy-tree): Obsolete.  The standard function
20437         copy-alist is sufficient now.
20439         * cc-styles.el (c-set-style, c-set-style-1,
20440         c-get-style-variables): Fixes to variable initialization so
20441         that duplicate entries in styles have the same effect
20442         regardless of DONT-OVERRIDE.
20444         * cc-styles.el (c-set-style-2): Fixed bug where the
20445         initialization of inheriting styles failed when the
20446         dont-override flag is set.
20448         * cc-vars.el (c-special-indent-hook): Don't use set-from-style
20449         on this.
20451 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
20453         * cc-defs.el (c-forward-comment): Removed the workaround
20454         introduced in 5.38 since it had worse side-effects.  If a line
20455         contains the string "//\"", it regarded the // as a comment
20456         start since the \ temporarily doesn't have escape syntax.
20458 2000-07-17  Emmanuel Briot  <briot@act-europe.fr>
20460         * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
20461         ada-xref.el before ada-prj.el, so that the Project menu is created
20462         when ada-prj tries to add to it.
20463         (ada-activate-keys-for-case): Suppress the characters that are not
20464         part of the Ada syntax. Better compatibility with else-mode
20465         (ada-adjust-case-interactive): When auto-casing is not active,
20466         correctly insert newlines (used to insert only ^M).  Prevent the
20467         syntax table from being changed in case of an error
20468         (or '_' becomes part of a word and some commands are confused).
20469         Do nothing if ada-auto-case is nil.
20470         (ada-after-keyword-p): Ignore keywords that are also attributes
20471         (ada-batch-reformat): Update usage comment
20472         (ada-call-from-contextual-menu): New function
20473         (ada-case-read-exceptions): Reinitialize the casing exception list
20474         first to nil first, so that the casing exception file can be
20475         shared.
20476         (ada-check-defun-name): Handles "configure" keyword for gnatdist
20477         files.
20478         (ada-compile-goto-error): Fix regexp used to detect a file:line
20479         anywhere in the error message
20480         (ada-contextual-menu-last-point): New variable
20481         (ada-create-keymap): If the variable delete-key-deletes-forward is
20482         t on XEmacs, it means that DEL should delete one character
20483         forward.
20484         (ada-create-menu): Use :included instead of :visible for XEmacs.
20485         New submenu "Options".
20486         (ada-end-stmt-re): Correctly indent "select ... then abort"
20487         statements.
20488         (ada-fill-comment-paragraph): Correctly delete all leading '--'
20489         even if they don't match ada-fill-comment-prefix Fix handling of
20490         paragraphs on the first or last line of a file.
20491         (ada-format-paramlist): Fix handling of default parameter values.
20492         (ada-get-body-name): New function.
20493         (ada-get-current-indent): Optimized by searchling directly for an
20494         existing generic part or a statement outside of it.  Handle
20495         ada-indent-align-comments when indenting comments Replaced some
20496         regexps by testing directly the next character. This results in a
20497         huge speedup on some files.  New indentation scheme for renames
20498         statements.  Stop looking for the 'while' or 'for' associated with
20499         a 'loop' at the first semicolon encountered.  A "return" can also
20500         match an anonymous access subprogram declaration.
20501         (ada-get-indent-noindent): Ignore strings and comments when
20502         looking for the keywords "record" and "private".
20503         (ada-goto-matching-decl-start): When matching "if", make sure we
20504         are not in fact seeing "end if".  Ignore "when" statements except
20505         when initial keyword was "begin".  Fix handling of nested
20506         procedures.  Add a recursive call to this function to skip over
20507         other 'end' statmts.  Fix indentation for "when .. => begin"
20508         (ada-in-open-paren-p): Fix indentation for complex boolean
20509         expressions, where 'and then', 'or else' and parenthesis
20510         statements are mixed up.
20511         (ada-in-paramlist-p): Skip comments while searching for the
20512         beginning Fix handling of operator declarations.
20513         (ada-indent-align-comments): New variable
20514         (ada-indent-current): Change the syntax table only in the
20515         protected section, so that we are sure it is restored correctly.
20516         (ada-indent-on-previous-lines): Use ada-use-indent and
20517         ada-with-indent Correctly indent "select ... then"
20518         (ada-indent-region): Slight speedup.
20519         (ada-indent-renames): New variable.
20520         (ada-last-which-function-subprog, ada-last-which-function-line):
20521         New variables
20522         (ada-looking-at-semi-private): Correctly indent the 'private'
20523         keyword when it is the first word in a package declaration.
20524         (ada-loose-case-word): Stop searching if at the end of the buffer.
20525         (ada-loose-case-word, ada-capitalize-word): Recase the whole word
20526         even if point is not initially at the end of the word.
20527         (ada-matching-decl-start-re): Add "when".
20528         (ada-mode): Add support for abbrev-mode, outline-mode and
20529         which-func-mode Override the old find-file.el entry in
20530         ff-special-constructs since it is using the obsolete
20531         ada-spec-suffix variable
20532         (ada-no-auto-case): New function
20533         (ada-scan-paramlist): When parsing the argument type, accept
20534         spaces (as in "X 'Class", generated by Rational Rose).
20535         (ada-other-file-name): No longer loads the other file.
20536         (ada-popup-menu): Save and restore the current buffer and cursor
20537         position before and after displaying the menu.
20538         (ada-search-ignore-complex-boolean): New function.
20539         (ada-uncomment-region): Emacs21 already knows how to delete
20540         comments not starting in the first column.
20541         (ada-use-indent): New variable
20542         (ada-which-function): New function.
20543         (ada-with-indent): New variable
20544         (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
20545         can be batch-compiled from the command line.
20547         * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
20548         Add to the menu when the file is loaded, not in ada-mode-hook.
20549         Add -toolbar to the default ddd command Switches moved from
20550         ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
20551         ada-prj-default-comp-opt
20552         (ada-add-ada-menu): Remove the map and name parameters Add the Ada
20553         Reference Manual to the menu
20554         (ada-check-current): rewritten as a call to ada-compile-current
20555         (ada-compile): Removed.
20556         (ada-compile-application, ada-compile-current, ada-check-current):
20557         Set the compilation-search-path so that compile.el automatically
20558         finds the sources in src_dir.  Automatic scrollong of the
20559         compilation buffer.  C-uC-cC-c asks for confirmation before
20560         compiling
20561         (ada-compile-current): New parameter, prj-field
20562         (ada-complete-identifier): Load the .ali file before doing
20563         processing
20564         (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
20565         conform to gnatmake's behavior.
20566         (ada-find-file-in-dir): New function
20567         (ada-find-references): Set the environment variables for gnatfind
20568         (ada-find-src-file-in-dir): New function.
20569         (ada-first-non-nil): Removed
20570         (ada-gdb-application): Add support for jdb, the java debugger.
20571         (ada-get-ada-file-name): Load the original-file first if not done
20572         yet.
20573         (ada-get-all-references): Handles the new ali syntax (parent types
20574         are found between <>).
20575         (ada-initialize-runtime-library): New function
20576         (ada-mode-hook): Always load a project file when a file is opened,
20577         so that the casing exceptions are correctly read.
20578         (ada-operator-re): Add all missing operators ("abs", "rem", "**").
20579         (ada-parse-prj-file): Use find-file-noselect instead of find-file
20580         to open the project file, since the latter does not work with
20581         speedbar Get default values before loading the prj file, or the
20582         default executable file name is wrong.  Use the absolute value of
20583         src_dir to initialize ada-search-directories and
20584         compilation-search-path,...  Add the standard runtime library to
20585         the search path for find-file.
20586         (ada-prj-default-debugger): Was missing an opening '{'
20587         (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
20588         variables.
20589         (ada-prj-default-gnatmake-opt): New variable
20590         (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
20591         buffers, the project file is the default one Save the windows
20592         configuration before displaying the menu.
20593         (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
20594         (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
20595         ...)  regexp-quote identifiers names to support operators +,
20596         -,... in regexps.
20597         (ada-remote): New function.
20598         (ada-run-application): Erase the output buffer before starting the
20599         run Support remote execution of the application.  Use
20600         call-process, or the arguments are incorrectly parsed
20601         (ada-set-default-project-file): Reread the content of the active
20602         project file, not the one from the current buffer When a project
20603         file is set as the default project, all directories are
20604         automatically associated with it.
20605         (ada-set-environment): New function
20606         (ada-treat-cmd-string): New special variable ${current}
20607         (ada-treat-cmd-string): Revised.  The substitution is now done for
20608         any ${...} substring
20609         (ada-xref-current): If no body was found, compiles the spec
20610         instead.  Setup ADA_{SOURCE,OBJECTS}_PATH before running the
20611         compiler to get rid of command line length limitations.
20612         (ada-xref-get-project-field): New function
20613         (ada-xref-project-files): New variable
20614         (ada-xref-runtime-library-specs-path)
20615         (ada-xref-runtime-library-ali-path): New variables
20616         (ada-xref-set-default-prj-values): Default run command now does a
20617         cd to the build directory.  New field: main_unit Provide a default
20618         file name even if the current buffer has no prj file.
20620         * ada-prj.el:
20621         Rewritten to show a tabbed-dialog.
20622         (ada-prj-add-ada-menu): Remove the map and name parameters.
20623         (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
20624         New function
20625         (ada-prj-load-directory, ada-prj-subdirs-of): New functions
20626         (ada-prj-load-from-file): New function
20627         (ada-prj-save): Always save fields that depend on the current buffer
20628         (ada-prj-show-value): New function
20630         * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
20631         Ada mode. This will allow us to display the Ada menu in any buffer
20632         we want (for project items).
20633         (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
20634         number of spaces in the header.
20636 2000-07-24  Dave Love  <fx@gnu.org>
20638         * ediff-init.el (ediff-region-help-echo): Bind face-help.
20640 2000-07-23  Noah Friedman  <friedman@splode.com>
20642         * type-break.el (type-break): perform autosave.
20643         Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
20644         (type-break-do-query): Cancel query schedule while performing
20645         actual query, to avoid possibility of a second query being made
20646         while first one is already in progress.
20647         (type-break-time-stamp-format): New variable.
20648         (type-break-time-stamp): New function.
20649         (type-break-time-warning): Use it.
20650         (type-break-keystroke-warning): Use it.
20651         (type-break-noninteractive-query): Use it.
20653         * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
20654         cookie.
20655         Use add-minor-mode to set minor-mode-alist, if available.
20656         (eldoc-echo-area-use-multiline-p): New user option.
20657         (eldoc-echo-area-multiline-supported-p): New variable.
20658         (eldoc-docstring-format-sym-doc): Use them.
20659         (eldoc-mode): If not using idle timers, append to local post and
20660         pre command hooks.  Suggested by David Byers <davby@ida.liu.se>.
20661         (eldoc-display-message-no-interference-p): Don't interfere with
20662         edebug.
20663         Add autoload cookie for eldoc-mode minor-mode-alist initialization.
20664         (eldoc-function-arglist): New function.
20665         (eldoc-function-argstring): Use it.
20667         * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
20668         auto save directory exists before calling directory-files.
20670 2000-07-23  Dave Love  <fx@gnu.org>
20672         * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
20673         ^o, ^u.
20675 2000-07-21  Dave Love  <fx@gnu.org>
20677         * ediff-init.el (ediff-region-help-echo): Modify to use overlay
20678         now passed to the function.  It now works properly.
20680         * smerge-mode.el (smerge-mode-menu): Fill it out.
20682 2000-07-20  Gerd Moellmann  <gerd@gnu.org>
20684         * info-look.el (info-lookup): If *info* is shown in another frame
20685         on the same display, select that frame, instead of switching to
20686         the Info buffer in another window of the selected frame.
20688         * simple.el (universal-argument-map): Bind numeric keypad keys
20689         kp-0 to kp-9 and kp-subtract.
20690         (digit-argument): Handle these keys.
20692 2000-07-20  Dave Love  <fx@gnu.org>
20694         * net/goto-addr.el (goto-address-fontify): Don't bother with
20695         buffer-modified and read-only stuff -- irrelevant with overlays.
20696         Put an extra property on the overlays and use it to clean up in
20697         case goto-address is re-run.
20699 2000-07-19  Richard M. Stallman  <rms@gnu.org>
20701         * timer.el (run-with-idle-timer): Doc fix.
20703         * mail/mail-utils.el (mail-strip-quoted-names):
20704         Handle case where <...> appears inside "...".
20705         Use replace-match to edit the string more simply.
20706         (rmail-dont-reply-to): Cope with an unmatched ".
20708 2000-07-19  Dave Love  <fx@gnu.org>
20710         * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
20711         implementation.
20713         * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
20714         (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
20715         (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
20717 2000-07-19  Gerd Moellmann  <gerd@gnu.org>
20719         * textmodes/refer.el: Correct maintainer's email address.
20721         * progmodes/hideif.el: Correct author's email address.
20722         Fix typo in comment.
20724         * xml.el: New file.
20726         * mail/mailheader.el: Correct author's mail address.
20728         * gnus/parse-time.el: Correct author's mail address.
20730 2000-07-19  Colin Walters <walters@cis.ohio-state.edu>
20732         * comint.el (comint-highlight-input, comint-highlight-face):
20733         New user options.
20734         (comint-input-ring-file-name): Change custom type.
20735         (comint-mode-map): Bind mouse-2.
20736         (comint-insert-clicked-input): New function.
20737         (comint-send-input): Handle input highlighting.
20739 2000-07-18  Stefan Monnier  <monnier@cs.yale.edu>
20741         * mouse.el (popup-menu): New function.
20742         (mouse-major-mode-menu): Use it.
20744 2000-07-18  Dave Love  <fx@gnu.org>
20746         * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
20747         improvements.
20749 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
20751         * faces.el (face-font-selection-order)
20752         (face-font-family-alternatives): Add custom type.
20754 2000-07-18  Dave Love  <fx@gnu.org>
20756         * cus-edit.el (custom-variable-reset-saved)
20757         (custom-variable-reset-standard): Remove unused bindings.
20759         * rect.el (open-rectangle-line): Remove unused let.
20761         * hl-line.el (hl-line-highlight): Check hl-line-mode.
20763 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
20765         * cdl.el: Fix `Maintainer' keyword.
20767         * play/pong.el: Add author's email address.
20769 2000-07-17  Sam Steingold  <sds@gnu.org>
20771         * files.el (insert-directory): Call `split-string' instead of
20772         re-implementing it.
20774 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
20776         * mail/vms-pmail.el: Change maintainer to FSF.
20778         * net/goto-addr.el: Change maintainer to FSF.
20780         * info.el (Info-title-face-alist): Removed.
20782 2000-07-18  David Ponce  <david@dponce.com>
20784         * recentf.el (recentf-open-files): New command that works like
20785         `recentf-open-more-files', but shows the whole list of files (not just
20786         those omitted from the menu). Useful if you don't use a menu-bar!
20787         (recentf-open-more-files) Modified to use `recentf-open-files'.
20789         (recentf-open-files, recentf-open-more-files)
20790         (recentf-edit-list): Dialogs use `recentf-dialog-mode'
20792         (recentf-dialog-mode): New mode for dialogs. You can now just type
20793         "q" to cancel the dialogs.
20795 2000-07-18  David Ponce  <david@dponce.com>
20797         * recentf.el: This is a major update of recentf.el. It adds new
20798         features to better organize the recentf menu and "More..." buffer.
20800         Using new provided menu filtering functions you can now organize the
20801         recent files list:
20803         - by major modes
20804         - by directories
20805         - by user defined rules
20807         Finally, with the new `recentf-filter-changer' customizable filter you
20808         can define a ring of filters and dynamically (via the menu) cycle on
20809         each menu organization in the ring (a la msb).
20811 2000-07-18  Eli Zaretskii  <eliz@is.elta.co.il>
20813         * eshell/eshell.el (eshell): Replace links to eshell.info with
20814         links to eshell, to avoid problems on systems where the manual is
20815         installed as `eshell'.
20816         * eshell/esh-cmd.el (eshell-cmd): Ditto.
20817         * eshell/em-smart.el (eshell-smart): Ditto.
20818         * eshell/em-banner.el (eshell-banner): Ditto.
20819         * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
20821         * eshell/em-unix.el (eshell-shuffle-files): Don't disable
20822         same-file check in the MS-DOS version (it does support inodes).
20824         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
20826         * eshell/eshell.el (eshell-directory-name):
20827         Run default directory name through convert-standard-filename.
20829 2000-07-18  Kenichi Handa  <handa@etl.go.jp>
20831         * international/mule-cmds.el (select-safe-coding-system):
20832         Fix typo in the comment.
20834         * language/european.el (compound-text):
20835         Force katakana-jisx0201 to be designated to G1.
20837         * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
20838         Don't translate some national variant characters of latin-jisx0201.
20839         (x-ctext): Force katakana-jisx0201 to be designated to G1.
20841         * international/kkc.el (kkc-after-update-conversion-functions):
20842         New variable.
20843         (kkc-update-conversion): Run functions in it at the tail.
20845 2000-07-16  John Wiegley  <johnw@gnu.org>
20847         * lisp/align.el (align-newline-and-indent):
20848         Adding new function.  for auto-aligning blocks of code on RET.
20849         (align-region): Fixed badly formatted minibuffer message.
20851 2000-07-17  Kenichi Handa  <handa@etl.go.jp>
20853         * international/kkc.el (kkc-show-conversion-list-count): Customize it.
20854         (kkc-region): Update kkc-next-count and kkc-prev-count here.  Show
20855         the conversion list at first if appropriate.
20856         (kkc-next): Don't update kkc-next-count here.
20857         (kkc-prev): Don't update kkc-prev-count here.
20858         (kkc-show-conversion-list-update): Fix setting up of conversion
20859         list message.
20861 2000-07-16  Stefan Monnier  <monnier@cs.yale.edu>
20863         * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
20865 2000-07-16  Dave Love  <fx@gnu.org>
20867         * cus-edit.el (custom-buffer-create-internal): Use a help-echo
20868         function to be more specific.
20870         * wid-edit.el (widget-specify-field, widget-specify-button): Allow
20871         non-string help-echo.
20872         (widget-types-convert-widget): Defsubst it.
20873         (widget-echo-help): Try to cope with a help-echo function of two
20874         possible sorts.
20876 2000-07-15  Jason Rumney  <jasonr@gnu.org>
20878         * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
20879         Declare as obsolete.
20881         * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
20883 2000-07-14  Gerd Moellmann  <gerd@gnu.org>
20885         * hilit-chg.el: Fix typo.
20887 2000-07-14  Dave Love  <fx@gnu.org>
20889         * info.el (Info-mode-menu): Fix use of :help, :enable.
20891 2000-07-14  Stefan Monnier  <monnier@cs.yale.edu>
20893         * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
20895 2000-07-13  Dave Love  <fx@gnu.org>
20897         * emacs-lisp/easymenu.el: Doc fixes.
20898         (easy-menu-remove): Defalias to ignore.
20900         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
20901         Call throw correctly.
20903 2000-07-13  Gerd Moellmann  <gerd@gnu.org>
20905         * faces.el (frame-background-mode): Doc fix.
20907         * simple.el (eval-expression-print-length): Change custom type to
20908         allow entering nil as value.
20910 2000-07-13  Dave Love  <fx@gnu.org>
20912         * progmodes/fortran.el (fortran-imenu-generic-expression):
20913         Change definition layout.
20914         (fortran-mode-menu): Reinstate customize entries.
20916         * cus-edit.el (custom-group-menu-create, customize-menu-create):
20917         Use :filter, per old XEmacs code.
20919 2000-07-12  Gerd Moellmann  <gerd@gnu.org>
20921         * term.el (term-send-raw-meta): Strip modifiers from the keyboard
20922         event when deciding what to send to the terminal.
20924 2000-07-12  Dave Love  <fx@gnu.org>
20926         * cus-start.el: Add optional version as 4th element of specs and
20927         use it for several things new in v21.  Remove load-path.  Fix type
20928         of line-number-display-limit.
20930 2000-07-11  Dave Love  <fx@gnu.org>
20932         * progmodes/fortran.el: Don't require easymenu.
20933         Use repeat counts in various regexps.
20934         (fortran-mode-syntax-table): Defvar directly.
20935         (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
20936         (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
20937         Use defvar, not defconst.
20938         (fortran-mode-map): Change locals in `let'.  Use `fortran-auto-fill'.
20939         (fortran-mode): Set fortran-comment-line-start-skip,
20940         fortran-comment-line-start-skip, dabbrev-case-fold-search.
20941         (fortran-comment-indent): Use defsubst.
20942         (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
20943         Use fortran-comment-indent, not fortran-comment-indent-function.
20944         (fortran-comment-region, fortran-electric-line-number): Simplify.
20945         (fortran-auto-fill): New function.
20946         (fortran-do-auto-fill): Deleted.
20947         (fortran-find-comment-start-skip):
20948         Check for non-null comment-start-skip.
20949         (fortran-auto-fill-mode, fortran-fill-statement):
20950         Use fortran-auto-fill.
20951         (fortran-fill): Use fortran-auto-fill.  Check for null
20952         comment-start-skip.  Simplify final clause and use end-of-line finally.
20954         * widget.el (widget-plist-member): New alias.
20956 2000-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
20958         * eshell/esh-module.el (toplevel): Reference
20959         byte-compile-current-file only if it is bound.
20961 2000-07-10  Gerd Moellmann  <gerd@gnu.org>
20963         * dired.el: Don't require `dired-aux'.
20965 2000-07-10  Miles Bader  <miles@lsi.nec.co.jp>
20967         * dired-aux.el (dired-show-file-type): New function.
20968         * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
20969         (dired-show-file-type): Add autoload.
20971 2000-07-10  Kenichi Handa  <handa@etl.go.jp>
20973         * international/mule-diag.el (describe-font): Adjusted for the
20974         change of fontset-info.
20975         (print-fontset): Likewise.
20977 2000-07-09  Stefan Monnier  <monnier@cs.yale.edu>
20979         * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
20981 2000-07-07  Gerd Moellmann  <gerd@gnu.org>
20983         * bindings.el: Bind `[delete]' to delete-char.
20985         * dired.el (dired-find-alternate-file): New function.
20986         (dired-mode-map): Bind `a' to dired-find-alternate-file.
20987         (toplevel): Require dired-aux when compiling.
20988         (dired-buffers): Move defvar within file to avoid compiler warning.
20990         * info.el (Info-last-search): Variable removed.
20991         (Info-search-history): New variable.
20992         (Info-search): New Info-search-history.
20994         * battery.el, info-look.el: Change author's mail address.
20996 2000-07-07  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
20998         * mail/rmail.el (rmail-clear-headers): Don't throw an error
20999         if rmail-ignored-headers is nil.
21000         (rmail-retry-failure): Bind rmail-ignored-headers and
21001         rmail-displayed-headers to nil.
21003 2000-07-06  Gerd Moellmann  <gerd@gnu.org>
21005         * lpr.el (lpr-page-header-switches): Add `-h' switch.
21006         (print-region-1): Don't hard code `-h' here.
21008         * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
21010 2000-07-01  Francesco Potorti`  <pot@gnu.org>
21012         * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
21013         exim can use "your message" instead of "the message".
21015 2000-07-06  Stefan Monnier  <monnier@cs.yale.edu>
21017         * facemenu.el: Docstrings fixes.
21018         (facemenu-get-face): Don't use internal-find-face.
21019         (facemenu-iterate): Rename arg to match the docstring.
21021         * newcomment.el (uncomment-region): Be more careful when skipping
21022         backwards over `=' not to bump into BOBP.
21024 2000-07-05  Michael Kifer  <kifer@cs.sunysb.edu>
21026         * ediff-diff.el (ediff-wordify): Use syntax table.
21027         * ediff-init.el (ediff-has-face-support-p): Use
21028         ediff-color-display-p.
21029         (ediff-color-display-p): Use display-color-p, changed to defun
21030         from defsubst.
21031         Got rid of special cases for NeXT and OS/2.
21032         * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
21033         face.
21035 2000-07-05  Stefan Monnier  <monnier@cs.yale.edu>
21037         * emacs-lisp/lucid.el: Require CL.
21038         (copy-tree, remprop): Remove, it's provided by CL.
21039         (map-keymap): Define in terms of cl-map-keymap.
21040         (extent-property, set-extent-end-glyph): New functions.
21042         * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
21044 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
21046         * Makefile.in (DONTCOMPILE): Add comment that the name may
21047         not be changed without changing the make-dist script.
21049         * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
21050         (cl-mapc): Use mapc instead of cl-old-mapc.
21052 2000-07-05  Andrew Innes  <andrewi@gnu.org>
21054         * makefile.nt: Add support for `bootstrap' and related targets.
21056 2000-07-05  Stefan Monnier  <monnier@cs.yale.edu>
21058         * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
21059         (easy-menu-do-define): Use `menu-item' format.
21060         Handle case where easy-menu-create-menu returns a symbol.
21061         Manually call the potential top-level filter in the function binding.
21062         (easy-menu-filter-return): New arg NAME.
21063         Convert to a keymap if MENU is an XEmacs menu.
21064         (easy-menu-convert-item-1): New.  Extracted from easy-menu-do-add-item.
21065         (easy-menu-converted-items-table, easy-menu-convert-item):
21066         New var and fun to memoize easy-menu-convert-item-1.
21067         (easy-menu-do-add-item): Use it.
21068         (easy-menu-create-menu): Use easy-menu-convert-item.
21069         Wrap easy-menu-filter-return around any :filter specification.
21070         Don't convert the menu if a filter was specified.
21071         Tell easy-menu-make-symbol not to check for MENU being an expression.
21072         (easy-menu-make-symbol): New arg NOEXP.
21074 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
21076         * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
21077         EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
21078         (eval-defun): If called with prefix arg, instrument code for
21079         Edebug.
21081         * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
21082         similar to that of eval-defun.
21084 2000-07-04  Dave Love  <fx@gnu.org>
21086         * hl-line.el (hl-line-overlay): Make it permanent-local.
21088         * calendar/todo-mode.el: Replaced with a working version, based on
21089         1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
21091 2000-07-03  Miles Bader  <miles@lsi.nec.co.jp>
21093         * paths.el (prune-directory-list): New function.
21094         (Info-default-directory-list): Rewritten to more methodically
21095         enumerate a big list of possible info directories (based on the
21096         list used by the standalone info reader).
21098         * info.el (info-initialize): Use prune-directory-list to remove
21099         non-existent directories from Info-directory-list.
21101         * paths.el (Info-default-directory-list): Try a list of possible
21102         info-directories instead of a single one.  Add the possible
21103         info directory "/usr/share/info".
21105         * woman.el (woman-man.conf-path): Explicitly include the debian
21106         man-db config file "/etc/manpath.config".
21107         (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
21108         are present in `manpath.config'.
21109         (woman-manpath): Include "/usr/share/man".
21111 2000-07-03  Gerd Moellmann  <gerd@gnu.org>
21113         * frame.el (blink-cursor-mode): Don't hide cursor initially.
21115         * startup.el (command-line): Initialize blink-cursor based
21116         on window-system.
21118         * frame.el (blink-cursor): Default to nil if not running under
21119         a window-system.
21121         * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
21122         (face-x-resources): Remove duplicate entry for :font.
21124         * textmodes/refer.el (refer-find-entry-internal): Use some-window
21125         instead of cycling through windows with next-window.
21127         * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
21128         of cycling through windows with next-window.
21130         * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
21131         of cycling through windows with next-window.
21133         * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
21134         (edebug-get-displayed-buffer-points): Use walk-windows/some-window
21135         instead of cycling through windows with next-window.
21137         * calendar/appt.el (appt-select-lowest-window): Use walk-windows
21138         instead of cycling through windows with next-window.
21140         * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
21141         of cycling through windows with next-window.
21143         * terminal.el (te-process-output): Use walk-windows instead of
21144         cycling through windows with next-window.
21146         * server.el (server-switch-buffer): Use some-window instead of
21147         cycling through windows with next-window.
21149         * window.el (some-window): New function.
21150         (walk-windows): Remove reference to walk-windows-start.
21152         * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
21154 2000-07-03  Richard Stallman  <rms@gnu.org>
21156         * window.el (walk-windows): Guarantee termination by keeping a list
21157         of all the windows already handled.
21159 2000-06-28  Eli Zaretskii  <eliz@is.elta.co.il>
21161         * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
21162         window-system.
21164         * man.el (Man-notify-when-ready): Don't use window-system.  If
21165         Man-notify-method is newframe, and the display is not
21166         multi-frame, select the frame created for the man page.
21167         (Man-init-defvars): Doc fix.
21169 2000-06-28  Gerd Moellmann  <gerd@gnu.org>
21171         * faces.el (region): Change background color for light background.
21173         * ediff-wind.el (ediff-setup-control-frame): Remove :box
21174         attribute from mode-line face of Ediff control frame.
21176         * replace.el (query-replace-map): Bind `e' like `E'.
21178 2000-06-28  Eli Zaretskii  <eliz@is.elta.co.il>
21180         * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
21181         Change name to "Select All".
21183         * dos-fns.el (convert-standard-filename): Fix last change.
21185 2000-06-27  Gerd Moellmann  <gerd@gnu.org>
21187         * help.el (describe-variable): Don't insert a second `'s' in front
21188         of the string `value is shown below'.  Since the syntax-table is
21189         set to emacs-lisp-mode-syntax-table, forward-sexp skips over
21190         an existing `'s', so that this won't be deleted.
21192         * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
21193         * pcmpl-unix.el: New files.
21195 2000-06-26  Stefan Monnier  <monnier@cs.yale.edu>
21197         * wid-edit.el (widget-member): Use the new plist-member.
21199 2000-06-26  Gerd Moellmann  <gerd@gnu.org>
21201         * replace.el (perform-replace): Undo change of 2000-04-04.
21202         Instead, move backward 1 character at the end of the loop when
21203         necessary.
21205         * faces.el (fringe): Change face for different backgrounds.
21207         * eshell/esh-module.el (toplevel): Load defgroup's differently;
21208         patch from John.
21210         * eshell/*.el: Change spelling of the Free Software Foundation.
21212         * eshell/esh-toggle.el: Removed.
21214         * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
21216         * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
21217         interactively.
21219 2000-06-26  Alex Schroeder  <alex@gnu.org>
21221         * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
21222         `define-key'; instead of checking `(emacs-version)' check for
21223         `set-keymap-parent' and `set-keymap-name' directly.  Add entries
21224         for `;' and `o' which might be electric.
21226         (sql-electric-stuff): New user option.
21227         (sql-magic-go): New function which uses `sql-electric-stuff'.
21228         (sql-magic-semicolon): New function which uses
21229         `sql-electric-stuff'.
21231         (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
21232         is not fboundp.
21234         (sql-oracle-options): New variable.
21235         (sql-oracle): Use it.
21237         (sql-imenu-generic-expression): Doc change.
21238         (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
21239         is used.
21241         (sql-informix): Added command line parameter "-" to force
21242         sql-informix-program to use stdout.
21244 2000-06-25  Eli Zaretskii  <eliz@is.elta.co.il>
21246         * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
21247         (cp864-decode-table): Doc fix.
21248         (cp720-decode-table): New variable, supports the Arabic OEM
21249         codepage used by Windows.
21250         (cp737-decode-table): New, Greek OEM codepage used by Windows.
21252 2000-06-23  Dave Love  <fx@gnu.org>
21254         * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
21255         (font-lock-fontify-anchored-keywords): Use
21256         line-beginning-position.
21257         (global-font-lock-mode): Use mapc.
21259 2000-06-23  Stefan Monnier  <monnier@cs.yale.edu>
21261         * eshell/esh-module.el: Require CL when compiling.
21263 2000-06-23  Gerd Moellmann  <gerd@gnu.org>
21265         * comint.el (comint-substitute-in-file-name): Call replace-match
21266         with second and third arg t.
21268         * cus-edit.el (custom-button-face, custom-button-pressed-face):
21269         Specify foreground color.
21271         * faces.el (tool-bar, mode-line, header-line): Specify foreground
21272         color.
21274         * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
21276         * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
21277         cddr instead of cdddr.
21279         * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
21280         instead of copy-list.
21282         * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
21283         of copy-list.
21285         * subdirs.el: Add eshell subdirectory.
21287         * eshell: New subdirectory containing the Eshell package.
21289         * pcomplete.el: New file.
21291 2000-06-23  Paul Eggert  <eggert@twinsun.com>
21293         * mail/mailpost.el (post-mail-send-it): Make sure file has
21294         proper permissions from birth.
21296         * files.el (basic-save-buffer-2): When temporarily setting
21297         file modes, set them to current modes plus 0200, not to 0777.
21299         * emerge.el (emerge-make-temp-file): Make sure file has proper
21300         permissions from birth.
21302 2000-06-22  Eli Zaretskii  <eliz@is.elta.co.il>
21304         * files.el (make-backup-file-name-1): On DOS/Windows, run the
21305         backup file name through convert-standard-filename.
21307         * dos-fns.el (convert-standard-filename): Convert leading
21308         directories as well.  When long file names are supported, convert
21309         characters that are invalid in Windows file names.
21311 2000-06-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
21313         * ps-print.el: Fix bug: if ^L is the very first buffer character,
21314         ps-print crashes.  New feature: page selection for printing.  Create
21315         raw-text-unix coding system for XEmacs.  Doc fix.
21316         (ps-print-version): New version number (5.2.3).
21317         (ps-plot-region): Bug fix.
21318         (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
21319         (ps-header-sheet, ps-generate, ps-end-job): Code fix.
21320         (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
21321         funs.
21322         (ps-selected-pages, ps-last-selected-pages, ps-first-page)
21323         (ps-last-page): New vars.
21325 2000-06-21  Gerd Moellmann  <gerd@gnu.org>
21327         * progmodes/sh-script.el (sh-while-getopts): Fix handling of
21328         empty option string.
21330 2000-06-21  Eli Zaretskii  <eliz@is.elta.co.il>
21332         * man.el (man): Doc fix.
21334 2000-06-21  Kenichi Handa  <handa@etl.go.jp>
21336         * international/mule-cmds.el (set-language-info-alist): Docstring
21337         fixed.
21339 2000-06-20  Gerd Moellmann  <gerd@gnu.org>
21341         * version.el (emacs-version): Use ISO date format.
21343         * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
21344         instead of `M-backspace'.
21346         * simple.el (turn-off-auto-fill): New function.
21348 2000-06-20  Stefan Monnier  <monnier@cs.yale.edu>
21350         * jit-lock.el (with-buffer-prepared-for-jit-lock):
21351         Renamed from with-buffer-prepared-for-font-lock and use
21352         inhibit-modification-hooks rather than setting *-change-functions.
21353         Update all functions to use the new name.
21354         (jit-lock-first-unfontify-pos): New semantics (and doc).
21355         (jit-lock-mode): Make non-interactive.
21356         Don't automatically turn on font-lock.
21357         Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
21358         Always use jit-lock-after-change.
21359         Remove and restore font-lock-after-change-function.
21360         (turn-on-jit-lock, jit-lock-after-fontify-buffer)
21361         (jit-lock-after-unfontify-buffer): Remove.
21362         (jit-lock-stealth-fontify):
21363         Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
21364         (jit-lock-after-change): Set the `fontified' text-prop to nil.
21366 2000-06-20  Sam Steingold  <sds@gnu.org>
21368         * emacs-lisp/cl-indent.el (toplevel): Indent
21369         `print-unreadable-object' properly.  Untabify.
21371 2000-06-14  Carsten Dominik  <dominik@strw.leidenuniv.nl>
21373         * textmodes/reftex.el (reftex-find-citation-regexp-format):
21374         Support for bibentry.
21375         (reftex-compile-variables): Fixed problem with end of section-re.
21377         * texmodes/reftex-dcr.el (reftex-view-crossref,
21378         reftex-view-crossref-from-bibtex):
21379         Deal with changed `reftex-find-citation-regexp-format'.
21380         (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
21381         Replaced `remprop' with `put'.
21382         (reftex-view-crossref, reftex-view-crossref-when-idle):
21383         Support for bibentry.
21385         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
21386         New entry for bibentry package.
21388         * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
21389         Regexp also matches "\nobibliography".
21391         * textmodes/reftex-global.el (reftex-renumber-simple-labels):
21392         Call `reftex-ensure-write-access' before doing anything.
21393         (reftex-ensure-write-access): New function.
21395 2000-06-14  Carsten Dominik  <dominik@strw.leidenuniv.nl>
21397         * progmodes/idlwave.el: File re-installed (update to version 4.2)
21399         * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
21401         * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
21403         * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
21406 2000-06-20  Dave Love  <fx@gnu.org>
21408         * faces.el (frame-background-mode): Use set-default, not set, in
21409         setter.
21410         (frame-update-faces, frame-update-face-colors): Define with
21411         defalias.
21413         * enriched.el (enriched-decode-foreground)
21414         (enriched-decode-background): Don't use internal-find-face.
21416         * apropos.el: Doc fixes.
21418         * cus-edit.el (customize-changed-options): Check arg.
21419         (customize-version-lessp): Don't require decimal point.
21421         * custom.el (defcustom, defgroup): Doc fix.
21423         * newcomment.el (comment) <defgroup>: Add :version.
21424         (comment-multi-line): Doc fix.
21426         * emulation/mlsupport.el (define-hooked-local-abbrev,
21427         define-hooked-global-abbrev): Fix, using define-abbrev.
21429 2000-06-19  Gerd Moellmann  <gerd@gnu.org>
21431         * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
21432         the whole buffer.
21434 2000-06-19  Dave Love  <fx@gnu.org>
21436         * menu-bar.el (menu-bar-options-save): New function.
21437         (menu-bar-options-menu): Use it.
21438         (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
21439         Simplify.
21441 2000-06-19  Andreas Schwab  <schwab@suse.de>
21443         * progmodes/etags.el (tags-query-replace): Put new parameters
21444         START and END at the end, for backward compatibility.
21446 2000-06-19  Kenichi Handa  <handa@etl.go.jp>
21448         * international/codepage.el:
21449         (cp-coding-system-for-codepage-1): Delete special codes for
21450         generating xxx-dos coding system because now a CCL based coding
21451         system can handle EOL conversion by default.
21453         * international/mule.el (make-coding-system): Generate subsidiary
21454         coding systems for EOL handling variants even for a CCL based
21455         coding system.
21457 2000-06-19  Kenichi Handa  <handa@etl.go.jp>
21459         * international/isearch-x.el (isearch-minibuffer-input-method)
21460         (isearch-minibuffer-input-method-function): These variables
21461         deleted.
21462         (isearch-with-input-method): Don't use the above variables.
21463         (isearch-process-search-multibyte-characters): Likewise.  Call
21464         read-string with the arg INHERIT-INPUT-METHOD t.
21466 2000-06-17  Stefan Monnier  <monnier@cs.yale.edu>
21468         * font-lock.el (font-lock-after-fontify-buffer)
21469         (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
21471         * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
21472         Use consistent make-local-variable style for font-lock-fontified.
21473         (jit-lock-fontify-buffer):
21474         Don't bother checking for font-lock-mode and jit-lock-mode.
21476         * time.el: Remove trailing ^M that prevent CVS-merging.
21478 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
21480         * Makefile.in (distclean): New target.
21482 2000-06-16  Stefan Monnier  <monnier@cs.yale.edu>
21484         * Makefile.in (srcdir): Define for update-subdirs.
21486 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
21488         * find-lisp.el: New file.
21490 2000-06-16  Andrew Innes  <andrewi@gnu.org>
21492         * time.el (display-time-mail-function): New variable, to allow
21493         external packages to indicate when new mail is available.
21494         (display-time-update): Use it.
21496 2000-06-16  Kenichi Handa  <handa@etl.go.jp>
21498         * international/mule.el (mule-version): Change version name to
21499         SAKAKI.  AOI has already been used by Meadow.
21501         * international/quail.el (quail-show-guidance-buf): To find the
21502         bottom window (but minibuffer), pay attention to the height of
21503         minibuffer.
21505 2000-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
21507         * arc-mode.el (archive-mode-map): Use the new menu-item format for
21508         menu-bar menus.  Add help strings.  Don't remove the Edit menu
21509         from the menu bar, as the menu bar has enough space now.
21511         * Makefile.in (SHELL): Make sure /bin/sh is used.
21513         * woman.el (woman-man-buffer): Fix bold and underlined CJK
21514         characters, which use series of two ^H characters instead of one.
21516 2000-06-15  Gerd Moellmann  <gerd@gnu.org>
21518         * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
21519         (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
21520         functions.
21521         (Info-find-node-2): Try a case-sensitive search first, then
21522         do a case-insensitive search.
21524         * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
21525         tutorials.
21527         * complete.el (PC-env-vars-alist): New variable.
21528         (PC-complete-as-file-name): New function.
21529         (partial-completion-mode): Initialize PC-env-vars-alist from
21530         process-environment.
21531         (PC-do-completion): Handle completion of env vars.
21533         * info.el (Info-set-mode-line): Show file name in mode line,
21534         use `*Info*' instead of `Info:'.
21536         * startup.el (command-line-1): Change copyright messages to year
21537         2000.
21539 2000-06-15  Dave Love  <fx@gnu.org>
21541         * net/goto-addr.el (goto-address-fontify): Use keymap property,
21542         not local-map.
21544 2000-06-15  Kenichi Handa  <handa@etl.go.jp>
21546         * international/mule.el (set-buffer-file-coding-system): Almost
21547         rewritten to handle `undecided' as no-op.
21549 2000-06-14  Gerd Moellmann  <gerd@gnu.org>
21551         * Makefile.in: New file.
21553         * Makefile: Removed.
21555         * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
21556         (goto-address-highlight-keymap): Bind C-c RET.
21558 2000-06-14  Kenichi Handa  <handa@etl.go.jp>
21560         * mail/sendmail.el (sendmail-send-it): The temporary buffer
21561         inherits buffer-file-coding-system of the current buffer.
21563         * tar-mode.el (tar-extract): For goto-char, use (point-min), not
21564         0.  Give correct argument to set-auto-coding-function.
21565         (tar-expunge): For goto-char, use (point-min), not 0.
21566         (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
21567         (tar-subfile-save-buffer): Likewize.
21569         * international/mule.el
21570         (after-insert-file-set-buffer-file-coding-system): Call
21571         set-buffer-file-coding-system with the arg FORCE t.
21573 2000-06-13  Gerd Moellmann  <gerd@gnu.org>
21575         * mail/sendmail.el (mail-specify-envelope-from): Initialize to
21576         nil.  Contemporary sendmails issue an X-Authentication-Warning if
21577         the sender is set with `-f'.
21579 2000-06-13  Dave Love  <fx@gnu.org>
21581         * help.el (describe-function-1): Kluge around cases of functions
21582         fset to subrs whose doc doesn't match their symbol-name.
21584         * image.el (insert-image): Default STRING to a space.
21586         * info.el Doc fixes.
21587         (Info-build-node-completions): Match Ref tags.
21589 2000-06-13  Eli Zaretskii <eliz@is.elta.co.il>
21591         * frame.el (display-multi-frame-p, display-multi-font-p): New
21592         defaliases for display-graphic-p.
21594         * hl-line.el: Fixed a typo in commentary.
21596 2000-06-13  Kenichi Handa  <handa@etl.go.jp>
21598         * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
21599         fixed.
21601 2000-06-12  Dave Love  <fx@gnu.org>
21603         * image.el (insert-image): Save a little consing.
21605 2000-06-12  Kenichi Handa  <handa@etl.go.jp>
21607         * language/tibet-util.el: Convert all tibetan-1-column characters
21608         to the corresponding tibetan characters.
21609         (tibetan-add-components): Delete code for the special treatment of
21610         'a chung.
21612         * language/tibetan.el (tibetan-composable-pattern): Fix previous
21613         change.
21614         (tibetan-vowel-transcription-alist): More rules added.
21615         (tibetan-composite-vowel-alist): New variable.
21616         (tibetan-precomposition-rule-alist): More rules added.
21618 2000-06-12  Stefan Monnier  <monnier@cs.yale.edu>
21620         * startup.el (command-line): Only call menu-bar-mode if interactive.
21622         * thingatpt.el (toplevel symbol-properties):
21623         * textmodes/makeinfo.el (makeinfo-compile):
21624         * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
21625         * progmodes/hideif.el (hif-compress-define-list)
21626         (hide-ifdef-use-define-alist):
21627         * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
21628         (ange-ftp-vms-add-file-entry):
21629         * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
21630         * man.el (Man-build-man-command):
21631         * mail/rnewspost.el (news-reply-header-hook):
21632         * info.el (Info-insert-dir):
21633         * emulation/mlconvert.el (backward-word, forward-word, setq):
21634         * emacs-lisp/gulp.el (gulp-send-requests):
21635         * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
21636         (byte-optimize-inline-handler, byte-optimize-form-code-walker)
21637         (byte-optimize-apply, end of file):
21638         * emacs-lisp/advice.el (ad-advice-class-completion-table)
21639         (ad-make-freeze-definition):
21640         * startup.el (command-line, command-line-1): Don't quote lambdas.
21642         * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
21643         (cvs-cleanup-removed): New function.
21644         (cvs-cleanup-functions): New var.
21645         (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
21646         some flexibility in specifying additional entries to auto-cleanup.
21647         (cvs-quickdir): New function.
21648         (cvs-mode-insert): Use cvs-fileinfo-from-entries.
21649         (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
21650         (cvs-mode-find-file): Check that we are on a filename or dirname
21651         when invoked through a mouse-click.
21652         (cvs-full-path): Remove.
21653         (cvs-dired-action): Re-introduced.
21654         (cvs-dired-noselect): Use it.
21655         (vc-post-command-functions): use this new hook if available.
21657         * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
21658         (cvs-status-map): Don't inherit from cvs-mode-map anymore.
21659         (cvs-filename-map, cvs-dirname-map): Remove.
21660         (cvs-default-action): Remove.
21661         (cvs-add-face): Use `keymap' rather than `local-map' property, and only
21662         if the arg is really a keymap.
21663         (cvs-fileinfo-pp): Don't use any special map for file and dir names.
21664         Don't hardcode the mapping from state (aka type) to face, but check
21665         the var cvs-fi-<type>-face instead.
21666         (cvs-fileinfo-from-entries): New function.
21668         * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
21669         Docstring fix.
21670         (cvs-find-file-and-jump): Change default to be safer.
21671         (cvs-mode-diff-map): Define it as a function as well.
21672         (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
21673         Bind mouse-2 in this global map rather than with text-properties.
21675         * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
21676         file to resolve the ambiguity between C(conflict) and C(need-merge).
21678 2000-06-12  Kenichi Handa  <handa@etl.go.jp>
21680         * international/mule.el (set-buffer-file-coding-system): If
21681         CODING-SYSTEM is nil, set buffer-file-coding-system to nil
21682         unconditionally.
21684 2000-06-12  Dave Love  <fx@gnu.org>
21686         * wid-edit.el (widget-specify-button): Really suppress the face if
21687         required.
21689 2000-06-11  Gerd Moellmann  <gerd@gnu.org>
21691         * term/x-win.el (x-colors): Add colors from recent rgb.txt.
21693 2000-06-11  Stefan Monnier  <monnier@cs.yale.edu>
21695         * imenu.el (imenu-generic-expression): Docstring fix.
21697         * composite.el (composition-function-table): Move the `put'
21698         below the autoload cookie so we can load the file before loaddefs.
21700         * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
21702         * emacs-lisp/autoload.el (make-autoload): Use `cond'.
21703         Handle easy-mmode-define-global-mode.
21704         For complex macros like define-minor-mode that can generate
21705         several autoload entries, try to autoload entries in the
21706         macroexpanded code.
21708         * emacs-lisp/easy-mmode.el (define-minor-mode):
21709         If KEYMAP is a symbol, just use it.
21710         Use byte-compile-current-file and load-file-name to infer the
21711         proper :require to pass to defcustom.
21712         Wrap the hook var into `progn' so as not to autoload it.
21713         Add a :autoload-end cookie.
21714         Be more careful about the evaluation of KEYMAP.
21715         (easy-mmode-define-global-mode): Add a :autoload-end cookie.
21716         (define-derived-mode): Move define-abbrev-table outside of defvar.
21718 2000-06-10  Stefan Monnier  <monnier@cs.yale.edu>
21720         * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
21721         (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
21722         (backup-compiled-files): Ignore errors during `tar'.
21723         (bootstrap): Make autoloads before elc files.
21725 2000-06-10  Kenichi Handa  <handa@etl.go.jp>
21727         * international/mule.el (set-buffer-file-coding-system): If one of
21728         undecided-XXX is specified, change only EOL conversion.
21730         * international/mule-conf.el (unix): New alias for the coding
21731         system undecided-unix.
21733 2000-06-09  Dave Love  <fx@gnu.org>
21735         * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
21737         * progmodes/executable.el: Byte compile dynamic.
21738         (executable-insert): Change custom type.
21739         (executable-find): Add autoload cookie.
21740         (executable-make-buffer-file-executable-if-script-p): New
21741         function.  After Noah Friedman.
21743         * files.el (after-save-hook): Customize, with
21744         executable-make-buffer-file-executable-if-script-p as an option.
21746 2000-06-09  Kenichi Handa  <handa@etl.go.jp>
21748         * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
21749         "tib24p-mule.bdf" for Tibetan.
21751         * composite.el (decompose-composite-char): Declare it as obsolete.
21753         * man.el (Man-fontify-manpage): Pay attention to underline and
21754         overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
21756 2000-06-08  Gerd Moellmann  <gerd@gnu.org>
21758         * thingatpt.el (forward-thing): Use functionp instead of fboundp.
21759         Set maintainer to FSF since author isn't reachable.
21761 2000-06-08  Dave Love  <fx@gnu.org>
21763         * international/mule-cmds.el (select-safe-coding-system): If
21764         DEFAULT-CODING-SYSTEM is not specified, also check the most
21765         preferred coding-system if buffer-file-coding-system is
21766         `undecided'.  From Handa.
21768 2000-06-08  Kenichi Handa  <handa@etl.go.jp>
21770         * international/mule.el
21771         (after-insert-file-set-buffer-file-coding-system): If the buffer
21772         size is greater than INSERTED, judget that we are not visiting.
21774 2000-06-07  Rajesh Vaidheeswarran  <rv@gnu.org>
21776         * whitespace.el (defgroup whitespace): Comment out `:version'.
21777         XEmacs 20.4 has problems defining the group with this present.
21778         We'll have this commented out till get resolve the problem.
21780 2000-06-07  John Wiegley  <johnw@gnu.org>
21782         * align.el (align-dq-string-modes, align-sq-string-modes)
21783         (align-open-comment-modes): Add pyhton-mode.
21784         (align-rules-list): Use get-text-property instead of
21785         text-properties-at.
21786         (align-rules-list): Add python-assignment.
21787         (align-rules-list): Change perl-comma-delimiter to
21788         basic-comma-delimiter.  Use if for Perl modes and python-mode.
21789         (align-rules-list): Add python-chain-logic and
21790         basic-line-continuation.
21792 2000-06-07  Jari Aalto  <jari.aalto@poboxes.com>
21794         * apropos.el (apropos-mode-hook): New user variable.
21795         (apropos-mode): Run apropos-mode-hook.
21797 2000-06-07  David Ponce  <david@dponce.com>
21799         * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
21800         commands.  Require `wid-edit' at run-time.
21802 2000-06-07  David Ponce  <david@dponce.com>
21804         * recentf.el: Added some "Commentary".
21805         (recentf-open-more-files, recentf-edit-list): Minor changes to
21806         move the point at the top of the file list.  This behaviour is
21807         consistent with the menu one when the list contains a lot of
21808         files.
21809         (recentf-cleanup): Now displays the number of items removed from
21810         the list.
21811         (recentf-relative-filter) New menu filter to show filenames
21812         relative to `default-directory'.
21814 2000-06-07  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
21816         * ps-print.el: XEmacs compatibility.  Doc fix.  Can select page size
21817         with/without giving an error if PostScript printer doesn't have this
21818         kind of page size.  Zebra Stripe continues or restarts on next page.
21819         Manual/automatic paper feeding.  Switch or not the header.
21820         (ps-print-version): New version number (5.2.2).
21821         (ps-windows-system): Include emx as a Windows system.
21822         (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
21823         (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
21824         (ps-background-text): Code fix.
21825         (ps-error-handler-message, ps-user-defined-prologue)
21826         (ps-print-prologue-header, ps-printer-name)
21827         (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
21828         (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
21829         (ps-use-face-background): Customization fix.
21830         (ps-n-up-database): Data fix.
21831         (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
21832         (ps-switch-header): New vars.
21833         (ps-xemacs-color-name, ps-face-foreground-name)
21834         (ps-face-background-name, ps-boolean-constant): New funs.
21836 2000-06-07  Dave Love  <fx@gnu.org>
21838         * allout.el: New version from Manheimer.
21840 2000-06-07  Kenichi Handa  <handa@etl.go.jp>
21842         * textmodes/fill.el (fill-find-break-point): Check the validity of
21843         charset.
21845 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
21847         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
21848         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
21849         Call display-color-p and display-mouse-p instead of looking at
21850         window-system.
21852 2000-06-06  Dave Love  <fx@gnu.org>
21854         * image.el (find-image): Doc fix.  Return nil if image not found.
21855         (put-image, insert-image): Make STRING arg optional.
21857 2000-06-06  Kenichi Handa  <handa@etl.go.jp>
21859         * language/vietnamese.el: Remove eval-when-compile.
21860         (viet-viscii-nonascii-translation-table): Define it as a
21861         translation table made from viet-viscii-decode-table.
21862         (viet-viscii-encode-table): Define it as a translation table made
21863         from the reverse map of above.
21864         (viet-vscii-nonascii-translation-table): Define it as a
21865         translation table made from viet-vscii-decode-table.
21866         (viet-vscii-encode-table): Define it as a translation table made
21867         from the reverse map of above.
21868         (ccl-decode-viscii): Use translate-character.
21869         (ccl-encode-viscii, ccl-encode-viscii-font)
21870         (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
21871         Likewize.
21873         * language/cyrillic.el: Remove eval-when-compile.
21874         (cyrillic-koi8-r-nonascii-translation-table): Define it as a
21875         translation table made from cyrillic-koi8-r-decode-table.
21876         (cyrillic-koi8-r-encode-table): Define it as a translation table
21877         made from the reverse map of above.
21878         (ccl-decode-koi8): Use translate-character.
21879         (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
21880         (cyrillic-alternativnyj-nonascii-translation-table): Define it as
21881         a translation table made from cyrillic-alternativnyj-decode-table.
21882         (cyrillic-alternativnyj-encode-table): Define it as a translation
21883         table made from the reverse map of above.
21884         (ccl-decode-alternativnyj): Use translate-character.
21885         (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
21886         Likewize
21888         * international/mule-diag.el (non-iso-charset-alist): Specify
21889         translation table symbol instead of translation table itself.
21890         (list-block-of-chars): CHARSET may be a translation table symbol.
21892         * international/mule.el (make-coding-system): If CODING-SYSTEM
21893         already exists, override it.
21895         * international/fontset.el: Use family `proportional' for Tibetan
21896         fonts.
21898         * international/ccl.el (ccl-compile-translate-character): Don't
21899         check if Rrr has property translation-table.
21900         (ccl-compile-map-multiple): Modified to avoid compiler warning.
21902 2000-06-05  Gerd Moellmann  <gerd@gnu.org>
21904         * info.el: Bind case-fold-search to t when searching in case
21905         a user sets it to nil in a hook.
21907 2000-06-05  Stefan Monnier  <monnier@cs.yale.edu>
21909         * autoarg.el (autoarg-mode, autoarg-kp-mode):
21910         * hl-line.el (hl-line-mode): Use the new :global key argument.
21912         * tar-mode.el (tar-header-block-recompute-checksum): Remove.
21913         (tar-clip-time-string): Prepend a space.
21914         (tar-grind-file-mode): Construct a string rather than modifying one.
21915         (tar-header-block-summarize): Fix docstring.
21916         Use `format' rather than an error-prone set of copy-loops.
21918         * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
21919         (diff-goto-source, diff-unified->context, diff-context->unified)
21920         (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
21921         understand the format output by the `-p' argument to diff.
21923         * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
21924         (sh-re-done): Use defconst.
21925         (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
21926         (sh-help-string-for-variable, sh-guess-basic-offset):
21927         Don't quote lambdas.
21928         (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
21929         (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
21931         * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
21932         (mh-letter-mode): Derive from text-mode.
21933         This implicitly means that it now calls kill-all-local-variables.
21934         Also remove the Emacs-18 compatibility code.
21936         * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
21937         Make use of symbol-property doc-string-elt.
21938         Use memq rather than a sequence of eq.
21939         (doc-string-elt): Fix the wrong or missing previously unused values.
21940         (autoload-print-form): New function extracted from
21941         generate-file-autoloads to allow recursion when handling progn
21942         so that defvar's and defun's docstrings are properly printed.
21943         (generate-file-autoloads): Use it.
21945         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
21946         Use find-file-hooks in the minor-mode function.
21947         Be careful not to loop indefinitely in the post-command-hook function.
21949 2000-06-05  Michael Kifer  <kifer@cs.sunysb.edu>
21951         * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
21952         tty's.
21953         * ediff-diff.el (ediff-exec-process): Use --binary for fine
21954         differences whenever appropriate.
21955         * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
21956         * viper.el (find-file, find-file-other-window): Get viper to do
21957         wildcards.
21959 2000-06-04  Stefan Monnier  <monnier@cs.yale.edu>
21961         * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
21962         (jit-lock-fontify-buffer): New function for JIT refontification.
21963         (jit-lock-mode): Fix docstring.
21964         Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
21965         Remove jit-lock-after-change from the _local_ hook.
21966         (jit-lock-function-1): Fix docstring.
21968         * info.el (Info-on-current-buffer): Initialize info.
21970         * newcomment.el (comment-indent): Ignore comment-indent-hook.
21972         * progmodes/tcl.el (tcl-indent-for-comment):
21973         Ignore comment-indent-hook.
21975         * emacs-lisp/easy-mmode.el: Require CL during compilation.
21976         (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
21977         (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
21978         and improve to use the lighter to guess the capitalization.
21979         (define-minor-mode): Inline code from easy-mmode-define-toggle.
21980         Add keyword arguments to specify global-ness or the custom group.
21981         Add local-map and help-echo properties to the lighter.
21982         (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
21983         (easy-mmode-define-global-mode): New macro.
21985 2000-06-02  Dave Love  <fx@gnu.org>
21987         * wid-edit.el: byte-compile-dynamic since we typically don't use
21988         all the widgets.  Don't require cl or widget.  Remove
21989         eval-and-compile.  Don't autoload finder-commentary.  Doc fixes.
21990         (widget-read-event): Removed.  Callers changed to use read-event.
21991         (widget-button-release-event-p): Renamed from
21992         button-release-event-p.
21993         (widget-field-add-space, widget-field-use-before-change):
21994         Uncustomize.
21995         (widget-specify-field): Use keymap property, not local-map.
21996         (widget-specify-button): Obey :suppress-face.
21997         (widget-specify-insert): Use modern backquote syntax.
21998         (widget-image-directory): Renamed from widget-glyph-directory.
21999         (widget-image-enable): Renamed from widget-glyph-enable.
22000         (widget-image-find): Replaces widget-glyph-find.
22001         (widget-button-pressed-face): Move defvar.
22002         (widget-image-insert): Replaces widget-glyph-insert.
22003         (widget-convert): Use keywordp.
22004         (widget-leave-text, widget-children-value-delete): Use mapc.
22005         (widget-keymap): Remove XEmacs stuff.
22006         (widget-field-keymap, widget-text-keymap): Define all inside defvar.
22007         (widget-button-click): Don't set point at the click, but re-centre
22008         if we scroll out of window.  Rewritten for images v. glyphs &c.
22009         (widget-tabable-at): Use POS arg, not point.
22010         (widget-beginning-of-line, widget-end-of-line)
22011         (widget-item-value-create, widget-sublist, widget-princ-to-string)
22012         (widget-sexp-prompt-value, widget-echo-help): Simplify.
22013         (widget-default-create): Use widget-image-insert; some rewriting.
22014         (widget-visibility-value-create)
22015         (widget-push-button-value-create, widget-toggle-value-create): Use
22016         widget-image-insert.
22017         (checkbox): Create on and off images dynamically.
22018         (documentation-link): Change :help-echo.
22019         (widget-documentation-link-echo-help): Remove.
22021 2000-06-02  Stefan Monnier  <monnier@cs.yale.edu>
22023         * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
22025         * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
22026         (easy-mmode-define-toggle, define-minor-mode): Use it.
22027         (easy-mmode-define-keymap): Docstring fix.
22028         (define-derived-mode): Default PARENT to fundamental-mode.
22029         Add the derived-mode-parent symbol-property.
22030         (easy-mmode-derived-mode-p): New function.
22032 2000-06-02  Dave Love  <fx@gnu.org>
22034         * files.el (convert-standard-filename): Doc fix.
22035         (normal-backup-enable-predicate): New function.
22036         (backup-enable-predicate): Use it to replace the lambda form.
22038         * calendar/todo-mode.el: [This needs more work on the outline
22039         stuff.]  Doc fixes.
22040         (todo) <defgroup>: Add :version.
22041         (todo-add-category): Don't use pushnew.
22042         (todo-cmd-raise): Fix typo.
22043         (todo-top-priorities): Change temp buffer name.
22044         (todo-category-alist): Avoid redundant lambda.
22045         (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
22046         Use outline-next-heading.
22048         * autoarg.el: Rewritten to use define-minor-mode.
22049         (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
22050         (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
22052 2000-06-02  Kenichi Handa  <handa@etl.go.jp>
22054         * isearch.el (isearch-other-meta-char): Fix previous change.
22056 2000-06-01  Stefan Monnier  <monnier@cs.yale.edu>
22058         * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
22059         (log-edit-done): Only add the comment to the ring if it's different
22060         from the last comment entered.
22062         * isearch.el (isearch-highlight): Turn internal-find-face into facep.
22064 2000-06-01  Dave Love  <fx@gnu.org>
22066         * hl-line.el: Rewritten using define-minor-mode.
22068         * help.el (describe-function-1): Distinguish special form from
22069         builtin function.  Sanity-check presence of arglist for builtins.
22071 2000-06-01  Kenichi Handa  <handa@etl.go.jp>
22073         * international/characters.el: Fix syntax/category setting of
22074         Tibetan characters.
22076         * language/tibet-util.el (tibetan-add-components): Fixes for new
22077         encoding of Tibetan characters.
22078         (tibetan-decompose-precomposition-alist): New variable.
22079         (tibetan-decompose-region): Convert precomposed characters to
22080         non-precomposed characters.
22081         (tibetan-decompose-string): Likewise.
22082         (tibetan-composition-function): Fix args to
22083         thibetan-compose-string.
22085         * language/tibetan.el (tibetan-composable-pattern): More
22086         characters included.
22087         (tibetan-consonant-transcription-alist): Rule for "R" added.
22088         (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
22089         "+R" added.
22090         (tibetan-base-to-subjoined-alist): Rule for "RA" added.
22092         * language/lao-util.el (lao-composition-function): Fix args to
22093         compose-string.
22095         * language/thai-util.el (thai-composition-function): Fix args to
22096         compose-string.
22098         * isearch.el (isearch-update): Set disable-point-adjustment to t
22099         to prevent the point moving to the end of a composition when a
22100         part of a composition is searched.
22101         (isearch-other-meta-char): If the key invoking this command can be
22102         mapped by function-key-map to a printing char, call
22103         isearch-process-search-char directly.
22105 2000-06-01  Stefan Monnier  <monnier@cs.yale.edu>
22107         * emacs-lisp/bytecomp.el:
22108         * frame.el:
22109         * international/mule-cmds.el:
22110         * international/mule-util.el:
22111         * international/mule.el:
22112         * mouse.el:
22113         * subr.el:
22114         * faces.el: Update calls to make-obsolete with a WHEN argument.
22116         * byte-run.el (make-obsolete, make-obsolete-variable):
22117         Add an optional WHEN argument and change the format of the
22118         symbol-property information.
22119         * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
22120         (byte-compile-obsolete, byte-compile-variable-ref): Understand the
22121         new obsolete-symbol-property format and print WHEN if it is provided.
22123 2000-05-31  Dave Love  <fx@gnu.org>
22125         * loadhist.el (loadhist-hook-functions): Remove
22126         before-change-function, after-change-function.
22127         (unload-feature): Deal with symbols which are both bound and
22128         fbound.
22130         * mouse.el (mouse-save-then-kill-delete-region): Don't bind
22131         before-change-function, after-change-function.
22133         * simple.el (newline): Don't bind before-change-function,
22134         after-change-function.
22136 2000-05-31  Rajesh Vaidheeswarran <rv@gnu.org>
22138         * whitespace.el (whitespace-rescan-timer-time): Update interval
22139         set to 600 seconds (10 minutes) instead of 60 seconds since
22140         a large number of whitespace buffers causes emacs to `freeze'
22141         for a considerable amount of time.
22143         * whitespace.el: Updated email address
22145 2000-05-31  Dave Love  <fx@gnu.org>
22147         * add-log.el (change-log-font-lock-keywords) <function>: Add
22148         pattern for function of change.
22149         (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
22150         acknowledgements patterns.
22152 2000-05-31  Kenichi Handa  <handa@etl.go.jp>
22154         * isearch.el (isearch-printing-char): If keyboard coding system is
22155         being used, call isearch-process-search-multibyte-characters.
22157         * international/isearch-x.el: Mostly rewritten.
22159         * international/quail.el (quail-start-conversion): Don't include
22160         unhandled events in the returned events, but set them in
22161         unread-command-events.  Exit if all inputs are deleted.
22163 2000-05-30  Jason Rumney  <jasonr@gnu.org>
22165         * w32-fns.el (w32-charset-info-alist): Add each charset separately.
22167         * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
22168         Reenable code to create initial fontsets.
22169         Use set-fontset-font in place of put-charset-property.
22171 2000-05-30  Gerd Moellmann  <gerd@gnu.org>
22173         * progmodes/perl-mode.el (perl-indent-line): When looking for a
22174         label, ensure that the first colon isn't followed by another.
22176         * paths.el (Info-default-directory-list): Doc fix.
22178         * net/net-utils.el (finger-X.500-host-regexps): New user-option.
22179         (finger): If HOST matches a regexp from finger-X.500-host-regexps,
22180         send a query containing USER only, not USER@HOST.
22182         * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
22183         and rmail-msgend to compute the restriction at the end, instead of
22184         computing it.
22186 2000-05-29  Gerd Moellmann  <gerd@gnu.org>
22188         * dabbrev.el (dabbrev-expand): Don't display messages in the
22189         echo area if the minibuffer window is active.
22191         * jit-lock.el (jit-lock-mode): Add after change function to
22192         local hook.
22194 2000-05-29  Christoph Wedler  <Christoph.Wedler@sap.com>
22196         * antlr-mode.el: New commands: hide/unhide actions,
22197         upcase/downcase literals.
22198         (antlr-tiny-action-length): New user option.
22199         (antlr-hide-actions): New command.  Suggested by
22200         Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
22201         (antlr-mode-map): New binding [C-c C-v].
22202         (antlr-mode-menu): New entries.
22203         (antlr-downcase-literals): New command.
22204         (antlr-upcase-literals): Ditto.
22206         * antlr-mode.el: Minor changes: indendation, mode-name.
22207         (antlr-indent-line): Indent cpp directive at column 0.
22208         (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
22210         * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
22211         (antlr-font-lock-additional-keywords): Workaround for intentional
22212         bug in XEmacs version of font-lock.
22213         (antlr-mode): Set symbol property `mode-name' to "Antlr".  Could
22214         be used by a smarter version of `buffers-menu-grouping-function'.
22216 2000-05-29  Gerd Moellmann  <gerd@gnu.org>
22218         * tmm.el (tmm-prompt): Recognize menu item definitions of the for
22219         `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
22221 2000-05-29  Kenichi Handa  <handa@etl.go.jp>
22223         * international/encoded-kb.el
22224         (encoded-kbd-iso2022-designation-map): Pay attention to that
22225         charset-iso-final-char return -1 for eight-bit-control and
22226         eight-bit-graphic.
22228 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
22230         * speedbar.el (speedbar-use-images, speedbar-update-flag)
22231         (speedbar-easymenu-definition-base): Use display-graphic-p where
22232         available, instead of window-system.
22234 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
22236         * international/codepage.el (cp-coding-system-for-codepage-1): Add
22237         eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
22238         coding systems.
22240 2000-05-26  Dave Love  <fx@gnu.org>
22242         * disp-table.el (standard-display-underline): Don't use
22243         internal-find-face.
22245         * mail/reporter.el: Maintainer change.  Doc fixes.
22246         (reporter-version): Deleted.
22248         * emacs-lisp/elp.el: Maintainer change.
22249         (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
22251 2000-05-26  Stefan Monnier  <monnier@cs.yale.edu>
22253         * add-log.el (add-change-log-entry): Merge the current entry with the
22254         previous one if the previous one is empty.
22256 2000-05-26  Dave Love  <fx@gnu.org>
22258         * loadhist.el (unload-feature): Fix interactive spec [from
22259         lijnzaad@ebi.ac.uk].
22261         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
22262         subr-arity to check primitives.
22263         (byte-compile-flush-pending, byte-compile-file-form-progn)
22264         (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
22265         (byte-compile-insert, byte-compile-funcall): Use mapc instead of
22266         mapcar.
22268 2000-05-26  Kenichi Handa  <handa@etl.go.jp>
22270         * international/fontset.el: Set family names of non-latin charsets
22271         in default fontset to "*".
22273         * international/mule-diag.el (print-fontset): Combine family part
22274         and registry part of the fontname by "-*-" instead of "-".
22276         * international/mule-cmds.el (encode-coding-char): Make strings
22277         multibyte before calling encode-coding-string.
22279 2000-05-25  Stefan Monnier  <monnier@cs.yale.edu>
22281         * derived.el: Fix keywords.
22282         (define-derived-mode): Only define if needed.
22284         * simple.el (fill-comment, comment-column, comment-start)
22285         (comment-start-skip, comment-end, comment-indent-function)
22286         (block-comment-start, block-comment-end, indent-for-comment)
22287         (set-comment-column, kill-comment, comment-padding, comment-region)
22288         (comment-multi-line, indent-new-comment-line): Remove.
22290         * bindings.el (esc-map): Change ; to comment-dwim and use the new
22291         function names for comment operations.
22293         * newcomment.el: Add abundant autoload cookies.
22294         (comment-style): Don't depend on runtime data at compile-time.
22295         (comment-indent-hook): Remove.
22296         (comment-indent): Check if comment-indent-hook is bound.
22297         (comment-region): Docstring fix.
22299 2000-05-25  Dave Love  <fx@gnu.org>
22301         * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
22302         byte-code-function-p.
22304         * mail/rmailsum.el: Add provide.
22306         * net/goto-addr.el (goto-address-fontify): Add help-echo property.
22308         * smerge-mode.el (smerge-diff-switches): Don't use list* in
22309         defcustom.
22311 2000-05-25  Michael Kifer  <kifer@cs.sunysb.edu>
22313         * ediff-diff.el (ediff-exec-process): delete --binary option from
22314         non-buffer ediff jobs.
22316 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
22318         * hilit-chg.el (highlight-changes-mode): Ask about color or
22319         grayscale support, not about window-system.
22321         * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
22322         window-system.
22323         (ffap-highlight): Always default to t.
22325         * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
22326         display-popup-menus-p instead of looking at window-system.
22328         * disp-table.el (standard-display-g1, standard-display-graphic):
22329         Only refuse to use string glyphs on X and MS-Windows.
22331         * avoid.el: Remove window-system from commentary, suggest to use
22332         display-*-p instead.
22334         * apropos.el (apropos-print): Use display-mouse-p instead of
22335         window-system.
22337 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
22339         * international/codepage.el (cp-decoding-vector-for-codepage):
22340         Fill up unsupported characters with their own codes.  From Kenichi
22341         Handa.
22343 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
22345         * international/mule-diag.el (describe-char-after): Use
22346         display-graphic-p instead of window-system, so that this function
22347         works on MS-DOS.
22349 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
22351         * international/codepage.el (cp-make-coding-systems-for-codepage):
22352         Remove the eight-bit-graphic and eight-bit-control charsets from
22353         the list of charsets which we convert into `?'.
22355 2000-05-25  Kenichi Handa  <handa@etl.go.jp>
22357         * international/mule-conf.el: Specify CHARSET-ID explicitely for
22358         private charsets.
22359         (mule-unicode-0100-24ff, japanese-jisx0213-1,
22360         japanese-jisx0213-2): New charsets.
22362         * international/fontset.el: Setup default fontset for new charsets.
22364 2000-05-24  Dave Love  <fx@gnu.org>
22366         * info.el (Info-find-node-2): Restructure [following "Vadim
22367         S. Solomin" <sovs@uic.nnov.ru>].
22369         * icomplete.el: Fix header for Finder.
22371 2000-05-24  Eric M. Ludlam  <zappo@ultranet.com>
22373         * rmailout.el (rmail-output-to-rmail-file): Added optional param
22374         STAY.
22376         * rmail.el (rmail-automatic-folder-directives): New user variable.
22377         (rmail-show-message): Add call to `rmail-auto-file' during
22378         display.
22379         (rmail-auto-file): New function.
22381 2000-05-24  Michael Kifer  <kifer@cs.sunysb.edu>
22383         * ediff-diff.el (ediff-forward-word): Take syntactic word class into
22384         account.
22385         (ediff-test-utility,ediff-diff-mandatory-option)
22386         (ediff-reset-diff-options): Utilities for proper initialization of
22387         ediff-diff-options and ediff-diff3-options on Windows.
22389         * ediff-init.el (ediff-merge-filename-prefix): New customizable
22390         variable.
22392         * ediff-mult.el (ediff-filegroup-action): Use
22393         ediff-merge-filename-prefix.
22395 2000-05-24  Michael Kifer  <kifer@cs.sunysb.edu>
22397         * viper-ex.el (ex-write): Set selective display to nil.
22399 2000-05-24  Eli Zaretskii  <eliz@is.elta.co.il>
22401         * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
22402         aliases for hebrew-iso-8bit.
22404 2000-05-24  Eli Zaretskii  <eliz@is.elta.co.il>
22406         * woman.el: New version from Francis J. Wright
22407         <F.J.Wright@Maths.QMW.ac.uk>.
22408         (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
22409         names in environment variables regardless of the path separator.
22410         (woman-topic-all-completions-1): Don't call file-name-directory-p
22411         on all files, since woman-file-regexp already filters out any
22412         directories.
22414 2000-05-24  Kenichi Handa  <handa@etl.go.jp>
22416         * international/quail.el (quail-start-translation): Don't change
22417         modified-p of the current buffer.
22418         (quail-start-conversion): Likewise.
22420         * international/kkc.el (kkc-region): Don't change modified-p of
22421         the current buffer.
22423         * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
22424         conform to RFC1468.
22425         (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
22427 2000-05-23  Eric M. Ludlam  <zappo@ballista.ultranet.com>
22429         * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
22430         (speedbar-insert-button): Invisible text property fix.
22431         (speedbar-directory-plus): Renamed from speedbar-directory-+
22432         (speedbar-directory-minus): Renamed from speedbar-directory--
22433         (speedbar-page-plus): Renamed from speedbar-file-+
22434         (speedbar-page-minus): Renamed from speedbar-file--
22435         (speedbar-page): Renamed from speedbar-file-
22436         (speedbar-tag): Renamed from speedbar-tag-
22437         (speedbar-tag-plus): Renamed from speedbar-tag-+
22438         (speedbar-tag-minus): Renamed from speedbar-tag--
22439         (speedbar-expand-image-button-alist): Use above renames.
22441         * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
22442         * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
22443         * sb-pg-plus.xpm: Renamed from sb-file+.xpm
22444         * sb-pg-minus.xpm: Renamed from sb-file-.xpm
22445         * sb-pg.xpm: Renamed from sb-file.xpm
22446         * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
22447         * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
22449 2000-05-24  Kenichi Handa  <handa@etl.go.jp>
22451         * international/quail.el (quail-show-guidance-buf): Set
22452         current-input-method of the guidance buffer to the name of the
22453         curren input method.
22455 2000-05-23  Stefan Monnier  <monnier@cs.yale.edu>
22457         * progmodes/compile.el (compile-internal): Style typo.
22459         * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
22460         quote vars and functions in the docstring.
22462         * newcomment.el (comment-make-extra-lines): Don't use `assert'.
22464         * completion.el (dynamic-completion-mode, dynamic-completion-mode):
22465         Don't quote lambdas.
22467         * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
22469 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
22471         * startup.el (command-line): Determine source file of compiled
22472         user init file differently.  Warn if compiled user init file
22473         is older than its source file.
22475         * ffap.el (ffap-url-regexp): Add `https'.
22477 2000-05-23  Eli Zaretskii  <eliz@is.elta.co.il>
22479         * files.el (make-backup-file-name-1): Replace slashes with `!'
22480         rather than `|' (which is not allowed on Windows).  Replace the
22481         drive letters with a string "drive_X".
22483 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
22485         * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
22487         * files.el (interpreter-mode-alist): Add `bash2'.
22489 2000-05-22  Dave Love  <fx@gnu.org>
22491         * loadhist.el (feature-symbols, file-provides, file-requires): Use
22492         mapc.
22493         (feature-file): Avoid calling symbol-name.  Doc fix.
22494         (file-set-intersect, file-dependents): Use dolist, not mapcar.
22495         (loadhist-hook-functions): Add mouse-position-function.
22496         (unload-feature): Change uses of mapcar.
22498         * files.el (parse-colon-path): Doc fix.
22499         (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
22500         (set-auto-mode): Use mapc.
22502         * complete.el (PC-look-for-include-file): Use :alnum: character
22503         class.
22504         (partial-completion-mode): Add autoload cookie.
22506 2000-05-22  Sam Steingold  <sds@gnu.org>
22508         * info.el (Info-fontify-node): Fixed the call to
22509         `add-text-properties' (bug introduced on 2000-05-18).
22511 2000-05-22  Dave Love  <fx@gnu.org>
22513         * bindings.el: Remove debug-ignored-errors set in other files.
22515         * progmodes/etags.el: Add to debug-ignored-errors.
22516         (visit-tags-table-buffer): Clear out buffers holding old tables
22517         when making a new list.
22518         (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
22519         mapc.
22521         * completion.el: Doc fixes.  Add to debug-ignored-errors.  Don't
22522         quote keywords.
22523         (cmpl-string-case-type): Use character classes.
22525         * comint.el:
22526         * textmodes/ispell.el:
22527         * imenu.el:
22528         * mail/mh-e.el:
22529         * progmodes/compile.el: Add to debug-ignored-errors.
22531         * dabbrev.el: Add to debug-ignored-errors.
22532         (dabbrev-completion): Use mapc.
22534 2000-05-22  Eli Zaretskii  <eliz@is.elta.co.il>
22536         * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
22537         (woman-mapcan, woman-parse-man.conf)
22538         (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
22539         (woman-reset-emulation, woman-select-symbol-fonts): New functions.
22540         (woman-parse-colon-path): Call woman-mapcan.  Recognize Cygwin
22541         path syntax better.
22542         (woman-man.conf-path, woman-use-own-frame): New defcustoms.
22543         (woman-manpath): Call woman-parse-man.conf.
22544         (woman-emulation): New defcustom, defaults to nroff.
22545         (woman-font-support): New defconst.
22546         (woman-use-symbol-font): New defcustom.
22547         (woman-menu): Add new menu items: "Colored/BW", "Advanced",
22548         "Emulation".
22549         Many functions: Doc fix.
22551 2000-05-22  Kenichi Handa  <handa@etl.go.jp>
22553         * international/quail.el (quail-simple-translation-keymap): Map
22554         128..255 to quail-self-insert-command.
22555         (quail-keyboard-layout-alist): Add definition for "pc102-de".
22557 2000-05-22  Stefan Monnier  <monnier@cs.yale.edu>
22559         * help.el (help-manyarg-func-alist): Typo.
22561         * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
22562         intervals which makes it heaps simpler.
22564         * newcomment.el (comment-region-internal): Go back to BEG after quoting
22565         the nested comment markers.
22567         * subr.el (remove-hook): Don't turn the hook's value into a list.
22569 2000-05-21  Dave Love  <fx@gnu.org>
22571         * edmacro.el (edmacro-parse-keys): Return vector if any elements
22572         are invalid characters.
22574         * international/mule-util.el (detect-coding-with-priority): Use
22575         mapc.  Remove redundant lambda.
22577         * international/mule-diag.el (list-non-iso-charset-chars)
22578         (describe-fontset): Remove redundant lambda.
22580         * emulation/crisp.el (brief-mode): New alias.
22582         * emacs-lisp/ring.el (ring-elements): New function.
22584         * emacs-lisp/easymenu.el (easy-menu-create-menu)
22585         (easy-menu-do-add-item): Use keywordp.
22587         * emacs-lisp/byte-opt.el: Update side-effect free function lists.
22589         * replace.el: Doc and error message fixes.
22590         (replace-highlight): Use facep, not internal-find-face.
22592 2000-05-20  Stefan Monnier  <monnier@cs.yale.edu>
22594         * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
22596         * log-edit.el (log-edit-done): Cleanup trailing empty lines.
22597         (log-edit-insert-changelog): Drop `:' as well.
22599         * log-view.el: Fix file description.
22600         (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
22601         available.
22602         (log-view-font-lock-keywords): Only use cvs-filename-face if present.
22603         (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
22605         * emacs-lisp/easy-mmode.el: Update copyright and commentary.
22606         (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
22607         Print a status message if the toggle is called interactively.
22608         (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
22609         for global minor modes and use `defcustom' for them.
22610         Use add-minor-mode.
22611         (easy-mmode-define-derived-mode): Remove.
22612         (define-derived-mode): Fancier default docstring.
22613         (easy-mmode-define-navigation): Signal an error rather than (ding).
22615         * newcomment.el (comment-styles): New `box-multi'.
22616         (comment-normalize-vars): Better default for comment-continue to
22617         avoid whitespace-only continuations.
22618         (comment-search-forward): Always move even in the no-syntax case.
22619         (comment-padright): Only obey N if it's only obeyed for padleft.
22620         (comment-make-extra-lines): Better handling of empty continuations.
22621         Use `=' for the filler if comment-start has only one character.
22622         (uncomment-region): Try handling the special `=' filler.
22623         (comment-region): Allow LINES even if MULTI is nil.
22624         (comment-box): Choose box style based on comment-style.
22626 2000-05-20  Kenichi Handa  <handa@etl.go.jp>
22628         * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
22629         (ccl-compile-write-repeat): If ARG is string, make it unibyte.
22631 2000-05-20  Kenichi HANDA  <handa@etl.go.jp>
22633         * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
22634         and insert, not subst-char-in-region.
22636         * international/mule-diag.el (list-character-sets-1): Handle
22637         charsets eight-bit-control and eight-bit-graphic.
22638         (list-iso-charset-chars): Likewise.
22639         (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
22640         charactes as is.  Use indent-to to align characters.
22642         * international/mule-cmds.el (find-multibyte-characters): Never
22643         exclude charsets eight-bit-control and eight-bit-graphic.
22645 2000-05-19  Stefan Monnier  <monnier@cs.yale.edu>
22647         * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
22648         Don't quote lambdas.
22650         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
22652 2000-05-19  Gerd Moellmann  <gerd@gnu.org>
22654         * gud.el (gud-jdb-directories): Doc fix.
22656 2000-05-19  Stefan Monnier  <monnier@cs.yale.edu>
22658         * newcomment.el: New file.
22660 2000-05-19  Gerd Moellmann  <gerd@gnu.org>
22662         * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
22664 2000-05-18  Andreas Schwab  <schwab@suse.de>
22666         * dired.el (dired-between-files): Also skip lines beginning with
22667         `used'.
22669 2000-05-18  Gerd Moellmann  <gerd@gnu.org>
22671         * msb.el (msb-menu-cond): Add choice `user'.
22673 2000-05-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
22675         * ps-print.el: Compatibility, customization and doc fix.
22676         (ps-printer-name-option): Replace defconst by defvar.
22677         (ps-postscript-code-directory): XEmacs compatibility.
22678         (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
22679         fix.
22680         (ps-user-defined-prologue, ps-print-prologue-header)
22681         (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
22682         compatibility and code fix.
22683         (ps-print-background-image, ps-print-background-text):
22684         Customization fix.
22685         (ps-line-number-start, ps-n-up-on): New vars.
22687 2000-05-18  Espen Skoglund  <esk@ira.uka.de>
22689         * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
22690         the indent-comment function to just return the appropriate indent.
22692 2000-05-18  Eric M. Ludlam  <zappo@ultranet.com>
22694         * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
22695         sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
22696         sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
22698 2000-05-18  Dave Love  <fx@gnu.org>
22700         * info.el (Info-fontify-node): Add intangible property as well as
22701         invisible.
22703         * calendar/appt.el (appt-make-list): Match all lines of entry.
22704         From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
22706 2000-05-18  Kenichi Handa  <handa@etl.go.jp>
22708         * international/mule-diag.el (describe-char-after): Call
22709         internal-char-font, not char-font.  If internal-char-font returns
22710         nil, display "-- none --".
22712 2000-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
22714         * image.el (image-type-available-p): Don't reference image-types
22715         if it isn't bound.
22717 2000-05-17  Stefan Monnier  <monnier@cs.yale.edu>
22719         * autoarg.el (autoarg-mode): Typo in the :set argument.
22721 2000-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
22723         * startup.el (command-line-1): Don't signal an error if the
22724         directory for auto-save-list files does not yet exist.
22726 2000-05-17  Kenichi Handa  <handa@etl.go.jp>
22728         * international/mule-conf.el (arabic-iso8859-6): Fix typo.
22730 2000-05-16  Stefan Monnier  <monnier@cs.yale.edu>
22732         * subr.el (remove-hook): `setq' hook-value, not `set'.
22734 2000-05-16  Sam Steingold  <sds@gnu.org>
22736         * info.el (debug-ignored-errors): More errors to ignore.
22738 2000-05-16  Dave Love  <fx@gnu.org>
22740         * cus-edit.el: Don't require cl or easymenu.
22741         (custom-variable-prompt): Test standard-value property, not
22742         user-variable-p.
22744 2000-05-16  Sam Steingold  <sds@gnu.org>
22746         * subr.el (add-hook): `setq' hook-value, not `set'.
22748 2000-05-16  Gerd Moellmann  <gerd@gnu.org>
22750         * startup.el (command-line-1): Mention the FAQ in the startup
22751         message.
22753         * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
22755         * progmodes/compile.el (compilation-parse-errors): Collect
22756         `nomessage' regexps last.
22758         * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
22760         * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
22761         to the function name.
22763 2000-05-15  Dave Love  <fx@gnu.org>
22765         * speedbar.el (speedbar-recenter): Typo.
22766         (speedbar-expand-line): Make arg optional.
22767         (speedbar-mode): Avoid a compiler warning.
22769 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
22771         * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
22772         user-specified option string is empty.
22774         * mouse.el (mouse-yank-at-click): Doc fix.
22776 2000-05-15  Eli Zaretskii  <eliz@is.elta.co.il>
22778         * term/internal.el (IT-character-translations): More updates of
22779         latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
22780         documents.
22782 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
22784         * env.el (getenv): New function, interactively callable.
22785         (setenv, getenv): Remove autoload cookies.
22787         * loadup.el: Load `env'.
22789         * progmodes/f90.el: Change author's mail address.
22791 2000-05-14  Dave Love  <fx@gnu.org>
22793         * mail/rmail.el (rmail-show-message-hook): Customize and offer
22794         goto-addr as an option.
22796         * help.el (help-xref-stack): Doc fix.
22797         (help-xref-following): New variable.
22798         (help-make-xrefs): Use it.
22799         (help-xref-go-back): Use position information from stack element.
22800         (help-follow): Make position in stack element a pair.  Use
22801         help-xref-following.
22803         * autoarg.el: New file.
22805         * faces.el: Declare more functions obsolete.
22807         * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
22808         * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
22809         * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
22810         * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
22811         Remove all the setup-...-environment functions.
22813 2000-05-13  Eric M. Ludlam  <zappo@ultranet.com>
22815         * speedbar.el: Updated the commentary section.  xemacs20p now uses
22816         >= when detecting.  Require `defimage' safely.
22817         (speedbar-easymenu-definition-base): Add toggle for images.
22818         (speedbar-easymenu-definition-special): Add flush cache & expand.
22819         (speedbar-visiting-tag-hook): Set new defaults.  Added options.
22820         (speedbar-reconfigure-keymaps-hook): New variable.
22821         (speedbar-frame-parameters): Updated documentation.
22822         (speedbar-use-imenu-flag): Updated custom tag
22823         (speedbar-dynamic-tags-function-list): New variable.
22824         (speedbar-tag-hierarchy-method): Updated doc & custom.
22825         (speedbar-indentation-width, speedbar-indentation-width) New
22826         variables.
22827         (speedbar-hide-button-brackets-flag): Customizable.
22828         (speedbar-vc-indicator): Doc update.
22829         (speedbar-ignored-path-expressions): Updated default value.
22830         (speedbar-supported-extension-expressions): Updated default value.
22831         (speedbar-syntax-table): Remove {} paren status.
22832         (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
22833         as "+".  Added overlay aliases.
22834         (speedbar-mode): Use `speedbar-mode-line-update' instead of
22835         `force-mode-line-update'.
22836         (speedbar-mode, speedbar-quick-mouse, speedbar-click)
22837         (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
22838         `mouse-set-point'
22839         (speedbar-reconfigure-keymaps): Run configure keymap hooks.
22840         (speedbar-item-info-tag-helper): Revamped to handle a wider range
22841         of arbitrary text, and new helper functions.
22842         (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
22843         filename finder.
22844         (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
22845         (speedbar-directory-buttons): Update path search/expansion.
22846         (speedbar-make-tag-line): Pay attention to
22847         `speedbar-indentation-width'.  Use more care w/ invisible
22848         properties.
22849         (speedbar-change-expand-button-char): Call
22850         `speedbar-insert-image-button-maybe'.
22851         (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
22852         (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
22853         (speedbar-trim-words-tag-hierarchy)
22854         (speedbar-simple-group-tag-hierarchy): New functions
22855         (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
22856         (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
22857         functions.
22858         (speedbar-mouse-set-point): New function
22859         (speedbar-power-click): Updated documentation.
22860         (speedbar-line-token, speedbar-goto-this-file): Handle more types
22861         of tag prefix text.
22862         (speedbar-expand-line, speedbar-contract-line): Make more robust
22863         to strange text.
22864         (speedbar-expand-line): Takes universal argument to flush the
22865         cache.
22866         (speedbar-flush-expand-line): New function.
22867         (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
22868         Use new generator insertion method.
22869         (speedbar-fetch-dynamic-tags): New function.
22870         (speedbar-fetch-dynamic-imenu): Removed code now handled in
22871         `speedbar-fetch-dynamic-imenu'.
22872         (speedbar-fetch-dynamic-etags): Fix current buffer problem.
22873         (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
22874         "Revert Buffer" menu items.
22875         (speedbar-buffer-buttons-engine): Be smarter when creating a
22876         filename tag (for expansion purposes.).
22877         (speedbar-highlight-one-tag-line,
22878         (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
22879         (speedbar-recenter): New functions.
22880         (defimage-speedbar): Image loading abstraction.
22881         (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
22882         (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
22883         (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
22884         (speedbar-tag-type, speedbar-tag-mail): New images.
22885         (speedbar-expand-image-button-alist): New variable.
22886         (speedbar-insert-image-button-maybe): Insert an image over some
22887         buttons.
22889 2000-05-13  Kenichi Handa  <handa@etl.go.jp>
22891         * international/mule-cmds.el (encode-coding-char): An ASCII
22892         character is always encodable.
22894         * international/mule-conf.el: Add more information in descriptions
22895         of character sets.
22897         * international/mule-diag.el (describe-char-after): New function.
22898         (describe-font-internal): Adjusted for the change of font-info.
22899         (describe-font): Likewise.
22900         (print-fontset): Rewritten for the new fontset implementation.
22901         (describe-fontset): Include fontset alias names in completion.
22902         (list-fontsets): Adjusted for the change of print-fontset.
22904         * simple.el (what-cursor-position): If DETAIL is non-nil, call
22905         describe-char-after instead of displaying the detail in the echo
22906         area.
22907         (syntax-code-table): Format changed.
22908         (string-to-syntax): Adjusted for the above change.
22910 2000-05-12  Stefan Monnier  <monnier@cs.yale.edu>
22912         * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
22914 2000-05-12  Dave Love  <fx@gnu.org>
22916         * calendar/todo-mode.el: Remove some compatibility stuff and CL
22917         dependence.  Use line-{beginning,end}-position, not
22918         point-at{b,e}ol.  Some doc fixes.
22919         (todo-position): New function.  Fix callers of position to use it.
22920         (todo-save-top-priorities, todo-print): Use with-temp-buffer.
22922 2000-05-12  Gerd Moellmann  <gerd@gnu.org>
22924         * time.el (display-time-mail-icon): Use `:ascent center'.
22926         * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
22927         handling FTP security extensions.
22929 2000-05-11  Dave Love  <fx@gnu.org>
22931         * calendar/todo-mode.el: New file.
22933 2000-05-11  Gerd Moellmann  <gerd@gnu.org>
22935         * comint.el (comint-read-input-ring): Move reference to
22936         comint-input-ring-size outside of the save-excursion.  It was
22937         causing the default value to be the only one ever seen.
22939         * font-lock.el: Update copyright.  Remove Simon Marshall's email
22940         address on request from him.
22942         * subr.el (substitute-key-definition): Add comment describing
22943         the meaning of PREFIX.
22945 2000-05-10  Stefan Monnier  <monnier@cs.yale.edu>
22947         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
22949         * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
22950         (add-minor-mode): Don't make the variable buffer-local and add a
22951         reference to define-minor-mode in the docstring.
22953         * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
22954         HEADER/FOOTER and fix bug with trailing empty directory.
22955         (cvs-append-to-ignore): Use vc-editable-p if available.
22956         (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
22957         (vc-do-command): Tweak advice to handle the new VC.
22959         * log-view.el (log-view-goto-rev): New function for the new VC.
22960         (log-view-minor-wrap): Use mark-active.
22962         * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
22963         (log-edit-changelog-full-paragraphs): New var.
22964         (log-edit-insert-changelog): Remove a lonely leading `* file'.
22965         (log-edit-narrow-changelog, log-edit-changelog-paragraph)
22966         (log-edit-changelog-subparagraph, log-edit-changelog-entry)
22967         (log-edit-changelog-ours-p, log-edit-changelog-entries)
22968         (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
22969         Replace the `cvs' prefix with `log-edit'.
22971         * iswitchb.el (iswitchb-completion-help): Unquote lambda.
22973         * diff-mode.el (diff-font-lock-keywords): Recognize comments.
22974         (diff-font-lock-defaults): Explicitly turn off multiline.
22975         (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
22976         (diff-ediff-patch): Fix call to ediff-patch-file.
22977         (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
22978         Handle comments.
22980         * frame.el (automatic-hscrolling): Typo.
22982         * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
22984 2000-05-09  Sam Steingold  <sds@goems.com>
22986         * apropos.el (apropos-print): use `describe-face' instead of
22987         `customize-face-other-window'.
22989 2000-05-09  Dave Love  <fx@gnu.org>
22991         Changes mostly following Richard Sharman <rsharman@wave.home.com>.
22993         * help.el (describe-variable): Have customize button pop the
22994         help-xref stack when invoked.
22995         (help-xref-symbol-regexp): Add `face'.
22996         (help-make-xrefs): Check for quoted face names and adapt regexp
22997         submatch numbers to cope.
22998         (help-xref-interned): Maybe insert face doc too.  Separate
22999         sections with a line of hyphens.
23001         * faces.el:  Some doc fixes.  Declare some functions obsolete.
23002         (describe-face): Add customize button.  Return the help
23003         text.  Fix prompt.
23005 2000-05-09  Eli Zaretskii  <eliz@is.elta.co.il>
23007         * term/internal.el (IT-character-translations): Fix last change.
23009 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
23011         * woman.el: New file
23012         (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
23014 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
23016         * term/internal.el (IT-character-translations): Update ASCII
23017         simulations for greek-iso8859-7, add latin-iso8859-14 and
23018         latin-iso8859-15.
23020         * international/mule-cmds.el (set-language-info-alist): Call
23021         define-prefix-command with 3 arguments, to make the map suitable
23022         for a menu.
23024 2000-05-07  Dave Love  <fx@gnu.org>
23026         * time.el: Small doc fixes from Pavel Jan\e,Bm\e(Bk ml.
23028 2000-05-05  Dave Love  <fx@gnu.org>
23030         * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
23031         list in doc string.  Don't quote keyword symbols.
23032         * emacs-lisp/cl.el: Likewise
23033         * emacs-lisp/cl-seq.el: Likewise
23035 2000-05-05  Gerd Moellmann  <gerd@gnu.org>
23037         * abbrev.el (abbrev-mode): Make ARG optional.
23039 2000-05-04  Gerd Moellmann  <gerd@gnu.org>
23041         * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
23043         * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
23045         * subr.el (substitute-key-definition): Clarify documentation.
23047 2000-05-04  Milan Zamazal  <pdm@freesoft.cz>
23049         * glasses.el (glasses-convert-to-unreadable): Use
23050         `glasses-separator' instead of the hard-wired "_".
23051         (glasses-mode): Call `glasses-make-unreadable' only in a single
23052         place.
23054 2000-05-04  Eli Zaretskii  <eliz@is.elta.co.il>
23056         * term/internal.el (cjk-codepages-alist): Add associations for
23057         Chinese and Korean codepages.  Remove FIXME comment.
23059 2000-05-03  Dave Love  <fx@gnu.org>
23061         * time.el (display-time-mail-face, display-time-use-mail-icon):
23062         New option.
23063         (display-time-mail-icon): New variable.
23064         (display-time-string-forms): Use the above.  Fix the local-map.
23066 2000-05-03  Gerd Moellmann  <gerd@gnu.org>
23068         * replace.el (query-replace-map): Add binding for `E'.
23069         (query-replace-help): Extend help text.
23070         (perform-replace): Allow editing the replacement string.
23072         * make-mode.el (makefile-mode-abbrev-table): New variable.
23073         (makefile-mode): Set local abbrev table to
23074         makefile-mode-abbrev-table.
23075         (makefile-font-lock-keywords): Fontify includes and conditionals.
23077         * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
23078         set TOGGLE's value.
23080         * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
23081         mail-interactive-insert-alias.
23082         (mail-abbrev-complete-alias): New command.
23083         (mail-mode-map): Bind it to `M-TAB'.
23085 2000-05-03  Kenichi Handa  <handa@etl.go.jp>
23087         * language/lao-util.el (lao-compose-region): New function.
23089 2000-05-02  Gerd Moellmann  <gerd@gnu.org>
23091         * files.el (recover-session): Make directories as necessary
23092         if they don't exist yet.
23094         * calendar/cal-french.el
23095         (french-calendar-multibyte-special-days-array)
23096         (french-calendar-special-days-array): Change French text.
23097         (calendar-french-date-string): Change output.
23098         (calendar-goto-french-date): Likewise.
23100 2000-05-02  Per Abrahamsen  <abraham@dina.kvl.dk>
23102         * wid-edit.el (widget-default-active): Obey `:always-active'.
23103         (widget-documentation-string-value-create): Set `:always-active'.
23105 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
23107         * startup.el (auto-save-list-file-prefix): For ms-dos, set the
23108         default prefix to `~/_emacs.d/auto-save.list/_s'.
23109         (normal-top-level): Create the directory for auto-save files, if
23110         it doesn't already exist (in the ms-dos case only).
23112 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
23114         * international/mule-cmds.el (set-language-environment): Don't
23115         concat an integer (dos-codepage), use format instead.
23117 2000-05-02  Dave Love  <fx@gnu.org>
23119         * help.el (help-xref-on-pp): Check for constant symbols.
23121 2000-04-29  Gerd Moellmann  <gerd@gnu.org>
23123         * startup.el (normal-top-level): Put a condition-case around
23124         the code loading subdirs.el.
23126 2000-04-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
23128         * ps-print.el: Upside-down and face background color printing,
23129         line number step, doc fix.
23130         (ps-print-version): New version number (5.2).
23131         (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
23132         (ps-face-attribute-list, ps-plot-with-face): Code fix.
23133         (ps-spool-config): Var fix.
23134         (ps-printer-name-option): Const fix.
23135         (ps-print-upside-down, ps-use-face-background)
23136         (ps-line-number-step): New vars.
23137         (ps-window-system, ps-lp-system): New consts.
23138         (ps-face-background): New fun.
23140 2000-04-28  Richard Stallman  <rms@gnu.org>
23142         * files.el (make-auto-save-file-name):
23143         Apply auto-save-file-name-transforms to visited file name
23144         before generating auto save file name.
23145         (auto-save-file-name-transforms): New variable.
23147         * files.el (backup-enable-predicate):
23148         Correctly test for a file under a temporary directory.
23150 2000-04-28  Gerd Moellmann  <gerd@gnu.org>
23152         * subr.el (add-minor-mode): Rewritten.
23154 2000-04-28  Kenichi Handa  <handa@etl.go.jp>
23156         * mail/sendmail.el (sendmail-send-it): Set
23157         buffer-file-coding-system to the selected coding system for MIME
23158         header.
23160 2000-04-27  Gerd Moellmann  <gerd@gnu.org>
23162         * dired.el (dired-move-to-filename-regexp): Allow format where
23163         YYYY is followed by two spaces.
23165         * progmodes/etags.el (etags-tags-completion-table): Add a `:'
23166         in the second character class of the regexp.
23168         * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
23169         mh-etc, too.
23171         * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
23172         nil.
23174         * subr.el (add-minor-mode): Use `set' instead of `setq'.
23176         * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
23177         argument.
23179 2000-04-27  Sen Nagata <sen@eccosys.com>
23181         * emacs-lisp/crm.el (crm-completion-table): New variable.
23182         (crm-collection-fn, crm-test-completion)
23183         (completing-read-multiple): Use it.
23185 2000-04-27  Dave Love  <fx@gnu.org>
23187         * help.el (locate-library): Use mapc.
23188         (help-manyarg-func-alist): Add call-process-region.
23190 2000-04-26  Gerd Moellmann  <gerd@gnu.org>
23192         * subr.el (add-minor-mode): Make argument MAP optional.
23194         * desktop.el (desktop-save): Save list of minor modes.
23195         (desktop-create-buffer): Restore minor modes.
23196         (desktop-minor-mode-table): New user-option.
23198         * subr.el (add-minor-mode): New function.
23200         * image.el (find-image): New function.
23201         (defimage): Rewritten to find image at load time.
23203         * startup.el (normal-top-level-add-to-load-path): Handle
23204         case that the default directory is not in load-path.
23206         * help.el: Old patch from Stefan Monnier.
23207         (help-xref-on-pp): New function.
23208         (describe-variable): Use it to display xrefs in a symbol's value.
23210 2000-04-26  Stefan Monnier  <monnier@cs.yale.edu>
23212         * cus-edit.el (custom-face): Fix parenthesis.
23214 2000-04-26  Kenichi Handa  <handa@etl.go.jp>
23216         * mail/rmail.el (rmail-expunge): When there are no deleted
23217         messages, do nothing.
23219 2000-04-26  Dave Love  <fx@gnu.org>
23221         * international/mule-cmds.el (locale-translation-file-name):
23222         Defvar to nil.
23223         (set-locale-environment): Set it here (at runtime).
23225 2000-04-25  Gerd Moellmann  <gerd@gnu.org>
23227         * replace.el (perform-replace): Add parameters START and END.  Use
23228         them instead of the check for a region in Transient Mark mode.
23229         (query-replace-read-args): Return two more list elements for the
23230         start and end of the region in Transient Mark mode.
23231         (query-replace, query-replace-regexp, query-replace-regexp-eval)
23232         (map-query-replace-regexp, replace-string, replace-regexp): Add
23233         optional last arguments START and END and pass them to
23234         perform-replace.
23236         * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
23237         form with additional arguments for perform-replace.
23239         * progmodes/etags.el (tags-query-replace): Add parameters START
23240         and END.  Construct a form with additional arguments for
23241         perform-replace.
23243         * simple.el (shell-command): Set default directory for "*Shell
23244         Command Output" buffer.
23246         * language/european.el (iso-latin-4): Fix typo.
23248         * emacs-lisp/crm.el: New file.
23250 2000-04-24  Dave Love  <fx@gnu.org>
23252         * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
23253         (Custom-reset-saved, Custom-reset-standard)
23254         (custom-group-value-create, custom-group-set, custom-group-save)
23255         (custom-group-reset-current, custom-group-reset-saved)
23256         (custom-group-reset-standard): Use mapc.
23257         (custom-buffer-create-internal): Disable undo when creating items.
23258         Use mapc.
23259         (custom-face): Avoid redundant lambda.
23261 2000-04-24  Gerd Moellmann  <gerd@gnu.org>
23263         * startup.el (auto-save-list-file-prefix): Set default to
23264         `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
23266 2000-04-24  Sam Steingold  <sds@gnu.org>
23268         * time-stamp.el (time-stamp-string-preprocess): Always convert
23269         `field-result' to a string.
23271 2000-04-24  Gerd Moellmann  <gerd@gnu.org>
23273         * frame.el (scrolling): New group.
23274         (automatic-hscrolling): New user-option.
23276         * startup.el (command-line-x-option-alist): Add `-lsp' and
23277         `--line-spacing'.
23279 2000-04-19  Dave Love  <fx@gnu.org>
23281         * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
23282         (cl-mapc): Rename from mapc.  Fix the funcall.
23284 2000-04-19  Gerd Moellmann  <gerd@gnu.org>
23286         * simple.el (clone-indirect-buffer-other-window): New command.
23287         (clone-indirect-buffer): Add optional arg NORECROD.
23288         (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
23290         * help.el (resize-temp-buffer-window): Use count-screen-lines.
23292         * window.el (count-screen-lines): New function.
23293         (shrink-window-if-larger-than-buffer): Use count-screen-lines
23294         instead of window-buffer-height.
23296         * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
23297         non-existing variable comint-input-sentinel.
23298         (inferior-lisp-args-to-list): Removed.
23299         (inferior-lisp): Use split-string instead of
23300         inferior-lisp-args-to-list.
23302         * hexl.el (hexl-insert-hex-string): New command.
23304         * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
23305         instead of concat.
23307 2000-04-18  Gerd Moellmann  <gerd@gnu.org>
23309         * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
23310         at the start of an existing but empty folder.
23312 2000-04-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
23314         * ps-mule.el: Customization fix, doc fix.
23315         (ps-multibyte-buffer): Customization fix.
23317 2000-04-17  Richard M. Stallman  <rms@gnu.org>
23319         * subr.el (read-passwd): Use read-char-exclusive.
23321 2000-04-17  Gerd Moellmann  <gerd@gnu.org>
23323         * textmodes/texinfo.el (texinfo-insert-@email)
23324         (texinfo-insert-@emph, texinfo-insert-@quotation)
23325         (texinfo-insert-@strong, texinfo-insert-@url): New functions.
23326         (texinfo-mode-map): Add key bindings for them.
23328         * files.el (basic-save-buffer-2): Use a template with `$'
23329         instead of `#' for VMS.
23331         * simple.el (clone-indirect-buffer): New function.
23333 2000-04-16  Stephen Eglen  <stephen@gnu.org>
23335         * iswitchb.el (iswitchb-case): New function.  If the user input
23336         contains any upper-case characters, the search is made
23337         case-sensitive.
23339 2000-04-17  Stefan Monnier  <monnier@cs.yale.edu>
23341         * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
23342         comment-end.
23343         (texinfo-font-lock-syntactic-keywords): New var.
23344         (texinfo-font-lock-keywords): Remove comment regexp.
23345         (texinfo-insert-block): New function.
23346         (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
23347         (texinfo-mode): Use define-derived-mode.  Tweak comment-start-skip
23348         and font-lock-defaults.  Use regexp-opt for outline-regexp.
23349         (texinfo-environments): New var.
23350         (texinfo-environment-regexp): Use regexp-opt and
23351         texinfo-environments.
23353         * textmodes/ispell.el (ispell-menu-map-needed): Check that
23354         ispell-process is bound since this might be eval'd before ispell
23355         is loaded.
23356         (ispell-message): Use a tiny bit less magic and a bit more hard
23357         data to figure out what kind of sc-cite-regexp to use.
23359         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
23361         * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
23362         (insert-cyclic-diary-entry): Unquote the lambda.
23364         * gud.el (gud-jdb-build-source-files-list): Fix typo.
23366         * files.el (backup-enable-predicate): Unquote the lambda.
23368         * cus-edit.el (custom-face, face): Unquote the lambda.
23370 2000-04-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
23372         * ps-print.el: Check for line-beginning-position definition.
23374         * ps-print.el: Fix counting lines in a region.
23375         (ps-print-version): New version number (5.1.5).
23376         (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
23377         (ps-printing-region): Fun code fix.
23379 2000-04-15  Gerd Moellmann  <gerd@gnu.org>
23381         * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
23382         to file-directory-p.
23384 2000-04-14  Gerd Moellmann  <gerd@gnu.org>
23386         * gud.el (gud-jdb-build-source-files-list): Check that directory
23387         exists before calling directory-files.
23389 2000-04-13  Dave Love  <fx@gnu.org>
23391         * emacs-lisp/trace.el: Change maintainer.  Use new backquote
23392         syntax.
23394         * emacs-lisp/cl-specs.el: Remove when, unless.
23396         * emacs-lisp/cl-extra.el: Don't quote keywords.
23397         (cl-old-mapc): New variable.
23398         (mapc): Use it.
23399         (cl-map-intervals): Use with-current-buffer.  Don't check for
23400         next-property-change.
23401         (cl-map-overlays): Use with-current-buffer.
23402         (cl-expt): Remove.
23403         (copy-tree, remprop): Define unconditionally.
23405         * emacs-lisp/cl-compat.el (keywordp): Remove.
23407         * emacs-lisp/edebug.el (edebug-keywordp): Remove.  Change callers
23408         to use keywordp.
23409         (edebug-spec): Enable keywordp.
23411         * cus-edit.el (custom-sort-items): Avoid symbol-name with new
23412         string-lessp.
23414         * cus-start.el: Use keywordp.
23416 2000-04-13  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
23418         * diary-lib.el (include-other-diary-files): Fix the fix of
23419         2000-02-18 by doing a save-excursion.
23421 2000-04-13  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
23423         * ps-print.el: Customization fix, doc fix.
23424         (ps-print-version): New version number (5.1.4).
23425         (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
23426         (ps-print-preprint): Adjust code.
23427         (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
23428         (ps-print-prologue-header, ps-print-control-characters)
23429         (ps-spool-config): Customization fix.
23431 2000-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
23433         * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
23434         converted to the new menu-item format, names silightly changed,
23435         help strings added.
23437         Support for spelling without async subprocesses:
23439         * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
23440         (ispell-session-buffer): New variables.
23441         (ispell-start-process, ispell-process-status,
23442         ispell-accept-output, ispell-send-string): New functions, for
23443         Ispell invocation when async subprocesses aren't supported.
23444         (ispell-word, ispell-pdict-save, ispell-command-loop,
23445         ispell-process-line, ispell-buffer-local-parsing): Replace calls
23446         to process-send-string with calls to ispell-send-string, and
23447         accept-process-output with ispell-accept-output.
23448         (ispell-init-process): Call ispell-process-status instead of
23449         process-status with.
23450         (ispell-init-process): Call ispell-start-process.  Call
23451         ispell-accept-output and ispell-send-string.  Don't call
23452         process-kill-without-query and kill-process if they are unbound.
23453         (ispell-async-processp): New function.
23455 2000-04-12  Dave Love  <fx@gnu.org>
23457         * info.el: Add debug-ignored-errors.
23458         (Info-mode-menu): Add some items.
23459         (Info-directory): Add autoload cookie.
23461         * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
23462         Modify `truncate-lines'.  Make `describe-language-environment'
23463         always visible and add help.  Modify `describe-key' help.  Invoke
23464         Info-directory from `info'.  New entry `emacs-manual'.
23466 2000-04-10  Gerd Moellmann  <gerd@gnu.org>
23468         * progmodes/ebrowse.el (ebrowse-tree-mode):
23469         Use propertized-buffer-identification.
23470         (ebrowse-update-member-buffer-mode-line): Likewise.
23471         (ebrowse--mode-strings): Removed.
23472         (ebrowse--mode-line-props): Removed.
23474         * files.el (auto-mode-alist): Add `EBROWSE'.
23476         * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
23477         space before testing for end of buffer.
23478         (ebrowse-load): Removed.
23479         (ebrowse-revert-tree-buffer-from-file): Rewritten.
23480         (ebrowse-create-tree-buffer): Rewritten.
23481         (ebrowse-tree-mode): Read tree from buffer.
23483         * progmodes/ebrowse-ffh.el: Removed.
23485 2000-04-10  Kenichi Handa  <handa@etl.go.jp>
23487         * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
23489 2000-04-10  Gerd Moellmann  <gerd@gnu.org>
23491         * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
23492         at the wrong place.
23494 2000-04-09  Dave Love  <fx@gnu.org>
23496         * files.el (backup-enable-predicate):
23497         Use temporary-file-directory, small-temporary-file-directory.
23498         (make-backup-file-name-function, backup-directory-alist): New vars.
23499         (make-backup-file-name-1): New function.
23500         (make-backup-file-name): Use it.
23501         (find-backup-file-name): Likewise.  Use format for clarity, not concat.
23502         (file-newest-backup): Use make-backup-file-name.
23504 2000-04-09  Gerd Moellmann  <gerd@gnu.org>
23506         * progmodes/ebrowse-ffh.el: New file.
23508         * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
23509         Moved to ebrowse-ffh.el.
23510         (ebrowse-load): Add autoload.
23512         * finder.el (finder-commentary): Add autoload cookie.
23514         * mail/rfc2368.el: Correct author's email address.
23516         * progmodes/ebrowse.el: New file.
23518         * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
23519         item help string.
23520         (easy-menu-do-add-item): Ditto.
23521         (easy-menu-define): Extend doc string.
23523         * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
23524         (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
23525         (jit-lock-function, jit-lock-stealth-fontify): Don't use
23526         with-buffer-unmodified.
23528 2000-04-08  Dave Love  <fx@gnu.org>
23530         * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
23531         unless, when.
23533 2000-04-07  Mikio Nakajima  <minakaji@osaka.email.ne.jp>
23535         * viper-util.el (viper-put-on-search-overlay): New subroutine.
23536         (viper-flash-search-pattern): No operation when using Emacs
23537         doesn't support face.
23538         Use `viper-put-on-search-overlay'.
23540 2000-04-04  Gerd Moellmann  <gerd@gnu.org>
23542         * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
23543         like C-r.
23545         * progmodes/make-mode.el: Some doc fixes.
23546         (makefile-mode-abbrev-table): New variable.
23547         (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
23548         (makefile-font-lock-keywords): Fontify includes and conditionals.
23549         (toplevel): Require `dabbrev' and `add-log' when compiling.
23551         * replace.el (perform-replace): Don't move forward one char
23552         when MATCH-AGAIN is nil, and REGEXP-FLAG is t.  We don't want
23553         to do that because it leaves point 1 position after the last
23554         replacement, after everything has been replaced.
23556         * jit-lock.el (with-buffer-unmodified): New macro.
23557         (with-buffer-prepared-for-font-lock): Don't preserve buffer's
23558         modified state.
23559         (jit-lock-function-1): Extracted from jit-lock-function; not
23560         preserving buffer's modified state.
23561         (jit-lock-function, jit-lock-stealth-fontify):
23562         Call jit-lock-function-1.
23564         * mail/rfc2368.el: Remove supernumerary copyright line.
23566 2000-04-04  Milan Zamazal  <pdm@freesoft.cz>
23568         * glasses.el: Provide facilities for inserting space before left
23569         parentheses and uncapitalization of identifiers.
23570         (glasses-mode): Try to remove old overlays in all cases.
23572 2000-04-03  Gerd Moellmann  <gerd@gnu.org>
23574         * progmodes/compile.el (compile-internal): Display the compilation
23575         buffer in a different frame, if it's already displayed there.
23577         * mail/rfc2368.el: New file.
23579         * simple.el (sendmail-user-agent-compose): Recognize a `body'
23580         header and insert its value as mail body.
23582         * subr.el (member-ignore-case): New function.
23584         * dabbrev.el (dabbrev-ignored-regexps): New user-option.
23585         (dabbrev--find-expansion): Ignore buffers matching a regexp
23586         from dabbrev-ignored-regexps.
23588         * jka-compr.el (jka-compr-compression-info-list): Add `.z'
23589         to extensions handled by gzip.
23591 2000-04-03  Richard M. Stallman  <rms@gnu.org>
23593         * files.el (insert-directory): List the total free space
23594         along with the used space.
23596         * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
23597         line is followed by one that matches CITATION-REGEXP, end the
23598         paragraph.
23600 2000-04-03  Markus Rost  <rost@delysid.gnu.org>
23602         * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
23603         (rmail-make-basic-summary-line): Use that option.
23605 2000-04-03  Kenichi Handa  <handa@etl.go.jp>
23607         * international/mule-cmds.el (encoded-string-description):
23608         Rewritten.   Try pretty description for ISO 2022 escape sequences
23609         only if CODING-SYSTEM is based on ISO 2022.  Use uppercase letters
23610         for hexadecimal format.
23612 2000-04-01  Dave Love  <fx@gnu.org>
23614         * cpp.el: Change customization group to `c' from `C'.
23616         * vcursor.el (vcursor-move): Use display-color-p.
23618         * international/mule-util.el: Provide mule-utils.
23619         (string-to-sequence): Simplify and speed up.
23621         * international/mule.el (make-coding-system): Purecopy doc-string.
23623         * international/mule-cmds.el: Various menu changes.
23624         (describe-specified-language-support): Handle `Default'.
23625         (set-language-info): Purecopy `info'.
23627 2000-03-31  Andrew Innes  <andrewi@gnu.org>
23629         * vc.el (vc-backend-diff): Return the correct status if we had to
23630         retry the rcsdiff command without the --brief option.
23632 2000-03-31  Dave Love  <fx@gnu.org>
23634         * help.el (help-manyarg-func-alist): Correct several omissions.
23636         * add-log.el: Don't require cl, fortran.
23637         (add-log-current-defun-function): Doc fix.
23638         (change-log-version-number-regexp-list): Remove SCCS part.  Doc fix.
23639         (change-log-version-rcs): Function deleted.
23640         (change-log-version-number-search): Doc fix.
23641         Use vc-workfile-version. Avoid CL dolist.
23642         (add-change-log-entry): Just call add-log-current-defun to get
23643         defun.  Simplify somewhat.
23644         (change-log-get-method-definition-1): Likewise.
23645         (add-log-current-defun): Return nil if calling
23646         add-log-current-defun-function does so.  Move Fortran stuff to
23647         fortran.el.  Return string without properties.
23649         * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
23650         and :alpha: char classes.
23652         * mail/supercite.el: Defvar curline when compiling.
23653         (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
23654         (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
23655         rather than a-zA-Z0-9 to allow non-ASCII characters.
23657 2000-03-31  Gerd Moellmann  <gerd@gnu.org>
23659         * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
23661         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23662         Re-enable new code.
23664         * lpr.el (print-region-1): Use -d to specify printer name for
23665         systems `usg-unix-v*, `dgux', `hpux', `irix'.
23667 2000-03-31  Dave Love  <fx@gnu.org>
23669         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
23670         Look for function definition in symbol's function value slot first
23671         instead of first consulting byte-compile-function-environment.
23673 2000-03-31  Kenichi Handa  <handa@etl.go.jp>
23675         * language/european.el ("Polish"): New language environment.
23676         (setup-polish-environment): New function.
23678 2000-03-30  Gerd Moellmann  <gerd@gnu.org>
23680         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23681         Disable new code.
23683         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
23684         trying to `load' the symbol of an autoload instead of the file
23685         recorded in the autoload.  Fix error messages.
23687 2000-03-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
23689         * ps-print.el: PostScript programming fix for ghostview, doc fix.
23690         (ps-print-version): New version number (5.1.3).
23691         (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
23692         (ps-insert-file, ps-output-boolean, ps-plot-with-face)
23693         (ps-generate-postscript-with-faces): Code fix.
23694         (ps-color-values): XEmacs compatibility.
23695         (ps-print-background-image, ps-print-background-text, ps-printer-name)
23696         (ps-default-fg, ps-default-bg): Adjust customization.
23697         (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
23698         (ps-color-scale): Renaming old ps-color-value fun.
23699         (ps-print-headers): Replace ps-print-header group to avoid conflict
23700         with ps-print-header variable.
23701         (ps-print-miscellany): New group.
23702         (ps-format-color, ps-rgb-color): New funs.
23703         (ps-default-foreground): New var.
23704         (ps-printer-name-option): New const.
23706 2000-03-30  Peter Breton  <pbreton@ne.mediaone.net>
23708         * net/net-utils.el:
23709         (network-connection-host, network-connection-service): New variables
23710         (network-connection-mode): New mode, derived from comint-mode
23711         (network-connection-mode-setup): New function, saves host and
23712         service information in local variables.
23714         * lisp/locate.el:
23715         (locate-word-at-point): Added this function
23716         (locate): Default to using locate-word-at-point as input
23717         Run dired-mode-hook
23719 2000-03-29  Dave Love  <fx@gnu.org>
23721         * calendar/appt.el: Doc fixes.
23722         (appt-check): Convert min-to-app to a string before passing to
23723         appt-disp-window-function or concat.
23724         (appt-delete-window): Remove test for frame-root-window.
23725         (appt-select-lowest-window, appt-convert-time): Simplify.
23727         * emacs-lisp/bytecomp.el: Doc fixes.
23728         (byte-compile-file-form-autoload):
23729         Update byte-compile-function-environment.
23731 2000-03-29  Andreas Schwab  <schwab@suse.de>
23733         * emacs-lisp/autoload.el: Also print defsubst doc string specially.
23735         * dired.el (dired-insert-directory): If dired-free-space-program
23736         failed just delete its output.
23738 2000-03-29  Dave Love  <fx@gnu.org>
23740         * international/iso-cvt.el: Move provide to end.  Doc fixes.
23741         (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
23742         (iso-iso2sgml, iso-sgml2iso): New functions.
23743         (iso-cvt-define-menu): Fix some entries and use backquote for
23744         clarity.
23746         * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
23748 2000-03-28  Gerd Moellmann  <gerd@gnu.org>
23750         * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
23751         ISO-DATE.  If non-nil, return date in ISO 8601 format.
23753 2000-03-26  Stefan Monnier  <monnier@cs.yale.edu>
23755         * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
23756         if it ever becomes used.
23757         (log-edit-mode-hook): Default to vc-log-mode-hook.
23758         (log-edit-mode): Fix the docstring.
23760         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
23761         the code.
23763 2000-03-26  Dave Love  <fx@gnu.org>
23765         * net/browse-url.el (browse-url): Re-fix case of
23766         browse-url-browser-function being an alist.
23767         (browse-url): Add :link to defgroup.
23769         * files.el: Doc fixes.
23770         (file-truename): Include `[' in wildcard characters.
23771         (automount-dir-prefix): Customize.
23772         (find-file-wildcards): Add :version.
23773         (find-file-noselect): Simplify a mapcar call.
23775         * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
23776         compatible with inf-lisp version.
23777         (eval-defun-1): Fix custom-declare-variable case.
23779 2000-03-25  Stefan Monnier  <monnier@cs.yale.edu>
23781         * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
23783 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
23785         * Makefile (COMPILE_FIRST): New macro.
23786         (compile-files): Compile files from COMPILE_FIRST first.
23788         * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
23790         * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
23791         matching open parenthesis in column 0 to defun-prompt-regexp
23792         only if open-paren-in-column-0-is-defun-start is set.
23794         * sun-curs.el: Require CL at compile-time only.
23796         * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
23797         instead of copy-list which is a function from CL.
23798         (msb--choose-menu, msb--mode-menu-cond)
23799         (msb--create-buffer-menu-2): Use dolist instead of mapc.
23800         (msb--init-file-alist): Use mapcar instead of mapcan.
23801         (msb--aggregate-alist): Use mapcar instead of mapcan.
23802         Fix `(' in column 0 in doc string.
23803         (msb--add-separators): Use mapcar instead of mapcan.
23805         * cus-dep.el: Require CL at compile-time only.
23807 2000-03-24  Stefan Monnier  <monnier@cs.yale.edu>
23809         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
23810         (byte-compile-warnings): New warning `noruntime'.
23811         (byte-compile-constants, byte-compile-variables): Fix docstring.
23812         (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
23813         execute `eval-whenc-compile's body.
23814         (byte-compile-unresolved-functions): Fix docstring.
23815         (byte-compile-eval): New function.
23816         (byte-compile-callargs-warn): Check if the function will be available
23817         at runtime (via property `byte-compile-noruntime').
23818         (byte-compile-print-syms): New function.
23819         (byte-compile-warn-about-unresolved-functions): Also warn about
23820         `noruntime' functions (and use `byte-compile-print-syms').
23821         (byte-compile-file): Capitalize the message.
23823 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
23825         * mail/rmail.el (rmail-confirm-expunge): New user-option.
23826         (rmail-expunge): Ask for confirmation depending on the setting
23827         of rmail-confirm-expunge.
23829 2000-03-23  Gerd Moellmann  <gerd@gnu.org>
23831         * Makefile (bootstrap-clean): If $(emacs) exists, build
23832         loaddefs.el first.  A loaddefs.el that's not up-to-date might
23833         cause a bootstrap failure because things don't autoload as expected.
23835 2000-03-23  Dave Love  <fx@gnu.org>
23837         * net/browse-url.el: Restore previous use of
23838         browse-url-maybe-new-window.
23840 2000-03-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
23842         * ps-print.el: Skip banner page fix.
23843         (ps-print-version): New version number (5.1.2).
23844         (ps-begin-file, ps-end-file, ps-generate): Code fix.
23846 2000-03-23  Dave Pearson  <davep@davep.org>
23848         * net/quickurl.el Changed the type of parameter passed to the
23849         function defined by `quickurl-format-function'. Before only the
23850         text of the URL was passed. Now the whole URL structure is passed
23851         and the function is responsible for extracting the parts it requires.
23852         Changed the default of `quickurl-format-function' accordingly.
23853         (quickurl-insert): Changed the `funcall' of
23854         `quickurl-format-function' to match the above change.
23855         (quickurl-list-insert): Changed the `url' case so that it makes
23856         use of `quickurl-format-function', previous to this the format was
23857         hard wired.
23859 2000-03-22  Gerd Moellmann  <gerd@gnu.org>
23861         * startup.el: Change some spellings for the X Window System.
23863 2000-03-22  Stefan Monnier  <monnier@cs.yale.edu>
23865         * progmodes/make-mode.el (makefile-warn-suspicious-lines):
23866         Clean up the code and the regexp and make sure the cursor is
23867         temporarily moved to the suspicious line while querying the user.
23869 2000-03-22  Jason Rumney  <jasonr@gnu.org>
23871         * w32-fns.el (w32-charset-info-alist): Initialize.
23873 2000-03-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
23875         * ps-print.el: N-up last page fix.
23876         (ps-print-version): New version number (5.1.1).
23877         (ps-end-file, ps-end-job, ps-generate): Code fix.
23879 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
23881         * files.el (find-file-run-dired): Update docstring.
23882         (find-directory-functions): New hook.
23883         (find-file-noselect): Run find-directory-functions rather than
23884         calling dired directly.
23886         * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
23888         * pcvs.el: Add a minimal leading commentary.
23889         (cvs-make-cvs-buffer): Change the header part by removing the startup
23890         message and adding a `Module' entry.  Also replace the FOOTER and
23891         HEADER special fileinfos with the new support in ewoc for updating
23892         its own footer and header.
23893         (cvs-update-header): Update to use the header/footer of the ewoc.
23894         (cvs-mode): Use define-derived-mode and set truncate-lines to t.
23895         (cvs-is-within-p): New function.
23896         (cvs-mode-run): Take advantage of `save-some-buffers's new ability
23897         to only examine some subset of the buffers.
23899         * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
23900         `format' instead of our own ad-hoc functions.
23901         Remove HEADER and FOOTER cases, now handled in the EWOC.
23902         (cvs-fileinfo<): Remove HEADER and FOOTER cases.
23904         * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
23905         output to avoid scaring the user.
23906         (cvs-parse-table): Catch message for non-up-to-date commits.
23908         * pcvs-defs.el (cvs-startup-message): Remove.
23909         (cvs-global-menu): New autoloaded menu.
23911         * pcvs-util.el (cvs-string-fill): Remove.
23913         * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
23914         (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
23915         PP part of it and also make it work for footers and headers.
23916         (ewoc-create): Drop POS and BUFFER arguments.
23917         Use the DLL's dummy node to store the end-of-footer position.
23918         (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
23919         (ewoc-refresh): Remove unused `header' variable.
23920         (ewoc-(get|set)-hf): New functions.
23922         * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
23923         log-view-*-(message|file) and use easy-mmode-define-navigation.
23924         (log-view-message-re): Match SCCS format as well.
23925         And match the revision line rather than the dashed separator line.
23926         (log-view-mode): Use the new define-derived-mode.
23927         (log-view-current-tag): Fill in with an actual implementation.
23929         * cvs-status.el (cvs-status-(prev|next)): Rename from
23930         cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
23931         (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
23932         to let the output "breathe" a little more (more readable).
23933         (cvs-status-mode): Use the new define-derived-mode.
23935         * smerge-mode.el (smerge-auto-leave): New function and variable.
23936         (smerge-basic-map): Rename from smerge-basic-keymap.
23937         Change the bindings for smerge-diff-*.
23938         (smerge-*-map): Use easy-mmode-defmap.
23939         (smerge-(next|prev)): Use easy-mmode-define-navigation.
23940         (smerge-keep-*): Use smerge-auto-leave.
23942 2000-03-21  Jason Rumney  <jasonr@gnu.org>
23944         * cus-edit.el (custom-button-face): Use 3D look for w32.
23945         (custom-button-pressed-face): Likewise.
23947 2000-03-21  Gerd Moellmann  <gerd@gnu.org>
23949         * progmodes/etags.el (tags-case-fold-search): New user-option.
23950         (tags-loop-eval): New function.  Bind case-fold-search around eval
23951         depending on the value of tags-case-fold-search.
23952         (tags-loop-continue): Use tags-loop-eval.
23953         (find-tag-in-order): Bind case-fold-search depending on the value
23954         of tags-case-fold-search.
23956 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
23958         * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
23959         (diff-end-of-hunk): Return the end position for use in
23960         `easy-mmode-define-navigation'.
23961         (diff-recenter): Remove.
23962         (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
23963         of `easy-mmode-define-navigation'.
23964         (diff-kill-*): Rename `diff-*-kill' (for consistency with the
23965         previous renaming) and fix to use new names.
23966         (diff-merge-strings): Use \n as separator: simpler, faster.
23967         (diff-mode): Use `define-derived-mode'.
23969         * derived.el (define-derived-mode): Don't autoload anymore.
23970         Prefer the macro-only version provided by easy-mmode.el.
23972         * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
23973         `easy-mmode-define-derived-mode'.  Use `combine-run-hooks'.
23974         (easy-mmode-define-navigation): New macro.
23976         * subr.el (combine-run-hooks): New function.
23978 2000-03-21  Kenichi HANDA  <handa@etl.go.jp>
23980         * term/x-win.el: Fontsets related initialization is simplified.
23982         * international/mule-diag.el (describe-font): Don't refer to
23983         global-fontset-alist, instead call font-list.
23984         (describe-fontset, list-fontsets, mule-diag): Likewise.
23985         (print-fontset): Adjusted for the change of fontset implementation.
23987         * international/fontset.el (x-charset-registries): Variable removed,
23988         instead the corresponding data is stored in the default fontset.
23989         (register-alternate-fontnames): Function removed.
23990         (resolved-ascii-font): Variable removed.
23991         (x-compose-font-name): Ignore the second argument REDOCE.
23992         (x-complement-fontset-spec): Complement only an ASCII font and
23993         element for those charsets than can use that ASCII font.
23994         (generate-fontset-menu): Don't refer to global-fontset-alist,
23995         instead call fontset-list.
23996         (uninstantiated-fontset-alist): Variable removed.
23997         (x-style-funcs-alist): Likewise.
23998         (fontset-default-styles): Likewise.
23999         (x-modify-font-name): Function removed.
24000         (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
24001         (create-fontset-from-ascii-font): Docsting adjusted for the above
24002         change.
24003         (instantiate-fontset, resolve-fontset-name): Functions removed.
24004         (fontset-list): Now implemented by C code.
24006         * faces.el (read-face-font): Fix TABLE arg to completing-read.
24007         (describe-face): Include `font' attribute in the description.
24009 2000-03-21  Kenichi Handa  <handa@etl.go.jp>
24011         * international/quail.el (quail-set-keyboard-layout): Typo fixed.
24013 2000-03-20  Gerd Moellmann  <gerd@gnu.org>
24015         * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
24016         ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
24017         zone-mode.el, snmp-mode.el: Moved to net subdirectory.
24019         * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
24020         about behavior of set-buffer-modified-p wrt redisplay.
24022 2000-03-19  Richard M. Stallman  <rms@gnu.org>
24024         * view.el (view-mode-disable): Kill local binding of view-read-only.
24026 2000-03-18  Gerd Moellmann  <gerd@gnu.org>
24028         * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
24029         is a string, convert it to a syntax cell using string-to-syntax.
24031         * simple.el (syntax-code-table, syntax-flag-table): New variables.
24032         (string-to-syntax): New function.
24034         * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
24035         (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
24036         try to use passive ftp mode.
24038 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
24040         * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
24042         * simple.el (append-to-buffer): Update point of windows after
24043         insertion.
24045         * abbrev.el (inverse-add-abbrev): Identify word by first moving
24046         forward then moving backward.  Reindent.
24048         * frame.el (other-frame): Call x-focus-frame only if
24049         focus-follows-mouse is off.
24051 2000-03-17  Dave Love  <fx@gnu.org>
24053         * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
24055 2000-03-17  Stefan Monnier  <monnier@cs.yale.edu>
24057         * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
24058         regexp for labels cannot span several lines.
24060         * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
24061         `(setq :<key> ':<key>)' to the macro expansion.
24063 2000-03-16  Dave Love  <fx@gnu.org>
24065         * progmodes/f90.el (f90): Put custom group under `languages', not
24066         `fortran'.
24067         (f90-mode-hook): Customize.
24068         (f90-mode): Set add-log-current-defun-function.
24069         (f90-current-defun): New function.
24071 2000-03-16  Gerd Moellmann  <gerd@gnu.org>
24073         * cus-edit.el (custom-variable-tag-face): Handle case that
24074         default face's height is not a number.
24075         (custom-face-tag-face, custom-group-tag-face-1)
24076         (custom-group-tag-face): Ditto.
24077         (custom-group-tag-face-1): Add :group.
24079         * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
24081 2000-03-15  Gerd Moellmann  <gerd@gnu.org>
24083         * pcvs-defs.el (toplevel): Remove autoload cookie for form
24084         requiring easymenu.
24086 2000-03-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
24088         * ps-print.el: PostScript user-defined prologue, PostScript error
24089         handler, doc fix.
24090         (ps-print-version): New version number (5.1).
24091         (ps-user-defined-prologue, ps-error-handler-message)
24092         (ps-print-prologue-0, ps-error-handler-alist): New vars.
24093         (ps-setup, ps-begin-file, ps-begin-job): Code fix.
24094         (ps-insert-string): New function.
24096 2000-03-15  Kenichi Handa  <handa@etl.go.jp>
24098         * international/ccl.el (ccl-compile-expression): Don't generate
24099         invalid self-assignment code.
24101 2000-03-14  Dave Love  <fx@gnu.org>
24103         * subr.el (replace-regexp-in-string): Renamed from
24104         replace-regexps-in-string.  Doc fix.
24106 2000-03-12  Dave Love  <fx@gnu.org>
24108         * cus-edit.el: Doc fixes.
24109         (customize-set-variable, customize-save-variable): Rename args for doc.
24110         (custom-variable-tag-face, custom-face-tag-face)
24111         (custom-group-tag-face-1, custom-group-tag-face): Modify from
24112         style which user identify as hyperlink.
24113         (hook): Don't add undefined functions to the hook.
24114         (debug-ignored-errors): Transfer message from bindings.el.
24116 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
24118         * recentf.el (recentf-keep-non-readable-files-p):
24119         Remove double/nested definition.
24121 2000-03-12  Dave Love  <fx@gnu.org>
24123         * facemenu.el (facemenu-get-face): Use display-color-p.
24124         * enriched.el (enriched-decode-foreground): Likewise.
24125         (enriched-decode-background): Likewise.
24126         * isearch.el (isearch-highlight): Likewise.
24127         * info-look.el (info-lookup): Likewise.
24128         * simple.el (completion-setup-function): Likewise.
24130         * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
24131         :options.
24133         * bindings.el (mode-line-format): Fix line-number and
24134         column-number items.  Add help-echo for the background.
24135         (mode-line-mule-info): Modify help-echo.
24137         * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
24139         * files.el (load-file): Allow completion to .elc.
24141         * man.el: Doc fixes.
24142         (Man-init-defvars): Use display-color-p to set fontification.
24144         * play/hanoi.el (hanoi-internal): Don't use oddp.
24146 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
24148         * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
24150         * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
24152 2000-03-12  Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
24154         * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
24155         Fix comment.
24157 2000-03-10  Stefan Monnier  <monnier@cs.yale.edu>
24159         * font-lock.el (font-lock-keywords): Fix the doc now that
24160         regexp-opt-depth is unnecessary.
24161         (save-buffer-state): Set an edebug spec.
24162         (font-lock-fontify-anchored-keywords): Properly handle the case when
24163         the matcher goes past the limit.
24165         * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
24166         pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
24168         * emacs-lisp/ewoc.el: New file.  This is a merge of elib-node.el,
24169         dll.el and cookie.el (from Elib) with heavy renaming and other
24170         massaging.
24172         * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
24173         Autoload the functions used.
24174         (easy-mmode-define-syntax): Fix CL typo.
24175         (easy-mmode-define-derived-mode): Improve the docstring generation.
24177 2000-03-10  Gerd Moellmann  <gerd@gnu.org>
24179         * textmodes/texinfo.el (texinfo-version): Variable and function
24180         removed.
24182 2000-03-09  Stefan Monnier  <monnier@cs.yale.edu>
24184         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
24185         allow more flexibility.
24186         (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
24187         (easy-mmode-defmap, easy-mmode-defsyntax)
24188         (easy-mmode-define-derived-mode): New macros.
24190 2000-03-09  Didier Verna  <didier@xemacs.org>
24192         * rect.el (replace-rectangle): New function.
24194 2000-03-09  Dave Love  <fx@gnu.org>
24196         * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
24197         (fortran-comment-line-start-skip): Don't match cpp stuff.
24198         (font-lock-keywords): Add * to comment-chars.  Grok cpp stuff.
24199         (fortran-mode-map): Remove over-eager custom-menu-create for now.
24200         (fortran-mode): Don't set fortran-comment-line-start-skip,
24201         fortran-comment-line-start here.  Set comment-start,
24202         add-log-current-defun.
24203         (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
24204         (fortran-current-defun): New function.
24206 2000-03-09  Gerd Moellmann  <gerd@gnu.org>
24208         * emacs-lisp/re-builder.el: New file.
24210         * mouse.el (mouse-drag-region): Don't run up-event handler
24211         if hscroll has changed.
24213         * octave-mod.el (octave-font-lock-keywords): To font-lock the
24214         builtin operators, use `font-lock-builtin-face' for Emacs and
24215         `font-lock-preprocessor-face' otherwise.
24217         * font-lock.el (lisp-font-lock-keywords-1): Highlight
24218         `(defun (setf foo)' differently.
24220 2000-03-08  Stefan Monnier  <monnier@cs.yale.edu>
24222         * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
24223         (regexp-opt): Update comment and adapt the code the new meaning of
24224         the `paren' argument of regex-opt-group for shy-groups.
24225         (regexp-opt-depth): Handle shy groups as well as backslashed
24226         backslashes.
24227         (regexp-opt-group): Turn the leading comment into a docstring.
24228         Allow `paren' to be a string (the string to use to open a group).
24229         Remove open-presuf and close-presuf.  Instead of checking for `all
24230         one-char' and then later on check for `several one-char', handle
24231         both cases close together.  Also apply a more generic algorithm
24232         for suffixes (the mirror image of the algorithm used for
24233         prefixes).  Use shy-groups.  Use nreverse rather than reverse.
24234         (regexp-opt-try-suffix): Removed.
24236         * cmuscheme.el (inferior-scheme-mode-map): Define it independently
24237         from comint-mode-map, so we can just inherit from it.  Also, move
24238         the initialization into the `defvar' since there's no docstring
24239         anyway and it's fairly short.
24240         (inferior-scheme-mode): Define it as derived-mode: the code is
24241         shorter and this way we inherit from comint-mode-map rather than
24242         copying it.
24244         * subr.el (replace-regexps-in-string): Properly handle the case
24245         where we match an empty string.
24247         * comint.el (comint-exec-1): Add the current-dir to the exec-path
24248         when the command has a directory component (such as "./testml").
24249         Also fix a typo in the comment.
24251 2000-03-08  Gerd Moellmann  <gerd@gnu.org>
24253         * Makefile (compile-files): Compile files one by one because
24254         that's the only way to ensure a clean compilation environment for
24255         each individual file.
24257         * frame.el (other-frame): Call x-focus-frame.
24259 2000-03-07  Dave Love  <fx@gnu.org>
24261         * recentf.el (recentf-keep-non-readable-files-p): Add :set,
24262         :require to defcustom.
24264         * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
24266         * files.el (auto-mode-alist): Add configure.in.
24268         * progmodes/autoconf.el: New file.
24270 2000-03-07  Gerd Moellmann  <gerd@gnu.org>
24272         * mail/mh-e.el: Change maintainer to `none'.
24274         * recentf.el (recentf-keep-non-readable-files-p): Quote args
24275         to remove-hook and add-hook.
24277 2000-03-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
24279         * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
24280         it as the default.
24281         (mail-send): Test mail-send-nonascii also for the new `mime' value.
24282         (sendmail-send-it): Conditionally add MIME headers specifying the
24283         used character set.
24285 2000-03-07  Dave Love  <fx@gnu.org>
24287         * winner.el: Fix keywords, autoload cookies.
24288         Split eval-when-compile form to avoid compilation failure.
24290 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
24292         * international/mule.el: Modify comment about coding system
24293         property `coding-category'.
24294         (make-coding-system): New argument EOL-TYPE.  Pay attention to
24295         coding-category property of PROPERTIES.
24297         * international/mule-conf.el (coding-category-utf-8)
24298         (coding-category-utf-16-be, coding-category-utf-16-le): New coding
24299         categories.  Include them in the argument for set-coding-priority.
24301         * international/mule-cmds.el (reset-language-environment):
24302         Include coding-category-utf-8, coding-category-utf-16-be, and
24303         coding-category-utf-16-le in the argument for set-coding-priority.
24304         (reset-language-environment): Initialize coding-category-utf-8,
24305         coding-category-utf-16-be, and coding-category-utf-16-le to nil.
24307 2000-03-06  Karl Fogel  <kfogel@red-bean.com>
24309         * bookmark.el (bookmark-file-or-variation-thereof): New func, for
24310         code abstracted out of `bookmark-jump-noselect'.  Now tries info
24311         extensions as well as compression extensions.
24312         (bookmark-jump-noselect): Use above new func.
24314 2000-03-03  Gerd Moellmann  <gerd@gnu.org>
24316         * strokes.el: Change maintainer's mail address.
24318 2000-03-03  Kenichi Handa  <handa@etl.go.jp>
24320         * international/mule-diag.el (list-character-sets): Make help-echo
24321         string by substitute-command-keys.
24322         (list-character-sets): Likewise.
24323         (sort-listed-character-sets): Call help-setup-xref.
24325 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
24327         * time.el (display-time-mail-file): Add `none' to the list of choices.
24329 2000-03-01  Dave Love  <fx@gnu.org>
24331         * help.el (help-xref-go-back): Don't try to set position.
24333         * international/mule-diag.el (list-character-sets):
24334         Call help-setup-xref.  Add help-echo to xrefs.
24335         (list-character-sets-1): Add help-echo to xrefs.
24337 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
24339         * frame.el (blink-cursor-mode): Switch cursor on when turning
24340         the mode off.
24342         * add-log.el (add-log-current-defun): Add support for
24343         Autoconf mode.
24345         * mail/rmail.el (rmail-quit-hook): New variable.
24347 2000-03-01  Dave Love  <fx@gnu.org>
24349         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
24351         * help.el (help-xref-button): Add help-echo arg.
24352         (describe-function-1, describe-variable, help-make-xrefs): Use it.
24354         * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
24356         * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
24358 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
24360         * image.el (defimage): Look for image files in load-path.
24362         * frame.el (busy-cursor-delay-seconds): Change type to `number'.
24364 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
24366         * recentf.el (recentf): Added version tag to the defgroup of recentf.
24368 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
24370         * recentf.el (recentf-cleanup): Changed to remove excluded file too.
24371         (recentf-edit-list-action): `recentf-edit-list' checkbox widget
24372         action to select/unselect a file.
24373         (recentf-edit-list): Code cleanup and improvement.
24374         (recentf-open-more-files-action): `recentf-open-more-files' button
24375         widget action to open a file.
24376         (recentf-open-more-files): No more use standard completion but widgets.
24377         (recentf-more-collection): Deleted.
24378         (recentf-more-history): Deleted.
24379         (recentf-setup-more-completion): Deleted.
24381 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
24383         * recentf.el (recentf-mode): No more needs that Emacs is running
24384         under a window-system.
24386 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
24388         * recentf.el (recentf-edit-list): New command to edit the recent
24389         list which allow the user to remove files.
24390         (recentf-edit-selected-items): New global variable, used by
24391         `recentf-edit-list' to hold the list of files to be removed from
24392         the recent list.
24393         (recentf-make-menu-items): Updated to display a "Edit list..."
24394         menu item.  Minor code cleanup.
24396 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
24398         * recentf.el (recentf-open-more-files): New command to open files
24399         that are not displayed in the menu.
24400         (recentf-more-collection): New global variable holding the set of
24401         permissible completions used by `recentf-open-more-files'.
24402         (recentf-more-history): New global variable holding the history list
24403         used by `recentf-open-more-files' completion.
24404         (recentf-setup-more-completion): New function to setup completion for
24405         `recentf-open-more-files'.
24406         (recentf-make-menu-items): Updated to display a "More..." menu item.
24408 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
24410         * recentf.el (recentf-menu-action): Doc fixed.
24412 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
24414         * recentf.el (recentf-menu-filter): Doc updated.
24415         (recentf-update-menu-hook): Allow menu filters to force menu update.
24416         (recentf-make-menu-items): New menu filter handling.
24417         (recentf-make-menu-item): New helper function.
24418         (recentf-menu-elements): New menu handling function.
24419         (recentf-sort-ascending): Updated to new menu filter handling.
24420         (recentf-sort-descending): Updated to new menu filter handling.
24421         (recentf-sort-basenames-ascending): New menu filter function.
24422         (recentf-sort-basenames-descending): New menu filter function.
24423         (recentf-show-basenames): New menu filter function.
24424         (recentf-show-basenames-ascending): New menu filter function.
24425         (recentf-show-basenames-descending): New menu filter function.
24427 2000-02-29  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
24429         * diary-lib.el (list-diary-entries): Don't try to go forward at
24430         the end of the buffer.
24432 2000-02-29  Kenichi Handa  <handa@etl.go.jp>
24434         * international/mule-diag.el (list-character-sets):
24435         Completely rewritten.
24436         (sort-listed-character-sets): New function.
24437         (list-character-sets-1): Completely rewritten.
24438         (list-character-sets-2): New function.
24439         (non-iso-charset-alist): New variable.
24440         (decode-codepage-char): New function.
24441         (charset-history): New variable.
24442         (read-charset) (list-block-of-chars)
24443         (list-iso-charset-chars)
24444         (list-non-iso-charset-chars)
24445         (list-charset-chars): New functions.
24446         (mule-diag): Call list-character-sets-2, not list-character-sets-2.
24447         (dump-charsets): Likewise.
24449 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
24451         * dired-x.el (dired-filename-at-point): Add `@' to valid
24452         file name characters.
24453         (dired-filename-at-point): Handle ange-ftp file names.
24455         * frame.el (frame-notice-user-settings): Use assq-delete-all
24456         instead of assoc-delete-all.
24457         (frame-notice-user-settings): Ditto.
24459         * subr.el (assq-delete-all): Renamed from assoc-delete-all.
24460         Don't copy alist.
24462 2000-02-28  Eli Barzilay  <eli@cs.cornell.edu>
24464         * calculator.el (calculator-use-menu): New option.
24465         (calculator-initial-bindings): Changed some bindings to work as macros.
24466         (calculator-forced-input): Removed.
24467         (calculator-restart-other-mode): New variable.
24468         (calculator-mode-map): Set up menu.
24470 2000-02-28  Jari Aalto  <jari.aalto@poboxes.com>
24472         * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
24474 2000-02-28  Michael Kifer  <kifer@cs.sunysb.edu>
24476         * viper-cmd.el (viper-envelop-ESC-key): Add the option to
24477         translate all ESC key sequences.
24478         (viper-goto-mark-subr): Restore markers for files for which
24479         they were saved.
24480         * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
24481         * viper-util.el (viper-set-replace-overlay-glyphs)
24482         (viper-set-replace-overlay): Always check if the replacement
24483         overlay is live.
24484         * viper.el (viper-vi-state-mode-list): Add major modes.
24485         * ediff-wind.el: Minor comment changes.
24486         * ediff.el: Copyright notice date fix.
24488 2000-02-27  Jason Rumney  <jasonr@gnu.org>
24490         * faces.el (face-font-family-alternatives): Add arial to helv.
24491         (mode-line, header-line, tool-bar): Same default as x for w32.
24492         (fixed-pitch, variable-pitch): Remove wildcard as it prevents
24493         face-font-family-alternatives from working.
24494         * term/w32-win.el (mouse-set-font): Do not build fontset from
24495         chosen font.
24497 2000-02-25  Sam Steingold  <sds@goems.com>
24499         * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
24500         properly.
24502 2000-02-25  Richard M. Stallman  <rms@gnu.org>
24504         * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
24506 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
24508         * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
24510         * frame.el (busy-cursor-delay-seconds): New option.
24512 2000-02-24  Gerd Moellmann  <gerd@gnu.org>
24514         * frame.el (show-cursor-in-non-selected-windows): New option.
24516 2000-02-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
24518         * diary-lib.el (include-other-diary-files): Undo the selective
24519         display in any included file and don't kill it.
24521 2000-02-24  Eli Zaretskii  <eliz@is.elta.co.il>
24523         * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
24524         Menu items converted to (menu-item format, help strings added.
24525         [downcase, upcase]: Don't enable on MS-DOS.
24526         [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
24527         [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
24529 2000-02-23  Dave Love  <fx@gnu.org>
24531         * simple.el (zap-to-char, kill-line, kill-region, kill-word)
24532         (backward-kill-word): Revert addition of * to interactive spec --
24533         it's a feature.
24535         * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
24536         (backward-kill-sentence, kill-sentence): Likewise.
24538         * gud.el (gud-jdb-build-class-source-alist): Prepend space to
24539         scratch buffer name.
24540         (gud-format-command): Use int-to-string in ?l case.  Simplify slightly.
24542         * term/w32-win.el (internal-face-interactive): Update prompt for
24543         new read-face-name.
24545         * mail/footnote.el (footnote): Add :version to defgroup.
24546         (footnote-section-tag-regexp): Customize.
24547         (footnote-start-tag, footnote-end-tag): New option.
24548         (footnote-latin-regexp): New variable.
24549         (Footnote-latin): New function.
24550         (footnote-style-alist): Add element for latin style.
24551         (footnote-style): Moved.
24552         (Footnote-goto-footnote): Use eq to test arg.
24554         * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
24556         * emacs-lisp/byte-opt.el: Change old backquote syntax.
24557         (byte-compile-trueconstp): Include keywords.
24558         (byte-optimize-quote, byte-optimize-lapcode):
24559         Use byte-compile-const-symbol-p.
24560         (byte-optimize-char-before): New optimization.
24562         * emacs-lisp/bytecomp.el: Change old backquote syntax.
24563         (byte-compile-const-symbol-p): New function.
24564         (byte-compile-constp, byte-compile-out-toplevel)
24565         (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
24566         Use it.
24568         * subr.el (define-key-after): Default AFTER to t.  Doc fix.
24570 2000-02-23  Kenichi Handa  <handa@etl.go.jp>
24572         * international/encoded-kb.el: Be sure to update minor-mode-alist
24573         and minor-mode-map-alist.
24574         (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
24575         codes SS2 and SS3 correctly.
24576         (encoded-kbd-self-insert-ccl): New function.
24577         (encoded-kbd-setup-keymap): New function.
24578         (encoded-kbd-mode): Handle CCL based coding system.  Setup keymap
24579         by calling encoded-kbd-setup-keymap.
24581         * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
24582         (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
24584 2000-02-22  Dave Love  <fx@gnu.org>
24586         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
24587         (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
24588         (lisp-mode-syntax-table): Set up for #|...|# comments.
24589         (lisp-imenu-generic-expression): Purecopy strings.  Use syntax
24590         classes.  Match `defface'.
24591         (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
24592         (eval-defun-1): Fix for defcustom.
24593         (lisp-indent-region): Doc fix.
24595         * subr.el (when, unless, split-string): Doc fix.
24596         (read-passwd): Move call of clear-this-command-keys to the right place.
24597         (replace-regexps-in-string): New function.
24599 2000-02-22  Gerd Moellmann  <gerd@gnu.org>
24601         * help.el (describe-variable): Set syntax table to
24602         emacs-lisp-mode-syntax-table when moving forward over the
24603         symbol's name.
24605 2000-02-22  Dave Love  <fx@gnu.org>
24607         * xt-mouse.el: Doc fixes.
24608         (xterm-mouse-position-function): New function, replacing advice of
24609         mouse-position.
24610         (xterm-mouse-mode): Use it.  Don't turn on under a window system.
24612         * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
24614 2000-02-21  Gerd Moellmann  <gerd@gnu.org>
24616         * format.el (format-annotate-single-property-change):
24617         Handle properties with dotted-list values.
24618         (format-proper-list-p): New function.
24620         * enriched.el (enriched-face-ans): Handle '(foreground-color
24621         . COLOR) and (background-color . COLOR).
24623 2000-02-20  Dave Love  <fx@gnu.org>
24625         * textmodes/flyspell.el (flyspell-mouse-map): Change definition
24626         and assignments to it.
24627         (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
24628         current local map.
24629         (make-flyspell-overlay): Use it.
24630         (flyspell-correct-word/mouse-keymap): Change XEmacs test.
24632         * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
24633         (lm-get-header-re): Defun, not defsubst.
24634         (lm-get-package-name): Defun, not defsubst.  Simplify.
24635         (lm-version): Doc fix.  Simplify.
24636         (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
24637         (lm-crack-address, lm-last-modified-date, lm-commentary)
24638         (lm-verify, lm-synopsis): Simplify.
24639         (lm-report-bug): Require emacsbug.  Use compose-mail.
24641 2000-02-20  Gerd Moellmann  <gerd@gnu.org>
24643         * dired.el (dired-mode): Call propertized-buffer-identification
24644         to set mode-line-buffer-identification to something having
24645         the right text properties.
24647         * bindings.el (propertized-buffer-identification): New function.
24649 2000-02-20  Dave Love  <fx@gnu.org>
24651         * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
24652         check for t-mouse too.
24654         * cus-start.el: Make echo-keystrokes `number'.
24656 2000-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
24658         * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
24659         Don't call ring-empty-p unless tags-location-ring is bound.
24660         From Noah Friedman <friedman@splode.com>.
24662 2000-02-18  Thien-Thi Nguyen  <ttn@gnu.org>
24664         * progmodes/hideshow.el (hs-flag-region): No longer use
24665         `intangible' overlay property.
24667         (hs-toggle-hiding): New command.
24668         (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
24670         (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
24671         Fix omission bug: Run `hs-minor-mode-hook' for both activation
24672         and deactivation.
24674 2000-02-18  Gerd Moellmann  <gerd@gnu.org>
24676         * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
24678 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
24680         * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
24682         * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
24683         of `*' to handle `(* ... *)' comments.
24685 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
24687         * faces.el (list-faces-display): Use display-mouse-p instead of
24688         window-system.
24690         * menu-bar.el (global-map): Menu-bar items converted to the new
24691         format (menu-item..., rearranged for better CUA compliance, and
24692         their names changed for better clarity.  Help strings added.
24694         * international/mule-cmds.el (mule-menu-keymap)
24695         (describe-language-environment-map, set-coding-system-map)
24696         (setup-language-environment-map): Convert to new (menu-item...
24697         form, add help strings.  Change names of menu items for better clarity.
24698         "Mule" menu-bar item removed (it's now in the "Options" submenu).
24700 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
24702         * dired-aux.el (dired-do-copy): Remove spurious character.`n'
24703         within the code.
24705 2000-02-16  Dave Love  <fx@gnu.org>
24707         * faces.el: Don't require custom.  Add more specific :groups to
24708         various deffaces.
24709         (set-face-attribute): Purecopy args.
24710         (read-face-name): Default to name at point and use it in prompt.
24711         Remove colon from arg in all callers.
24712         (list-faces-display): Hyperlink to face descriptions and customize
24713         buffers.
24715 2000-02-16  Per Abrahamsen  <abraham@dina.kvl.dk>
24717         * wid-edit.el (widget-match-inline): An atom never matches a list.
24719 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24721         * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
24722         at ':' characters by call to split-string.
24724 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24726         * textmodes/bibtex.el: Added RCS version identification.
24728 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24730         * textmodes/bibtex.el: Some temporary comments removed.
24731         (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
24732         (bibtex-field-const): Allow capital letters.
24733         (bibtex-start-of-string): Deleted because unused.
24735         * textmodes/bibtex.el: Unified some nomenclature.  We no longer
24736         use the term 'reference' to describe a bibtex entry as a whole.
24737         Further, reference keys are no longer called 'labels'.
24738         (bibtex-keys): Renamed to bibtex-reference-keys.
24739         (bibtex-reformat-previous-labels): Renamed to
24740         bibtex-reformat-previous-reference-keys.
24741         (bibtex-reference-type): Renamed to bibtex-entry-type.
24742         (bibtex-reference-head): Renamed to bibtex-entry-head.
24743         (bibtex-reference-maybe-empty-head): Renamed to
24744         bibtex-entry-maybe-empty-head.
24745         (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
24746         (bibtex-search-reference): Renamed to bibtex-search-entry.
24747         (bibtex-enclosing-reference-maybe-empty-head): Renamed to
24748         bibtex-enclosing-entry-maybe-empty-head.
24749         (bibtex-entry-field-alist, bibtex-entry-head)
24750         (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
24751         (bibtex-map-entries, bibtex-search-entry)
24752         (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
24753         (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24754         (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
24755         (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
24756         (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
24757         (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
24758         (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
24760 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24762         * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
24763         comment.
24764         (bibtex-format-field-delimiters): New function, functionality
24765         extracted from bibtex-format-entry.
24766         (bibtex-autokey-get-yearfield-digits): New function, functionality
24767         extracted from bibtex-autokey-get-yearfield.
24769         * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
24770         entries in order to avoid stack overflow in the regexp matcher if
24771         field contents become large.
24772         (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
24773         (bibtex-field-string-part-not-braced)
24774         (bibtex-field-string-part-no-inner-braces)
24775         (bibtex-field-string-part-1-inner-brace)
24776         (bibtex-field-string-part-2-inner-braces)
24777         (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
24778         (bibtex-field-string-quoted, bibtex-field-string)
24779         (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
24780         (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
24781         (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
24782         Deleted as parsing is now performed by the following functions.
24783         (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
24784         (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
24785         (bibtex-parse-field-string, bibtex-search-forward-field-string)
24786         (bibtex-parse-association, bibtex-field-name-for-parsing)
24787         (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
24788         (bibtex-search-forward-field, bibtex-search-backward-field)
24789         (bibtex-start-of-field, bibtex-end-of-field)
24790         (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
24791         (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
24792         (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
24793         (bibtex-parse-string, bibtex-search-forward-string)
24794         (bibtex-search-backward-string, bibtex-start-of-string)
24795         (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
24796         (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
24797         (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
24798         entries.  Instead of reporting the results of the parsing by
24799         match-beginning or match-end, these functions return data structures
24800         that hold the corresponding positions.
24801         (bibtex-enclosing-field): Changed to also report field boundaries by
24802         return values rather than by match-beginning or match-end.
24803         The following functions have been adapted to use the new
24804         parsing functions.
24805         (bibtex-skip-to-valid-entry, bibtex-search-reference)
24806         (bibtex-enclosing-field, bibtex-format-entry)
24807         (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
24808         (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
24809         (bibtex-print-help-message, bibtex-end-of-entry)
24810         (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
24811         (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24812         (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
24813         Use the new method for parsing.
24814         (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
24815         (bibtex-map-entries, bibtex-flash-head)
24816         (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
24817         (bibtex-autokey-change, bibtex-autokey-get-namefield)
24818         (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
24819         (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
24820         (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
24821         (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
24822         (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
24823         order to make the new binding of case-fold-search immediately visible.
24825 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24827         * textmodes/bibtex.el: Copyright notice is up to date.
24828         Added constant 'bibtex-maintainer-salutation.
24830         * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
24831         than make-temp-name, use match-string-no-properties and eliminate
24832         a quadratic behavior when building bibtex-strings.
24834         * bibtex.el (bibtex-reference-key): Accept string entries whose
24835         reference key contains upper case letters.
24837 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24839         * bibtex.el (bibtex-reference-head): Allow entries to start with
24840         a new line.
24842 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24844         * bibtex.el: Hiding of entry bodies is not longer provided by
24845         bibtex.el directly.  Instead the hideshow package can be used.
24846         Added a special bibtex entry to hs-special-modes-alist.
24847         (bibtex-hs-forward-sexp): Added for hideshow.el.
24849 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
24851         * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
24852         proceedings entry type (for cross referencing). Thanks to Wagner
24853         Toledo Correa for the suggestion.
24855         * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
24857 2000-02-14  Kenichi Handa  <handa@etl.go.jp>
24859         * international/characters.el: Setup case table for Vietnamese.
24861 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
24863         * uniquify.el (toplevel): Require CL at compile time.
24864         (uniquify-push): Removed.
24866         * shadowfile.el (shadow-when): Removed.
24868         * tempo.el (tempo-dolist, tempo-mapc): Removed.
24869         (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
24871         * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
24872         regexp for paragraph-start.
24874         * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
24875         commas as well.
24877 2000-02-10  Dave Love  <fx@gnu.org>
24879         * wid-edit.el: (widgets) [defgroup]: Remove url link.
24880         (widget-color-choice-list, widget-color-history, widget-mouse-help):
24881         Deleted.
24882         (widget-specify-field, widget-specify-button): Don't use
24883         widget-mouse-help as help-echo property.
24884         (default): Use #'ignore for :validate and :mouse-down-action.
24885         (checkbox): Add help-echo.
24886         (widget-sexp-validate): Rewritten to clarify error messages.
24887         (character): Use char-valid-p in :match function.
24888         (widget-color-complete): Use facemenu-color-alist.
24889         (widget-color-action): Use facemenu-read-color.
24891         * emacs-lisp/cl-macs.el: Don't bother testing for defalias.  Don't
24892         set up `caar' &c that we now have.
24894 2000-02-09  Ray Blaak  <blaak@gnu.org>
24896         * delphi.el: Make resourcestring a declaration region, like const
24897         and var.
24899 2000-02-09  Dave Love  <fx@gnu.org>
24901         * bindings.el (mode-line-input-method-map): New variable.
24902         (mode-line-mule-info): Use it; fix last change.
24903         (mode-line-mode-menu): Move definition.
24904         (mode-line-mouse-sensitive-p): Deleted.
24905         (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
24906         (make-mode-line-mouse-sensitive): Deleted.  Body moved to top level.
24908         * startup.el (command-line-1): Don't call
24909         make-mode-line-mouse-sensitive.
24911 2000-02-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
24913         * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
24914         before rmail-toggle-header, because the former toggles headers.
24916 2000-02-06  Stefan Monnier  <monnier@cs.yale.edu>
24918         * diff-mode.el (diff-kill-junk): New interactive function.
24919         (diff-reverse-direction): Use delete-and-extract-region.
24920         (diff-post-command-hook): Restrict the area so that the hook also works
24921         outside of any diff hunk.  This is necessary for the minor-mode.
24922         (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
24923         (diff-minor-mode): Setup the hooks for header-hunk rewriting.
24925         * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
24926         (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
24927         so that it can be used more easily in <foo>-mode-hook.  Also make sure
24928         to avoid duplicate entries.
24929         (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
24930         (font-lock-remove-keywords): Just as was done for `add', allow it to
24931         work even if font-lock-mode is nil.  Also make sure we don't modify
24932         any pre-existing list by forcing a copy-sequence.  Finally rename
24933         `major-mode' to `mode'.
24934         (font-lock-fontify-syntactic-anchored-keywords)
24935         (font-lock-fontify-anchored-keywords)
24936         (font-lock-fontify-keywords-region): Use line-end-position.
24937         Don't make `font-lock-multiline' local (it's now done in
24938         font-lock-set-defaults).
24939         (font-lock-set-defaults): Make `font-lock-multiline' local.
24940         Move the `font-lock-fontified' creation to inside the `unless'.
24942 2000-02-06  Andrew Innes  <andrewi@gnu.org>
24944         * term/w32-win.el (x-handle-args): Comment out call to message,
24945         which occurs before window system is initialized.
24947         * makefile.nt: Add support for recompiling lisp code.
24949 2000-02-04  Dave Love  <fx@gnu.org>
24951         * bindings.el (mode-line-mule-info): Fix/extend last change.
24953         * completion.el: Replace completion-dolist with dolist.
24955         * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
24957 2000-02-04  Carsten Dominik  <dominik@strw.leidenuniv.nl>
24959         * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
24960         environment names before they go into the section regexp.
24962         * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
24963         char class in regexp.
24965         * textmodes/reftex-parse.el (reftex-with-special-syntax):
24966         Bind `case-fold-search' to nil.
24968         * progmodes/idlwave.el (idlwave-template):
24969         Respect `idlwave-abbrev-change-case'.
24970         (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
24971         (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
24972         (idlwave-while): Respect `idlwave-reserved-word-upcase'.
24973         (idlwave-rw-case): New function.
24974         (idlwave-statement-match): Fixed problem with assignment regexp.
24975         (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
24976         (idlwave-surround): New argument LENGTH to support padding of
24977         operators longer than 1 char.
24979         * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
24980         idlwave-shell-expression-overlay.  Implemented printing of
24981         expressions on higher levels of the calling stack.
24982         (idlwave-shell-display-level-in-calling-stack): Restore stack level.
24983         (idlwave-retrieve-expression-from-level): New function.
24984         (idlwave-shell-last-calling-stack): Variable removed.
24985         (idlwave-shell-reset): Argument action reversed (`visible' to
24986         `hidden').  Also remove stop-line overlay.
24987         (idlwave-shell-calling-stack-routine): New variable.
24988         (idlwave-shell-parse-stack-and-display): Messages now display
24989         negative level numbers.
24990         (idlwave-shell-mode): Set `modeline-format'.
24991         (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
24992         (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
24993         (idlwave-shell-print-expression-function): New option.
24995         * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
24996         (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
24997         `tool-bar' instead of `toolbar'.
24999 2000-02-02  Dave Love  <fx@gnu.org>
25001         * emacs-lisp/cl.el: Use bytecomp-load-hook, not
25002         emacs-lisp-mode-hook.  Don't check for defalias being defined.
25004         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
25005         (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
25006         Use the new builtins directly.
25008         * whitespace.el (whitespace): Add :version to defgroup.
25010         * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
25011         Doc fix.
25013         * thingatpt.el (sexp-at-point, symbol-at-point)
25014         (number-at-point, list-at-point): Add autoload cookie.
25016         * recentf.el (recentf): Add :version to defgroup.
25018         * quickurl.el (quickurl): Add :version to defgroup.
25020         * elide-head.el (elide-head): Use point-marker more.
25022         * bs.el (bs): Add :version to defgroup.
25024         * autorevert.el (global-auto-revert-mode): Add autoload cookie.
25026         * progmodes/delphi.el (delphi): Add :version to defgroup.
25028 2000-02-02  Gerd Moellmann  <gerd@gnu.org>
25030         * ange-ftp.el (ange-ftp-write-region): Handle case that
25031         succeeding process operation sets a different coding system.
25033         * calculator.el: New file.
25035 2000-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
25037         * frame.el (frames-on-display-list, framep-on-display): New functions.
25038         (display-mouse-p, display-popup-menus-p, display-graphic-p)
25039         (display-selections-p, display-screens, display-pixel-width)
25040         (display-pixel-height, display-mm-width, display-mm-height)
25041         (display-backing-store, display-save-under, display-planes)
25042         (display-color-cells, display-visual-class): New functions.
25044         * term/tty-colors.el (tty-color-gray-shades): New function.
25046         * faces.el (display-color-p): Use framep-on-display.
25047         (display-grayscale-p): New function.
25049 2000-01-31  Dave Love  <fx@gnu.org>
25051         * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
25052         (create-fontset-from-x-resource): Don't concat integers.
25054 2000-01-31  Inge Frick  <inge@nada.kth.se>
25056         * view.el: Some changes in documentation.  Removed some trailing
25057         whitespace. Changed some parameter names to agree with documentation.
25058         (view-mode-exit): Keep entry in `view-return-to-alist' only when a
25059         window is not deleted.  Modifies change 1998-04-26.
25061 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
25063         * windmove.el: New file.
25065         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
25066         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
25067         progmodes/ebnf-yac.el: Update copyright and license info.
25069         * jit-lock.el (jit-lock-function): Widen before calculating
25070         end position.
25071         (jit-lock-stealth-chunk-start): Rewritten.
25073         * info.el (Info-title-face-alist): Removed.
25074         (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
25075         (Info-fontify-node): Use these faces.
25077 2000-01-30  Gerd Moellmann  <gerd@gnu.org>
25079         * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
25080         (cl-macro-list1): Recognize `&allow-other-keys' instead of
25081         `&allow-other-keywords'.
25083         * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
25084         the list of directories scanned heuristically.
25086         * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
25088 2000-01-30  Jason Rumney  <jasonr@gnu.org>
25090         * w32-fns.el: Define w32-tty-standard-colors.
25092         * startup.el (command-line): Use w32-tty-standard-colors when in
25093         w32 console mode.
25095 2000-01-30  Dave Love  <fx@gnu.org>
25097         * jka-compr.el (jka-compr-load): Fix up load-history.
25099         * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
25101         * emacs-lisp/cl-macs.el: Revert previous change.
25103 2000-01-29  Dave Love  <fx@gnu.org>
25105         * facemenu.el: Purecopy various strings.
25107         * timezone.el (timezone-fix-time): Window against 69 for two-digit
25108         years.  Deal with three-digit years.
25110         * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
25111         Use defconst, purecopy.
25112         (help-back-label): Purecopy it.
25114 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
25116         * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
25117         variable. If non-nil, order the buffer list according to the
25118         currently selected frame.
25119         (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
25120         non-nil, pass the selected frame to function buffer-list.
25122 2000-01-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
25124         * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
25126 2000-01-28  Dave Love  <fx@gnu.org>
25128         * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
25130         * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
25131         Don't use lisp-indent-hook property.
25132         (cl-abs): Remove.
25134         * subr.el: Move out indent and edebug specs for when and unless.
25136         * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
25137         when, unless.
25139         * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
25140         unless, when.
25142 2000-01-28  Gerd Moellmann  <gerd@gnu.org>
25144         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
25145         `collecting' as synonym for `collect'.
25147         * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
25148         for the case it contains spaces.
25150         * simple.el (what-cursor-position): Change formatting of messages.
25152         * frame.el (delete-other-frames): New function.
25153         (toplevel): Bind it to C-x 5 1.
25155         * sort.el (sort-numeric-base): New option.
25156         (sort-numeric-fields): If number starts with `0' or `0[xX[',
25157         interpret it as octal or hexadecimal.  Use sort-numeric-base
25158         as default base.
25160         * progmodes/glasses.el: New file.
25162 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
25164         * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
25165         userids differently.
25167         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
25168         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
25169         progmodes/ebnf-yac.el: New files.
25171 2000-01-26  Dave Love  <fx@gnu.org>
25173         * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
25174         on a function with an empty body.  [From Eric Ludlam.]
25176 2000-01-25  Andre Spiegel  <spiegel@gnu.org>
25178         * vc.el (vc-version-diff): Make sure file name is expanded.
25180 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
25182         * scroll-bar.el (scroll-bar-timer): Variable removed.
25183         (scroll-bar-toolkit-scroll): Don't use a timer.
25185 2000-01-25  Kenichi Handa  <handa@etl.go.jp>
25187         * language/thai-util.el (thai-composition-function):
25188         Delete superfluous `a'.
25190 2000-01-24  Dave Love  <fx@gnu.org>
25192         * fortran.el (fortran-mode): Use beginning-of-defun-function,
25193         end-of-defun-function.
25195         * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
25197 2000-01-22  Jason Rumney  <jasonr@gnu.org>
25199         * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
25200         conflicts with new face support.
25202 2000-01-22  Richard M. Stallman  <rms@gnu.org>
25204         * replace.el (query-replace): Rename last arg to DELIMITED.
25205         (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
25206         (query-replace-regexp): Likewise.
25208 2000-01-20  Richard M. Stallman  <rms@gnu.org>
25210         * subr.el (with-syntax-table): Use make-symbol, not gensym.
25212         * emacs-lisp/lisp.el (beginning-of-defun-function):
25213         Variable renamed from beginning-of-defun.
25214         Do not call make-variable-buffer-local.
25215         (beginning-of-defun-raw): Use new variable name; doc fix.
25216         (beginning-of-defun): Doc fix.
25217         (end-of-defun-function): Variable renamed from end-of-defun.
25218         Do not call make-variable-buffer-local.
25219         (end-of-defun): Use new variable name; doc fix.
25221         * subr.el (dolist, dotimes): Copied from cl-macs.el
25222         and made to work.
25224         * mail/undigest.el (rmail-digest-end-regexps):
25225         Variable replaces rmail-digest-end-regexp.
25226         Allows multiple regexps for detecting the end line.
25227         (undigestify-rmail-message): Corresponding changes.
25229 2000-01-19  Dave Love  <fx@gnu.org>
25231         * files.el (user-init-file): Don't declare here -- is primitive.
25233         * startup.el (command-line): Check for compiled user-init-file and
25234         set to uncompiled version if necessary.
25236 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
25238         * mail/undigest.el (rmail-digest-end-regexp): New user option.
25239         (undigestify-rmail-message): Use it.
25241         * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
25243 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
25245         * tmm.el (tmm-goto-completions): Adapt to prompt being part
25246         of mini-buffer.
25248 2000-01-14  Gerd Moellmann  <gerd@gnu.org>
25250         * emacs-lisp/copyright.el (copyright-update): Removed the
25251         requirement for a trailing space from `copyright-regexp', to
25252         support copyrights with owner specified on a separate line..
25254         * align.el: New file.
25256         * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
25258         * net/eudc.el (toplevel): Define EUDC menu for Emacs.
25260 2000-01-13  Dave Love  <fx@gnu.org>
25262         * ph.el: Removed.  (Obsoleted by EUDC.)
25264 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
25266         * net/eudc.el (toplevel): Remove autoloaded code installing
25267         menu with easymenu, because that causes build problems.
25269         * frame.el (frame-notice-user-settings): New variable.
25270         (frame-notice-user-settings): Don't modify frame parameters
25271         if called a second time.
25273 2000-01-13  Richard M. Stallman  <rms@gnu.org>
25275         * frame.el (frame-notice-user-settings):
25276         Notice default-frame-parameters even for non-window frames.
25278 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
25280         * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
25281         for Emacs.
25282         (eudc-bob-can-display-inline-images): Extend for Emacs.
25283         (eudc-bob-toggle-inline-display): Ditto.
25284         (eudc-bob-display-jpeg): Ditto.
25286 2000-01-12  Gerd Moellmann  <gerd@gnu.org>
25288         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
25289         net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
25290         net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
25292         * add-log.el (add-change-log-entry): Fix error trying an
25293         `(insert nil)'.
25295         * subdirs.el: Add `net' directory.
25297         * net: New directory.
25299         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
25300         eval-last-sexp.  Don't bind debug-on-error here.
25301         (eval-last-sexp): New function.  Bind debug-on-error if
25302         eval-expression-debug-on-error is non-nil.
25303         (eval-defun-2, eval-defun): Likewise.
25305         * simple.el (eval-expression): Don't bind debug-on-error if
25306         eval-expression-debug-on-error is nil.  Detect changed
25307         debug-on-error, and propagate new value to global binding, if
25308         eval-expression-debug-on-error is non-nil,
25309         (eval-expression-debug-on-error): Change doc string.
25311 2000-01-11  Richard M. Stallman  <rms@gnu.org>
25313         * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
25315         * emacs-lisp/lisp-mode.el (with-syntax-table):
25316         Set up lisp-indent-function property.
25318         * subr.el (with-syntax-table): Moved from simple.el.
25320         * simple.el (with-syntax-table): Moved to subr.el.
25322 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
25324         * tmm.el (tmm-shortcut): Delete region after prompt instead
25325         of erasing buffer.
25327         * textmodes/fill.el (fill-common-string-prefix): New function.
25328         (fill-context-prefix): Use the longest common prefix of first
25329         and second line fill prefix, if there is one.
25331 2000-01-11  Richard M. Stallman  <rms@gnu.org>
25333         * array.el (array-mode): Don't use make-variable-buffer-local.
25334         Use make-local-variable for `truncate-lines'.
25336 2000-01-11  Jari Aalto  <jari.aalto@poboxes.com>
25338         * add-log.el (add-log-current-defun): Handle user-defined
25339         add-log-current-function returning nil,
25341         * add-log.el (add-change-log-entry): Insert version number
25342         if having found a current function
25344         * add-log.el (add-log-current-defun):
25345         Call `add-log-current-defun-function'.  Try matches at level 0 and
25346         level 1.  Strip whitespace from defun found.
25348 2000-01-10  John Wiegley  <johnw@gnu.org>
25350         * allout.el (isearch-done/outline-provisions): Added `edit'
25351         argument to correspond with the current definition of `isearch-done'.
25353 2000-01-10  Dave Love  <fx@gnu.org>
25355         * elide-head.el (elide-head): Use point-marker, not point.
25357 2000-01-10  Gerd Moellmann  <gerd@gnu.org>
25359         * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
25360         before and after the year 2000.
25362         * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
25363         Add ispell- prefix.
25365 2000-01-10  Ken Stevens  <k.stevens@ieee.org>
25367         * ispell.el:  Only define dictionaries in menus when they exist.
25368         (version18p): New variable.
25369         (version20p): New variable.
25370         (xemacsp): New variable.
25371         (ispell-choices-win-default-height): Fix for XEmacs visibility.
25372         (ispell-dictionary-alist1): Added Brasileiro dictionary.
25373         (ispell-dictionary-alist6): Russian command lines no longer accept
25374         run-together words.
25375         (ispell-local-dictionary-alist): Add koi8-r to customize definition.
25376         (ispell-dictionary-alist): Add koi8-r to customize definition.
25377         (check-ispell-version): Added documentation string.  Return library
25378         path when called non-interactively.
25379         (ispell-menu-map-needed): Uses new variables.
25380         (ispell-library-path): New variable.
25381         (ispell-decode-string): XEmacs fix for bogus variable bindings.
25382         (ispell-word): Improved documentation string.  Test for valid
25383         character mappings.  Correctly check typed in word changes that can
25384         result in single words split into multiple words.
25385         Return replacement word.
25386         (ispell-command-loop): Fixes XEmacs display bugs.  Show word to
25387         replace in recursive query replace mode.  Help message for
25388         recursive edit mode.
25389         (ispell-show-choices): Protect against bad framepop bindings.
25390         (ispell-help): Fix to work with XEmacs.
25391         (ispell-highlight-spelling-error): Use new variables.
25392         (ispell-overlay-window): Fix to work with XEmacs.
25393         (ispell-parse-output): Passed and returns location information
25394         tracking spelling corrections.  Doesn't recheck same word on
25395         current line.
25396         (ispell-init-process): Protect against bogus XEmacs variable binding.
25397         Fix call to single argument in sleep-for.  Use new variables.
25398         (ispell-region): Passed and returns location information tracking
25399         spelling corrections.  Doesn't check same word on current line.
25400         Improved documentation string.  Doesn't resend a line already
25401         checked to the ispell process - fixes bug in LaTeX parsing.
25402         (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
25403         (ispell-skip-region): No longer skips <TT> in SGML.
25404         (ispell-process-line): Tracks location information with spelling
25405         corrections.  Added documentation string.  Accounts for words
25406         already accepted on this line.  Don't allow query-replace on line
25407         starting with math characters.  Doesn't resend a line already sent
25408         to ispell process.  Fixes alignment error bug.
25410 2000-01-10  Richard M. Stallman  <rms@gnu.org>
25412         * dired-x.el (dired-guess-shell-alist-default):
25413         Suggest xloadimage, which is free, not xv, which isn't.
25415         * ange-ftp.el (ange-ftp-file-name-nondirectory):
25416         Don't ever include the host name or user name in the value.
25418 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
25420         * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
25421         of a real newline.
25423 2000-01-09  Stephen Eglen  <stephen@gnu.org>
25425         * dired-x.el (dired-guess-shell-alist-default): Suggest xv
25426         for .png files.
25428 2000-01-09  Per Abrahamsen  <abraham@dina.kvl.dk>
25430         * cus-edit.el (custom-hook-convert-widget): Fix comment.
25432 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
25434         * progmodes/cperl-mode.el: Replace ^F with ^L.
25436         * sendmail.el (toplevel): Provide `sendmail' when compiling before
25437         `require'ing rmail and mailalias to prevent infinite recursion.
25439 2000-01-08  Dave Love  <fx@gnu.org>
25441         * emacs-lisp/backquote.el: Remove inappropriate customization
25442         (allowing custom.el to use backquote).
25444 2000-01-07  Dave Love  <fx@gnu.org>
25446         * add-log.el (add-log-debugging): Deleted.
25447         (add-change-log-entry): Treat a backup FILE-NAME as its parent
25448         file.  Remove debugging code.
25449         (change-log-get-method-definition, change-log-name): Add doc.
25450         (change-log-sortable-date-at): New function.
25451         (change-log-merge): New command.
25453         * time.el (display-time-string-forms): Make the Mail string active.
25454         (display-time-update): Provide help-echo for load average.
25456         * bindings.el (make-mode-line-mouse2-map): New function.
25457         (mode-line-modified): Use it and simplify.
25458         (mode-line-mule-info): Provide help-echo info.
25459         (minor-mode-alist): Activate the strings.
25460         (make-mode-line-mouse-sensitive): Simplify for
25461         mode-line-buffer-identification.
25463 2000-01-07  Gerd Moellmann  <gerd@gnu.org>
25465         * play/pong.el: New file.
25467 2000-01-06  Dave Love  <fx@gnu.org>
25469         * array.el: Assorted cleanups for compiler warnings, doc strings,
25470         `array-' prefix for symbols.
25472 2000-01-05  Dave Love  <fx@gnu.org>
25474         * textmodes/outline.el (outline-mode-menu-bar-map):
25475         Add outline-headers-as-kill.
25476         (outline-mode): Define imenu-generic-expression.
25477         (outline-headers-as-kill): New command.
25479         * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
25480         from paragraph-start.
25481         (paragraph-indent-minor-mode): New command.
25483         * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
25484         M-C-e, M-C-h, C-j, C-xnd, TAB.
25485         (fortran-mode): Set beginning-of-defun, end-of-defun.
25486         (fortran-column-ruler): Simplify.
25487         (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
25488         (fortran-with-subprogram-narrowing): Likewise.
25489         (fortran-indent-subprogram): Call mark-defun.
25490         (fortran-check-for-matching-do): Change narrowing.
25492         * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
25493         (cl-lucid-hash-tag): Delete.
25494         (cl-hash-table-p): Correct test for native table.
25495         (cl-hash-table-count): Use hash-table-count.
25497         * browse-url.el (browse-url): Fix case of
25498         browse-url-browser-function being an alist.
25500 2000-01-05  Carsten Dominik  <cd@gnu.org>
25502         * textmodes/reftex-vars.el (reftex-parse-file-extension)
25503         (reftex-index-phrase-file-extension): New options.
25505         * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
25506         Use new option `reftex-index-phrase-file-extension'.
25508         * textmodes/reftex.el (reftex-access-parse-file): Use new option
25509         `reftex-parse-file-extension'.
25511 2000-01-05  Dave Love  <fx@gnu.org>
25513         * emacs-lisp/lisp.el (beginning-of-defun): New variable.
25514         (beginning-of-defun-raw): Use it.
25515         (end-of-defun): New variable.
25516         (end-of-defun): Use it.
25517         (check-parens): New command.
25519 2000-01-05  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
25521         * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
25522         (hs-show-block): Don't use `mapcar' when not accumulating.
25524         Fix buglet in local variables initialization.
25526 2000-01-05  Andreas Schwab  <schwab@suse.de>
25528         * hscroll.el (hscroll): Doc fix.
25530 2000-01-05  Carsten Dominik  <cd@gnu.org>
25532         * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
25533         Require idlw-toolbar.
25535         * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
25536         file idlw-rinfo.el.
25537         (idlwave-customize): Load must read file idlw-shell.el.
25538         (idlwave-create-customize-menu): Load must read file idlw-shell.el.
25540 2000-01-05  Carsten Dominik  <dominik@astro.uva.nl>
25542         * progmodes/idlw-shell.el: Also provide idlwave-shell
25543         * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
25544         * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
25546         * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
25547         both reftex-dcr and reftex-vcr.
25549         * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
25551 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
25553         * ps-print.el: PostScript code now is in separate files, doc fix.
25554         (ps-print-version): New version number (5.0.3).
25555         (ps-header-lines, ps-left-header, ps-right-header): No more buffer
25556         local.
25557         (ps-spool-config): Initialization fix.
25558         (ps-print-prologue-1, ps-print-prologue-2)
25559         (ps-print-duplex-feature): PostScript code moved to separated file.
25560         (ps-background-image): Little code reformating.
25561         (ps-begin-file, ps-begin-job): Fix code.
25562         (ps-postscript-code-directory, ps-mark-code-directory): New vars.
25563         (ps-prologue-file): New fun.
25565 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
25567         * ps-vars.el: Eliminated.
25569         * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
25570         `;;;###autoload'.
25572         * ps-print.el: ps-vars eliminated, doc fix.
25573         (ps-print-version): New version number (5.0.2).
25574         (ps-spool-config): Initialization fix.
25575         (ps-print-customize): New fun.
25577 2000-01-04  Gerd Moellmann  <gerd@gnu.org>
25579         * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
25581 2000-01-04  Dave Love  <fx@gnu.org>
25583         * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
25584         menu items.
25586 2000-01-03  Dave Love  <fx@gnu.org>
25588         * elide-head.el (elide-head) [defgroup]: Add :version.
25590         * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
25591         (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
25592         Use `cl-hash-table-p', not `hash-table-p'.
25593         (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
25595 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
25597         * faces.el (face-read-integer, read-face-attribute)
25598         (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
25600 2000-01-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
25602         * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
25603         at comment end, and re-insert them after filling.
25605 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
25607         * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
25608         * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
25609         progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
25611 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
25613         * term/x-win.el (xw-defined-colors): Call color-supported-p,
25614         the new name of face-color-supported-p.
25616         * term/w32-win.el (xw-defined-colors): Likewise.
25618 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
25620         * simple.el (completion-setup-function): Count completion-size
25621         from minibuffer-prompt-end, not from point-min.
25623 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
25625         * faces.el (read-face-attribute, defined-colors, color-defined-p):
25626         Pass the frame to tty-color-* functions.
25627         (display-color-p, frame-set-background-mode): Pass the frame to
25628         tty-display-color-p.
25630         * term/tty-colors.el (tty-defined-color-alist): Renamed from
25631         tty-color-alist.
25632         (tty-color-alist, tty-modify-color-alist): New functions.
25633         (tty-color-define,  tty-color-clear, tty-color-approximate)
25634         (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
25635         optional parameter FRAME.
25637 2000-01-01  Gerd Moellmann  <gerd@gnu.org>
25639         * image.el (create-image, defimage): Don't assume image data is
25640         a string.
25642         * image.el (defimage): Handle specifications containing :data
25643         instead of :file.
25644         (image-type-from-data): New function.
25645         (image-type-from-file-header): Use it.
25646         (create-image): Add parameter DATA-P.
25648 See ChangeLog.8 for earlier changes.
25650 ;; Local Variables:
25651 ;; coding: iso-2022-7bit
25652 ;; End:
25654     Copyright (C) 2000, 2001 Free Software Foundation, Inc.
25655   Copying and distribution of this file, with or without modification,
25656   are permitted provided the copyright notice and this notice are preserved.