*** empty log message ***
[emacs.git] / lisp / ChangeLog
blob237b8879aa5aaf6fa617dc2a3de500a232f73af8
1 2001-10-12  Stefan Monnier  <monnier@cs.yale.edu>
3         * progmodes/cperl-mode.el: Merged in changes from v4.32.
4          After 4.23 and: After 4.24:
5         (cperl-contract-levels): Restore position.
6         (cperl-beautify-level): Likewise.
7         (cperl-beautify-regexp): Likewise.
8         (cperl-commentify): Rudimental support for length=1 runs
9         (cperl-find-pods-heres): Process 1-char long REx comments too /a#/x
10          After 4.25:
11         (cperl-commentify): Was recognizing length=2 "strings" as length=1.
12         (imenu-example--create-perl-index): Was not enforcing
13         syntaxification-to-the-end.
14         (cperl-invert-if-unless): Allow `for', `foreach'.
15         (cperl-find-pods-heres): Quote `cperl-nonoverridable-face'.
16         Mark qw(), m()x as indentable.
17         (cperl-init-faces): Highlight `sysopen' too.
18         Highlight $var in `for my $var' too.
19         (cperl-invert-if-unless): Was leaving whitespace at end.
20         (cperl-linefeed): Was splitting $var{$foo} if point after `{'.
21         (cperl-calculate-indent): Remove old commented out code.
22         Support (primitive) indentation of qw(), m()x.
23          After 4.26:
24         (cperl-problems): Mention `fill-paragraph' on comment. \"" and
25         q [] with intervening newlines.
26         (cperl-autoindent-on-semi): New customization variable.
27         (cperl-electric-semi): Use `cperl-autoindent-on-semi'.
28         (cperl-tips): Mention how to make CPerl the default mode.
29         (cperl-mode): Support `outline-minor-mode'.  From Mark A. Hershberger.
30         (cperl-outline-level): New function.
31         (cperl-highlight-variables-indiscriminately): New customization var.
32         (cperl-init-faces): Use `cperl-highlight-variables-indiscriminately'.
33         From Sean Kamath <kamath@pogo.wv.tek.com>.
34         (cperl-after-block-p): Support CHECK and INIT.
35         (cperl-init-faces, cperl-short-docs): Likewise and "our".
36         From Doug MacEachern <dougm@covalent.net>.
37          After 4.27:
38         (cperl-find-pods-heres): Recognize \"" as a string.
39         Mark whitespace between q and [] as `syntax-type' => `prestring'.
40         Allow whitespace between << and "FOO".
41         (cperl-problems): Remove \"" and q [] with intervening newlines.
42         Mention multiple <<EOF as unsupported.
43         (cperl-highlight-variables-indiscriminately): Doc misprint fixed.
44         (cperl-indent-parens-as-block): New configuration variable.
45         (cperl-calculate-indent): Merge cases of indenting non-BLOCK groups.
46         Use `cperl-indent-parens-as-block'.
47         (cperl-find-pods-heres): Test for =cut without empty line instead of
48         complaining about no =cut.
49         (cperl-electric-pod): Change the REx for POD from "\n\n=" to "^\n=".
50         (cperl-find-pods-heres): Likewise.
51         (cperl-electric-pod): Change `forward-sexp' to `forward-word':
52         POD could've been marked as comment already.
53         (cperl-unwind-to-safe): Unwind before start of POD too.
54          After 4.28:
55         (cperl-forward-re): Throw an error at proper moment REx unfinished.
56          After 4.29:
57         (x-color-defined-p): Make an extra case to peacify the warning.
58         Toplevel: `defvar' to peacify the warnings.
59         (cperl-find-pods-heres): Could access `font-lock-comment-face' in -nw.
60         No -nw-compile time warnings now.
61         (cperl-find-tags): TAGS file had too short substring-to-search.
62         Be less verbose in non-interactive mode
63         (imenu-example--create-perl-index): Set index-marker after name
64         (cperl-outline-regexp): New variable.
65         (cperl-outline-level): Made compatible with `cperl-outline-regexp'.
66         (cperl-mode): Made use `cperl-outline-regexp'.
67          After 4.30:
68         (cperl-find-pods-heres): =cut the last thing, no blank line, was error.
69         (cperl-outline-level): Make start-of-file same level as `package'.
70          After 4.31:
71         (cperl-electric-pod): `head1' and `over' electric only if empty.
72         (cperl-unreadable-ok): New variable.
73         (cperl-find-tags): Use `cperl-unreadable-ok', do not fail
74         on an unreadable file.
75         (cperl-write-tags): Use `cperl-unreadable-ok', do not fail
76         on an unreadable directory.
78         * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
79         Consider the text between two errors as belonging to the first error.
80         (compilation-goto-locus): Use pop-to-buffer rather than
81         switch-to-buffer-other-frame.
83         * progmodes/awk-mode.el (awk-mode-syntax-table): / has string syntax.
84         (awk-font-lock-syntactic-keywords): New var.
85         (awk-mode): Use it.
87         * expand.el (expand-c-for-skeleton): Add explicit terminating \n.
89         * faces.el (describe-face): Call help-setup-xref earlier.
91         * jka-compr.el (jka-compr-load-suffixes): New var.
92         (jka-compr-install): Add its content to load-suffixes.
93         (jka-compr-uninstall): Remove its content from load-suffixes.
95 2001-10-12  Sam Steingold  <sds@gnu.org>
97         * bindings.el (completion-ignored-extensions): CL-related
98         extensions are platform-independent.
100         * net/ange-ftp.el (ange-ftp-copy-files-async): New function for
101         asynchronous multiple file copying.
103 2001-10-12  Gerd Moellmann  <gerd@gnu.org>
105         * emacs-lisp/bytecomp.el (byte-compile-check-lambda-list):
106         New function checking that lambda-list consists of non-constant
107         symbols, that &rest and &optional are followed by variable names,
108         that &rest VAR is the last element, and that variables aren't doubled.
109         (byte-compile-lambda): Use it.
111 2001-10-12  Eli Barzilay <eli@barzilay.org>
113         * calculator.el (calculator-eng-display): Don't call concat
114         with an integer argument.
116 2001-10-12  Miles Bader  <miles@gnu.org>
118         * help-mode.el (help-customize-face): New button-type.
120         * faces.el (list-faces-display): Fix args to `help-xref-button'.
121         (describe-face): Fix args to `help-xref-button'.
122         Don't switch to help-buffer around call to `help-setup-xref'.
123         Use `help-buffer' instead of hard-wired "*Help*".
124         Require `help-mode'.
126 2001-10-11  Stefan Monnier  <monnier@cs.yale.edu>
128         * net/goto-addr.el (goto-address-mail-regexp): Allow + in username.
130         * help-mode.el (help-buffer): New function.
131         Returns the buffer-name to use for help output.
132         Change all the code to use it instead of hard-coding *Help*.
133         (help-mode-map): Put back the mouse-2 binding.
134         (help-xref-stack): Change the format and make buffer-local.
135         (help-xref-stack-item): Make buffer-local.
136         (help-setup-xref): Do the `push' here rather than in help-do-xref.
137         (help-xref-interned): Display the face doc as well.
138         (help-follow-mouse): Re-introduce.
139         (help-xref-go-back): Adapt to the new use of help-xref-stack.
140         (help-do-xref): Don't `push' any more.
141         (help-follow): Also follow face names.
143         * help-funs.el (describe-function-1): Remove unused `parens' arg.
144         Don't call help-setup-xref anymore and remove its `interactive-p' arg.
145         Autoload and cleanup.
146         (describe-function): Call help-setup-xref.
147         (describe-variable): Call help-setup-xref earlier.
149         * help.el (describe-bindings-internal): New fun moved from keymap.c.
150         (view-lossage): Call help-setup-xref correctly and earlier.
151         (describe-bindings): Call help-setup-xref earlier.
152         (describe-key): Call help-setup-xref.  Fix call to describe-function-1.
153         (describe-mode): Don't autoload.  Call help-setup-xref earlier.
155 2001-10-11  Gerd Moellmann  <gerd@gnu.org>
157         * master.el (master-mode): Use define-minor-mode instead of
158         easy-mmode-define-minor-mode.  Add autload cookie.
159         (Commentary): Remove the line showing how to autoload master-mode,
160         since it's always autoloaded.
162         * master.el: New file.
164 2001-10-11  Dave Love  <fx@gnu.org>
166         * emacs-lisp/byte-opt.el (byte-optimize-lapcode)
167         <byte-constref-ops>: Consider byte-constant2 and clarify the code.
168         <const-C varset-X const-C>: Fix car/cdr typo.
170 2001-10-11  Gerd Moellmann  <gerd@gnu.org>
172         * emacs-lisp/bytecomp.el (byte-compile-display-log-head-p):
173         New function extracted from byte-compile-log-1.
174         (byte-compile-log-1): Change output to be more in line with
175         the output of other GNU tools.
176         (byte-compile-warn): Emit `warning' instead of `**' for warnings.
177         (byte-compile-report-error): Downcase error message.
178         Use `error' instead of `!!' for error messages.
179         (byte-compile-print-syms): Treat non-interactive case specially.
180         (displaying-byte-compile-warnings): Use backquote.
181         (byte-compile-from-buffer): Bind byte-compile-last-line.
182         (batch-byte-compile): Remove `Done' message.
184 2001-10-10  Stefan Monnier  <monnier@cs.yale.edu>
186         * emacs-lisp/copyright.el (copyright): Add final \n.
188 2001-10-11  Miles Bader  <miles@gnu.org>
190         * diff.el (diff): Display default values in prompts as
191         `(default ...)', not `(...)'.
193         * info.el (Info-follow-reference): Likewise.
195 2001-10-10  Stefan Monnier  <monnier@cs.yale.edu>
197         * emacs-lisp/autoload.el (doc-string-elt): Remove.
199         * newcomment.el (comment-indent): Be a little more robust in case
200         comment-indent-function does funny things.
201         (comment-normalize-vars): Autoload.
202         (comment-region-internal): Fiddle with the visibility spec.
203         (comment-valid-prefix): New function.
204         (comment-indent-new-line): Use it.  Ignore adaptive-fill-prefixes
205         that would turn comment-text into non-comment-text.
207         * emacs-lisp/syntax.el: New file.
209         * progmodes/tcl.el: Change maintainer to FSF and remove loads of
210         compatibility cruft.
211         (tcl-using-emacs-19, tcl-using-emacs-19-23, tcl-using-xemacs-19)
212         (tcl-version, tcl-maintainer, tcl-use-hairy-comment-detector): Remove.
213         (tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
214         tcl-end-of-defun, tcl-mark-defun, tcl-indent-for-comment,
215         tcl-submit-bug-report.
216         (tcl-mode-syntax-table): Leave \f alone.
217         (inferior-tcl-mode-map): Remove bindings for tcl-beginning-of-defun,
218         tcl-end-of-defun, tcl-submit-bug-report.
219         (tcl-xemacs-menu): Fix up and pass it directly to easymenu.
220         (tcl-add-emacs-menu): Remove.
221         (tcl-fill-mode-map, tcl-fill-inferior-map): Moved into the defvar.
222         (tcl-keyword-list): Add `chain'.
223         (tcl-font-lock-syntactic-keywords): New variable.
224         (tcl-pps-has-arg-6): Remove.
225         (tcl-internal-beginning-of-defun, tcl-internal-end-of-defun)
226         (tcl-internal-mark-defun): Remove.
227         (tcl-set-proc-regexp, tcl-set-font-lock-keywords): Use regexp-opt.
228         (tcl-mode): Use define-derived-mode.  Simplify.
229         Set comment-indent-function.
230         (tcl-indent-command): Use line-beginning-position and comment-indent.
231         (tcl-calculate-indent): Renamed from calculate-tcl-indent.
232         (tcl-indent-line): Use tcl-calculate-indent.
233         (tcl-indent-exp): Renamed from indent-tcl-exp.  Use new names.
234         (tcl-add-log-defun): Renamed from add-log-tcl-defun.  Use match-string.
235         (tcl-filter): Use with-current-buffer, simplify.
236         (inferior-tcl-mode): Use define-derived-mode.
237         (tcl-hairy-in-comment): Renamed tcl-in-comment.
238         (tcl-simple-in-comment, tcl-in-comment): Removed.
239         (tcl-files-alist): New function.
240         (tcl-help-snarf-commands): Use it and return the result directly
241         rather than through a global variable.
242         (tcl-reread-help-files): Fix up the call to tcl-help-snarf-commands.
243         (tcl-help-on-word): Provide the default value to completing-read.
244         (tcl-hilit): Remove.
245         (tcl-hashify-buffer, tcl-popup-menu): Simplify.
246         (tcl-comment-indent): New function.
247         (tcl-submit-bug-report): Remove.
248         (tcl-uncomment-region, tcl-indent-for-comment, add-log-tcl-defun)
249         (indent-tcl-exp, calculate-tcl-indent, tcl-beginning-of-defun)
250         (tcl-end-of-defun, tcl-mark-defun, tcl-mark): Redefine as aliases.
252 2001-10-10  Miles Bader  <miles@gnu.org>
254         * info.el (Info-insert-dir): Don't call `Info-fontify-menu-headers'.
255         (Info-fontify-node): Don't fontify the node if it's already been done.
257 2001-10-10  Gerd Moellmann  <gerd@gnu.org>
259         * international/iso-transl.el (iso-transl-e-caret)
260         (iso-transl-i-caret, iso-transl-o-caret, iso-transl-u-caret):
261         Fix duplicates.  From Dave Love <d.love@dl.ac.uk>.
263         * simple.el (end-of-buffer): Fix code scrolling specially
264         for the buffer end.
266         * startup.el (command-line-1): Bind tab-width to 8.
268 2001-10-10  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
270         * emulation/tpu-edt.el: Use defalias instead of fset for
271         user-visible commands.  From Rob Riepel
272         <riepel@Networking.Stanford.EDU>.
274 2001-10-09  Gerd Moellmann  <gerd@gnu.org>
276         * ruler-mode.el: New file.
278 2001-10-09  Miles Bader  <miles@gnu.org>
280         * apropos.el (button): New require.
282         * help-funs.el: New file, contents mostly from `help.el'.
283         (describe-variable): Use `condition-case' instead of `ignore-errors'.
285         * help-mode.el: New file, contents mostly from `help.el'.
287         * help.el: Don't require `view' when compiling.
288         (help-with-tutorial, describe-function, describe-function-1)
289         (variable-at-point, describe-variable, locate-library):
290         Functions moved into `help-funs.el'.
291         (help-manyarg-func-alist): Variable moved into `help-funs.el'.
292         (help-mode, help-mode-setup, help-mode-finish, help-button-action)
293         (help-setup-xref, help-xref-following, help-make-xrefs)
294         (help-xref-button, help-insert-xref-button, help-xref-interned)
295         (help-xref-go-back, help-go-back, help-do-xref, help-follow)
296         (help-xref-on-pp): Functions moved into `help-mode.el'
297         (help-mode-map, help-xref-stack, help-xref-stack-item)
298         (help-highlight-p, help-highlight-face, help-back-label)
299         (help-xref-symbol-regexp, help-xref-mule-regexp)
300         (help-xref-info-regexp): Variables moved into `help-mode.el'.
301         (help-symbol, help-back, help-info, help-customize-variable)
302         (help-function-def, help-variable-def):
303         Button-types moved into `help-mode.el'.
304         (load-symbol-file-load-history, symbol-file):
305         Functions moved into `subr.el'.
306         (symbol-file-load-history-loaded): Variable moved into `subr.el'.
307         (view-lossage): Call `help-setup-xref' instead of doing it manually.
309         * subr.el (symbol-file-load-history-loaded)
310         (load-symbol-file-load-history, symbol-file): Moved from `help.el'.
312         * loadup.el ("button"): Load removed.
314         * button.el (define-button-type): Respect any `supertype' property.
315         (button-type-subtype-p, button-has-type-p): New functions.
317         * rfn-eshadow.el (rfn-eshadow-regexp): Deal correctly with escaped
318         dollar-signs.
320         * comint.el (comint-insert-previous-argument): New function.
321         (comint-mode-map): Bind `C-c .' to `comint-input-previous-argument'.
322         (comint-insert-previous-argument-last-start-pos)
323         (comint-insert-previous-argument-last-index): New variables.
325         * apropos.el (apropos-next-label-button): Use the presence of a
326         `apropos-label' property to detect label buttons.
328 2001-10-08  Miles Bader  <miles@gnu.org>
330         * button.el (next-button, previous-button): Remove N and WRAP
331         parameters.  Don't pay attention to `skip' properties.
332         (forward-button): Implement wrapping, iterating, and skipping here
333         instead.
334         (button-activate): USE-MOUSE-ACTION is optional.
335         (button-nop): Function removed.
336         (default-button): Use `ignore' as default button action.
338         * apropos.el (apropos-next-label-button): Update arguments to
339         `next-button'.
340         (apropos-symbol): Add `skip' property.
341         (apropos-function, apropos-macro, apropos-command)
342         (apropos-variable, apropos-face, apropos-group, apropos-widget)
343         (apropos-plist): New button types.
344         (apropos-label-properties): Variable removed.
345         (apropos-print): Pass button-type to apropos-print-doc, rather
346         than help function and label text.
347         (apropos-print-doc): Remove ACTION and STR args, add TYPE arg.
348         Get button label from TYPE.
350 2001-10-07  Stefan Monnier  <monnier@cs.yale.edu>
352         * help.el (help-mode): Use define-derived-mode.
353         (describe-mode): Add optional `buffer' arg.
354         Use it instead of going through help-xref-mode.
355         Avoid doubling the word `minor' when prettifying.
356         (describe-function-1): List the corresponding key bindings.
357         (describe-variable): Say if the var is automatically buffer-local.
358         If the source is `loaddefs.el', look for the real source.
359         (help-xref-mode): Remove.
361         * emacs-lisp/bytecomp.el (byte-compile-file): Return success when
362         the file says no-byte-compile.
364 2001-10-08  Miles Bader  <miles@gnu.org>
366         * button.el (next-button, previous-button): Respect `skip' property.
368 2001-10-07  Miles Bader  <miles@gnu.org>
370         * woman.el (woman-mode-map): Copy button-buffer-map instead of
371         making a new keymap.  Don't bind mouse-2.  Bind M-mouse-2 to
372         `woman-follow-word' instead of `woman-mouse-2'.
373         (woman-follow-word): Renamed from `woman-mouse-2'.
374         Follow current unconditionally, since this function is now only
375         bound to M-mouse-2.  Use accessor functions.
376         (WoMan-highlight-references): Use `make-text-button'.
377         (woman-xref): New button type.
379         * loadup.el ("faces"): Move load before loading "loaddefs.el".
380         ("button"): New load, just before "help" (which uses it).
382         * help.el (help-mode-map): Make button-buffer-map our parent.
383         Don't bind mouse events or tab/backtab.
384         (help-function, help-variable, help-face, help-coding-system)
385         (help-input-method, help-character-set, help-back, help-info)
386         (help-customize-variable,  help-function-def, help-variable-def):
387         New button types.
388         (help-button-action): New function.
389         (describe-function-1): Pass help button-types to
390         `help-xref-button' rather than help function and help-echo string.
391         Don't put multiple help-function args in a list to pass them to
392         help-xref-button, just pass them as multiple arguments.
393         Use `help-insert-xref-button' to make [back]-button, rather than
394         `help-xref-button'.
395         (help-xref-button): Take a button-type TYPE as a parameter rather
396         than a function.  Remove HELP-ECHO parameter.  Remove DATA parameter
397         and add a &rest parameter ARGS to serve the same purpose.
398         Use `make-text-button' to add the button.
399         (help-insert-xref-button): Use `insert-text-button' to add the button.
400         (help-follow-mouse, help-next-ref, help-previous-ref):
401         Functions removed.
402         (help-do-xref): New function.
403         (help-follow): Use `push-button' and `help-do-xref' to do most of
404         the work.
406         * apropos.el (apropos-symbol, apropos-label): New button types.
407         (apropos-symbol-button-display-help)
408         (apropos-label-button-display-help, apropos-next-label-button):
409         New functions.
410         (apropos-mode-map): Make button-buffer-map our parent.
411         Don't bind mouse events.
412         (apropos-print, apropos-print-doc): Create buttons instead of text
413         properties.
414         (apropos-mouse-follow): Function removed.
415         (apropos-follow): Use buttons.
417         * button.el: New file.
419 2001-10-07  Gerd Moellmann  <gerd@gnu.org>
421         * emacs-lisp/cl.el (most-positive-fixnum, most-negative-fixnum):
422         Remove.
424 2001-10-05  Richard M. Stallman  <rms@gnu.org>
426         * add-log.el (add-change-log-entry): Skip copyright notice
427         and copying permission notice at start of file, if any.
428         Make use of terms "entry" and "item" accord with Emacs manual.
429         Simplify the logic for moving point while entering or creating
430         an entry and then an item.
431         (add-change-log-entry-other-window): Doc fix.
433 2001-10-06  Miles Bader  <miles@gnu.org>
435         * rfn-eshadow.el (read-file-name-electric-shadow): Autoload cookie
436         removed; they apparently don't work with faces.
438 2001-10-05  Sam Steingold  <sds@gnu.org>
440         * textmodes/sgml-mode.el (html-xhtml): New user option.
441         (html-tag-alist, html-horizontal-rule, html-image, html-line)
442         (html-ordered-list, html-unordered-list, html-list-item)
443         (html-paragraph, html-checkboxes, html-radio-buttons): Use it.
444         (sgml-skip-close-p): New function.
445         (sgml-value): Use it.
447 2001-10-05  Sam Steingold  <sds@gnu.org>
449         * calendar/diary-lib.el (diary-entry-compare): When times are
450         identical, compare the entries lexicographically.
452 2001-10-06  Miles Bader  <miles@gnu.org>
454         * rfn-eshadow.el (rfn-eshadow-update-overlay):
455         Use `minibuffer-prompt-end'.
457         * simple.el (previous-matching-history-element): Fix misplaced
458         parentheses.
460 2001-10-05  Miles Bader  <miles@gnu.org>
462         * rfn-eshadow.el: New file.
464 2001-10-05  Miles Bader  <miles@gnu.org>
466         * cus-face.el (custom-face-attributes): Make sure each attribute
467         has a valid default value.  Remove hacks that mapped `nil' to
468         `off' and used nil to mean `unspecified'.  Remove `unspecified'
469         choices from all attributes (unspecified is handled by the parent
470         checklist).
471         * cus-edit.el (custom-face-edit-convert-widget)
472         (custom-face-edit-deactivate, custom-face-edit-activate)
473         (custom-face-edit-delete, custom-face-edit-attribute-tag):
474         New functions.
475         (custom-face-edit): Specify a custom :convert-widget.
476         (custom-pre-filter-face-spec, custom-post-filter-face-spec):
477         Don't pass in default filters that map between `nil' and `off' and
478         `unspecified' and `nil'.
480 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
482         * progmodes/compile.el (compilation-buffer-name): New function.
483         (compile-internal): Use it to determine the name of the
484         compilation buffer.
486 2001-10-05  Miles Bader  <miles@gnu.org>
488         * progmodes/compile.el (grep-use-null-device): New variable.
489         (grep-command): Mention `grep-use-null-device'.
490         (grep-compute-defaults): Compute `grep-use-null-device' if necessary.
491         Make computation of `grep-command' respect `grep-use-null-device'.
492         (grep): Respect `grep-use-null-device'.
493         Call `grep-compute-defaults' even if grep-command is set, if
494         grep-use-null-device is still tentative.
496         * subr.el (call-process-shell-command): New function.
498 2001-10-05  Miles Bader  <miles@gnu.org>
500         * simple.el (previous-matching-history-element)
501         (next-history-element, next-complete-history-element): Use
502         `minibuffer-' functions instead of calling `field-' functions directly.
503         (minibuffer-prompt-end, minibuffer-contents):
504         (minibuffer-contents-no-properties, delete-minibuffer-contents):
505         Functions removed (now subrs).
506         (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
508         * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
509         (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
510         instead of calling `field-' functions directly.
511         (minibuf-eldef-setup-minibuffer): Remove unused variable `prompt'.
513 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
515         * files.el (find-file-noselect): If file's read-only status has
516         changed on disk, ask if buffer's read-only status should be
517         changed, unless NOWARN is set.
519         * emacs-lisp/cl-macs.el (define-setf-expander): Make it an
520         alias for define-setf-method.
522         * bindings.el: Remove no-byte-compile from file local variables
523         to enable bootstrapping.
525 2001-10-04  Andrew Innes  <andrewi@gnu.org>
527         * faces.el (face-font-registry-alternatives) [windows-nt]:
528         Make gb2312 an alias for gb2312.1980.
530 2001-10-04  Stefan Monnier  <monnier@cs.yale.edu>
532         * uniquify.el (uniquify-get-proposed-name): Don't assume dirsep is /.
533         (uniquify-reverse-components): Remove.
535         * emacs-lisp/bytecomp.el (byte-recompile-directory):
536         Make sure the file is readable.
537         (byte-compile-file): Don't compile if `no-byte-compile' is set.
538         (byte-compile-defvar): Update to reflect the change in Fdefvar.
539         (batch-byte-recompile-directory): Pass arg=0.
541         * progmodes/perl-mode.el (perl-indent-continued-arguments): New var.
542         (perl-calculate-indent): Use it.
543         (perl-backward-to-noncomment): Use forward-comment.
545         * derived.el (define-derived-mode, derived-mode-make-docstring):
546         Allow `parent' to be nil.
548         * textmodes/nroff-mode.el (nroff-mode-abbrev-table, nroff-mode):
549         Use define-derived-mode.
550         (nroff-mode-map, nroff-mode-syntax-table): Massage.
552         * mail/mailabbrev.el (mail-abbrev-in-expansion-header-p): Simplify.
554         * emacs-lisp/lselect.el: Use facep iso find-face.
556         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
557         Use regexp-opt.
558         (doc-string-elt): Set symbols' prop.  Copied from autoload.el.
559         (lisp-font-lock-syntactic-face-function): New function.
560         (lisp-mode-variables): Use it.  Make arg optional.
561         (emacs-lisp-mode): Don't pass an arg to lisp-mode-variables.
562         (lisp-mode): Don't pass an arg to lisp-mode-variables.
563         Set comment-start-skip.
565         * emacs-lisp/lisp-mnt.el (lm-history-header): Accept `ChangeLog'.
567         * emacs-lisp/cl-macs.el (frame-parameter): Add a setf method.
568         (ignore-errors): Don't bother using a `err' symbol.
570         * emacs-lisp/autoload.el (autoload-ensure-default-file)
571         (autoload-insert-section-header, autoload-before-p)
572         (autoload-remove-section): New functions.
573         (generate-file-autoloads): Use them.
574         (update-file-autoloads): Use them.  Return FILE if there's no cookie.
575         Make sure the autoload file is properly formatted when creating it.
576         (update-autoloads-from-directories): Use them as well.
577         Only update autoloads for files whose timestamp has changed.
578         Add a dummy entry to remember the files which had no autoload cookies.
580         * timer.el (timer-relative-time): Fix computation for negative `micro'.
582         * subr.el (define-key-after): Allow `key' to be longer than 1.
583         (make-local-hook): Make obsolete.
584         (add-hook, remove-hook): Don't use make-local-hook any more.
585         (make-syntax-table): Inherit all chars from s-s-t.
587 2001-10-04  Gerd Moellmann  <gerd@gnu.org>
589         This is a fix for a report saying that resuming a search with C-s
590         C-s doesn't use the case-fold-search setting of the previous
591         search (C-s ... M-c ... then C-s C-s).
593         * isearch.el (isearch-last-case-fold-search): New variable.
594         (isearch-mode): Remember value of isearch-case-fold-search
595         in isearch-last-case-fold-search.
596         (isearch-done): Quote value of isearch-case-fold-search.
597         (isearch-repeat): When resuming a search, restore
598         isearch-case-fold-search from isearch-last-case-fold-search.
600         Added to NEWS.
602         * startup.el (inhibit-startup-buffer-menu): New user-option.
603         (command-line-1): If inhibit-startup-buffer-menu is set, don't
604         display the buffer menu.  From Simon Josefsson <jas@extundo.com>.
606         This allows upto 99999 messages in the summary without screwing up
607         the summary sorting.  Previously 9999 was the maximum.  Added to NEWS.
609         * mail/rmailsum.el (rmail-make-summary-line)
610         (rmail-make-summary-line-1, rmail-summary-next-same-subject)
611         (rmail-summary-goto-msg, rmail-summary-goto-msg):
612         Allow 5-digit message ids instead of 4.
614         This adds expansion of environment variables in the value
615         specified with M-x setenv.  Added to NEWS.
617         * env.el (substitute-env-vars): New function.
618         (setenv): Add parameter SUBSTITUTE-ENV-VARS.  If set, substitute
619         environment variables in VALUE.  Return VALUE.
621 2001-10-04  Gerd Moellmann  <gerd@gnu.org>
623         * Branch for 21.1.
625 2001-10-03  Stefan Monnier  <monnier@cs.yale.edu>
627         * pcvs-util.el (cvs-prefix-define): Typo cons->concat.
629 2001-10-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
631         * emulation/tpu-edt.el: Make messages match original TPU/edt
632         editor.  From riepel@Stanford.EDU (Rob Riepel).
634 2001-10-03  Eli Zaretskii  <eliz@is.elta.co.il>
636         * rect.el: Update maintainer's email address.
638 2001-10-02  Andreas Schwab  <schwab@suse.de>
640         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long
641         and Extended Passive Mode, resp.
643 2001-10-01  Eli Zaretskii  <eliz@is.elta.co.il>
645         These changes add support for Calendar-related items in the
646         menu bar on tty's as well:
648         * calendar/calendar.el (calendar-mode-map): Require cal-menu
649         unconditionally.
650         (calendar-mode): Set up activate-menubar-hook unconditionally.
652         * calendar/cal-menu.el (cal-menu-x-popup-menu): New function,
653         calls x-popup-menu only if popup menus are supported.
654         (calendar-mouse-insert-hebrew-diary-entry)
655         (calendar-mouse-insert-islamic-diary-entry)
656         (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
657         (calendar-mouse-view-other-diary-entries)
658         (calendar-mouse-print-dates, calendar-mouse-2-date-menu)
659         (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
660         Call cal-menu-x-popup-menu instead of x-popup-menu.
662 2001-10-01  Gerd Moellmann  <gerd@gnu.org>
664         * gs.el (gs-set-ghostview-window-prop): Fix args of `elt'.
666         * emacs-lisp/edebug.el (rx): Add def-edebug-spec.
668         * emacs-lisp/rx.el: New file.
670 2001-10-01  Eli Zaretskii  <eliz@is.elta.co.il>
672         * help.el (help-for-help): Doc fix.  From Pavel@Janik.cz (Pavel Janik).
674 2001-09-30  Eli Zaretskii  <eliz@is.elta.co.il>
676         * frame.el (select-frame-by-name, other-frame): Doc fix.
678 2001-09-29  Eli Zaretskii  <eliz@is.elta.co.il>
680         * play/snake.el (snake-score-file): Use temporary-file-directory
681         instead of a literal "/tmp".  Suggested by Robert
682         <robert@chezmarshall.freeserve.co.uk>.
684         * play/tetris.el (tetris-score-file): Ditto.
686 2001-09-28  Eli Zaretskii  <eliz@is.elta.co.il>
688         * apropos.el (apropos-print): Make the directions inserted at the
689         beginning of the *Apropos* buffer more clear.
691 2001-09-27  Michael Kifer  <kifer@cs.sunysb.edu>
693         * ediff-mult.el (ediff-get-meta-info): Installed Gerd's changes.
694         Added comments.
696 2001-09-27  Stefan Monnier  <monnier@cs.yale.edu>
698         * newcomment.el (comment-normalize-vars): Use " \t" rather than
699         "\\s-" when defining comment-end-skip.
701 2001-09-27  Gerd Moellmann  <gerd@gnu.org>
703         * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
704         Call get-buffer-window first second arg `visible'.
706         * international/mule-diag.el (list-input-methods-1):
707         Output something that's independent of Emacs' version.
709         * tar-mode.el (tar-mode-write-file): Don't signal an error by
710         calling byte-to-position with a nil tar-header-offset.
712 2001-09-27  Simon Josefsson  <jas@extundo.com>
714         * mail/sendmail.el (send-mail-function): Doc fix.
715         (mail-do-fcc): Error if header-end is not a marker.
716         (mail-do-fcc): Add a comment.
717         (mail-reply-to): Doc fix.
718         (mail-signature): Make ATPOINT optional.
719         (mail-yank-original): Use cond instead of nestled if.
721 2001-09-26  Stefan Monnier  <monnier@cs.yale.edu>
723         * info.el (Info-on-current-buffer): Default arg to "Top".
725 2001-09-25  Eli Barzilay  <eli@barzilay.org>
727         * calculator.el (calculator-copy-displayer): New user-option.
728         (calculator-displayer-prev, calculator-displayer-next):
729         Renamed from calculator-displayed-{left,right}.
730         (calculator, calculator-standard-displayer)
731         (calculator-num-to-string, calculator-update-display)
732         (calculator-copy, calculator-put-value): Bug and display fixes.
734 2001-09-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
736         * ebnf2ps.el: Eliminate make-local-hook calls.  Doc fix.
737         (ebnf-version): New version (3.6.1).
739         * ebnf-bnf.el: Fix character range regexp.  Doc fix.
740         (ebnf-bnf-non-terminal-chars): New internal const.
741         (ebnf-bnf-lex): Fix code.
743         * ebnf-iso.el: Fix character range regexp.  Doc fix.
744         (ebnf-iso-non-terminal-chars): New internal const.
745         (ebnf-iso-lex): Fix code.
747         * ebnf-yac.el: Fix character range regexp.  Doc fix.
748         (ebnf-yac-skip-chars): New internal const.
749         (ebnf-yac-skip-code): Fix code.
751 2001-09-24  Stefan Monnier  <monnier@cs.yale.edu>
753         * vc.el (vc-checkin): Use vc-delete-automatic-version-backups.
755         * pcvs-parse.el (cvs-parse-commit): Expand the file name before
756         passing it to VC.
758         * vc-hooks.el (vc-delete-automatic-version-backups): Handle the
759         case where the file is relative.
761 2001-09-24  Gerd Moellmann  <gerd@gnu.org>
763         * xml.el (xml-parse-attlist): Quotes around attributes must be the
764         same on each side.  Make sure we properly handle simple quotes.
765         From Daiki Ueno <ueno@unixuser.org>.
767 2001-09-23  Eli Zaretskii  <eliz@is.elta.co.il>
769         * mail/sendmail.el (mail-mode): Doc fix.  From Simon Josefsson
770         <jas@extundo.com>.
772         * menu-bar.el (top-level): Minor fixes for text of help-echo in
773         some items of the Options menu.
775 2001-09-22  Stefan Monnier  <monnier@cs.yale.edu>
777         * pcvs-parse.el (cvs-parse-commit): Remove the temp files used by VC.
779         * vc-hooks.el (vc-delete-automatic-version-backups):
780         Don't fail if the directory doesn't exist.
782         * diff-mode.el (diff-default-read-only): New var.
783         (diff-mode): Use it.
785 2001-09-22  Eli Zaretskii  <eliz@is.elta.co.il>
787         * hexl.el (hexl-mode-map): Fix the change of 2001-08-23:
788         Use make-keymap instead of copy-keymap, since copying the global
789         keymap messes up the menu bar.
791         * info.el (Info-goto-node, Info-menu): Doc fix.  Suggested by
792         Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
794 2001-09-21  Eli Zaretskii  <eliz@is.elta.co.il>
796         * dired.el (dired-build-subdir-alist): Accept optional arg SWITCHES.
798         * dired-aux.el (dired-insert-subdir): Pass switches to
799         dired-build-subdir-alist.
801 2001-09-21  Stephen Gildea  <gildea@stop.mail-abuse.org>
803         * time-stamp.el (time-stamp-string-preprocess): Fix bug that
804         caused %#a and %#b to be mis-formatted.
806 2001-09-20  Eli Zaretskii  <eliz@is.elta.co.il>
808         * info.el (Info-file-list-for-emacs): Add elements for ada-mode,
809         ccmode, emacs-mime, and eudc manuals.
811 2001-09-19  Sam Steingold  <sds@gnu.org>
813         w32 find cannot be used with `grep-find'.
814         * progmodes/compile.el (find-program): New variable.
815         (grep-compute-defaults): Use it to set `grep-find-command'.
817 2001-09-19  Gerd Moellmann  <gerd@gnu.org>
819         * ps-bdf.el (bdf-read-bitmap): Initialize returned values to defaults.
821 2001-09-19  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
823         * ebnf2ps.el: Replace "Prologue" by "Prolog" in PostScript
824         programming.  Doc fix.
825         (ebnf-version): New version (3.6).
826         (ebnf-eps-begin): Data fix.
827         (ebnf-begin-file): Code fix.
829         * ebnf-bnf.el: Doc fix.
830         (ebnf-bnf-lex): Fix regexp for non-terminal and terminal tokens.
832         * ebnf-iso.el, ebnf-otz.el, ebnf-yac.el: Doc fix.
834 2001-09-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
836         * ps-print.el: Better face mapping for black/white PostScript printers.
837         Check if mark is active when printing a region.  Doc fix.
838         (ps-print-version): New version number (6.5.5).
839         (ps-print-color-p): Customization fix.
840         (ps-black-white-faces): New option.
841         (ps-black-white-faces-alist): New internal var.
842         (ps-count-lines-preprint, ps-print-preprint-region): New funs.
843         (ps-print-region, ps-print-region-with-faces, ps-nb-pages-buffer)
844         (ps-nb-pages-region): Interactive fix.
845         (ps-extend-face-list, ps-extend-face, ps-setup, ps-begin-job)
846         (ps-face-attributes, ps-generate-postscript-with-faces): Code fix.
848 2001-09-18  Eli Zaretskii  <eliz@is.elta.co.il>
850         * dired.el (dired-move-to-filename-regexp): Allow one digit in the
851         numeric month value, and allow the Kanji character after the it to
852         be missing (happens with ls-lisp's output on Japanese versions of
853         MS-Windows).
855 2001-09-18  Miles Bader  <miles@gnu.org>
857         * diff-mode.el (diff-mode): Don't make the buffer read-only if
858         it's empty (and thus probably a new patch file about to be edited).
860 2001-09-17  Gerd Moellmann  <gerd@gnu.org>
862         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
863         Check for '(' in column 0 of doc string.
865         * gs.el (gs-set-ghostview-window-prop): Use `elt' instead
866         of `nth' so that using a vector as bounding-box works.
867         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
869 2001-09-17  Andre Spiegel  <spiegel@gnu.org>
871         * vc.el (vc-annotate): Use current workfile version explicitly as
872         a default, suggested by Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se>.
874 2001-09-16  Eli Zaretskii  <eliz@is.elta.co.il>
876         * ps-bdf.el (bdf-cache-file) <ms-dos>: Use _bdfcache.el, since
877         convert-standard-filename doesn't guarantee that the .el extension
878         is preserved.
880         * dos-fns.el (convert-standard-filename): Replace invalid
881         characters only after converting dash/underscore to a period.
882         (original-make-auto-save-file-name): New.
883         (make-auto-save-file-name): New function, overrides the definition
884         on files.el and calls the original function via
885         original-make-auto-save-file-name.
887         * mail/rmail.el (top-level): Require mule-utils when compiling.
888         (rmail-decode-babyl-format): Use detect-coding-with-priority
889         instead of detect-coding-region, to favor detection of emacs-mule
890         encoded Babyl files written by rmailout.el etc.  Suggested by
891         Kenichi Handa <handa@etl.go.jp>.
893 2001-09-14  Eli Zaretskii  <eliz@is.elta.co.il>
895         * eshell/em-unix.el (eshell-shuffle-files, eshell-shuffle-files):
896         Use `equal', not `=', since the device number can be a cons cell.
898 2001-09-14  Gerd Moellmann  <gerd@gnu.org>
900         * simple.el: Comment out change of 2001-09-13.
902 2001-09-13  Milan Zamazal  <pdm@zamazal.org>
904         * progmodes/compile.el (grep-compute-defaults): Don't set
905         grep-command/grep-find-command when it is already non-nil.
906         (grep-command): Make it a user option.
907         (grep-find-command): Likewise.
909 2001-09-13  Michael Kifer  <kifer@cs.sunysb.edu>
911         * viper-cmd.el (viper-replace-char-subr, viper-envelop-ESC-key):
912         inhibit quit.
914 2001-09-13  Eli Zaretskii  <eliz@is.elta.co.il>
916         * files.el (make-auto-save-file-name): If long file names are not
917         supported on MS-DOS, truncate the file name to DOS 8+3 limits before
918         generating an auto-save file name from it.
920 2001-09-13  Gerd Moellmann  <gerd@gnu.org>
922         * ps-print.el (ps-print-region, ps-print-region-with-faces)
923         (ps-nb-pages-region): Signal an error if called interactively
924         and the mark is not active.
926         * simple.el (minibuffer-prompt-modification)
927         (minibuffer-prompt-insertion): New functions.
928         (minibuffer-prompt-properties): Use `modification-hooks' and
929         `insert-in-front-hooks'.
931 2001-09-12  Richard M. Stallman  <rms@gnu.org>
933         * textmodes/outline.el (outline-regexp): Doc fix.
934         Initialize it in the defcustom, the usual way.
936 2001-09-12  Gerd Moellmann  <gerd@gnu.org>
938         * ediff-mult.el (ediff-get-meta-info): Take into account that data
939         from `ediff-meta-info' properties need not be an overlay.
940         From David Ponce <dponce@voila.fr>.
942         * isearch.el (isearch-intersects-p): Fix end checks.
944 2001-09-11  Eli Zaretskii  <a34785@is.elta.co.il>
946         * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
947         `t' branch of `cond', since Irix 6.1 and up is a special case of
948         the standard dbx interface.
950 2001-09-11  Miles Bader  <miles@gnu.org>
952         * comint.el (comint-send-input): When waiting for echoed input,
953         don't save the expected end position in `echo-end', so that things
954         work properly even if the buffer is modified elsewhere at the same
955         time [this happens if `comint-truncate-buffer' is used].
957 2001-09-11  Gerd Moellmann  <gerd@gnu.org>
959         * textmodes/outline.el (outline-mode): Use `^' and a shy group
960         when constructing imenu-generic-expression from outline-regexp.
962 2001-09-10  Eli Zaretskii  <eliz@is.elta.co.il>
964         * eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
965         `equal' instead of `=', since they can be cons cells.  From Nils
966         Goesche <cartan@cartan.de>.
968 2001-09-10  Andre Spiegel  <spiegel@gnu.org>
970         * vc.el (vc-annotate): Rewrote doc string.
972 2001-09-10  Eli Zaretskii  <eliz@is.elta.co.il>
974         * time-stamp.el: Update Stephen Gildea's email address.
976 2001-09-10  Gerd Moellmann  <gerd@gnu.org>
978         * mail/sendmail.el (mail-send): Obey mail-send-nonascii when
979         enable-multibyte-characters = nil.  From Hallvard B Furuseth
980         <h.b.furuseth@usit.uio.no>.
982 2001-09-09  Michael Kifer  <kifer@cs.sunysb.edu>
984         * ediff-init.el (ediff-highest-priority): Bug fix.
986         * viper-cmd.el (viper-special-read-and-insert-char): New function
987         that reads a character and uses the current input method or
988         iso-accents when appropriate.
990         * viper.el and all others: Corrections to the comment blocks at
991         the top.
993 2001-09-09  Eli Zaretskii  <eliz@is.elta.co.il>
995         * info.el (Info-goto-node): Doc fix.
997 2001-09-07  Gerd Moellmann  <gerd@gnu.org>
999         * isearch.el (isearch-intersects-p): New function.
1000         (isearch-close-unnecessary-overlays): Renamed from *unecessary*,
1001         use isearch-intersects-p, and clean up.
1003 2001-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
1005         * textmodes/ispell.el (ispell-dictionary-alist-4): Add "german"
1006         and "german8", for the new German orthography dictionaries,
1007         (ispell-dictionary-alist-5, ispell-dictionary-alist-6): Rearrange
1008         the entries, to keep the line length balanced for loaddefs.el.
1010 2001-09-07  Dr Francis J. Wright  <F.J.Wright@qmw.ac.uk>
1012         * comint.el (comint-send-input): Handle comint-process-echoes
1013         differently.
1015 2001-09-07  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1017         * locate.el (locate-insert-header): Remove unnecessary whitespace.
1019 2001-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
1021         * arc-mode.el (archive-dostime): Fix a typo in minutes' computation.
1023 2001-09-07  Gerd Moellmann  <gerd@gnu.org>
1025         * server.el (server-switch-buffer):
1026         * textmodes/refer.el (refer-find-entry-internal):
1027         * term/sup-mouse.el (sup-pos-to-window):
1028         * term/bg-mouse.el (bg-window-from-x-y):
1029         * emacs-lisp/edebug.el (edebug-window-live-p):
1030         Use get-window-with-predicate.
1032         * window.el (get-window-with-predicate): Renamed from some-window.
1033         (some-window): Make it an alias.
1035 2001-09-06  Gerd Moellmann  <gerd@gnu.org>
1037         * simple.el (undo): Remove positions from buffer-undo-list up to
1038         the next undo boundary only.
1040 2001-09-06  Eli Zaretskii  <eliz@is.elta.co.il>
1042         * makefile.nt (install): Don't copy sc.el.  Reported by Richard
1043         Kim <ryk@dspwiz.com>
1045         * cus-edit.el (custom-buffer-create-internal): Remove "100%" from
1046         the message "Creating customization items...done".
1048 2001-09-05  Gerd Moellmann  <gerd@gnu.org>
1050         * font-lock.el (toplevel): Require `jit-lock' only if
1051         font-lock-support-mode is set to jit-lock-mode.
1053 2001-09-05  Eli Zaretskii  <eliz@is.elta.co.il>
1055         * international/quail.el (quail-use-package, quail-inactivate)
1056         (quail-activate): Mention the hooks these functions run in their
1057         doc strings.
1059 2001-09-05  Edward M. Reingold <reingold@iit.edu>
1061         * cal-menu.el (calendar-mouse-view-other-diary-entries): Fix name
1062         of file in header of menu.
1064 2001-09-04  Gerd Moellmann  <gerd@gnu.org>
1066         * env.el (setenv): Interactively, if VARIABLE has a current value,
1067         add that to the front of the history, as the doc string says.
1069         * comint.el (comint-send-input): Change help-echo.
1070         From "Dr Francis J. Wright" <F.J.Wright@qmw.ac.uk>.
1072         * bookmark.el (bookmark-write-file): Bind print-length and
1073         print-level to nil.  From Tom Capey <tomc@edina.co.uk>.
1075         * obsolete/uncompress.el: Moved there from lisp/.
1077         * comint.el (comint-insert-clicked-input): Goto point-max before
1078         deleting previous input.  From "Dr Francis J. Wright"
1079         <F.J.Wright@qmw.ac.uk>.
1081         * simple.el (backward-word): Doc fix.
1083 2001-09-03  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
1085         * emacs-lisp/levents.el, emacs-lisp/lucid.el, emacs-lisp/pp.el
1086         * uncompress.el, uniquify.el, vc.el, view.el, window.el
1087         * w32-fns.el: Add Keywords header.
1089 2001-09-04  Eli Zaretskii  <eliz@is.elta.co.il>
1091         * menu-bar.el: Fix separators in the Edit menu.  Bring "Fill" near
1092         "Text Properties".  Suggested by Simon Marshall
1093         <Simon.Marshall@midas-kapiti.com>.
1095 2001-09-04  Andrew Choi  <akochoi@cse.cuhk.edu.hk>
1097         * term/mac-win.el (mac-drag-n-drop): Decode file name by
1098         consulting the value of file-name-coding-system.
1100 2001-09-03  Stefan Monnier  <monnier@cs.yale.edu>
1102         * help.el (describe-function-1): Save precomputed `file-name' rather
1103         than recomputing it (incorrectly) with `symbol-file'.
1105 2001-09-03  Gerd Moellmann  <gerd@gnu.org>
1107         * international/isearch-x.el (isearch-exit-recursive-edit):
1108         Take three parameters, since it's used as an after-change-function.
1110         * emacs-lisp/backquote.el (backquote-backquote-symbol)
1111         (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
1112         from doc strings.
1114 2001-09-02  Milan Zamazal  <pdm@zamazal.org>
1116         * progmodes/glasses.el (glasses-convert-to-unreadable):
1117         Consider underscores as in `glasses-make-readable'.
1119 2001-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
1121         * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
1122         MS-DOS, since cpp might not be available.
1124         * menu-bar.el (menu-bar-edit-menu) <yank-menu, yank>:
1125         Mention "yank" in the help-echo text.
1126         Suggested by Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
1128 2001-09-01  Stefan Monnier  <monnier@cs.yale.edu>
1130         * newcomment.el (comment-indent): Insert spaces more carefully.
1132 2001-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
1134         * mail/emacsbug.el (report-emacs-bug): Make sure *Messages*
1135         exists.  From Andy Petrusenco <andy@int.spb.ru>.
1137         * hi-lock.el (hi-lock-unface-buffer): Don't call x-popup-menu if
1138         display-popup-menus-p returns nil.  Suggested by Andy Petrusenco
1139         <andy@int.spb.ru>.
1141 2001-08-31  Gerd Moellmann  <gerd@gnu.org>
1143         * isearch.el (isearch-mouse-2): Renamed from isearch-mouse-yank.
1144         Instead of running mouse-yank-at-click, see what the event is
1145         bound to outside Isearch and run that.
1147 2001-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
1149         * menu-bar.el (menu-bar-options-menu) <transient-mark-mode>:
1150         Fix the menu entry to mention transient-mark-mode.
1152 2001-08-30  Gerd Moellmann  <gerd@gnu.org>
1154         * simple.el (eval-expression-print-level): Fix last change.
1156         * bindings.el (mode-line-coding-system-map): New variable.
1157         (mode-line-mule-info): Give the "%Z" a local-map keymap.
1159         * simple.el (eval-expression-print-level): Change the type
1160         of the defcustom to allow nil.
1162         * emacs-lisp/find-gc.el: Moved here from lisp/.
1164         * international/quail.el (quail-completion-1):
1165         Reverse the ((CHAR . DEFN) ...) list before processing it.
1166         From Kenichi Handa <handa@etl.go.jp>.
1168         * obsolete/rsz-mini.el, obsolete/sun-curs.el, obsolete/sun-fns.el
1169         * obsolete/x-apollo.el, obsolete/x-menu.el: Moved here from lisp/.
1171 2001-08-30  Eli Zaretskii  <eliz@is.elta.co.il>
1173         * toolbar/tool-bar.el (tool-bar-mode): Make it a no-op if images
1174         aren't supported.  This avoids the annoying gray strip drawn by
1175         the Windows version instead of the missing tool bar.
1177 2001-08-29  Gerd Moellmann  <gerd@gnu.org>
1179         * menu-bar.el (menu-bar-options-menu): Make option text, messages
1180         and tooltips more consistent.  From "Marshall, Simon"
1181         <Simon.Marshall@midas-kapiti.com>.
1183         * startup.el (fancy-splash-screens): Temporarily set
1184         minor-mode-map-alist to nil while displaying splash screens.
1186 2001-08-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1188         * buff-menu.el: Add Keywords header.
1189         Doc fix (C-x C-b is bound to list-buffers).
1191         * dired-x.el: Add keyword files to get listed in finder.
1192         Remove confusing notes about GNU Emacs 19.
1194         * dired.el, dired-aux.el: Add Keywords header.
1196 2001-08-28  Andre Spiegel  <spiegel@gnu.org>
1198         * vc.el (vc-revert-file): Call the backend even if the FILE's
1199         contents can be reverted locally; pass new arg CONTENTS-DONE
1200         down to the backend.
1202         * vc-cvs.el, vc-rcs.el, vc-sccs.el (vc-*-revert-file): Handle new
1203         optional arg CONTENTS-DONE.
1205 2001-08-28  Andrew Innes  <andrewi@gnu.org>
1207         * makefile.nt (DONTCOMPILE): Sync list from makefile.w32-in.
1209 2001-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
1211         * makefile.nt (install): Copy more *.el files.
1213 2001-08-28  Gerd Moellmann  <gerd@gnu.org>
1215         * dired.el (dired-mode-map): Bind `y' to dired-show-file-type
1216         instead of `w' which is already in use.
1218         * gs.el (gs-load-image): Use sleep-for.
1219         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
1221 2001-08-28  Miles Bader  <miles@gnu.org>
1223         * replace.el (query-replace-regexp-eval): Return args from
1224         `interactive' form in correct order.
1226 2001-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
1228         * mouse.el (mouse-buffer-menu): If the buffer menu is split by
1229         major modes, don't create panes for modes for which
1230         mouse-buffer-menu-alist returns an empty alist.
1232 2001-08-28  Thien-Thi Nguyen  <ttn@gnu.org>
1234         * progmodes/hideshow.el: Update first-line description.
1235         Sync comments w/ maintainer version 5.31.
1237         (hs-isearch-open): Default value now `code'.
1238         Fix docstring to use "code blocks" vs "comment blocks",
1239         as opposed to "block" vs "comment".
1240         (hs-flag-region): Accept `hs-isearch-open' value
1241         of `block' as synonymous w/ `code'.
1242         (hs-hide-block-at-point): For code blocks, pass `code'
1243         to `hs-flag-region' instead of `block'.
1245 2001-08-28  Miles Bader  <miles@gnu.org>
1247         * comint.el (comint-next-prompt): Don't loop infinitely if
1248         {next,previous}-single-char-property-change returns its input
1249         position when the search fails.
1251 2001-08-27  Miles Bader  <miles@gnu.org>
1253         * comint.el (comint-get-old-input-default): Don't signal an error
1254         if point is not on an input field; instead, return the current
1255         line (using `comint-bol' to skip any prompt, in case we're not
1256         using fields at all).
1258         * man.el (Man-mode-line-format): Variable removed.
1259         (Man-mode): Change `mode-line-buffer-identification' instead of
1260         `mode-line-format'.
1262 2001-08-27  Gerd Moellmann  <gerd@gnu.org>
1264         * mail/sendmail.el (mail-send-hook): Remove a duplicate defcustom.
1265         From Simon Josefsson <jas@extundo.com>.
1267 2001-08-26  Eli Zaretskii  <eliz@is.elta.co.il>
1269         * textmodes/texnfo-upd.el: Remove dots and exclams at end of error
1270         messages.  From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
1272         * emacs-lisp/levents.el: Specify FSF as Maintainer.  From Pavel
1273         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
1275         * emacs-lisp/lselect.el: Ditto.
1277         * hexl.el (hexl-insert-multibyte-char, hexl-insert-char):
1278         Remove periods from the end of error message strings.
1279         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
1281         * progmodes/antlr-mode.el: Add Keywords header.  From Pavel
1282         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
1284         * net/telnet.el: Ditto.
1286 2001-08-26  Gerd Moellmann  <gerd@gnu.org>
1288         * hl-line.el (hl-line-mode): Add args INIT-VALUE, LIGHTER, and
1289         KEYMAP to the call to define-minor-mode.
1291 2001-08-24  Eli Zaretskii  <eliz@is.elta.co.il>
1293         * term/internal.el (IT-character-translations) <hebrew-iso8859-8>:
1294         Replace some of the undefined characters with emulations of bidi
1295         formatting characters and Niqud as per SI 1311-1.
1296         (IT-unicode-translations): Ditto.
1297         (IT-display-table-setup, IT-setup-unicode-display):
1298         Fill characters without translations with dos-unsupported-char-glyph.
1300 2001-08-24  Simon Josefsson  <jas@extundo.com>
1302         * hl-line.el (hl-line-mode): Don't be a global mode.
1303         (global-hl-line-mode): New function.
1305 2001-08-24  Gerd Moellmann  <gerd@gnu.org>
1307         * gs.el (gs-load-image): Wait for GHOSTVIEW window property
1308         being reset by Ghostscript.  Don't kill the gs process.
1309         From David.Kastrup@neuroinformatik.ruhr-uni-bochum.de.
1311 2001-08-24  Andrew Choi  <akochoi@cse.cuhk.edu.hk>
1313         * term/mac-win.el: Require scroll-bar.
1315 2001-08-23  Stefan Monnier  <monnier@cs.yale.edu>
1317         * ebuff-menu.el (electric-buffer-list): Use list-buffers-noselect.
1319 2001-08-23  Eli Zaretskii  <eliz@is.elta.co.il>
1321         * hexl.el (hexl-insert-multibyte-char) New function.
1322         (hexl-quoted-insert, hexl-self-insert-command)
1323         (hexl-insert-hex-char, hexl-insert-decimal-char)
1324         (hexl-insert-octal-char): Call it instead of hexl-insert-char.
1325         Fix the doc strings accordingly.
1326         (hexl-insert-char): Reject characters whose code is above 255.
1327         Doc fix.
1328         (hexl-mode-map): Copy the global keymap instead of creating a
1329         sparse keymap, and bind all self-inserting characters to
1330         hexl-self-insert-command.
1332 2001-08-22  Stefan Monnier  <monnier@cs.yale.edu>
1334         * wid-edit.el (text): Re-order docstring correctly.
1336         * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp.
1338         * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well.
1340 2001-08-22  Eli Zaretskii  <eliz@is.elta.co.il>
1342         * simple.el (line-number-mode): Mention the variable
1343         line-number-display-limit-width in the doc string.
1345 2001-08-22  Gerd Moellmann  <gerd@gnu.org>
1347         * bindings.el (mode-line-unbury-buffer): Add EVENT parameter.
1348         Temporarily select EVENT's window for switching buffers.
1349         (mode-line-bury-buffer): New function.
1350         (mode-line-buffer-identification-keymap): Use it instead of
1351         bury-buffer.  Bind down-mouse events to prevent global down-mouse
1352         events from shining through.
1354 2001-08-21  Stefan Monnier  <monnier@cs.yale.edu>
1356         * newcomment.el (comment-beginning): Make sure the comment-start
1357         we found isn't a comment-end (in cases where confusion is possible).
1359 2001-08-22  Miles Bader  <miles@gnu.org>
1361         * emacs-lisp/bytecomp.el (byte-compile-file): Remove TARGET-FILE
1362         before writing it, so that hard-links don't see new version.
1364 2001-08-21  Gerd Moellmann  <gerd@gnu.org>
1366         * gs.el (gs-set-ghostview-colors-window-prop):
1367         Call x-change-window-property with 3rd arg FRAME.
1368         (gs-load-image): Wait for a previous Ghostscript process
1369         to complete before starting a new one.
1371         * image.el (image-type-regexps): Make sure that the TIFF
1372         pattern is only matched at the beginning of a string.
1373         From Markus Rost <rost@math.ohio-state.edu>.
1375         * international/swedish.el: Pre-Mule file removed.  From Jonas
1376         Oberg <jonas@gnu.org>.
1378 2001-08-20  Rajesh Vaidheeswarran  <rv@gnu.org>
1380         * whitespace.el (whitespace-abort-on-error): Add custom variable
1381         to whitespace to abort a write-file if whitespace is detected in file.
1383         * whitespace.el (whitespace-write-file-hook): Hook to be called
1384         when writing a file. If `whitespace-abort-on-error' is set, the
1385         write will abort on detecting whitespaces.
1386         If `whitespace-auto-cleanup' is set, the file will be cleaned
1387         automatically prior to writing.
1389         * whitespace.el (whitespace-buffer-search): Let's not insert bogus
1390         whitespaces in the error output!
1392         * whitespace.el (whitespace-check-indent-whitespace): Defaults to
1393         `indent-tabs-mode', since the latter notes user preferences on
1394         TABs anyway.
1396         * whitespace.el (whitespace-version): 3.1. All of the above issues
1397         were raised by Fran\e,Ag\e(Bois Pinard, which led to the fixes described.
1399 2001-08-20  Gerd Moellmann  <gerd@gnu.org>
1401         * textmodes/texnfo-upd.el (texinfo-every-node-update): Remove
1402         some spaces from a message.  From Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>.
1404         * whitespace.el (whitespace-global-mode): Add autoload cookie.
1406 2001-08-20  Alex Schroeder  <alex@gnu.org>
1408         * sql.el (sql-db2): Doc change.
1410 2001-08-20  Alex Schroeder  <alex@gnu.org>
1412         * sql.el (sql-postgres): Add the database at the end of the
1413         parameters instead of at the beginning.
1414         (sql-postgres-options): Doc change.
1416 2001-08-17  Gerd Moellmann  <gerd@gnu.org>
1418         * custom.el (defcustom): Doc fix.
1420 2001-08-16  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1422         * ps-mule.el (find-composition): Check if (char-after POS)
1423         returns a valid character.
1425 2001-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
1427         * hexl.el (hexl-mode, hexl-mode-exit): Adjust hexl-max-address and
1428         original-point for extra CR characters that are added/removed when
1429         the buffer is written/read whose EOL type is -dos.
1431 2001-08-16  Miles Bader  <miles@gnu.org>
1433         * simple.el (line-move): Undo previous change.
1435         * comint.el (comint-send-input): Add `inhibit-line-move-field-capture'
1436         property to input-terminating `boundary' overlays to avoid
1437         line-move wierdness.
1439 2001-08-16  Gerd Moellmann  <gerd@gnu.org>
1441         * lazy-lock.el (lazy-lock-fontify-region): Widen the current
1442         buffer in a save-restriction.  Under one test case with Ediff,
1443         window-scroll-functions are run with a window start that's
1444         temporarily outside of the restriction.
1446 2001-08-16  Robert J. Chassell <bug-texinfo@gnu.org>
1448         * textmodes/texnfo-upd.el: Update copyright notice, fix minor typos.
1449         (texinfo-find-lower-level-node, texinfo-find-higher-level-node)
1450         (texinfo-menu-locate-entry-p, texinfo-start-menu-description)
1451         (texinfo-update-menu-region-beginning)
1452         (texinfo-update-menu-region-end, texinfo-find-pointer): Add new
1453         command, @ifnottex, to regexps, so it is found.
1455 2001-08-16  Andrew Innes  <andrewi@gnu.org>
1457         * makefile.nt (DONTCOMPILE): Omit bindings.el.
1458         (DONTCOMPILE): Omit sc.el.
1460         * makefile.w32-in (DONTCOMPILE): Omit bindings.el.
1461         (DONTCOMPILE): Omit sc.el.
1463 2001-08-16  Gerd Moellmann  <gerd@gnu.org>
1465         * replace.el (occur): Bind inhibit-read-only to t.
1467 2001-08-16  Miles Bader  <miles@gnu.org>
1469         * simple.el (line-move): Pass an ESCAPE-FROM-EDGE argument of t when
1470         calling `constrain-to-field', to avoid problems with comint prompts.
1472 2001-08-15  Gerd Moellmann  <gerd@gnu.org>
1474         * emacs-lisp/cl-indent.el (lisp-indent-defmethod): New function.
1475         (toplevel): Set it as `common-lisp-indent-function' for `defmethod'.
1477         * ediff-mult.el (ediff-get-meta-info): Fix the condition
1478         of a while-loop.
1480         * Makefile.in (DONTCOMPILE): Remove sc.el.
1482         * Makefile.in (finder_setwins): Renamed from nonobsolete_setwins.
1483         Don't include term/.
1485         * mail/sc.el:  Moved to obsolete/.
1487 2001-08-14  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1489         * ps-print.el: Change error function arguments to follow Emacs
1490         message convention.  Doc fix.
1491         (ps-print-version): New version number (6.5.4).
1492         (coding-system-for-write): Change declaration position to avoid
1493         XEmacs compilation gripes.
1494         (coding-system-for-read, buffer-file-coding-system):
1495         Declarations to avoid XEmacs compilation gripes.
1497         * ps-mule.el: Doc fix.
1498         (ps-mule-encode-header-string): If STRING is not a string, replace
1499         STRING by empty string.
1501 2001-08-14  Eli Zaretskii  <eliz@is.elta.co.il>
1503         * frame.el (show-trailing-whitespace): Doc fix.
1505 2001-08-13  Eli Zaretskii  <eliz@is.elta.co.il>
1507         * desktop.el (desktop-save): Insert the coding: tag before
1508         desktop-header.
1510 2001-08-13  Gerd Moellmann  <gerd@gnu.org>
1512         * Makefile.in (TAGS, TAGS-LISP): Remove "loaddefs.el" including
1513         its path from $els.
1515         * image.el (image-jpeg-p): Fix call of substring.
1517 2001-08-10  Gerd Moellmann  <gerd@gnu.org>
1519         * play/animate.el (animate-string): Doc fix.  Use a buffer
1520         name with stars in it.
1521         (animate-sequence): New function.
1522         From Richard Stallman <rms@gnu.org>.
1524         * frame.el (select-frame-set-input-focus): New function
1525         extracted from other-frame.
1526         (other-frame): Use it.
1527         (next-multiframe-window, previous-multiframe-window): Use it.
1529         * isearch.el (isearch-other-meta-char): Don't switch to the
1530         buffer of a window clicked on, when the current buffer is
1531         in Isearch mode.
1533         * image.el (image-jpeg-p): Test for APPn markers in the range
1534         #xe0..#xef.
1536 2001-08-09  Gerd Moellmann  <gerd@gnu.org>
1538         * desktop.el (desktop-save): Don't use concat to form a file
1539         name, use expand-file-name.
1541         * mouse.el (mouse-delete-window): Do nothing if frame has just
1542         one window.
1544         * bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
1545         for the minor mode name.
1547         * view.el (toplevel): Use mode-line-minor-mode-keymap for the
1548         minor mode name.
1550         * time.el (display-time-string-forms): Use make-mode-line-mouse-map
1551         instead of make-mode-line-mouse2-map.
1553         * subr.el (add-minor-mode): Use mode-line-minor-mode-keymap for
1554         the minor mode name.
1556         * emacs-lisp/easy-mmode.el (define-minor-mode):
1557         Use  mode-line-minor-mode-keymap for the minor mode name.
1559         * calendar/calendar.el (calendar-mode-line-format):
1560         Use make-mode-line-mouse-map instead of make-mode-line-mouse2-map.
1562         * bindings.el (make-mode-line-mouse-map): Renamed from
1563         make-mode-line-mouse2-map.  Take additional arg MOUSE.
1564         (mode-line-modified): Use mouse-3 instead of mouse-2.
1565         (mode-line-buffer-identification-keymap): Bind keys differently.
1566         (propertized-buffer-identification): Adapt help-echo to new bindings.
1568         * bindings.el (mode-line-format): Specify help-echo for line
1569         number, column number and buffer-percent part of the mode-line.
1571         * image.el (image-type-regexps): Allow whitespace at the start
1572         of the image data for XPM, XBM and Postscript, which are
1573         text files.
1574         (image-jpeg-p): Correct calculation of next field offset.
1576 2001-08-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1578         * battery.el: Fix typo.
1580 2001-08-08  Gerd Moellmann  <gerd@gnu.org>
1582         * image.el (image-type-regexps): Allow predicates.  Change the way
1583         JPEG images are recognized.
1584         (image-jpeg-p): New function.
1585         (image-type-from-data): Handle predicates in image-type-regexps.
1587         * emacs-lisp/edebug.el (edebug-read-function): Fix handling of
1588         #:, #x, #o, and similar constructs.
1590 2001-08-07  Gerd Moellmann  <gerd@gnu.org>
1592         * vc.el (vc-transfer-file): Fix malformed autoload cookie.
1594         * emulation/viper-util.el (viper-file-checked-in-p): Use `and'
1595         instead of `progn'.
1597         * tar-mode.el (tar-extract): Avoid generating a new buffer
1598         for each file visited.  From Markus Rost <rost@math.ohio-state.edu>.
1600         * textmodes/paragraphs.el (forward-sentence): Avoid building
1601         a regexp from sentence-end.  From Kenichi Handa <handa@etl.go.jp>.
1603         * progmodes/executable.el (executable-set-magic):
1604         If executable-find returns a quoted file name, unquote it before
1605         inserting it.
1607         * image.el (image-type-regexps): For JPEG files, use a regexp
1608         derived from the JFIF spec.
1610         * image.el (image-type-regexps): Use `\`' instead of `^' in
1611         most regular expressions.
1613 2001-08-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1615         * play/animate.el: Re-insert a reference to re-inserted function.
1617 2001-08-06  Gerd Moellmann  <gerd@gnu.org>
1619         * help.el (describe-function-1): Use find-function-search-for-symbol
1620         instead of find-function-noselect because the latter follows aliases.
1622         * play/animate.el (animate-birthday-present): Re-insert.
1624         * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
1625         Handle old-style menu definitions.
1627 2001-08-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1629         * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
1630         * textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
1632         * play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
1633         * emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
1634         * add-log.el, faces.el, mail/sc.el: Specify FSF as Maintainer.
1636 2001-08-05  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1638         * textmodes/tildify.el: Milan Zamazal has new address.
1640 2001-08-03  Gerd Moellmann  <gerd@gnu.org>
1642         * custom.el (custom-set-variables): Don't test `custom-requests'
1643         properties, check the third element of the options passed to
1644         custom-set-variables instead.
1646         * info.el (info-insert-file-contents): Use info-file-exists-p
1647         instead of file-exists-p.
1649         * play/zone.el (zone-pgm-stress): Use unwind-protect to make sure
1650         the mode-line face is restored.  Fix several bugs.
1652         * replace.el (perform-replace): Doc fix.
1654 2001-08-02  Francesco Potorti`  <pot@gnu.org>
1656         * uniquify.el (uniquify-ref-base, uniquify-ref-filename)
1657         (uniquify-ref-buffer, uniquify-ref-proposed): New functions.
1658         (uniquify-fix-item-base, uniquify-fix-item-filename)
1659         (uniquify-fix-item-buffer, uniquify-fix-item-proposed): Deleted.
1660         Callers changed.
1661         (uniquify-set-proposed): Changed to work with a vector item.
1662         (uniquify-rationalize-file-buffer-names): Use a list of arrays for
1663         the fix list, and a list of strings for the non-file buffer
1664         names.  Both changes reduce consing.
1665         (uniquify-rationalize-a-list): Local variable renaming.
1666         (uniquify-rationalize-conflicting-sublist): Use member instead of
1667         assoc.
1668         (uniquify-rename-buffer): Use unless instead of if not.
1670 2001-08-02  Gerd Moellmann  <gerd@gnu.org>
1672         * recentf.el (recentf-dump-variable): Handle a value of nil correctly.
1674         * custom.el (custom-set-variables): Set options with :require
1675         clauses last.
1677         * custom.el (defcustom): Doc fix.
1679         * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el.
1681 2001-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
1683         * man.el (man): Mention Man-switches in the doc string.
1684         (Man-switches): Mention -a in the doc string.
1686         * textmodes/ispell.el (ispell-alternate-dictionary):
1687         Add /usr/share/lib/dict/words, for Irix.
1689         * bindings.el: Bind shifted and control-shifted kp-* keys to the
1690         corresponding non-kp keys.  Suggested by Stephen Gildea
1691         <gildea@stop.mail-abuse.org>.
1693 2001-08-01  Francesco Potorti`  <pot@gnu.org>
1695         * uniquify.el: These changes correct a corner case that the old
1696         code managed correctly.
1697         (uniquify-fix-item-proposed): Renamed from
1698         uniquify-fix-item-min-proposed.
1699         (uniquify-set-proposed): New function.
1700         (uniquify-rationalize-file-buffer-names): Code reshuffled for
1701         clarity and speed.
1702         (uniquify-item-greaterp): Substitutes uniquify-item-lessp.
1703         This is equivalent to what the old code did.
1704         (uniquify-rationalize-a-list): Never recompute the proposed
1705         name.  Sort the conflicting sublist before rationalising it: this
1706         is equivalent to what the old code did, but one directory element
1707         at a time, and only when necessary.
1708         (uniquify-rationalize-conflicting-sublist): Recompute here the
1709         proposed name.
1711 2001-08-01  Gerd Moellmann  <gerd@gnu.org>
1713         * play/animate.el: Add Keywords and Maintainer.  Remove a
1714         reference to a removed function.
1716         * play/animate.el (animate-string): Handle case that the string is
1717         longer than the window is wide.
1719 2001-07-31  Gerd Moellmann  <gerd@gnu.org>
1721         * desktop.el (desktop-save): Bind coding-system-for-write to
1722         `emacs-mule' for write-region.
1724         * delsel.el (delete-selection-pre-hook): Don't set this-command
1725         to `ignore' if the region is empty.
1727         * international/mule.el (set-keyboard-coding-system):
1728         Set keyboard-coding-system.
1730         * smerge-mode.el (smerge-mode): Check if `font-lock-mode' is bound
1731         before accessing it.
1733 2001-07-30  Andreas Schwab  <schwab@suse.de>
1735         * menu-bar.el (toggle-highlight-paren-mode):
1736         Use `(show-paren-mode)' as body.
1738 2001-07-30  Andre Spiegel  <spiegel@gnu.org>
1740         * vc.el (vc-checkout-hook): New hook.
1741         (vc-checkout): Run it.
1743 2001-07-30  Eli Zaretskii  <eliz@is.elta.co.il>
1745         * progmodes/make-mode.el (makefile-macroassign-regex):
1746         Recognize the ?= operator.  From Jonathan Kamens <jik@curl.com>.
1748 2001-07-30  Gerd Moellmann  <gerd@gnu.org>
1750         * vc.el (vc-switch-backend): Fix autoload cookie.
1752         * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
1753         the desktop file.
1755 2001-07-30  Simon Josefsson  <jas@extundo.com>
1757         * mail/mail-utils.el (mail-strip-quoted-names): Replace text
1758         literally.  Reported by Sean Rima <sean@**Delete**.tcob1.net>.
1760 2001-07-27  Gerd Moellmann  <gerd@gnu.org>
1762         * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
1763         (last-sexp-toggle-display): Renamed from last-sexp-print.
1764         (last-sexp-toggle-display, eval-last-sexp-1):
1765         Use last-sexp-setup-props.
1767         * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
1768         New user-options.
1769         (mouse-wheel-change-button): New function.
1770         (mouse-wheel-mode): Use mouse-wheel-{up,down}-button.
1771         (mwheel-scroll): Ditto.
1773 2001-07-26  Gerd Moellmann  <gerd@gnu.org>
1775         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Don't search for
1776         `...', compare with unabbreviated printed representation instead.
1777         (last-sexp-print): Bind print-length and print-level to nil.
1779         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Look for a `...'
1780         before assigning text properties.  Make properties rear-nonsticky.
1782         * emacs-lisp/lisp-mode.el (last-sexp-print): New function.
1783         (eval-last-sexp-1): Give printed text a `keymap' property and bind
1784         <mouse-2> and <RET> in that map to a function printing the
1785         unabbreviated value.
1787         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
1788         is a buffer, put a text property `printed-value' on the printed
1789         representation, with the Lisp object printed as value.
1791 2001-07-25  Eli Zaretskii  <eliz@is.elta.co.il>
1793         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-defun):
1794         Mention the effect of eval-expression-print-length and
1795         eval-expression-print-level in the doc strings.  Suggested by
1796         Kevin Gallagher <kevingal@onramp.net>.
1798 2001-07-25  Gerd Moellmann  <gerd@gnu.org>
1800         * xt-mouse.el (xterm-mouse-event): Recognize control sequences
1801         for buttons > 3.
1802         (xterm-mouse-translate): Handle the case that we don't get a
1803         down-event.
1805         * emacs-lisp/find-func.el (find-function-regexp):
1806         Add easy-mmode-define-global-mode to the regexp.  Allow newlines
1807         in front of the function name.
1809         * isearch.el (isearch-other-meta-char): Fix last change.
1811         * isearch.el (isearch-other-meta-char): Don't modify mode-line and
1812         similar events for which fake prefix keys are generated.  It's no
1813         longer necessary since read_key_sequence doesn't modify these
1814         events for internal purposes anymore.
1816         * files.el (auto-mode-alist): Use nroff-mode for files ending
1817         in `.9'.  From Assar Westerlund  <assar@stacken.kth.se>.
1819 2001-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
1821         * avoid.el (mouse-avoidance-too-close-p): If the frame lacks a
1822         tool-bar-lines parameter, behave as if its value were zero.
1823         (mouse-avoidance-set-pointer-shape): Don't do anything if
1824         x-pointer-shape is not boundp.
1826 2001-07-23  Francesco Potorti`  <pot@gnu.org>
1828         * uniquify.el: Overall speedup changes when using many buffers.
1829         (uniquify-fix-item-base, uniquify-fix-item-filename)
1830         (uniquify-fix-item-buffer): Changed defmacro to defalias (cosmetic).
1831         (uniquify-fix-item-unrationalized-buffer): Deleted: was the fourth
1832         place in the item, but was never used.
1833         (uniquify-fix-item-min-proposed): New defalias: the fourth place
1834         in the item is now used as cache for the proposed name.
1835         (uniquify-rationalize-file-buffer-names): Move computation made on
1836         newbuffile out of the loop, in the newbuffile-nd local var.
1837         Use dolist (cosmetic change).  Compute the proposed name for the most
1838         common case and cache it in the fourth place in the item.
1839         (uniquify-rationalize-file-buffer-names): Used to return a a list
1840         of buffer whose name was changed, but that return value was never used.
1841         (uniquify-item-lessp): Replaces uniquify-filename-lessp, works on
1842         the cached proposed name, does much less consing and is quicker.
1843         (uniquify-filename-lessp): Deleted.
1844         (uniquify-rationalize-a-list): Use dolist (cosmetic change).
1845         Do not bind locally the uniquify-possibly-resolvable flag.  Use the
1846         cached proposed name is possible.
1847         (uniquify-get-proposed-name): Arguments changed, callers changed.
1848         (uniquify-rationalize-conflicting-sublist): Explicitely reset the
1849         uniquify-possibly-resolvable flag, which is no more bound locally.
1850         (uniquify-rename-buffer): Do not set the old unrationalised-buffer
1851         flag, which does not exist any more.
1853 2001-07-23  Eli Zaretskii  <eliz@is.elta.co.il>
1855         * term/internal.el (IT-unicode-translations): Fix the appearance of
1856         "6`".
1858         * progmodes/compile.el (compile-internal): If EMACS is already
1859         defined in the environment, don't override its value.
1861 2001-07-23  Gerd Moellmann  <gerd@gnu.org>
1863         * play/fortune.el: Undo change of 2001-07-13.
1864         Fix autoload cookies.  Add types to defcustoms.
1865         (fortune) <defgroup>: Add :link.
1866         (fortune-from-region): Use eq, not eql.
1867         From Dave Love <fx@gnu.org>.
1869         * play/animate.el (animate-birthday-present): Function removed.
1871         * play/animate.el: New file.
1873 2001-07-22  Eli Zaretskii  <eliz@is.elta.co.il>
1875         * startup.el (normal-top-level-add-subdirs-to-load-path):
1876         On Windows, put into normal-top-level-add-subdirs-inode-list the
1877         canonicalized names of the directories instead of inode numbers.
1879 2001-07-21  Michael Kifer  <kifer@cs.sunysb.edu>
1881         * ediff-util.el: Copyright years.
1882         (ediff-choose-syntax-table): New function.
1883         (ediff-setup): Use ediff-choose-syntax-table.
1884         (ediff-file-checked-out-p,ediff-file-checked-in-p): Check if
1885         vc-state is available.
1886         (ediff-make-temp-file): Use ediff-coding-system-for-write.
1888         * ediff-init.el (ediff-with-syntax-table): New macro, uses
1889         with-syntax-table.
1890         (ediff-coding-system-for-read): From ediff-diff.el
1891         (ediff-coding-system-for-write): New variable.
1892         (ediff-highest-priority): Fixed the bug having to do with disappearing
1893         overlays.
1894         (ediff-file-remote-p): Use file-remote-p, if available.
1895         (ediff-listable-file): New function.
1896         (ediff-file-attributes): Use ediff-listable-file.
1898         * ediff-mult.el (ediff-meta-insert-file-info1):
1899         Use ediff-listable-file.
1901         * ediff-ptch.el (ediff-prompt-for-patch-file):
1902         Use ediff-coding-system-for-read.
1903         (ediff-patch-file-internal): Use ediff-coding-system-for-write.
1905         * ediff-diff.el (ediff-coding-system-for-read): Moved to ediff-init.el.
1906         (ediff-match-diff3-line,ediff-get-diff3-group): Improved pattern.
1908         * ediff.el: Date of last update, copyright years.
1910         * ediff-wind (ediff-setup-control-frame): Nill->nil.
1912         * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
1913         of Scott Bronson.
1914         (ex-cmd-assoc,ex-compile,ex-cmd-one-letr): New functions.
1915         (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
1916         Deleted functions.
1917         (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
1918         ex-token-list.
1919         (viper-get-ex-address-subr): Convert registers to char data type.
1921         * viper-util.el (viper-int-to-char,viper-char-equal): New functions.
1922         (viper-memq-char): Use viper-int-to-char.
1923         (viper-file-checked-in-p): Use vc-locking-user, if vc doesn't have
1924         vc-locking-state.
1925         (viper-read-key): Use viper-read-key-sequence.
1927         * viper.el (viper-major-mode-modifier-list):
1928         Added inferior-emacs-lisp-mode.
1929         (this-major-mode-requires-vi-state): New function that uses simple
1930         heuristics to decide if vi state is appropriate.
1931         (set-viper-state-in-major-mode): Use this-major-mode-requires-vi-state.
1932         (viper-non-hook-settings): Don't advise read-key-sequence.
1933         (viper-read-key-sequence): New function that replaces the
1934         previously used advice to read-key-sequence.
1936         * viper-cmd.el (viper-test-com-defun,viper-exec-change)
1937         (viper-exec-Change,viper-execute-com,viper-insert,viper-append)
1938         (viper-Append,viper-Insert,viper-open-line,viper-Open-line)
1939         (viper-open-line-at-point,viper-substitute,viper-overwrite)
1940         (viper-replace-char-subr,viper-forward-word,viper-forward-Word):
1941         Got rid of the negative character hack.
1942         (viper-escape-to-state,viper-replace-state-exit-cmd):
1943         Use viper-read-key-sequence.
1944         (viper-envelop-ESC-key): No need for ad-get-orig-definition.
1945         (viper-minibuffer-standard-hook,viper-read-string-with-history):
1946         Don't override existing minibuffer-setup-hook.
1947         (viper-mark-point,viper-goto-mark-subr,viper-brac-function):
1948         Convert registers to char data type.
1949         (viper-autoindent): Use viper-indent-line.
1951         * viper-keym.el: Use viper-exec-key-in-emacs.
1953 2001-07-20  Stefan Monnier  <monnier@cs.yale.edu>
1955         * server.el (server-visit-files): Fix variable name typo.
1957 2001-07-20  Gerd Moellmann  <gerd@gnu.org>
1959         * simple.el (delete-trailing-whitespace): Save match data
1960         around looking-at.  From Markus Rost <rost@math.ohio-state.edu>.
1962 2001-07-19  Stefan Monnier  <monnier@cs.yale.edu>
1964         * progmodes/compile.el (compilation-parse-errors): `linenum' might
1965         return a this-error using the alternative format (a pair of markers).
1967 2001-07-19  Gerd Moellmann  <gerd@gnu.org>
1969         * font-lock.el (c++-keywords): Add Standard C++ operator names.
1971         * mail/mh-utils.el (mh-find-progs): Also search in `lib'.
1972         From Mats Bengtsson <mats.bengtsson@s3.kth.se>,
1974 2001-07-17  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1976         * international/iso-transl.el: Fix typo in the header of the file.
1978         * textmodes/picture.el (picture): Doc fix.
1980         * international/ja-dic-cnv.el (skkdic-convert): Some fixes to
1981         follow coding conventions in generated files.
1983 2001-07-17  Eli Zaretskii  <eliz@is.elta.co.il>
1985         * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
1986         (tool-bar-add-item): Don't call image-related primitives if the
1987         display doesn't support images.
1989         * frame.el (display-images-p): New function.
1991 2001-07-17  Gerd Moellmann  <gerd@gnu.org>
1993         * server.el (server-visit-files): Handle the case the specified
1994         column number is <= 0.
1996 2001-07-17  Jan Nieuwenhuizen  <jan@netland.nl>
1998         * startup.el (command-line-1): Add support for +LINE:COLUMN
1999         command line argument.
2001 2000-07-17  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
2003         * server.el (server-process-filter, server-visit-files):
2004         Add support for +LINE:COLUMN style emacsclient calls.
2006 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2008         * emacs-lisp/easy-mmode.el: Add Keywords header.
2010         * play/pong.el: Author has new address.
2012         * play/landmark.el: Author is no more reachable.
2014         * play/handwrite.el: Author is no more reachable.
2016 2001-07-17  Stefan Monnier  <monnier@cs.yale.edu>
2018         * term/sun.el (ignore-key, sun-esc-bracket, meta-flag): Remove.
2019         (sun-raw-prefix): Replace t3, t4, t6, and t7 with f3, f4, f6 and f7.
2020         Complete bindings for F<1..12> keys.
2021         (global-map): Remove `undo' binding (already in the default).
2022         Replace `t<n>' bindings with `f<n>' bindings.
2024 2001-07-16  Stefan Monnier  <monnier@cs.yale.edu>
2026         * progmodes/tcl.el (tcl-fill-mode-map): Use tcl-indent-exp.
2027         (tcl-mode): Use tcl-add-log-defun.
2028         (tcl-indent-line): Use tcl-calculate-indent.
2029         (tcl-calculate-indent): Renamed from calculate-tcl-indent.
2030         (tcl-indent-exp): Renamed from indent-tcl-exp.
2031         (tcl-add-log-defun): Renamed from add-log-tcl-defun.
2032         (tcl-indent-for-comment): Call comment-indent-function properly
2033         and handle the case where it returns nil.
2035 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
2037         * calendar/cal-islam.el (calendar-goto-islamic-date):
2038         Remove autoload cookie.
2040         * calendar/calendar.el (calendar-goto-islamic-date):
2041         Add call to autoload.
2043 2001-07-16  Stefan Monnier  <monnier@cs.yale.edu>
2045         * progmodes/ada-mode.el (ada-mode): Avoid unneeded version checks.
2046         Don't change compile-auto-highlight globally.
2047         Don't bother with `font-lock-defaults' property since XEmacs
2048         also understands the `font-lock-defaults' variable.
2049         Use make-local-variable rather than make-variable-buffer-local.
2050         Don't `defconst' comment-indent-function: keep the default.
2051         Call easy-menu-add unconditionally.
2052         (ada-create-keymap): Use [(shift tab)] so it works on both Emacsen.
2053         (ada-create-menu): Use :included for Emacs as well.
2055         * vc.el (vc-do-command): Autoload.
2057         * progmodes/ada-xref.el (ada-xref-initialize): Fix call to add-hook.
2059 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2061         * ps-print.el: Fix Author: header.
2063 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
2065         * mouse-sel.el (mouse-sel-bindings): Instead of unbinding
2066         mouse-1 etc., bind them to `ignore'.
2068         * eshell/esh-mode.el (eshell-send-invisible): Renamed from
2069         send-invisible, which is already defined in Comint.
2070         (eshell-watch-for-password-prompt): Use it.
2072 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2074         * which-func.el (which-func-mode): Doc fix.
2076         * align.el, apropos.el, autorevert.el, battery.el, bookmark.el,
2077         * calculator.el, calendar/todo-mode.el, complete.el, cus-dep.el,
2078         * cus-edit.el, cus-face.el, delim-col.el, dos-fns.el, double.el,
2079         * edmacro.el, elide-head.el, emacs-lisp/autoload.el,
2080         * emacs-lisp/checkdoc.el, emacs-lisp/cl-compat.el,
2081         * emacs-lisp/cl-specs.el, emacs-lisp/copyright.el,
2082         * emacs-lisp/cust-print.el, emacs-lisp/easy-mmode.el,
2083         * emacs-lisp/elint.el, emacs-lisp/ewoc.el, emacs-lisp/find-func.el,
2084         * emacs-lisp/pp.el, emacs-lisp/re-builder.el, emacs-lisp/shadow.el,
2085         * emacs-lisp/sregex.el, emerge.el, emulation/edt-lk201.el,
2086         * emulation/edt-mapper.el, emulation/edt-pc.el,
2087         * emulation/edt-vt100.el, emulation/edt.el, emulation/pc-select.el,
2088         * emulation/tpu-edt.el, emulation/tpu-extras.el,
2089         * emulation/tpu-mapper.el, emulation/vip.el, expand.el, finder.el,
2090         * foldout.el, follow.el, format.el, forms-d2.el, forms.el,
2091         * generic.el, hi-lock.el, hilit-chg.el, hippie-exp.el, info-look.el,
2092         * international/isearch-x.el, international/iso-cvt.el,
2093         * international/ogonek.el, international/quail.el,
2094         * international/utf-8.el, jit-lock.el, language/devan-util.el,
2095         * language/devanagari.el, language/ethio-util.el,
2096         * language/ethiopic.el, language/european.el, language/indian.el,
2097         * language/romanian.el, language/tibet-util.el, language/tibetan.el,
2098         * mail/feedmail.el, mail/footnote.el, mail/mail-hist.el,
2099         * mail/mailheader.el, mail/mspools.el, mail/supercite.el,
2100         * mouse-sel.el, net/browse-url.el, net/net-utils.el,
2101         * net/quickurl.el, net/snmp-mode.el, net/webjump.el,
2102         * net/zone-mode.el, pcomplete.el, progmodes/antlr-mode.el,
2103         * progmodes/autoconf.el, progmodes/cmacexp.el,
2104         * progmodes/cperl-mode.el, progmodes/cpp.el, progmodes/cwarn.el,
2105         * progmodes/delphi.el, progmodes/ebnf-bnf.el, progmodes/ebnf-iso.el,
2106         * progmodes/ebnf-otz.el, progmodes/ebnf-yac.el,
2107         * progmodes/ebnf2ps.el, progmodes/executable.el,
2108         * progmodes/fortran.el, progmodes/idlw-shell.el,
2109         * progmodes/idlw-toolbar.el, progmodes/idlwave.el,
2110         * progmodes/m4-mode.el, progmodes/mantemp.el,
2111         * progmodes/meta-mode.el, progmodes/octave-inf.el,
2112         * progmodes/ps-mode.el, progmodes/scheme.el, progmodes/simula.el,
2113         * progmodes/tcl.el, ps-bdf.el, ps-mule.el, ps-print.el, recentf.el,
2114         * rect.el, regi.el, rsz-mini.el, s-region.el, scroll-all.el,
2115         * shadowfile.el, speedbar.el, term/AT386.el, term/internal.el,
2116         * term/iris-ansi.el, term/mac-win.el, term/tvi970.el,
2117         * textmodes/artist.el, textmodes/flyspell.el, textmodes/ispell.el,
2118         * textmodes/page-ext.el, textmodes/refer.el, textmodes/texinfmt.el,
2119         * textmodes/texinfo.el, textmodes/texnfo-upd.el,
2120         * textmodes/two-column.el, time-stamp.el, timezone.el,
2121         * toolbar/tool-bar.el, vc-rcs.el, vc-sccs.el, view.el, w32-fns.el,
2122         * which-func.el, whitespace.el, wid-browse.el, widget.el,
2123         * windmove.el, woman.el, xt-mouse.el: Some fixes to follow coding
2124         conventions.
2126 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
2128         * simple.el (set-variable): Require 'cus-edit' instead of
2129         `wid-edit', so that the Custom widgets get defined.
2131 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2133         * allout.el: A fix to follow coding conventions.
2135         * find-lisp.el: A fix to follow coding conventions.
2137         * term/w32-win.el: A fix to follow coding conventions.
2139         * textmodes/sgml-mode.el: A fix to follow coding conventions.
2141         * term/xterm.el: A fix to follow coding conventions.
2143         * term/news.el: A fix to follow coding conventions.
2145         * emulation/vi.el: A fix to follow coding conventions, Maintainer:
2146         header line fixed.
2148         * sun-curs.el: Fix Maintainer: header line.
2150         * emacs-lisp/easymenu.el: Address of the author added.
2152 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
2154         * dired.el (dired-insert-set-properties): Fix invalid mouse-face
2155         property.
2157 2001-07-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2159         * play/5x5.el, play/decipher.el, play/dunnet.el, play/fortune.el,
2160         * play/gamegrid.el, play/handwrite.el, play/landmark.el,
2161         * play/morse.el, play/pong.el, play/snake.el, play/tetris.el:
2162         Some fixes to follow coding conventions.
2164 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
2166         * which-func.el (which-func-mode): Doc fix.
2168 2001-07-15  Stefan Monnier  <monnier@cs.yale.edu>
2170         * net/rcompile.el (remote-compile): Use make-local-variable.
2172         * progmodes/hideshow.el (hs-minor-mode): Use make-local-variable.
2174         * progmodes/make-mode.el (makefile-browse): Use make-local-variable.
2176         * mail/reporter.el (reporter-submit-bug-report):
2177         Don't abuse make-variable-buffer-local.  Fix call to add-hook.
2179 2001-07-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2181         * calendar/cal-china.el, calendar/cal-coptic.el,
2182         * calendar/cal-dst.el, calendar/cal-french.el,
2183         * calendar/cal-hebrew.el, calendar/cal-islam.el,
2184         * calendar/cal-iso.el, calendar/cal-julian.el,
2185         * calendar/cal-mayan.el, calendar/cal-persia.el,
2186         * calendar/cal-tex.el, calendar/calendar.el, calendar/diary-lib.el,
2187         * calendar/lunar.el, calendar/solar.el, ediff-diff.el,
2188         * ediff-help.el, ediff-hook.el, ediff-init.el, ediff-merg.el,
2189         * ediff-ptch.el, ediff-util.el, ediff-vers.el, ediff-wind.el,
2190         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
2191         * net/eudc-vars.el, net/ldap.el, pcvs-defs.el, pcvs-info.el,
2192         * pcvs-parse.el, pcvs-util.el, pcvs.el, progmodes/ada-mode.el,
2193         * progmodes/ada-prj.el, progmodes/ada-stmt.el,
2194         * progmodes/ada-xref.el, progmodes/cc-align.el,
2195         * progmodes/cc-bytecomp.el, progmodes/cc-cmds.el,
2196         * progmodes/cc-defs.el, progmodes/cc-engine.el,
2197         * progmodes/cc-langs.el, progmodes/cc-menus.el,
2198         * progmodes/cc-styles.el, progmodes/cc-vars.el,
2199         * textmodes/reftex-auc.el, textmodes/reftex-cite.el,
2200         * textmodes/reftex-dcr.el, textmodes/reftex-global.el,
2201         * textmodes/reftex-index.el, textmodes/reftex-parse.el,
2202         * textmodes/reftex-ref.el, textmodes/reftex-sel.el,
2203         * textmodes/reftex-toc.el, textmodes/reftex-vars.el,
2204         * textmodes/reftex.el: Some fixes to follow coding
2205         conventions in Eshell files with known maintainers.
2207         * emulation/viper.el: A fix to follow coding conventions.
2209         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el,
2210         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el,
2211         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el,
2212         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el,
2213         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el,
2214         * eshell/em-xtra.el, eshell/esh-arg.el, eshell/esh-cmd.el,
2215         * eshell/esh-ext.el, eshell/esh-io.el, eshell/esh-maint.el,
2216         * eshell/esh-mode.el, eshell/esh-module.el, eshell/esh-opt.el,
2217         * eshell/esh-proc.el, eshell/esh-test.el, eshell/esh-util.el,
2218         * eshell/esh-var.el, eshell/eshell.el: Some fixes to follow coding
2219         conventions in Eshell files.
2221         * composite.el, diff.el, emacs-lisp/levents.el,
2222         * emacs-lisp/lmenu.el, emacs-lisp/lselect.el, emacs-lisp/lucid.el,
2223         * emulation/pc-mode.el, emulation/viper-cmd.el,
2224         * emulation/viper-ex.el, emulation/viper-init.el,
2225         * emulation/viper-keym.el, emulation/viper-macs.el,
2226         * emulation/viper-mous.el, emulation/viper-util.el,
2227         * emulation/viper.el, forms-pass.el, international/ccl.el,
2228         * international/characters.el, international/encoded-kb.el,
2229         * international/fontset.el, international/ja-dic-cnv.el,
2230         * international/ja-dic-utl.el, international/kinsoku.el,
2231         * international/kkc.el, international/mule-cmds.el,
2232         * international/mule-diag.el, international/mule-util.el,
2233         * international/mule.el, international/titdic-cnv.el,
2234         * language/china-util.el, language/chinese.el,
2235         * language/cyril-util.el, language/cyrillic.el, language/english.el,
2236         * language/greek.el, language/hebrew.el, language/japan-util.el,
2237         * language/japanese.el, language/korea-util.el, language/korean.el,
2238         * language/lao-util.el, language/lao.el, language/misc-lang.el,
2239         * language/slovak.el, language/thai-util.el, language/thai.el,
2240         * language/viet-util.el, language/vietnamese.el, mail/mh-comp.el,
2241         * mail/mh-e.el, mail/mh-funcs.el, mail/mh-mime.el, mail/mh-pick.el,
2242         * mail/mh-seq.el, mail/mh-utils.el, mail/sc.el, mail/unrmail.el,
2243         * midnight.el, patcomp.el, pcmpl-cvs.el, pcmpl-gnu.el,
2244         * pcmpl-linux.el, pcmpl-rpm.el, pcmpl-unix.el, play/studly.el,
2245         * play/zone.el, replace.el, select.el, subr.el, talk.el, term.el,
2246         * term/apollo.el, term/bobcat.el, term/linux.el, term/lk201.el,
2247         * term/vt102.el, term/vt125.el, term/vt200.el, term/vt201.el,
2248         * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el,
2249         * term/vt400.el, term/vt420.el, x-apollo.el, x-menu.el: Some fixes
2250         to follow coding conventions in files without maintainer or in files
2251         with clear maintainer (but without Maintainer header stating so).
2253         * emacs-lisp/elp.el: A fix to follow coding conventions.
2255         * gnus/binhex.el, gnus/binhex.el, gnus/earcon.el,
2256         * gnus/gnus-agent.el, gnus/gnus-art.el, gnus/gnus-audio.el,
2257         * gnus/gnus-logic.el, gnus/gnus-ml.el, gnus/gnus-mlspl.el,
2258         * gnus/gnus-setup.el, gnus/gnus-srvr.el, gnus/gnus-sum.el,
2259         * gnus/gnus-uu.el, gnus/gnus-vm.el, gnus/ietf-drums.el,
2260         * gnus/mail-parse.el, gnus/mail-prsvr.el, gnus/mail-source.el,
2261         * gnus/mm-bodies.el, gnus/mm-decode.el, gnus/mm-encode.el,
2262         * gnus/mm-partial.el, gnus/mm-util.el, gnus/mm-uu.el,
2263         * gnus/mm-view.el, gnus/mml.el, gnus/nnimap.el, gnus/nnoo.el,
2264         * gnus/parse-time.el, gnus/rfc1843.el, gnus/rfc2045.el,
2265         * gnus/rfc2047.el, gnus/rfc2104.el, gnus/rfc2231.el,
2266         * gnus/time-date.el, gnus/uudecode.el: Some fixes to follow coding
2267         conventions in files from Gnus.
2269         * abbrevlist.el, array.el, buff-menu.el, calendar/appt.el,
2270         * case-table.el, cdl.el, cmuscheme.el, compare-w.el, completion.el,
2271         * custom.el, derived.el, dired-aux.el, disp-table.el, dos-vars.el,
2272         * echistory.el, electric.el, emacs-lisp/authors.el,
2273         * emacs-lisp/backquote.el, emacs-lisp/byte-opt.el,
2274         * emacs-lisp/bytecomp.el, emacs-lisp/float.el, emacs-lisp/gulp.el,
2275         * emacs-lisp/helper.el, emacs-lisp/lisp-mode.el,
2276         * emacs-lisp/regexp-opt.el, emulation/mlconvert.el,
2277         * emulation/mlsupport.el, env.el, fast-lock.el, find-dired.el,
2278         * float-sup.el, frame.el, gnus/gnus-mule.el, gnus/pop3.el, gs.el,
2279         * gud.el, help-macro.el, hexl.el, imenu.el, info.el, informat.el,
2280         * international/codepage.el, international/iso-ascii.el,
2281         * international/iso-insert.el, international/iso-transl.el,
2282         * international/swedish.el, isearch.el, jka-compr.el, kermit.el,
2283         * lazy-lock.el, ledit.el, loadup.el, lpr.el, ls-lisp.el, macros.el,
2284         * mail/blessmail.el, mail/emacsbug.el, mail/mail-extr.el,
2285         * mail/mailabbrev.el, mail/mailpost.el, mail/rmail.el,
2286         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmsc.el,
2287         * mail/rmailout.el, mail/rmailsort.el, mail/rmailsum.el,
2288         * mail/vms-pmail.el, man.el, map-ynp.el, menu-bar.el, misc.el,
2289         * msb.el, net/ange-ftp.el, net/goto-addr.el, novice.el,
2290         * obsolete/auto-show.el, obsolete/hilit19.el, obsolete/ooutline.el,
2291         * obsolete/rnews.el, obsolete/rnewspost.el, options.el, paren.el,
2292         * paths.el, play/dissociate.el, play/doctor.el, play/hanoi.el,
2293         * play/meese.el, progmodes/compile.el, progmodes/ebrowse.el,
2294         * progmodes/hideif.el, progmodes/modula2.el, register.el, rot13.el,
2295         * saveplace.el, scroll-bar.el, server.el, sort.el, soundex.el,
2296         * term/bg-mouse.el, term/pc-win.el, term/sup-mouse.el,
2297         * term/tty-colors.el, terminal.el, textmodes/bib-mode.el,
2298         * textmodes/makeinfo.el, textmodes/page.el, textmodes/paragraphs.el,
2299         * textmodes/picture.el, textmodes/scribe.el, textmodes/spell.el,
2300         * textmodes/tex-mode.el, textmodes/text-mode.el,
2301         * textmodes/underline.el, thingatpt.el, time.el, timer.el,
2302         * unused.el, vcursor.el, version.el, vms-patch.el, vmsproc.el,
2303         * vt100-led.el, window.el: Some fixes to follow coding conventions in
2304         files maintained by FSF.
2306 2001-07-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2308         * arc-mode.el: A fix to follow coding conventions.
2310         * bindings.el: Ditto.
2312         * cdl.el: Ditto.
2314         * comint.el: Ditto.
2316         * cus-start.el: Ditto.
2318         * shell.el: Ditto.
2320         * skeleton.el: Ditto.
2322 2001-07-13  Stefan Monnier  <monnier@cs.yale.edu>
2324         * info.el (Info-build-node-completions):
2325         Make Info-current-file-completions buffer local.
2327 2001-07-13  Gerd Moellmann  <gerd@gnu.org>
2329         * which-func.el (which-func-mode, which-func-ff-hook)
2330         (which-function-mode): Remove references to which-func-mode-global.
2332         * calendar/cal-islam.el (calendar-goto-islamic-date):
2333         Add autoload cookie.
2335         * play/fortune.el: Add types to defcustoms.
2337 2001-07-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2339         * language/czech.el: A fix to follow coding conventions.
2341 2001-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
2343         * speedbar.el (speedbar-supported-extension-expressions): Add .g
2344         to the extension list, for antlr-mode.  From Christoph Wedler
2345         <Christoph.Wedler@sap.com>.
2347 2001-07-11  Stefan Monnier  <monnier@cs.yale.edu>
2349         * vc.el (vc-prefix-map): Moved back to vc-hooks.el.
2350         (vc-dired-mode-map): Fix the madness.
2352         * vc-hooks.el (vc-mode): Dummy function for doc purposes.
2353         (vc-prefix-map): Moved back from vc.el.
2355 2001-07-11  Gerd Moellmann  <gerd@gnu.org>
2357         * mail/mail-extr.el (mail-extr-all-top-level-domains):
2358         Increase the size of the obarray.
2359         (mail-extr-all-top-level-domains): Add more toplevel domains,
2360         add more long names.
2361         From: Per Starback <starback@ling.uu.se>.
2363 2001-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
2365         * progmodes/ada-prj.el: Say that the file _is_ part of Emacs.
2366         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2368         * progmodes/ada-mode.el: Ditto.
2370         * progmodes/ada-xref.el: Ditto.
2372 2001-07-11  Miles Bader  <miles@gnu.org>
2374         * finder.el (finder-insert-at-column): Also move to the next line
2375         if exactly at COLUMN.
2377 2001-07-10  Gerd Moellmann  <gerd@gnu.org>
2379         * help.el (describe-function-1): When printing FUNCTION's
2380         documentation, don't assume FUNCTION is a symbol.
2382         * startup.el (normal-top-level): Don't operate on the initial
2383         frame if we failed to create one.
2385 2001-07-10  Martin Stjernholm  <bug-cc-mode@gnu.org>
2387         * cc-cmds.el (c-indent-exp): Keep the indentation of the block
2388         itself, i.e. only indent the contents in it.
2390 2001-07-10  Markus Rost  <rost@math.ohio-state.edu>
2392         * mail/rmail.el (rmail-show-message): Show beginning of message in
2393         all windows containing it.
2395 2001-07-10  Eli Zaretskii  <eliz@is.elta.co.il>
2397         * term/tty-colors.el: Fix the header line and copyright years.
2399 2001-07-09  Gerd Moellmann  <gerd@gnu.org>
2401         * emacs-lisp/advice.el (ad-make-advised-definition): If the
2402         original definition has an interactive form, but is Elp
2403         instrumented, use the interactive form of the function called by
2404         elp-wrapper.
2406         * winner.el (winner-equal): Make it a defun.  Don't compare Winner
2407         configurations with compare-window-configuration; they aren't
2408         window configurations.
2410         * net/ange-ftp.el (ange-ftp-file-modtime): Check a 213 response
2411         from the server for the format we expect.  Don't use it if it
2412         doesn't look like what the Internet draft for FTP extensions specifies.
2414         * toolbar/*.pbm: Cleaned up.
2415         From Luis Fernandes <elf@ee.ryerson.ca>.
2417 2001-07-09  Martin Stjernholm  <bug-cc-mode@gnu.org>
2419         * cc-cmds.el: Extended the kludge to interoperate with the
2420         delsel and pending-del packages wrt to the new function
2421         `c-electric-delete-forward'.
2423 2001-07-08  Stefan Monnier  <monnier@cs.yale.edu>
2425         * emacs-lisp/easy-mmode.el (define-minor-mode): Use eval-after-load
2426         to delay the call to <mode> for global minor modes.
2427         (easy-mmode-define-navigation): Only recenter if interactive.
2429 2001-07-06  Gerd Moellmann  <gerd@gnu.org>
2431         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
2432         to lisp-indent-line.
2434         * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
2435         from the server.  Call encode-time only when we are sure that we
2436         got a 213 response.
2438 2001-07-06  Simon Josefsson  <jas@extundo.com>
2440         * mail/sendmail.el (mail-specify-envelope-from): Doc fix.
2441         (mail-envelope-from): New user option.
2442         (sendmail-send-it): Use it.
2444 2001-07-06  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
2446         * ps-print.el: Use locale dependant date to print date in header.
2447         Doc fix.
2448         (ps-print-version): New version number (6.5.3).
2449         (ps-right-header, ps-right-footer): Initialization and doc fix.
2450         (ps-time-stamp-locale-default): New fun.
2452 2001-07-06  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
2454         * mail/rmailout.el (rmail-output): Fix duplicate MIME-Version:
2455         field problem with MIME-mode.
2457         * mail/rmailout.el (rmail-output): Fix bug in MIME-mode.
2459 2001-07-06  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
2461         * mail/rmail.el (rmail-reply): Don't forget to narrow header in
2462         MIME-mode.
2464 2001-07-06  Eli Zaretskii  <eliz@is.elta.co.il>
2466         * bindings.el (mode-line-mule-info): Don't show the tip with
2467         buffer-file-coding-system if that is nil.
2469 2001-07-05  Gerd Moellmann  <gerd@gnu.org>
2471         * calendar/todo-mode.el (todo-top-priorities): Use delete-region
2472         instead of kill-line.
2474         * play/pong.el: Fix first line.  From Pavel Jan\e,Bm\e(Bk
2475         <Pavel@Janik.cz>.
2477         * battery.el (battery-update): Add help-echo.  From Pavel Jan\e,Bm\e(Bk
2478         <Pavel@Janik.cz>.
2480 2001-07-04  Gerd Moellmann  <gerd@gnu.org>
2482         * font-lock.el (c-font-lock-keywords-3): When matching something
2483         like `struct X Y', finish with point after Y.
2485 2001-07-04  Simon Josefsson  <jas@extundo.com>
2487         * mail/sendmail.el (sendmail-send-it): Look at `sendmail-program'
2488         in caller buffer.
2490 2001-07-03  Eli Zaretskii  <eliz@is.elta.co.il>
2492         * find-file.el (ff-find-the-other-file): Use file-name-nondirectory
2493         instead of string-match to find the basename of the file.
2494         From Pascal Obry <p.obry@wanadoo.fr>.
2496         * net/browse-url.el (browse-url-default-windows-browser):
2497         Support the MS-DOS port when it runs on Windows.
2498         (browse-url-browser-function) [ms-dos]: Default to
2499         browse-url-default-windows-browser.
2501         * help.el (locate-library): Enable code that looks for compressed
2502         libraries if auto-compression-mode is on.
2504 2001-07-02  Stefan Monnier  <monnier@cs.yale.edu>
2506         * info.el (Info-clone-buffer-hook): Really unconditionally copy marker.
2508 2001-07-02  Gerd Moellmann  <gerd@gnu.org>
2510         * emacs-lisp/cl-macs.el (cl-do-arglist): Revert change of 2000-10-15.
2512 2001-07-02  Eli Zaretskii  <eliz@is.elta.co.il>
2514         * allout.el: Fix the header line, so that finder.el recognizes it.
2515         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
2517         * emacs-lisp/lisp-mnt.el (lm-header-prefix): Doc fix.
2518         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
2520 2001-06-29  Eli Zaretskii  <eliz@is.elta.co.il>
2522         * term/w32-win.el (x-colors): Add colors from the recent rgb.txt file.
2524         * ps-bdf.el (bdf-directory-list): Use the value relative to
2525         installation-directory for MS-Windows as well.
2527 2001-06-29  Richard M. Stallman  <rms@gnu.org>
2529         * wid-edit.el (widget-color-sample-face-get):
2530         Return ((foreground-color . COLOR)) instead of constructing a face.
2532 2001-06-29  Eli Zaretskii  <eliz@is.elta.co.il>
2534         * faces.el (region): Change the background color for the
2535         light-background color display to lightgoldenrod2, to make it
2536         visible on some laptops.
2538 2001-06-28  Richard M. Stallman  <rms@gnu.org>
2540         * mail/rmail.el (rmail-reformat-message): Bind inhibit-read-only to t.
2541         (rmail-msg-restore-non-pruned-header): Likewise.
2542         If point was in the old pruned header, put it at the top.
2543         (rmail-msg-prune-header): If point was at the top, keep it there.
2545         * mail/rmail.el (rmail-narrow-to-non-pruned-header): New function.
2546         (rmail-retry-failure): Use rmail-narrow-to-non-pruned-header.
2548 2001-06-28  Stefan Monnier  <monnier@cs.yale.edu>
2550         * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
2552 2001-06-28  Karl Fogel  <kfogel@red-bean.com>
2554         * saveplace.el: Update maintainer email address.
2556 2001-06-27  Francesco Potorti`  <pot@gnu.org>
2558         * uniquify.el: (uniquify-rationalize-file-buffer-names):
2559           Undo previous change.
2561 2001-06-27  Francesco Potorti`  <pot@gnu.org>
2563         * uniquify.el (uniquify-rationalize-file-buffer-names): Do a
2564         preliminary quick reordering.  Can speed things up dramatically.
2566 2001-06-26  Richard M. Stallman  <rms@gnu.org>
2568         * dired.el (dired-get-filename): A file name starting with ~
2569         is not absolute in this context.
2571         * which-func.el (which-func-maxout): Increase default to 500000.
2572         (which-function-mode): This is now the "real" name of the function.
2573         (which-func-mode): Now an alias.
2574         (which-func-mode-global): Name deleted.
2576         * progmodes/hideshow.el (hs-minor-mode-map): Use mouse-2, not
2577         button-2, when binding hs-mouse-toggle-hiding.
2579 2001-06-26  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
2581         * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
2582         (rmail-msg-prune-header): Likewise.
2583         (rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
2584         and `rmail-msg-prune-header'.
2586 2001-06-25  Stefan Monnier  <monnier@cs.yale.edu>
2588         * textmodes/fill.el (fill-region-as-paragraph): Don't look further
2589         back than LINEBEG.
2591 2001-06-25  Eli Zaretskii  <eliz@is.elta.co.il>
2593         * xt-mouse.el (xterm-mouse-event): If the buffer displayed in the
2594         window where they clicked the mouse has a header line, adjust
2595         vertical movement by one.
2597 2001-06-25  Milan Zamazal  <pdm@zamazal.org>
2599         * progmodes/glasses.el (glasses-make-readable): Consider underscores
2600         too when separating a parenthesis.
2602 2001-06-24  Eli Zaretskii  <eliz@is.elta.co.il>
2604         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
2605         (bookmark-bmenu-hide-filenames): Add help-echo to
2606         mouse-highlighted text.
2607         (bookmark-bmenu-show-filenames): Remove help-echo property from
2608         the whitespace.
2610 2001-06-23  Eli Zaretskii  <eliz@is.elta.co.il>
2612         * files.el (auto-mode-alist): Add configure.ac (autoconf).
2613         From Karl Eichwalder <ke@suse.de>.
2615 2001-06-23  Richard M. Stallman  <rms@gnu.org>
2617         * emacs-lisp/lisp-mode.el (eval-last-sexp): Doc fix.
2619         * progmodes/cc-styles.el (c-set-style): Don't specify initial
2620         contents for completing-read.
2622 2001-06-22  Richard M. Stallman  <rms@gnu.org>
2624         * menu-bar.el (menu-bar-make-toggle): Construct the
2625         function's doc string from HELP, not DOC, and make it accurate by
2626         adding "Toggle whether to " at the front and downcasing the initial.
2627         Change the HELP arg in some calls to make it fit this usage.
2629         * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error):
2630         Undo previous change.
2632 2001-06-22  Eli Zaretskii  <eliz@is.elta.co.il>
2634         * indent.el (indent-relative-maybe, indent-relative): Doc fix.
2636         * menu-bar.el (toggle-debug-on-quit, toggle-debug-on-error): Doc fix.
2638 2001-06-21  Eli Zaretskii  <eliz@is.elta.co.il>
2640         * toolbar/tool-bar.el (tool-bar-setup): Remove the EXIT button.
2642         * dabbrev.el (dabbrev--select-buffers): Fix last change.
2644 2001-06-20  Richard M. Stallman  <rms@gnu.org>
2646         * dabbrev.el (dabbrev--make-friend-buffer-list): New function,
2647         broken out from dabbrev--find-expansion.  Handle minibuffer
2648         specially here.
2649         (dabbrev--find-expansion): Simplify code in various ways.
2650         Don't treat minibuffers specially.
2651         Call dabbrev--make-friend-buffer-list.
2652         (dabbrev--select-buffers): Don't treat minibuffers specially.  Simplify.
2653         (dabbrev--scanning-message): Do nothing when minibuffer is current.
2655 2001-06-19  John Wiegley  <johnw@gnu.org>
2657         * eshell/eshell.el: Don't load in esh-util if it's already loaded.
2658         Also, added a comment describing how to greatly speedup Eshell
2659         loadup time, by concatenating together all of Eshell's .elc files.
2661 2001-06-19  John Wiegley  <johnw@gnu.org>
2663         * eshell/esh-mode.el: Disabled a test that often yields false failures.
2665 2001-06-19  Eli Zaretskii  <eliz@is.elta.co.il>
2667         * woman.el (WoMan-highlight-references): Add help-echo to
2668         mouse-highlighted text.
2670 2001-06-18  Stefan Monnier  <monnier@cs.yale.edu>
2672         * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
2674 2001-06-18  Gerd Moellmann  <gerd@gnu.org>
2676         * international/quail.el (quail-start-conversion):
2677         Reset quail-translating to nil.
2679         * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
2680         bound.  Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
2682 2001-06-18  Eli Zaretskii  <eliz@is.elta.co.il>
2684         * bs.el (bs--get-name, bs--get-file-name): Add help-echo to
2685         mouse-highlighted text.
2687         * dired.el (dired-mark-pop-up): Fix last change.
2689 2001-06-17  Eli Zaretskii  <eliz@is.elta.co.il>
2691         * calendar/calendar.el (generate-calendar-month): Add help-echo to
2692         mouse-highlighted text.
2694         * net/quickurl.el (quickurl-url-file): Run through
2695         convert-standard-filename.
2696         (quickurl-list-populate-buffer): Add help-echo to
2697         mouse-highlighted text.
2698         (top-level): Update Dave's URL.
2700         * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
2701         mouse-highlighted text.
2703         * textmodes/page-ext.el (pages-copy-header-and-position):
2704         Add help-echo to mouse-highlighted text.
2706         * tar-mode.el (tar-header-block-summarize): Add help-echo to
2707         mouse-highlighted text.
2709         * replace.el (occur): Add help-echo to mouse-highlighted text.
2711         * progmodes/sh-script.el (sh-mark-line): Add help-echo to
2712         mouse-highlighted text.
2714         * progmodes/cpp.el (cpp-make-button): Add help-echo to
2715         mouse-highlighted text.
2717         * progmodes/compile.el (compile-reinitialize-errors):
2718         Add help-echo to mouse-highlighted messages.
2719         (compilation-forget-errors): Remove help-echo property as well.
2721         * play/landmark.el (lm-plot-square, lm-init-display):
2722         Add help-echo to mouse-highlighted text.
2724         * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
2725         Add help-echo to mouse-highlighted text.
2727         * dired.el (dired-insert-set-properties): Add help-echo to
2728         mouse-highlighted text.
2729         (dired-mark-pop-up): Remove help-echo property from the file name.
2731         * comint.el (comint-send-input): Add help-echo to
2732         mouse-highlighted text.
2734         * buff-menu.el (list-buffers-noselect): Add help-echo to
2735         mouse-highlighted text.
2737         * arc-mode.el (archive-summarize-files): Add help-echo to
2738         mouse-highlighted text.
2740         * ffap.el (ffap-machine-p): Always return nil if
2741         open-network-stream is not fboundp.
2743 2001-06-17  Stefan Monnier  <monnier@cs.yale.edu>
2745         * textmodes/sgml-mode.el: Move `provide' to the end.  Update copyright.
2746         (sgml-mode-map): Use `make-keymap' rather than make the keymap by hand.
2747         Bind the latin-1 charset-char to sgml-maybe-name-self rather than
2748         incorrectly binding chars between 128 and 256 to it.
2749         (sgml-maybe-name-self): Handle latin-1 chars properly.
2750         (sgml-tags-invisible): Bind buffer-file-name to nil.
2751         Use unwind-protect and restore-buffer-modified-p.
2752         (sgml-point-entered): Use buffer-substring-no-properties.
2753         (html-tag-alist): Add `div' and `span' and fix backquote/unquote typos.
2754         (html-mode): Don't force `imenu-sort-function'.
2756 2001-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
2758         * tar-mode.el: Fix the copyright notice.
2760         * font-lock.el (font-lock-comment-face): For tty's with dark
2761         background, use "red1", since "lightred" is not one of the colors
2762         recognized by tty-colors.el.
2764         * tar-mode.el (tar-extract): Call generate-new-buffer-name to
2765         create a buffer for extracted file, in case there's more than one
2766         file by that name in an archive, possibly in different
2767         directories.  From Kevin Rodgers <kevinr@ihs.com>.
2769         * format.el (format-alist): Doc fix.  Suggested by Alex Schroeder
2770         <alex@gnu.org>.
2772 2001-06-15  Miles Bader  <miles@gnu.org>
2774         * textmodes/texinfmt.el (texinfo-format-syntax-table):
2775         Revert previous change.
2777 2001-06-14  Richard M. Stallman  <rms@gnu.org>
2779         * replace.el (keep-lines-read-args): Return just a regexp.
2780         Provide nil for the region args.
2781         (keep-lines, flush-lines, how-many):
2782         Calculate the defaults for the region here, when args are nil.
2784 2001-06-14  Eli Zaretskii  <eliz@is.elta.co.il>
2786         * rot13.el (rot13-other-window): Some more doc fix.
2788 2001-06-14  Per Starback  <starback@ling.uu.se>
2790         * replace.el (case-replace, query-replace-from-history-variable)
2791         (query-replace-to-history-variable, keep-lines-read-args)
2792         (occur-revert-function, query-replace-help): Dox fix.
2794 2001-06-14  Eli Zaretskii  <eliz@is.elta.co.il>
2796         * rot13.el (rot13-other-window): Doc fix.
2798 2001-06-14  Miles Bader  <miles@gnu.org>
2800         * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
2801         of " and \ to "." (punctuation).
2802         * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
2804 2001-06-13  Richard M. Stallman  <rms@gnu.org>
2806         * emacs-lisp/backquote.el (backquote-process): Handle `[,@SYMBOL].
2808         * simple.el (shell-command-on-region): Never kill the
2809         *Shell Command Output* buffer.
2811 2001-06-13  Stefan Monnier  <monnier@cs.yale.edu>
2813         * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
2815 2001-06-10  Stefan Monnier  <monnier@cs.yale.edu>
2817         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
2818         New var, to recognize ${ $' and PODs.
2819         (perl-font-lock-syntactic-face-function): New function.
2820         (perl-mode): Use them.
2821         (perl-continuation-line-p): New function, from perl-calculate-indent.
2822         (perl-calculate-indent): Use it, to properly handle continuation
2823         lines of continuation lines.
2825 2001-06-10  Eli Zaretskii  <eliz@is.elta.co.il>
2827         * server.el (server-process, server-buffer-clients): Doc fix.
2828         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
2830 2001-06-09  John Wiegley  <johnw@gnu.org>
2832         * eshell/esh-cmd.el (eshell-exit-success-p): Use a string-match to
2833         test if the last command was Lisp or not.
2834         (eshell-rewrite-if-command): "if" syntax is "if A B C", not "if A
2835         B x C".
2837 2001-06-08  Eli Zaretskii  <eliz@is.elta.co.il>
2839         * dos-w32.el (grep-regexp-alist): Remove definition, since the
2840         general one on compile.el supports drive letters.
2842 2001-06-08  Carsten Dominik  <dominik@strw.leidenuniv.nl>
2844         * textmodes/reftex-ref.el (reftex-select-label-help): Add "z"
2845         key description.
2847         * textmodes/reftex-sel.el (reftex-select-jump): New command.
2849         * textmodes/reftex-toc.el (reftex-toc-help): Add "z" key description.
2850         (reftex-toc-jump): New command.
2852         * textmodes/reftex-cite.el (reftex-parse-bibitem): Regexp changed
2853         to parse international characters as well.
2855         * textmodes/reftex.el: Add autoloads for `reftex-varioref-vref',
2856         `reftex-fancyref-fref', `reftex-fancyref-Fref'.
2858         * textmodes/reftex-vars.el: Protect single backslash in docstrings.
2860         * textmodes/reftex-dcr.el (reftex-view-crossref): Add SPACE and
2861         TAB to the key separators.
2863 2001-06-07  Eli Zaretskii  <eliz@is.elta.co.il>
2865         * international/mule.el (auto-coding-alist): Remove redundant
2866         up-cased versions of the extensions (auto-coding-alist-lookup is
2867         case-insensitive where needed).  Recognize .gz, .Z, .bz, .bz2, and
2868         .gpg files as binary.  Suggested by Karl Berry <karl@gnu.org>.
2870 2001-06-05  Eli Zaretskii  <eliz@is.elta.co.il>
2872         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Add a doc string.
2874 2001-06-01  Richard M. Stallman  <rms@gnu.org>
2876         * help.el (describe-variable): Put value on same line
2877         with preceding text, if it is short enough to look good that way.
2879 2001-06-01  Eli Zaretskii  <eliz@is.elta.co.il>
2881         * term/internal.el (IT-unicode-translations): New variable.
2882         (IT-setup-unicode-display): New function.
2884 2001-06-01  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
2886         * ps-print.el: Handle before-string and after-string overlay properties
2887         in ps-print-*-with-faces commands.  Doc fix.
2888         (ps-print-version): New version number (6.5.2).
2889         (ps-e-overlay-end): Alias for overlay-end to avoid compilation gripes
2890         for XEmacs.
2891         (ps-prefix-quote): Doc fix.
2892         (ps-setup, ps-print-quote, ps-generate-postscript-with-faces): Code fix.
2893         (ps-basic-plot-str, ps-plot-string): New funs.
2895 2001-05-31  Stefan Monnier  <monnier@cs.yale.edu>
2897         * progmodes/etags.el (tags-compression-info-list): Fix docstring
2898         and :type spec.
2900 2001-05-31  Gerd Moellmann  <gerd@gnu.org>
2902         * international/mule-cmds.el (inactivate-input-method):
2903         Set input-method-function to nil.
2905         * xml.el (xml-parse-tag): The document may contain invalid characters.
2906         From ShengHuo ZHU  <zsh@cs.rochester.edu>
2908 2001-05-31  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
2910         * mail/rmailsum.el (rmail-message-subject-p): Don't call
2911         `rmail-summary-line-decoder' if the message does not have
2912         a Subject: field.
2914         * mail/rmail.el (rmail-revert): Modify to work in rmail-view-buffer.
2916         * mail/rmail.el (rmail-insert-mime-resent-message-function):
2917         New variable.
2918         (rmail-resend): Modify to work in `rmail-view-buffer'; call
2919         `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
2920         is non-nil.
2922 2001-05-30  Stefan Monnier  <monnier@rum.cs.yale.edu>
2924         * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
2926 2001-05-29  Sam Steingold  <sds@gnu.org>
2928         * faces.el (face-valid-attribute-values): Bind `valid' directly
2929         instead of using `setq'.
2931         * textmodes/tex-mode.el (tex-feed-input, tex-display-shell):
2932         Use `tex-shell-buf'.
2933         (tex-shell-proc): Use `tex-shell-running'.
2934         (tex-shell-buf-no-error): New function.
2935         (tex-send-tex-command): Use it.
2936         (tex-shell-running): Kill tex-shell when the buffer is dead for w32.
2937         (tex-kill-job): Check the process before calling `quit-process'.
2939 2001-05-29  Gerd Moellmann  <gerd@gnu.org>
2941         * international/utf-8.el (ccl-decode-mule-utf-8): Handle invalid
2942         UTF-8 sequences.
2944 2001-05-28  Miles Bader  <miles@gnu.org>
2946         * comint.el (comint-carriage-motion): Renamed from
2947         `comint-cr-magic'.  Operate on the buffer instead of the string
2948         (for use as a comint post-output filter, instead of as a
2949         pre-output filter).  Handle backspaces too.  Add to the
2950         `comint-output-filter-functions' hook instead of
2951         `comint-preoutput-filter-functions'.
2953 2001-05-28  Gerd Moellmann  <gerd@gnu.org>
2955         * language/japan-util.el (japanese-hankaku): Prefer the charset
2956         `jisx0201' when the optional argument `ascii-only' is not specified.
2957         (japanese-hankaku-region): Ditto.
2958         From Katsumi Yamaoka <yamaoka@jpl.org>
2960 2001-05-28  Stefan Monnier  <monnier@cs.yale.edu>
2962         * textmodes/outline.el (outline-mode): Fix font-lock-defaults.
2963         (outline-invisible-p): New function.
2964         (hide-leaves): Save excursion.
2965         (hide-other): Stop looping when reaching bobp.
2967 2001-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
2969         * cus-edit.el (custom-file): Fix last change.
2971 2001-05-27  Stefan Monnier  <monnier@cs.yale.edu>
2973         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): Use the
2974         same definition in byte-compile-function-environment as `autoload'
2975         would put in `symbol-function'.
2977         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Complete Dave's
2978         patch to correct the error message as well.
2980 2001-05-27  Eli Zaretskii  <eliz@is.elta.co.il>
2982         * cus-edit.el (custom-file): Don't assume we were invoked with -q
2983         unless ~/.emacs exists.
2985         * novice.el (enable-command): If user-init-file is nil or does not
2986         exist, default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
2988 2001-05-25  Stefan Monnier  <monnier@cs.yale.edu>
2990         * textmodes/tex-mode.el (tex-mode-syntax-table): Add ^.
2991         (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
2992         Allow spaces around macro arguments.
2993         (tex-mode-map): Inherit from text-mode-map, but rebind \t to
2994         indent-for-tab-command.
2995         (latex-mode-map, plain-tex-mode-map): New keymaps.
2996         Inherit from tex-mode-map.
2997         (tex-common-initialization): Don't setup the keymap any more
2998         since it's now done right by define-derived-mode.
2999         (latex-mode): Set skeleton-end-hook to nil.
3000         (latex-skeleton-end-hook): Remove.
3001         (tex-latex-block, latex-insert-item): Simplify.
3002         (latex-syntax-after): Use following-char rather than char-after.
3003         (tex-discount-args-cmds, tex-count-words): New functions.
3005         * textmodes/tildify.el (tildify-ignored-environments-alist):
3006         Recognize \verb* as well.
3008         * progmodes/perl-mode.el (perl-mode): Use define-derived-mode.
3009         (perl-comment-indent): Simplify to let newcomment.el do its job.
3010         (perl-electric-terminator, perl-calculate-indent, perl-indent-exp)
3011         (perl-mark-function): Cleanup the namespace.
3012         (perl-calculate-indent): Don't be fooled by nested functions.
3014         * speedbar.el (speedbar-find-selected-file): RE-quote the filename.
3016         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
3017         Fix the arg of `load'.  From Dave Love <fx@gnu.org>.
3019 2001-05-25  Andrew Choi  <akochoi@i-cable.com>
3021         * international/titdic-cnv.el (ctlau-gb-converter): `\' should
3022         actually be `\\'.
3023         (ctlau-b5-converter): Likewise.
3025 2001-05-24  Andrew Choi  <akochoi@i-cable.com>
3027         * international/titdic-cnv.el (quail-misc-package-ext-info):
3028         Change CTLauB.el to CTLau-b5.el.
3030 2001-05-23  Stefan Monnier  <monnier@cs.yale.edu>
3032         * gud.el (gud-gdb-run-command-fetch-lines): Use forward-line
3033         rather than beginning-of-line to avoid problems with fields.
3034         (gud-perldb-massage-args): Use unless and push.
3035         (gud-chdir-before-run): New var.
3036         (gud-common-init): Use it.
3038 2001-05-24  Andrew Choi  <akochoi@i-cable.com>
3040         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
3041         delete entries for chinese-ctlau and chinese-ctlaub.
3042         (quail-misc-package-ext-info): Add entries for chinese-ctlau and
3043         chinese-ctlaub.
3044         (ctlau-converter, ctlau-gb-converter, ctlau-b5-converter):
3045         New functions.
3047 2001-05-22  Gerd Moellmann  <gerd@gnu.org>
3049         * cus-edit.el (custom-comment-show): Remove debug code.
3051         * language/japan-util.el (japanese-symbol-table): Fix handling of
3052         Japanese long tone sign.  From Kenichi Handa <handa@etl.go.jp>.
3054 2001-05-21  Stefan Monnier  <monnier@cs.yale.edu>
3056         * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly):
3057         Renamed by removing the silly `-flag' suffix.
3058         (diff-mode, diff-minor-mode, diff-find-source-location): Update.
3060 2001-05-20  Stefan Monnier  <monnier@cs.yale.edu>
3062         * replace.el (keep-lines-read-args): Use `copy-marker'.
3063         (how-many): Save excursion properly.
3064         (occur-mode): Use define-derived-mode.
3065         (perform-replace): Use with-current-buffer.
3067 2001-05-20  Richard M. Stallman  <rms@gnu.org>
3069         * play/landmark.el (lm): Use "p" not "P" for interactive spec.
3071         * mail/rmail.el (rmail-retry-failure): Do save-window-excursion.
3073         * info.el (Info-read-subfile): Widen before finding the
3074         desired node in the subfile.
3076         * startup.el (command-line-1): When >2 files visited,
3077         leave the last one visible, and make that the selected window.
3079 2001-05-20  Gerd Moellmann  <gerd@gnu.org>
3081         * font-lock.el (lisp-font-lock-keywords-1): Add `defvaralias'.
3083 2001-05-20  Eli Zaretskii  <eliz@is.elta.co.il>
3085         * international/ccl.el (define-ccl-program): Fix a typo.
3086         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3088         * international/mule.el (decode-char): Fix a typo.  From Pavel
3089         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3091         * textmodes/artist.el (artist-mode): Fix a typo.  From Pavel
3092         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3094         * frame.el (automatic-hscrolling): Fix a typo.  From Pavel
3095         Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3097 2001-05-18  Sam Steingold  <sds@gnu.org>
3099         * pcvs-defs.el (cvs-mode-map): Bind "z" to `kill-this-buffer'
3100         and [RET] to `cvs-mode-find-file'.
3102 2001-05-18  John Wiegley  <johnw@gnu.org>
3104         * eshell/esh-ext.el (eshell-explicit-command-char): A new
3105         configuration variable, which determines the initial character
3106         that forces use of an external version of a command.  The default
3107         is *, but may be set to \, for example.
3109         * eshell/esh-ext.el (eshell-explicit-command):
3110         Use `eshell-explicit-command-char' instead of ?*.
3112         * eshell/esh-cmd.el (eshell/which):
3113         Use `eshell-explicit-command-char' instead of ?*.
3115         * eshell/em-cmpl.el (eshell-completion-command-name)
3116         (eshell-complete-commands-list): Use `eshell-explicit-command-char'
3117         instead of ?*.
3119 2001-05-18  Gerd Moellmann  <gerd@gnu.org>
3121         * net/ange-ftp.el (ange-ftp-fix-name-for-vms): Reverse args of
3122         subst-char-in-string.
3123         (ange-ftp-after-parse-ls-hook): New variable.
3124         (ange-ftp-ls): Run that hook.
3125         From Peter Milliken <Peter.Milliken@GTECH.COM>.
3127         * tmm.el (tmm-get-keymap): Fix handling of :filter.
3128         (tmm-add-prompt): Bind buffer-read-only to nil when inserting
3129         text into *Completions*.
3131         * net/goto-addr.el (goto-address-at-point): Deal with URLs
3132         part of which look like email addresses.
3134 2001-05-18  Andrew Innes  <andrewi@gnu.org>
3136         * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD):
3137         Use . instead of absolute path for lisp dir, to avoid bug in W2K
3138         cmd.exe's handling of FOR loops.
3139         (autoloads): Set find-file-suppress-same-file-warnings to t to
3140         avoid slew of spurious messages.
3142 2001-05-18  Simon Josefsson  <simon@josefsson.org>
3144         * mail/smtpmail.el (maybe-append-domain): Renamed to
3145         `smtpmail-maybe-append-domain'.
3146         (smtpmail-via-smtp): Use the new name.
3148         * net/browse-url.el (browse-url-browser-function): Add kde.
3149         (browse-url-kde-program, browse-url-kde-args): New variables.
3150         (browse-url-kde): New function.
3152 2001-05-18  Miles Bader  <miles@gnu.org>
3154         * simple.el (delete-horizontal-space, just-one-space):
3155         Use `constrain-to-field' instead of `field-end'/`field-beginning',
3156         because it's more efficient for large files.
3158 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
3160         * mail/rmail.el (rmail-require-mime-maybe): New function.
3161         (rmail): Use it.
3162         (rmail-mode): Handle the case of finding Rmail files.
3164         * emacs-lisp/elp.el (elp-instrument-function): Handle advised
3165         functions.
3167 2001-05-17  Stefan Monnier  <monnier@cs.yale.edu>
3169         * jit-lock.el (jit-lock-after-change): Check the font-lock-multiline
3170         text-property after moving to the beginning of line and regardless
3171         of the value of font-lock-multiline.
3173 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
3175         * startup.el (fancy-splash-screens): Ignore events on the mode-line.
3177         * net/ange-ftp.el (ange-ftp-write-region): Make sure to record the
3178         last coding system used before calling set-buffer-modified-p
3179         because that function changes last-coding-system.
3181 2001-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
3183         * files.el (switch-to-buffer-other-window)
3184         (switch-to-buffer-other-frame): Add an xref to display-buffer in
3185         the doc string.
3187 2001-05-17  Gerd Moellmann  <gerd@gnu.org>
3189         * language/slovak.el, language/czech.el: New maintainer.
3191 2001-05-16  Sam Steingold  <sds@gnu.org>
3193         * emacs-lisp/cl-indent.el (toplevel): Indent the :method
3194         sub-form of `defgeneric' correctly.
3196 2001-05-16  Gerd Moellmann  <gerd@gnu.org>
3198         * tooltip.el (tooltip) <defgroup>: Put it in `gud' group instead
3199         of `c'.
3201         * textmodes/outline.el (outline-font-lock-level): Remove the
3202         condition-case, test what outline-level returns instead, to
3203         ease debugging.
3205         * international/mule.el (auto-coding-regexp-alist): New user-option.
3206         (auto-coding-from-file-contents): New function.
3207         (set-auto-coding): Use it to determine a coding system.
3209 2001-05-15  Gerd Moellmann  <gerd@gnu.org>
3211         * mouse.el (mouse-delete-other-windows): Doc fix.
3213         * emacs-lisp/lisp-mode.el (lisp-mode):
3214         Make font-lock-keywords-case-fold-search a buffer-local variable with
3215         make-local-variable before setting it.
3217 2001-05-14  Eli Zaretskii  <eliz@is.elta.co.il>
3219         * emacs-lisp/elp.el (elp-instrument-package): Don't allow empty
3220         prefixes.
3222 2001-05-14  Gerd Moellmann  <gerd@gnu.org>
3224         * hexl.el (hexl-current-address): Print a message when called
3225         interactively.
3227 2001-05-11  Stefan Monnier  <monnier@cs.yale.edu>
3229         * gud.el (gud-jdb-build-source-files-list): Fix paren typo.
3231         * pcvs-defs.el (cvs-mode-map): Don't rebind `undo'.
3233         * files.el (auto-mode-alist): Add *.perl and fix the *.<rev> case.
3235 2001-05-11  Gerd Moellmann  <gerd@gnu.org>
3237         * startup.el (command-line): If parameters have been changed in
3238         the init files which influence font selection, clear the face
3239         cache so that faces get realized with the new parameters.
3241         * Makefile.in (compile-files): Redirect output of chmod to /dev/null.
3243 2001-05-10  Stefan Monnier  <monnier@cs.yale.edu>
3245         * smerge-mode.el (smerge-mode): Force font-lock-multiline to t.
3247 2001-05-10  Eli Zaretskii  <eliz@is.elta.co.il>
3249         * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
3250         unibyte.  Suggested by Kenichi Handa <handa@etl.go.jp>.
3252 2001-05-10  Gerd Moellmann  <gerd@gnu.org>
3254         * net/browse-url.el (browse-url-filename-alist): Allow UNC file
3255         names for MS-Windows and MS-DOS.  From Dan Holmsand <dan@eyebee.com>.
3257 2001-05-09  John Wiegley  <johnw@gnu.org>
3259         * eshell/esh-util.el (eshell-convert-numeric-arguments):
3260         Annotated the documentation string to tell users about
3261         `eshell-no-numeric-conversions'.
3263         * eshell/esh-cmd.el (eshell-lisp-command): Don't perform numeric
3264         conversions if a Lisp function has the property
3265         `eshell-no-numeric-conversions' set to a non-nil value.
3267         * eshell/em-dirs.el, eshell/em-ls.el, eshell/em-script.el,
3268         eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-cmd.el: Set the
3269         property `eshell-no-numeric-conversions' on the following
3270         functions (which all deal with filesystem entities, and never Lisp
3271         numerical values): eshell/cd, eshell/pushd, eshell/popd,
3272         eshell/ls, eshell/source, eshell/., eshell/man, eshell/rm,
3273         eshell/mkdir, eshell/rmdir, eshell/mv, eshell/cp, eshell/ln,
3274         eshell/cat, eshell/make, eshell/diff, eshell/locate, eshell/occur,
3275         eshell/which, eshell/addpath.
3277 2001-05-09  John Wiegley  <johnw@gnu.org>
3279         * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is
3280         encountered as an argument, don't convert it right away, but tag
3281         the first character of the string with the text properties
3282         `number', which signifies to `eshell-lisp-command' that the
3283         argument should be passed through `string-to-number' if it is
3284         actually used in the call to a Lisp function.
3286         * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp
3287         function, convert any string arguments that have been tagged as
3288         "numbers", by calling string-to-number.
3290         * eshell/esh-util.el (eshell-number-regexp): Now that number
3291         conversions only happen for Lisp function calls, the number regexp
3292         should now match all integer and floating point forms.
3294         * eshell/esh-proc.el: Disable `eshell-stop-process' and
3295         `eshell-continue-process', since they are both nonfunctional at
3296         the moment.
3297         (eshell-proc-initialize): Don't bind keys for
3298         `eshell-stop-process' or `eshell-continue-process'.
3300         * eshell/em-unix.el (eshell-shuffle-files):
3301         Apply `directory-file-name' before calling `file-name-directory'.
3303         * eshell/em-hist.el (eshell-add-to-history): Reference to
3304         `eshell-history-ring' needed to be `eshell-history-index'.
3306         * calendar/timeclock.el (timeclock-find-discrep):
3307         Initialize `elapsed' to 0.
3308         (timeclock-find-discrep): Set `timeclock-last-event-workday' if
3309         it's still nil.
3311 2001-05-09  Stefan Monnier  <monnier@cs.yale.edu>
3313         * arc-mode.el (archive-int-to-mode): Construct the string directly.
3314         (archive-mode): Use capitalize.
3315         (archive-unique-fname): Use make-temp-file.
3317 2001-05-09  Gerd Moellmann  <gerd@gnu.org>
3319         * emacs-lisp/lisp-mode.el (lisp-interaction-mode): Doc fix.
3321 2001-05-09  Eli Zaretskii  <eliz@is.elta.co.il>
3323         * tar-mode.el (tar-extract): Pay attention to the value of
3324         coding-system-for-read, if it is non-nil.
3326         * calendar/holidays.el (holidays): Add an autoload cookie.
3327         From Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
3329 2001-05-08  John Wiegley  <johnw@gnu.org>
3331         * calendar/timeclock.el (timeclock-workday-remaining):
3332         Changed logic for determining how much time is remaining.
3333         (timeclock-workday-elapsed): Don't accept a "relative" argument
3334         for the current day's elapsed time.  What could that have meant?
3335         (timeclock-workday-elapsed-string): No "relative" argument anymore.
3336         (timeclock-when-to-leave): Changed logic, similarly to what was
3337         done for `timeclock-workday-remaining'.
3338         (timeclock-find-discrep): Removed "today-only" argument, which had
3339         no meaning.  Fixed some more math problems.  The function now
3340         returns a three member list: (TOTAL-TIME-DISCREPANCY
3341         TODAYS-TIME-DISCREPANCY TODAYS-ELAPSED-TIME).
3343 2001-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
3345         * w32-fns.el (convert-standard-filename): Start replacing slashes
3346         from the beginning of the file name, not from where the last
3347         invalid character was.  From "Andrew Maguire (SWW)"
3348         <Andrew.Maguire@Smallworld.co.uk>
3350 2001-05-07  MORIOKA Tomohiko  <tomo@m17n.org>
3352         The following changes are to provide infrastructure for handling
3353         MIME messages to rmail.  They don't affect the original behaviour
3354         if rmail-enable-mime is nil.
3356         * mail/rmail.el (rmail-insert-mime-forwarded-message-function)
3357         (rmail-search-mime-message-function)
3358         (rmail-search-mime-header-function): New variables.
3359         (rmail-expunge-and-save): Be sure to set-buffer to the Rmail buffer.
3360         (rmail-quit, rmail-get-new-mail): Bury `rmail-buffer' after
3361         `rmail-view-buffer' is hidden.
3362         (rmail-toggle-header): Likewise.  If rmail-enable-mime is non-nil,
3363         call rmai-show-mime-function.
3364         (rmail-display-labels): If rmail-enable-mime is non-nil, update
3365         mode-line-process of rmail-view-buffer.
3366         (rmail-set-attribute): Be sure to set-buffer to the Rmail buffer.
3367         (rmail-show-message): Be sure to call rmail-auto-file in the Rmail
3368         buffer.
3369         (rmail-next-message, rmail-next-undeleted-message): Be sure to
3370         set-buffer to the Rmail buffer.
3371         (rmail-message-regexp-p): If rmail-enable-mime is non-nil, call
3372         rmail-search-mime-header-function.
3373         (rmail-search-message): New function.
3374         (rmail-search): Call rmail-search-message to check if a message
3375         matches REGEXP, lastly update point after calling
3376         rmail-show-message.
3377         (rmail-undelete-previous-message, rmail-expunge-confirmed)
3378         (rmail-only-expunge): Be sure to set-buffer to the Rmail buffer.
3379         (rmail-reply): If rmail-enable-mime is non-nil, don't narrow to
3380         header region, refer to rmail-msgref-vector while setting the
3381         current buffer to rmail-buffer temporarily.
3382         (rmail-forward): Be sure to bind forward-buffer to the Rmail buffer.
3383         If rmail-enable-mime is non-nil, call
3384         rmail-insert-mime-forwarded-message-function instead of inserting
3385         forwarded message by itself.
3387         * mail/rmailkwd.el (rmail-read-label): Be sure to work in the
3388         Rmail buffer.
3389         (rmail-set-label, rmail-next-labeled-message): Likewise.
3391         * mail/rmailout.el (rmail-output-read-rmail-file-name): Be sure to
3392         set-buffer to the Rmail buffer.
3393         (rmail-output-to-rmail-file): Likewise.
3394         (rmail-output): Likewise.
3396         * mail/rmailsum.el (rmail-message-subject-p): Process the result
3397         of mail-fetch-field by rmail-summary-line-decoder.
3398         (rmail-new-summary): Be sure to go to the Rmail buffer.
3399         If rmail-enable-mime is non-nil, set rmail-summary-buffer of
3400         rmail-view-buffer to nil.
3401         (rmail-summary-undelete): If rmail-enable-mime is non-nil, pop to
3402         rmail-view-buffer.
3403         (rmail-summary-scroll-msg-up): Handle rmail-view-buffer, not
3404         rmail-buffer.
3405         (rmail-summary-scroll-msg-down): Likewise.
3406         (rmail-summary-beginning-of-message): Likewise.
3407         (rmail-summary-wipe): Likewise.
3408         (rmail-summary-toggle-header): Use save-window-excursion, not
3409         save-excursion.  Update point in rmail-view-buffer, not in
3410         rmail-buffer.
3411         (rmail-summary-reply): Before calling rmail-reply, set buffer to
3412         rmail-view-buffer, not rmail-buffer.
3414 2001-05-07  Gerd Moellmann  <gerd@gnu.org>
3416         * cus-edit.el (custom-file): Signal an error if user-init-file is
3417         nil (running -q).
3419         * mail/rmailedit.el (rmail-edit-mode-hook): Add :version.
3421         * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
3422         Add :version.
3424         * mail/smtpmail.el (smtpmail-warn-about-unknown-extensions):
3425         New option.
3426         (smtpmail-via-smtp): Print warnings about unknown SMTP extensions
3427         only if smtpmail-warn-about-unknown-extensions is set.
3429         * mail/rmail.el (rmail-mode-map): Use rmail-sort-by-labels
3430         instead of rmail-sort-by-keywords.
3432         * mail/rmailsort.el (rmail-sort-by-labels): Renamed from
3433         rmail-sort-by-keywords.
3435         * mail/rmailsum.el (rmail-summary-sort-by-labels): Renamed from
3436         rmail-summary-sort-by-keywords.  Doc fix.
3437         (rmail-summary-mode): Doc fix.
3439         * mail/rmail.el (rmail-edit): New Custom group.
3441         * mail/rmailedit.el (rmail-edit-mode): Doc fix.
3442         (rmail-edit-mode-hook): New user-option.
3444 2001-05-05  Richard M. Stallman  <rms@gnu.org>
3446         * help.el (help-xref-symbol-regexp): Recognize "source of"
3447         and friends, meaning make a link to the source file.
3448         (help-make-xrefs): Handle "source of" and friends
3449         by constructing a link that visits the source file.
3451         * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
3453 2001-05-04  Stefan Monnier  <monnier@cs.yale.edu>
3455         * progmodes/cperl-mode.el (cperl-font-lock-keywords)
3456         (cperl-font-lock-keywords-1, cperl-font-lock-keywords-2):
3457         Renamed from perl-font-lock-keywords to avoid clashes.
3458         (cperl-mode, cperl-load-font-lock-keywords, cperl-init-faces)
3459         (cperl-load-font-lock-keywords-1, cperl-load-font-lock-keywords-2):
3460         Updated correspondingly.
3462         * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
3463         Typo `nonexistant' -> `nonexistent'.
3465 2001-05-04  Martin Stjernholm  <bug-cc-mode@gnu.org>
3467         * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
3468         Split `c-electric-delete' into two functions where
3469         `c-electric-delete-forward' always deletes forward and
3470         `c-electric-delete' only contains the code necessary for XEmacs to
3471         choose between backward and forward deletion.
3473         * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
3474         get the electric behavior on that key too.
3475         (c-fill-paragraph): Fixed bogus direct use of
3476         c-comment-prefix-regexp, which caused an error when it's a list.
3478 2001-05-03  Eli Zaretskii  <eliz@is.elta.co.il>
3480         * dired-aux.el (dired-diff): Doc fix.
3482         * dired.el (dired-diff): Likewise.
3484 2001-05-03  Eli Zaretskii  <eliz@is.elta.co.il>
3486         * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
3488 2001-05-02  Stefan Monnier  <monnier@cs.yale.edu>
3490         * vc.el (vc-next-action-on-file): Only force buffer+file to writable
3491         if both the buffer and the file are read-only.
3493         * progmodes/sh-script.el (sh-prev-line): Look for sh-heredoc-face
3494         rather than font-lock-string-face.
3495         (sh-get-indent-info): Treat heredocs like strings.
3497 2001-05-02  Gerd Moellmann  <gerd@gnu.org>
3499         * textmodes/texinfmt.el (texinfo-format-parse-args): Don't consume
3500         a newline following `}'.
3501         (texinfo-format-email): New function.
3502         (toplevel): Use texinfo-format-email for @email.
3503         (texinfo-format-kbd-regexp, texinfo-format-kbd-end-regexp):
3504         Add `display'.
3505         (texinfo-sort-region): Goto point-min before sorting.
3506         (texinfo-set): Remove leading white space from value.
3507         From yagi@is.titech.ac.jp.
3509         * replace.el (query-replace-regexp-eval): Doc fix.
3511 2001-05-01  Stefan Monnier  <monnier@cs.yale.edu>
3513         * diff-mode.el (diff-nonexistant-face): New face.
3514         (diff-font-lock-keywords): Use it.
3516 2001-04-30  Eli Zaretskii  <eliz@is.elta.co.il>
3518         * font-lock.el (font-lock-mode): Doc fix.
3520         * dired-aux.el (dired-do-rename-regexp, dired-do-copy-regexp)
3521         (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
3523 2001-04-30  Gerd Moellmann  <gerd@gnu.org>
3525         * progmodes/sh-script.el (sh-font-lock-heredoc): Allow optional
3526         backslash at the start of the here-document delimiter.
3527         (sh-font-lock-syntactic-keywords): Likewise.
3529         * mail/rmail.el (rmail-message-regexp-p): Yet another fix.
3531 2001-04-29  Eli Zaretskii  <eliz@is.elta.co.il>
3533         * term/tty-colors.el (tty-color-define, tty-color-off-gray-diag)
3534         (tty-color-translate, tty-color-by-index, tty-color-values)
3535         (tty-color-desc): Doc fix.
3537 2001-04-27  Eli Zaretskii  <eliz@is.elta.co.il>
3539         * dired-aux.el (dired-do-create-files, dired-do-copy)
3540         (dired-do-symlink, dired-do-hardlink, dired-do-rename):
3541         Mention dired-dwim-target in the doc string.
3543 2001-04-28  Miles Bader  <miles@gnu.org>
3545         * dabbrev.el (dabbrev--ignore-buffer-p): New function.
3546         (dabbrev--find-expansion): Use it.
3547         (dabbrev--select-buffers): Don't select ignored buffers.
3549 2001-04-27  Gerd Moellmann  <gerd@gnu.org>
3551         * mail/rmail.el (rmail-message-regexp-p): Don't match before headers.
3553 2001-04-26  Richard M. Stallman  <rms@gnu.org>
3555         * dabbrev.el: Add doc strings for some functions.
3556         (dabbrev--eliminate-newlines): New variable.
3557         (dabbrev--substitute-expansion): Convert newlines to spaces
3558         if dabbrev--eliminate-newlines is set.
3559         If abbrev and expansion are both all-lower-case,
3560         leave dabbrev--last-case-pattern nil.
3562 2001-04-26  Gerd Moellmann  <gerd@gnu.org>
3564         * mail/rmail.el (rmail-message-regexp-p): Use rfc822-goto-eoh
3565         if necessary, like in rmail-show-message.
3567 2001-04-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3569         * ps-print.el: Color specified by number is forced to be float number.
3570         (ps-print-version): New version number (6.5.1.1).
3571         (ps-header-frame-alist, ps-footer-frame-alist): Adjust color
3572         initialization.
3573         (ps-prefix-quote): New internal var.
3574         (ps-print-quote): New fun.
3575         (ps-setup, ps-output-frame-properties, ps-float-format)
3576         (ps-format-color): Code fix.
3577         (ps-plot-region): Eliminate redundant foreground color text setting.
3579 2001-04-26  Eli Zaretskii  <eliz@is.elta.co.il>
3581         * dabbrev.el (dabbrev--select-buffers): Add a doc string.
3583 2001-04-25  Gerd Moellmann  <gerd@gnu.org>
3585         * faces.el (tty-handle-reverse-video): Don't set inverse-video.
3587 2001-04-25  Eli Zaretskii  <eliz@is.elta.co.il>
3589         * info.el (Info-additional-directory-list): Doc fix.
3591         * find-lisp.el (find-lisp-find-dired-filter)
3592         (find-lisp-find-dired-subdirectories, find-lisp-find-dired):
3593         Add autoload cookies.  From Richard Y. Kim <ryk@dspwiz.com>.
3595 2001-04-25  Stefan Monnier  <monnier@cs.yale.edu>
3597         * progmodes/make-mode.el (makefile-font-lock-keywords):
3598         Rationalize the rules for includes and conditionals and use the
3599         keyword face for them.
3601         * faces.el (modify-face): Add compatibility for non-interactive use.
3603 2001-04-24  John Wiegley  <johnw@gnu.org>
3605         * eshell/esh-cmd.el (eshell-find-alias-function): Corrected the
3606         fix from last night, since it wasn't finding eshell/cd.
3608 2001-04-24  Gerd Moellmann  <gerd@gnu.org>
3610         * rect.el (string-rectangle): Revert to 20.x behaviour.
3611         (replace-rectangle): Make it an alias for string-rectangle.
3612         (string-insert-rectangle): New function.
3614 2001-04-23  John Wiegley  <johnw@gnu.org>
3616         * eshell/em-unix.el (eshell/diff): Fixed problems that were
3617         occurring with Emacs 21's diff.el/compile.el interaction layer.
3619 2001-04-23  Colin Walters  <walters@cis.ohio-state.edu>
3621         * eshell/esh-cmd.el (eshell-find-alias-function): Return t in the
3622         case where the function was defined in a file, but not part of an
3623         eshell module.
3625 2001-04-23  John Wiegley  <johnw@gnu.org>
3627         * eshell/em-smart.el (eshell-smart-redisplay): Added some safety
3628         code to work around a redisplay problem I've been having.
3630 2001-04-23  John Wiegley  <johnw@gnu.org>
3632         * calendar/timeclock.el (timeclock-day-required): If the time
3633         required for a particular day is not set, use `timeclock-workday'.
3634         (timeclock-find-discrep): Added some sample code in a comment.
3636         * eshell/eshell.el (eshell-command): Made a few changes so that
3637         `eshell-command' could be called programmatically.
3639         * eshell/esh-mode.el (eshell-non-interactive-p): Moved to eshell.el.
3641         * eshell/eshell.el (eshell-non-interactive-p): Moved from esh-mode.el.
3643 2001-04-23  John Wiegley  <johnw@gnu.org>
3645         * calendar/timeclock.el: Updated copyright.
3646         (timeclock-generate-report): Don't report the daily or two-week
3647         total, if no time has been worked in that period.
3648         (timeclock-find-discrep): Moved call to `file-readable-p'; removed
3649         final computational form, which was unnecessary; corrected a
3650         parsing problem when timeclock-relative was nil.
3652 2001-04-23  Kahlil Hodgson <kahlil@discus.anu.edu.au>
3654         * calendar/timeclock.el (timeclock-modeline-display): Check if
3655         `list-entry' is null.
3656         (timeclock-use-display-time): The first argument to `set-variable'
3657         must be a symbol.
3659 2001-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
3661         * calendar/calendar.el (diary-entry-marker)
3662         (calendar-today-marker, calendar-holiday-marker):
3663         Use display-color-p instead of window-system.
3664         (calendar-mode-map, calendar-mode): Use display-popup-menus-p
3665         instead of window-system.
3666         (calendar-hide-window): Use display-multi-frame-p instead of
3667         window-system.
3669         * calendar/cal-x.el (calendar-two-frame-setup)
3670         (calendar-only-one-frame-setup, calendar-one-frame-setup):
3671         Use display-multi-frame-p instead of window-system.
3673 2001-04-23  Gerd Moellmann  <gerd@gnu.org>
3675         * play/fortune.el (fortune-from-region): Use `eq' instead of `eql'.
3677         * textmodes/ispell.el, emacs-lisp/checkdoc.el,
3678         * progmodes/ebrowse.el, play/fortune.el: Fix autoload cookies.
3680 2001-04-23  Alex Schroeder  <alex@gnu.org>
3682         * goto-addr.el: Instead of defining line-beginning-position and
3683         line-end-position a defalias is used for point-at-bol and point-at-eol.
3685 2001-04-23  Alex Schroeder  <alex@gnu.org>
3687         * goto-addr.el: Added XEmacs compatibility code.
3688         (goto-address-highlight-keymap): Made keybindings XEmacs compatible.
3690 2001-04-22  Eli Zaretskii  <eliz@is.elta.co.il>
3692         * textmodes/paragraphs.el (sentence-end): Doc fix.
3694 2001-04-20  Alex Schroeder  <alex@gnu.org>
3696         * sql.el (sql-escape-newlines-and-send): New function.
3697         (sql-db2): Set comint-input-sender to sql-escape-newlines-and-send.
3699 2001-04-20  Alex Schroeder  <alex@gnu.org>
3701         * sql.el (sql-db2-program): New option.
3702         (sql-db2-options): New option.
3703         (sql-db2): New function.
3705 2001-04-20  Alex Schroeder  <alex@gnu.org>
3707         * sql.el (sql-mode-menu): Added highlighting entries.
3708         (sql-highlight-oracle-keywords): New function.
3709         (sql-highlight-postgres-keywords): New function.
3710         (sql-highlight-ansi-keywords): New function.
3712 2001-04-20  Alex Schroeder  <alex@gnu.org>
3714         * sql.el (sql-help): Doc change.
3716 2001-04-19  Karl Fogel  <kfogel@collab.net>
3718         * saveplace.el (save-place-alist-to-file): Removed no-effect code
3719         that inserted file content only to delete it immediately.
3720         Probably a cut-and-paste bug.  Thanks to Juanma Barranquero
3721         <lektu@uol.com.br> for the patch.
3723 2001-04-19  Stefan Monnier  <monnier@cs.yale.edu>
3725         * emacs-lisp/easy-mmode.el (easy-mmode-defsyntax): Unquote `doc'.
3727 2001-04-18  Gerd Moellmann  <gerd@gnu.org>
3729         * emacs-lisp/cl-indent.el (toplevel): Comment out the spec
3730         for defmethod.
3732         * comint.el (comint-cr-magic): New function.
3733         (toplevel): Add it to comint-preoutput-filter-functions.
3735 2001-04-18  Andrew Innes  <andrewi@gnu.org>
3737         * makefile.w32-in (EMACSLOADPATH): Define.
3738         (custom-deps, autoloads, .el.elc, compile-files-CMD, compile-files-SH)
3739         (recompile): Remove stuff to set EMACSLOADPATH.
3741 2001-04-18  Gerd Moellmann  <gerd@gnu.org>
3743         * language/slovak.el ("Slovak"): Add tutorial entry.
3745         * net/browse-url.el (browse-url-new-window-flag): Renamed from
3746         browse-url-new-window-p.
3748 2001-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
3750         * info.el (Info-menu-update): When there are no menus and/or no
3751         cross references in the node, make the respective items of the
3752         Info menu-bar menu inactive.
3754 2001-04-17  Gerd Moellmann  <gerd@gnu.org>
3756         * indent.el (indent-for-tab-command): Call indent-line-function
3757         with no argument if PREFIX-ARG is non-nil.
3759         * frame.el (delete-other-frames): Handle minibuffer-only frames.
3761 2001-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
3763         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Don't invoke CVS as
3764         an async subprocess if start-process is unavailable.  Suggested by
3765         Tim Van Holder <tim.van.holder@pandora.be>.
3767 2001-04-15  Eli Zaretskii  <eliz@is.elta.co.il>
3769         * info.el (Info-additional-directory-list): Doc fix.  Suggested by
3770         Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
3772 2001-04-14  Eli Zaretskii  <eliz@is.elta.co.il>
3774         * info.el (Info-file-list-for-emacs): Add an entry for the "info"
3775         manual.
3777 2001-04-13  Stefan Monnier  <monnier@cs.yale.edu>
3779         * pcvs-defs.el (cvs-mode-map): Bind C-o like in dired.
3780         (cvs-menu): Add a few entries.
3782         * pcvs.el (cvs-addto-collection): Don't merge MESSAGE fileinfos.
3783         (cvs-update-filter): Only advertise `cvs-mode-delete-lock' if the
3784         lock file appears to be reachable from Emacs.
3785         (cvs-mode-mark-on-state, cvs-mode-display-file): New functions.
3786         (cvs-mode-find-file): Look for cvs-header-face rather than
3787         cvs-dirname-face (which doesn't exist).
3788         (cvs-mode-find-file): Allow `other' to be set to `dont-select'.
3790         * pcvs-parse.el (cvs-parse-run-table): Remove misleading text.
3792 2001-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
3794         * emulation/pc-select.el (pc-selection-mode): Don't turn on
3795         normal-erase-is-backspace on a tty.  Instead, bind some keys such
3796         as [delete] directly, like pc-select.el did before
3797         normal-erase-is-backspace was invented.
3799 2001-04-12  Eli Zaretskii  <eliz@is.elta.co.il>
3801         * ls-lisp.el (ls-lisp-format): Leave a blank before "root".
3803 2001-04-11  John Wiegley  <johnw@gnu.org>
3805         * eshell/em-ls.el (eshell-ls-insert-directory):
3806         Set font-lock-defaults to nil, to prevent fontification in dired
3807         buffers, if Eshell's ls is being used.
3809 2001-04-11  John Wiegley  <johnw@gnu.org>
3811         * calendar/timeclock.el (timeclock-completing-read): New function.
3812         (timeclock-ask-for-project, timeclock-ask-for-reason):
3813         Call `timeclock-completing-read'.
3815         * eshell/em-alias.el (eshell-command-aliased-p): `assoc' was
3816         required where `member' was being used.
3818 2001-04-11  Colin Walters  <walters@cis.ohio-state.edu>
3820         * eshell/em-hist.el (eshell-previous-matching-input):
3821         Don't display "History item" if the the minibuffer is active.
3823 2001-04-11  Gerd Moellmann  <gerd@gnu.org>
3825         * startup.el (command-line): Output a newline after printing
3826         an error from loading the window system's init file.
3828 2001-04-11  Eli Zaretskii  <eliz@is.elta.co.il>
3830         * textmodes/texinfo.el (texinfo-font-lock-keywords):
3831         Add fontification for @value, @dfn, @dmn, @acronym, @anchor, and
3832         @inforef.  Add an OVERRIDE of `keep' to highlight specs of
3833         keywords whose arguments routinely include @@.
3835 2001-04-10  Gerd Moellmann  <gerd@gnu.org>
3837         * emacs-lisp/advice.el (ad-make-advised-definition):
3838         Construct advice for subrs differently.
3840         * textmodes/paragraphs.el (forward-sentence): Put the sentence-end
3841         regexp in parentheses when building the regexp for searching backwards.
3843         * simple.el (completion-list-mode-finish): New function.
3844         (toplevel): Add completion-list-mode-finish to temp-buffer-show-hook.
3846         * language/european.el ("Polish"): Change sample text.
3847         From jsbien@mimuw.edu.pl (Janusz S. Bie\e,Bq\e(B).
3849         * progmodes/sh-script.el (sh-indent-line): Add optional PREFIX-ARG
3850         parameter.
3852         * faces.el (menu): Doc fix.
3854 2001-04-10  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3856         * ps-print.el: Footer implementation.  Doc fix.
3857         (ps-print-version): New version number (6.5.1).
3858         (ps-header-frame-alist): New customization var for header frame
3859         properties.
3860         (ps-line-number-color): New customization var for line number color.
3861         (ps-footer-offset, ps-footer-line-pad, ps-print-footer)
3862         (ps-print-footer-frame, ps-footer-frame-alist, ps-footer-lines)
3863         (ps-footer-font-family, ps-footer-font-size, ps-left-footer)
3864         (ps-right-footer): New customization vars for footers.
3865         (ps-footer-pad, ps-footer-font-size-internal): New internal vars for
3866         footers.
3867         (ps-setup, ps-get-page-dimensions, ps-generate-header-line)
3868         (ps-generate-header, ps-begin-file, ps-begin-job, ps-begin-page):
3869         Code fix.
3870         (ps-prologue-file): Indentation fix.
3871         (ps-print-quote): Fun eliminated.
3872         (ps-value, ps-get, ps-put, ps-del): New funs for alist handling.
3873         (ps-output-frame-properties): New fun.
3874         (ps-fonts, ps-font-number, ps-rgb-color, ps-end-page, ps-next-page)
3875         (ps-skip-newline): Replace defun by defsubst.
3877 2001-04-10  Colin Walters <walters@cis.ohio-state.edu>
3879         * eshell/eshell.el (eshell-command): Needed a "%s" format
3880         specifier, in case the buffer contains percent characters.
3882 2001-04-10  John Wiegley  <johnw@gnu.org>
3884         * calendar/timeclock.el (timeclock-generate-report): Added a
3885         missing insert of the project name.
3887 2001-04-09  Gerd Moellmann  <gerd@gnu.org>
3889         * obsolete/profile.el: Moved from emacs-lisp/.
3891         * Makefile.in (nonobsolete_setwins): New macro.
3892         (finder-data): Use it instead of `setwins'.
3893         From: Dave Love <fx@gnu.org>.
3895         * server.el (server-visit-files): Set server-existing-buffer correctly.
3896         (server-visit-files): Run server-visit-hook after going to
3897         line 1 so that the hook can set point as it sees fit.
3899         * bindings.el (mode-line-modified): Unify help messages.
3901 2001-04-07  Eli Zaretskii  <eliz@is.elta.co.il>
3903         * dos-fns.el (dos-8+3-filename): Rename from dos-truncate-to-8+3.
3904         All callers changed.
3906 2001-04-06  Eli Zaretskii  <eliz@is.elta.co.il>
3908         * international/titdic-cnv.el (miscdic-convert): For MS-DOS, if
3909         long file names aren't supported, truncate the file names in
3910         quail-misc-package-ext-info to 8+3 before matching them against
3911         FILENAME.
3913         * dos-fns.el (dos-truncate-to-8+3): New function.
3915         * progmodes/compile.el (grep-compute-defaults): Use null-device
3916         instead of literal /dev/null. Reported by Jens Schmidt
3917         <schmidt@mathematik.uni-kl.de>.
3919         * simple.el (normal-erase-is-backspace-mode): Doc fix.
3921 2001-04-06  Stefan Monnier  <monnier@cs.yale.edu>
3923         * textmodes/sgml-mode.el: Add unknown maintainer.
3924         (sgml-tag): Pass `str' explicitly through skeleton-transformation.
3925         (html-mode-map): Use set-keymap-parent.
3927 2001-04-06  Dave Love  <fx@gnu.org>
3929         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
3930         Remove redundant string-to-list.
3932 2001-04-05  Stefan Monnier  <monnier@cs.yale.edu>
3934         * composite.el (reference-point-alist): Doc fix.
3936 2001-04-05  Sam Steingold  <sds@gnu.org>
3938         * font-lock.el (font-lock-keywords-case-fold-search):
3939         Make buffer-local.  This fixes a very annoying bug when loading a Lisp
3940         file made font-lock case-insensitive.
3942 2001-04-05  Gerd Moellmann  <gerd@gnu.org>
3944         * faces.el (defface menu): Doc fix.
3946         * wid-edit.el (widget-color-sample-face-get): Don't make
3947         faces for undefined colors.
3949         * version.el (emacs-version): Include LessTif/Motif version info.
3951 2001-04-04  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3953         * ps-mule.el: Eliminate cl package dependence.
3954         (char-valid-p, multibyte-string-p, string-make-multibyte): Define funs
3955         if they aren't defined yet.
3956         (ps-mule-encode-header-string, ps-mule-header-string-charsets):
3957         Eliminate cl package dependence.
3959 2001-04-04  Stefan Monnier  <monnier@cs.yale.edu>
3961         * progmodes/cc-cmds.el (c-outline-level):
3962         Bind buffer-invisibility-spec.  Originally from Dave Love, but
3963         got lost when incorporating version 5.26.
3965 2001-04-04  Eli Zaretskii  <eliz@is.elta.co.il>
3967         * emulation/pc-select.el (pc-selection-mode):
3968         Call normal-erase-is-backspace-mode instead of binding
3969         keys individually.
3971         * cus-load.el (normal-erase-is-backspace): Use it instead of
3972         delete-key-deletes-forward.
3974         * startup.el (command-line): Use normal-erase-is-backspace and
3975         normal-erase-is-backspace-mode.
3977         * simple.el (normal-erase-is-backspace): Rename from
3978         delete-key-deletes-forward.  Doc fix.
3979         (normal-erase-is-backspace-mode): Rename from
3980         delete-key-deletes-forward-mode.  Doc fix.
3981         Run normal-erase-is-backspace-hook.
3983         * dired.el (dired-move-to-filename-regexp): Support file sizes in
3984         ``human-readable'' format produced by GNU `ls'.
3985         (dired-move-to-filename-regexp): Recognize ISO format dates.
3986         From Paul Eggert <eggert@twinsun.com>.
3988 2001-04-04  Gerd Moellmann  <gerd@gnu.org>
3990         * emacs-lisp/lisp-mnt.el (lm-keywords-list, lm-keywords-finder-p):
3991         New functions.
3992         (lm-verify): Check keywords.
3993         From Eric M. Ludlam <eric@siege-engine.com>.
3995 2001-04-03  Eric M. Ludlam  <eric@siege-engine.com>
3997         * speedbar.el (speedbar-insert-image-button-maybe): Check for
3998         `xemacs' feature instead of for the function `set-extent-property'.
4000 2001-04-03  Stefan Monnier  <monnier@cs.yale.edu>
4002         * mail/mh-utils.el (mh-folder-hist): New var.
4003         (mh-prompt-for-folder): Use it and pass `default' to completing-read.
4005 2001-04-03  Eli Zaretskii  <eliz@is.elta.co.il>
4007         * hexl.el (hexl-scroll-up): If scrolling gets outside the hexl
4008         region, position point on the first or last 16-byte group.
4009         (hexl-mode-map): Bind C-Home and C-End to hexl-beginning-of-buffer
4010         and hexl-end-of-buffer.  Bind End and Home to hexl-end-of-line and
4011         hexl-beginning-of-line.
4013 2001-04-03  Gerd Moellmann  <gerd@gnu.org>
4015         * icomplete.el (icomplete-mode): Treat an argument like other
4016         modes do.
4018         * startup.el (fancy-splash-head): Use splash8.xpm for color
4019         depth 8.
4021         * emacs-lisp/checkdoc.el (checkdoc-common-verbs-wrong-voice):
4022         Add an antry for ``converts''.
4024         * language/slovak.el ("Slovak"): Add documentation string.
4025         From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk ml.).
4027         * language/czech.el ("Czech"): Add documentation string.
4028         From Pavel@Janik.cz (Pavel Jan\e,Bm\e(Bk ml.).
4030         * ps-mule.el (ps-mule-font-info-database-bdf): Change `isci24-etl.bdf'
4031         to `isci24-mule.bdf'.  From: Kenichi Handa <handa@etl.go.jp>.
4033 2001-04-02  Stefan Monnier  <monnier@cs.yale.edu>
4035         * mail/mail-extr.el (mail-extr-delete-char, mail-extr-safe-move-sexp)
4036         (mail-extr-skip-whitespace-forward, mail-extr-nuke-char-at)
4037         (mail-extr-skip-whitespace-backward, mail-extr-undo-backslash-quoting):
4038         Use `defsubst' rather than a macro to ease debugging.
4039         (mail-extr-last): Remove (use `last' instead).
4040         (mail-extract-address-components): Properly reset the syntax-table
4041         after parsing an address.  Use `last' rather than mail-extr-last.
4042         Make sure the end marker stays at the very end.
4044 2001-04-02  Eli Zaretskii  <eliz@is.elta.co.il>
4046         * international/titdic-cnv.el (miscdic-convert): Fix a typo in the
4047         last change.
4049 2001-04-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
4051         * ps-print.el: Line and paragraph spacing feature.  Region to cut
4052         out when printing.  Doc fix.
4053         (ps-print-version): New version number (6.5).
4054         (ps-line-spacing, ps-paragraph-spacing, ps-paragraph-regexp):
4055         New vars.  Line and paragraph spacing feature.
4056         (ps-begin-cut-regexp, ps-end-cut-regexp): New vars.  Region to cut
4057         out when printing.
4058         (ps-setup, ps-nb-pages, ps-get-page-dimensions, ps-begin-file)
4059         (ps-get-font-size, ps-begin-job, ps-continue-line)
4060         (ps-plot-region): Code fix.
4061         (ps-print-prologue-2): Var eliminated.
4062         (ps-line-spacing-internal, ps-paragraph-spacing-internal):
4063         New internal vars.
4064         (ps-get-size): New fun.
4065         (ps-output-string-prim, ps-init-output-queue, ps-print-page-p)
4066         (ps-next-line): Replace defun by defsubst.
4067         (ps-mule-plot-string): Autoload doc fix.
4069         * ps-bdf.el: XEmacs compatibility.  Doc fix.
4070         (installation-directory, coding-system-for-read): Declare vars if
4071         it's not declared yet.
4072         (bdf-read-font-info, bdf-read-bitmap, bdf-get-bitmaps): Code fix.
4074         * ps-mule.el: XEmacs compatibility.  Doc fix.
4075         (leading-code-private-22): Declare var if it's not declared yet.
4076         (charset-bytes, charset-dimension, charset-id, charset-width)
4077         (find-charset-region, split-char, char-width, chars-in-region)
4078         (forward-point, decompose-composite-char, encode-coding-string)
4079         (coding-system-p, ccl-execute-on-string, define-ccl-program):
4080         Define funs if not defined yet.
4081         (encode-composition-rule, find-composition): Define funs if not
4082         loaded yet.
4083         (ps-mule-prologue): PostScript code fix.
4085 2001-04-02  Kenichi Handa  <handa@etl.go.jp>
4087         * ps-mule.el (ps-mule-generate-font): New arg HEADER-P.  If it is
4088         non-nil, generate font for the header strings.
4089         (ps-mule-prepare-font): Likewise.
4090         (ps-mule-generate-glyphs): Likewise.
4091         (ps-mule-string-encoding): Likewise.
4092         (ps-mule-header-charsets): New variable.
4093         (ps-mule-encode-header-string): New function.
4094         (ps-mule-header-string-charsets): New function.
4095         (ps-mule-begin-job): Check charsets in the header strings.  If there
4096         are non-ASCII and non-Latin1 charsets, prepare fonts for them.
4098         * ps-print.el (ps-generate-header-line): Encode the header string by
4099         ps-mule-encode-header-string.
4100         (ps-mule-encode-header-string): Declare autoload.
4102 2001-04-02  Gerd Moellmann  <gerd@gnu.org>
4104         * frame.el (cursor-in-non-selected-windows):
4105         Replaces show-cursor-in-non-selected-windows.
4107 2001-03-31  Kenichi Handa  <handa@etl.go.jp>
4109         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
4110         Delete entries for "chinese-py" and "chinese-ziranma".
4111         (quail-misc-package-ext-info): New variable.
4112         (tsang-quick-converter): New function.
4113         (tsang-b5-converter, quick-b5-converter, tsang-cns-converter)
4114         (quick-cns-converter, py-converter, ziranma-converter)
4115         (miscdic-convert, batch-miscdic-convert): New functions.
4117 2001-03-30  Kenichi Handa  <handa@etl.go.jp>
4119         * international/utf-8.el (ccl-encode-mule-utf-8): Fix handling of
4120         eight-bit-control chars.
4122         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
4123         Reduce making temporary vector (suggested by Dave Love).
4125 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
4127         * simple.el (transient-mark-mode): Mention ESC ESC ESC in the doc
4128         string as well.
4130 2001-03-30  Andreas Schwab  <schwab@suse.de>
4132         * files.el (backup-directory-alist): Fix typo.
4134 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
4136         * time-stamp.el (time-stamp-format): Doc fix.  From Paul Eggert
4137         <eggert@twinsun.com>.
4139 2001-03-30  Dave Love  <fx@gnu.org>
4141         * progmodes/fortran.el (fortran-comment-region): Fix typo.
4143 2001-03-30  Eli Zaretskii  <eliz@is.elta.co.il>
4145         * simple.el (transient-mark-mode): Mention C-g in the doc string.
4147 2001-03-30  Miles Bader  <miles@gnu.org>
4149         * subr.el (interactive-form): Fix paren typo.
4151 2001-03-29  Eli Zaretskii  <eliz@is.elta.co.il>
4153         * emacs-lisp/profile.el: Say that it's obsolete in the header
4154         line, so that finder.el puts that into its data-base.
4155         Suggested by Alex Schroeder <alex@gnu.org>.
4157 2001-03-29  Paul Eggert  <eggert@twinsun.com>
4159         * mail/emacsbug.el (report-emacs-bug): Report LC_COLLATE,
4160         LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
4162 2001-03-29  Stefan Monnier  <monnier@cs.yale.edu>
4164         * generic.el (generic-mode-set-comments): Use "" rather than nil
4165         for comment-end.
4167 2001-03-29  Gerd Moellmann  <gerd@gnu.org>
4169         * emacs-lisp/advice.el (ad-make-advised-definition):
4170         Call interactive-form to obtain the interactive spec of subrs.
4172         * subr.el (interactive-form): New function.
4174 2001-03-29  Andre Spiegel  <spiegel@gnu.org>
4176         * vc-sccs.el (vc-sccs-register): Use relative file names.
4178 2001-03-28  Gerd Moellmann  <gerd@gnu.org>
4180         * bookmark.el (bookmark-get-bookmark): Handle case that
4181         BOOKMARK is not a string.
4183         * image.el (image-type-regexps): Change type for PS files
4184         to `postscript'.
4186         * subr.el (read-passwd): Clear command history after each
4187         character entered.  From: Stephen Gildea
4188         <gildea@stop.mail-abuse.org>.
4190 2001-03-27  Kenichi Handa  <handa@etl.go.jp>
4192         * international/kkc.el (kkc-save-init-file): Locally bind
4193         print-length to nil.
4195 2001-03-26  Gerd Moellmann  <gerd@gnu.org>
4197         * textmodes/flyspell.el: Some doc fixes.
4198         (flyspell-maybe-correct-transposition)
4199         (flyspell-maybe-correct-doubling): Use a temporary buffer
4201         * textmodes/ispell.el (ispell-parse-output): Doc fix.
4203         * emacs-lisp/byte-opt.el (byte-optimize-while)
4204         (byte-optimize-form-code-walker): Diagnose too few arguments
4205         for `if' and `while'.
4207 2001-03-26  Kenichi Handa  <handa@etl.go.jp>
4209         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
4210         Prepend `\' to "\<quail-translation-docstring>".
4212 2001-03-26  Gerd Moellmann  <gerd@gnu.org>
4214         * autorevert.el (global-auto-revert-non-file-buffers):
4215         Remove duplicate defcustom.
4217 2001-03-26  Miles Bader  <miles@gnu.org>
4219         * international/latin1-disp.el (latin1-char-displayable-p):
4220         Add leading "-" for X font pattern.
4222 2001-03-26  Kenichi Handa  <handa@etl.go.jp>
4224         * international/mule-diag.el (describe-coding-system):
4225         For raw-text and emacs-mule, don't add anymore text about what
4226         charsets they can encode.
4228 2001-03-25  Eli Zaretskii  <eliz@is.elta.co.il>
4230         * help.el (view-lossage): Mention open-dribble-file in the doc
4231         string.  Suggested by Riku Saikkonen <rjs@lloke.dna.fi>.
4233 2001-03-23  Stefan Monnier  <monnier@cs.yale.edu>
4235         * skeleton.el (skeleton-internal-list): Fix bogus logic.
4236         (skeleton-pair-insert-maybe): Don't pair after a backslash.
4238 2001-03-23  Kenichi Handa  <handa@etl.go.jp>
4240         * international/encoded-kb.el (encoded-kbd-self-insert-ccl):
4241         Call ccl-execute-on-string directly so that CCL program handling
4242         multibyte sequence can work correctly.
4243         (encoded-kbd-setup-keymap): Fix the default value of `valid-codes'
4244         property of the coding system.
4246 2001-03-23  Stefan Monnier  <monnier@cs.yale.edu>
4248         * textmodes/fill.el (fill-individual-paragraphs-prefix):
4249         Fix transcription typo.
4251 2001-03-22  Rajesh Vaidheeswarran  <rv@gnu.org>
4253         * whitespace.el: Add buffer local variables to toggle testing of
4254         whitespaces in buffers without affecting the default values.
4255         Bump version to 3.0 to account for a few other changes.
4256         (whitespace-toggle-ateol-check, whitespace-toggle-leading-check)
4257         (whitespace-toggle-trailing-check, whitespace-toggle-indent-check)
4258         (whitespace-toggle-spacetab-check): New functions.
4260 2001-03-21  Stefan Monnier  <monnier@cs.yale.edu>
4262         * obsolete/cplus-md.el: Moved from progmodes/cplus-md.el.
4264 2001-03-21  Gerd Moellmann  <gerd@gnu.org>
4266         * bs.el (bs-cycle-next, bs-cycle-previous): Fix handling of
4267         bs-cycle-configuration-name.  From Juanma Barranquero
4268         <lektu@uol.com.br>.
4270         * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
4271         and cc-vars.el.
4273         * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
4274         headers.  Always invoke sendmail with option -t.
4276 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4278         * Release of cc-mode 5.28.
4280 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4282         * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
4283         Removed the hardcoded switch to "java" style in Java mode.
4284         It's instead taken care of by the default value for c-default-style.
4286 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4288         * cc-align.el (c-lineup-math): Fix bug where lineup was
4289         triggered by equal signs in string literals.
4291 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4293         * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
4294         limit detection when at the ends of the buffer.
4296         * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
4297         "for" statement clause in case 7F; a better one is done
4298         earlier in case 7D anyway.
4300 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4302         * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
4303         somewhat more and did a small optimization.
4305 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4307         * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
4308         Use the limit argument only to limit the syntactic context
4309         search, not to limit the actual movement.
4311         * cc-cmds.el (c-beginning-of-statement): Move by sentence
4312         inside multiline strings, just like in comments.  Also various
4313         fixes to the paragraph and comment prefix recognition, block
4314         comment ender handling etc.
4316 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4318         * cc-cmds.el (c-fill-paragraph): Take more care to preserve
4319         the relative position of the point.
4321         * cc-cmds.el (c-electric-continued-statement): New function to
4322         use as abbrev hook to reindent for keywords such as "else"
4323         that continues an earlier statement.
4325         * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
4326         like classes.
4328         * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
4329         (pike-mode): Populate the default abbrev tables to reindent for
4330         keywords such as "else" that can continue earlier statements.
4331         Abbrev mode is therefore turned on by default now.  (Note that
4332         this doesn't apply to idl-mode, since IDL afaik doesn't have
4333         statements at all.)
4335 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4337         * cc-engine.el (c-inside-bracelist-p): Fix for handling
4338         bracelists where the declaration contains template arguments.
4340 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4342         * cc-cmds.el (c-comment-indent):
4343         Use `c-get-syntactic-indentation' to correctly calculate the
4344         syntactic indentation.  Fixes bug with lineup functions that
4345         return vectors.
4347         * cc-engine.el (c-get-syntactic-indentation): Split the
4348         indentation sum calculation from `c-indent-line' to a separate
4349         function.
4351 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4353         * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
4354         Fixed places where it was assumed that preprocessor directives
4355         have to start in column zero.
4357         * cc-engine.el (c-beginning-of-member-init-list): Handle C++
4358         template arguments after a class identifier properly.
4360         * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
4361         lists for `new Foo[]' constructs in Java as expressions and
4362         not top level definition brace lists on the top level, so that
4363         they'll get indented consistently with the same type of
4364         expression in a normal block.
4366 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4368         * cc-cmds.el (c-fill-paragraph): The kludge that checks
4369         whether the adaptive filling package fails to keep the comment
4370         prefix is now kludged further to check for filladapt-mode
4371         which doesn't have that problem. This is really icky, but it's
4372         the only way that works with the current misfeatures/bugs in
4373         both adaptive-fill-mode and filladapt-mode.
4375         * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
4376         around point is recognized more robust.
4378 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4380         * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
4381         (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
4382         (c-lit-type): Fixed all internal variables used dynamically so
4383         that they are always bound.
4385         * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
4386         errors:
4388         (c-indent-region): Fixed reporting of syntactic errors so that
4389         the region is fully reindented even when an error occurs.
4390         The last syntactic error is printed afterwards.  Also cleanup up a
4391         whole lot of code that tried to optimize indentation of whole
4392         sexps but in reality accomplishes nothing.
4394         (c-indent-sexp): Use c-indent-region.
4396         (c-parsing-error): Changed this variable to hold the message
4397         for any syntactic error that is discovered.
4399         (c-parse-state): Search backward from point instead of the bod
4400         position when the latter is invalid.  This makes CC Mode
4401         recover faster when there are unbalanced close braces.
4403         (c-backward-to-start-of-if): Use c-parsing-error to report
4404         dangling "else" clauses instead of throwing an error, and fall
4405         back to a reasonable position.
4407         (c-indent-line): Added argument to avoid reporting syntactic errors.
4409         (c-show-syntactic-information): Don't report any syntactic errors.
4411 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4413         * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
4414         paragraph recognition when moving by sentence in literals.
4416         * cc-langs.el (c-Java-javadoc-paragraph-start): Modified paragraph
4417         start regexp for javadoc to recognize javadoc markup in general instead
4418         of a specific set of keywords, to be more future-safe.
4420         (c-Pike-pikedoc-paragraph-start)
4421         (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
4422         pikedoc markup.
4424         * cc-mode.el: Fixed initialization and use of c-current-comment-prefix.
4426         (pike-mode): Initialize paragraph settings pikedoc recognition.
4428         * cc-vars.el (c-default-style): Made a nicer Customize widget.
4430         (c-comment-prefix-regexp): Made it possible to use an
4431         association list on this to specify mode specific regexps.
4432         The default value now use a special regexp in Pike mode to
4433         recognize pikedoc markup.
4435         (c-current-comment-prefix): New variable containing the actual
4436         regexp from c-comment-prefix-regexp for the current buffer.
4438 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4440         * cc-cmds.el (c-electric-brace): Fixed check for special brace
4441         lists: We can't look at the syntax, since a brace list can get
4442         recognized as a plain statement-cont.
4444         * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
4445         special brace list opener broken over two lines got recognized
4446         as a statement on the second line.  Case 9A changed.
4448 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4450         * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
4451         adjustment after line is reindented.
4453 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4455         * cc-defs.el (c-point): Added optional argument for position
4456         to use instead of the current point.
4458         * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
4459         the in-expression block symbols when the construct starts at
4460         boi, to avoid the extra level of indentation in that case.
4461         Cases 4, 16A and 17E affected.
4463 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4465         * cc-cmds.el: Use `indent-according-to-mode' instead of direct
4466         calls to `c-indent-line', to adhere better to Emacs conventions.
4468         * cc-engine.el (c-indent-line): Use the syntax already bound
4469         to `c-syntactic-context', if there is any.
4471 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4473         * cc-engine.el (c-get-offset): Fixed bug where the indentation
4474         wasn't added up correctly when a lineup function returned nil.
4476 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4478         * cc-engine.el (c-collect-line-comments): Fixed bug where
4479         empty lines were ignored when collecting line comments backwards.
4481 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4483         * cc-align.el (c-lineup-dont-change): Return an absolute
4484         indentation column to work correctly in the case when several
4485         syntactic elements are processed for the same line.
4487         * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
4488         (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
4489         (c-set-offset): Added absolute indentation column settings by
4490         using the vector type.
4492 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4494         * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
4495         Implemented two new cleanups `space-before-funcall' and
4496         `compact-empty-funcall'.
4498 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4500         * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
4501         helping building regexps.
4503         * cc-engine.el (c-on-identifier): New function for detecting
4504         identifiers.  It takes keywords into account.
4506         * cc-langs.el, cc-mode.el: Added regexps for complete keyword
4507         lists.  `c-keywords' is set to a regexp matching all keywords
4508         in the current language.
4510 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4512         * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
4513         list of characters to skip backwards over at the beginning of
4514         a statement, since it can precede string literals in Pike.
4516 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4518         * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
4519         recognition when standing on the last line in a C++ comment
4520         with nothing but whitespace after the prefix.
4522         * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
4523         given no limit argument.
4525 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4527         * cc-engine.el (c-inside-bracelist-p): Fixed brace list
4528         recognition for the `[]= operator symbol in Pike.
4530 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4532         * cc-bytecomp.el (cc-eval-when-compile): New macro that works
4533         around a bug in `eval-when-compile' in the byte compiler.
4535         * cc-engine.el (c-forward-token-1): Fixed bug with return
4536         value when count is zero and there's no token start within the limit.
4538         (c-guess-basic-syntax): Don't add 'comment-intro to lines with
4539         "prefix comments", i.e. comments which are followed by code on
4540         the same line.
4542         * cc-mode-19.el: Fixes so that checks that must be done at
4543         compile time also are done then.
4545 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4547         * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
4548         time and at runtime, and only when it's needed.
4550 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4552         Major cleanup for less error prone and more warning free
4553         compilation, including some fixes for bugs due to different
4554         compilation orders. Thanks to Martin Buchholz for providing
4555         the basis for all this.
4557         * cc-bytecomp.el: New file that provides some byte compilation
4558         features: It ensures that files always are loaded from the
4559         current source directory during compilation, and it provides a
4560         set of macros to turn off specific compiler warnings for
4561         specific symbols.  (It's not CC Mode specific in any way.)
4563         Fixed a nearly acyclic dependency tree (both runtime and
4564         compile-time) between all files.
4566         * cc-defs.el: Separated all macros before the inline functions,
4567         to ensure correct compilation.
4569         * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
4570         cc-defs.el to cc-engine.el and made it a function instead.
4572         * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
4573         about char-after.
4575         * cc-vars.el: Cope even when there isn't a custom package
4576         containing defcustom available.
4578         * cc-make.el: Removed since it's no longer necessary.
4580         README: Updated installation instructions.
4582 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4584         * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
4585         improve the modularity: Moved all mode init stuff from
4586         cc-langs.el to cc-mode.el, including the keymap
4587         initialization; cc-langs now only contains the various
4588         variables for configuring the language syntax.
4590         * cc-engine.el, cc-styles.el (c-evaluate-offset)
4591         (c-get-offset): Moved from cc-styles to cc-engine since file
4592         dependency analysis suggests they belong there (which also
4593         makes more sense).  Thanks to Martin Buchholz for doing the analysis.
4595 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4597         * cc-cmds.el (c-fn-region-is-active-p): New function that
4598         wraps the corresponding macro, for use in places that aren't
4599         compiled.  Thanks to Martin Buchholz for pointing out this.
4601         * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
4603         * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
4604         add things to the bug report.
4606 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4608         * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
4609         returned prefix could contain a newline when the search for a
4610         good prefix line failed.
4612 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4614         * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
4615         (c-toggle-auto-hungry-state): Made the argument optional, as
4616         the documentation says it is.
4618 2000-03-21  Martin Stjernholm  <bug-cc-mode@gnu.org>
4620         * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
4621         multiline string syntax, #"...", as a cpp macro.
4623 2001-03-21  Paul Eggert  <eggert@twinsun.com>
4625         * international/mule-cmds.el (set-locale-environment):
4626         Set system-messages-locale and system-time-locale, but only if the
4627         caller specifies a non-nil locale name.
4629 2001-03-20  Gerd Moellmann  <gerd@gnu.org>
4631         * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
4632         problems for the interpreter.  From: John Wiegley  <johnw@gnu.org>
4634 2001-03-20  Gerd Moellmann  <gerd@gnu.org>
4636         * follow.el (follow-avoid-tail-recenter): Doc fix.
4638         * custom.el (custom-set-variables): Avoid reversing the list
4639         of args needlessly.
4641         * startup.el (fancy-splash-head): Don't change the colors of the
4642         XPM image on a dark background.
4644         * comint.el (comint-exec-1): Set columns of the terminal to
4645         window-width instead of frame-width.
4647         * info.el (Info-scroll-down): Add missing WINDOW arg for
4648         pos-visible-in-window-p.
4650         * ehelp.el (electric-help-mode-hook): Add defcustom.
4652         * mail/sendmail.el (mail-mode): Activate case-folding in
4653         font-lock-defaults.
4655 2001-03-19  Stefan Monnier  <monnier@cs.yale.edu>
4657         * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
4658         (completion-ignored-extensions): Remove duplicate ".class".
4660 2001-03-19  Andreas Schwab  <schwab@suse.de>
4662         * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix.
4663         From Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
4665 2001-03-19  Gerd Moellmann  <gerd@gnu.org>
4667         * language/european.el ("Latin-5", "Latin-4"): Use postfix input
4668         methods since there are not prefix input methods.
4670 2001-03-19  Kenichi Handa  <handa@etl.go.jp>
4672         * international/mule-cmds.el (read-input-method-name):
4673         Locally bind enable-recursive-minibuffers to t.
4675 2001-03-18  Stefan Monnier  <monnier@cs.yale.edu>
4677         * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
4679 2001-03-17  Michael Kifer  <kifer@cs.sunysb.edu>
4681         * ediff-util.el: Copyright years.
4682         (ediff-choose-syntax-table): New function.
4683         (ediff-setup): Use ediff-choose-syntax-table.
4685         * ediff-init.el (ediff-with-syntax-table): New macro, uses
4686         with-syntax-table.
4688         * ediff.el: Date of last update, copyright years.
4690         * ediff-wind (ediff-setup-control-frame): Nill->nil.
4692         * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
4693         of Scott Bronson.
4694         (ex-cmd-assoc,ex-cmd-one-letr): New functions.
4695         (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
4696         Deleted functions.
4697         (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
4698         ex-token-list.
4700         * viper-util.el: Spaces, indentation.
4702         * viper.el: Changed version, modification time.
4704 2001-03-16  John Wiegley  <johnw@gnu.org>
4706         * calendar/timeclock.el (timeclock-workday-remaining):
4707         Check whether `discrep' is non-null before using it.
4709 2001-03-16  John Wiegley  <johnw@gnu.org>
4711         * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
4712         first-time checkins.
4713         (timeclock-log-data): Fixed problem with reading timelog log file.
4714         Resulting data in the "day list" was incorrect.
4715         (timeclock-find-discrep): Check if `timeclock-file' is readable
4716         before opening it.
4717         (timeclock-time-less-p): New function.
4718         (timeclock-day-base): New function.
4719         (timeclock-geometric-mean): New function.
4720         (timeclock-generate-report): Generate a summary report based on
4721         the contents of the log file.  This uses `timeclock-log-data', and
4722         is an example of writing a timelog manipulation function.
4723         (timeclock-visit-timelog): A quick command for opening the timelog
4724         file.
4725         (timeclock-log-data): Bound the variable event.
4727 2001-03-16  Kenichi Handa  <handa@etl.go.jp>
4729         * international/mule-cmds.el (select-safe-coding-system):
4730         Fix typo: symbol-name -> symbol-value.
4732         * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
4733         before substitute-in-file-name to handle double slashes in FILE
4734         correctly.
4736 2001-03-15  Gerd Moellmann  <gerd@gnu.org>
4738         * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
4739         for Slovak.  From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
4741 2001-03-14  Gerd Moellmann  <gerd@gnu.org>
4743         * bindings.el (features): Add `md5' and `overlay' to the list.
4745         * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
4746         bound before using it.  It's not bound when configured without X,
4747         for instance.
4749 2001-03-13  Thien-Thi Nguyen  <ttn@gnu.org>
4751         * progmodes/hideshow.el: Update copyright.
4752         (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
4753         (hs-minor-mode-hook): Include `:version' in defcustom form.
4755 2001-03-13  Gerd Moellmann  <gerd@gnu.org>
4757         * help.el (string-key-binding): Don't call event-start on
4758         a non-list.
4760 2001-03-13  Eli Zaretskii  <eliz@is.elta.co.il>
4762         * startup.el (fancy-splash-tail, command-line-1): Fix the
4763         copyright year.
4765 2001-03-13  Kenichi Handa  <handa@etl.go.jp>
4767         * term.el: These changes are based on a patch sent from Yong Lu
4768         <lyongu@yahoo.com>.
4769         (term-set-escape-char): Bind M-x to execute-extended-command in
4770         term-raw-escape-map.
4771         (term-move-columns): Don't try to move to negagive column.
4772         (term-emulate-terminal): Insert a string before deleting a text to
4773         overwrite.
4775 2001-03-12  Gerd Moellmann  <gerd@gnu.org>
4777         * play/life.el (life): Rearrange code so that all calls to
4778         life-display-generation are in a catch-form.
4780         * progmodes/etags.el (tags-loop-continue): Don't change point in a
4781         file that isn't interesting.  In an interesting file, push the old
4782         value of point on the mark ring.
4784         * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
4785         New function.
4786         (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
4787         Use it.
4789         * emacs-lisp/autoload.el (generate-file-autoloads):
4790         Remove warning about line lengths.
4792 2001-03-12  Philippe Waroquiers  <wao@gull.tact.cfmu.eurocontrol.be>
4794         * progmodes/etags.el (tags-compression-info-list): New variable.
4795         (find-tag-in-order): Use it to deal with compressed source files.
4796         (tag-file-name-match-p): New function.
4797         (etags-recognize-tags-table): Use it for better match of file names.
4799 2001-03-12  Kenichi Handa  <handa@etl.go.jp>
4801         * international/mule-cmds.el (register-input-method): Doc fix.
4803         * international/quail.el (quail-translate-key): Fix condition to
4804         check if there's another breaking point in the current key.
4806 2001-03-11  Eli Zaretskii  <eliz@is.elta.co.il>
4808         * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
4809         Babyl header to the newly-created output file, bind
4810         coding-system-for-write to either rmail-file-coding-system or
4811         emacs-mule-unix.
4813 2001-03-11  Stefan Monnier  <monnier@cs.yale.edu>
4815         * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
4816         Fix the name and regexp used for subsubsections.
4818 2001-03-10  Dave Love  <fx@gnu.org>
4820         * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
4821         and save-buffer if buffer-file-name non-nil.  From rms.
4823 2001-03-10  Andre Spiegel  <spiegel@gnu.org>
4825         * vc.el (vc-do-command): If the destination buffer is already
4826         current, don't set it up and don't erase it.  Updated doc string
4827         to reflect that.
4828         (vc-version-diff): When doing a single file diff, don't switch to the
4829         *vc-diff* buffer before the command.  This is to preserve local
4830         variable bindings that might affect the diff command.
4831         (vc-print-log): Don't switch to the *vc* buffer before the
4832         command, so that local variable bindings are preserved.
4834         * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
4835         not the current buffer.
4836         (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
4838         * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
4839         make output go to buffer *vc*, not the current buffer.
4841 2001-03-09  Stefan Monnier  <monnier@cs.yale.edu>
4843         * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
4844         so ^, $, *, ? and + are interpreted correctly.
4846 2001-03-09  Gerd Moellmann  <gerd@gnu.org>
4848         * help.el (string-key-binding): Renamed from
4849         mode-line-key-binding.  Handle any event on a string.
4850         Check for `keymap' properties as well as `local-map' properties.
4852         * comint.el (comint-insert-clicked-input): Use the last key
4853         from this-command-keys to lookup the global key definition.
4855 2001-03-09  Kenichi Handa  <handa@etl.go.jp>
4857         * international/characters.el: Add category `j' for
4858         katakana-jisx0201.   Fix syntaxes of katakana-jisx0201.
4860         * international/mule-conf.el (no-conversion): Fix docstring.
4861         (raw-text): Fix docstring.
4863 2001-03-08  Gerd Moellmann  <gerd@gnu.org>
4865         * simple.el (choose-completion-string): When not leaving the
4866         minibuffer, raise the minibuffer frame when minibuffer-auto-raise
4867         is set.
4869         * window.el (shrink-window-if-larger-than-buffer): Handle frame
4870         parameter `(minibuffer . t)'.
4872 2001-03-07  Stefan Monnier  <monnier@cs.yale.edu>
4874         * progmodes/sh-script.el (sh-st-symbol): New symbol.
4875         (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
4876         (sh-mode): Remove `make-local-variable' for unused var
4877         `font-lock-unfontify-region-function'.
4879 2001-03-07  Richard M. Stallman  <rms@gnu.org>
4881         * info.el (Info-scroll-down): Fix previous change.
4883         * mail/rmail.el (rmail-toggle-header): Use a window which
4884         is showing the Rmail buffer, rather than the selected window.
4886 2001-03-07  Dave Love  <fx@gnu.org>
4888         * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
4889         now, to avoid problems with binding imenu directly to a mouse event.
4891 2001-03-07  Gerd Moellmann  <gerd@gnu.org>
4893         * info.el (Info-scroll-down): Call pos-visible-in-window-p with
4894         second arg t.
4896 2001-03-07  Stefan Monnier  <monnier@cs.yale.edu>
4898         * log-edit.el (log-edit-common-indent): New var.
4899         (log-edit-set-common-indentation): Renamed from
4900         log-edit-delete-common-indentation.  Use the new var.
4901         (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
4903         * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
4904         (cvs-mode-add-change-log-entry-other-window):
4905         Don't presume change-log-default-name is defined.
4907         * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
4909         * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
4910         the "tree" operation as well.
4912         * pcvs-parse.el (cvs-parse-table): Add another ignored message.
4914         * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
4915         to match paragraph-start.
4917         * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
4918         comment-start-skip and set comment-end-skip as well.
4919         (sgml-comment-indent): Fix for new value of comment-start-skip.
4920         (html-autoview-mode): Don't bother using make-local-hook.
4922 2001-03-07  Gerd Moellmann  <gerd@gnu.org>
4924         * cus-edit.el (custom-save-delete): Move in front of local
4925         variables, otherwise long Custom entries would make them ineffective.
4927         * uniquify.el: Set maintainer to FSF.
4929 2001-03-07  Eli Zaretskii  <eliz@is.elta.co.il>
4931         * dired-aux.el (dired-do-shell-command): Doc fix.
4933 2001-03-06  Stefan Monnier  <monnier@cs.yale.edu>
4935         * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
4937         * which-func.el (which-func-modes): Add cperl-mode.
4938         (which-func-mode-global): Use define-minor-mode.
4940         * info-look.el: Docstring fixes and dead code eliminated.
4941         (cperl-mode): Add support.
4942         (emacs-lisp-mode): List all entries from elisp manual, whether
4943         or not they are currently (f)bound or not.  Update regexp.
4945         * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
4947         * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
4948         so that C-h m shows the correct information.
4949         Use make-local-variable rather than make-variable-buffer-local.
4950         (cperl-info-buffer, cperl-setup-tmp-buf):
4951         Use make-local-variable rather than make-variable-buffer-local.
4952         (cperl-msb-fix, cperl-get-help-defer):
4953         Check major-mode for `cperl-mode' as well.
4955         * progmodes/cperl-mode.el: Updated to author version 4.23.
4956         (cperl-electric-pod): SYNOPSIS was misspelled.
4957         (cperl-find-pods-heres): @if ? a : b was considered a REx.
4958         (cperl-after-expr-p): Make true after __END__.
4960 2001-03-06  Gerd Moellmann  <gerd@gnu.org>
4962         * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
4963         bookmark-completion-ignore-case is t.
4965         * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
4966         switch, like xterm, and concat resource strings, with a newline
4967         between them.
4969 2001-03-06  Eli Zaretskii  <eliz@is.elta.co.il>
4971         * international/codepage.el (cp770-decode-table)
4972         (cp773-decode-table, cp774-decode-table): New variables.
4974         * man.el (Man-hyphenated-reference-regexp): New variable.
4975         (Man-build-references-alist): Use it to search for referenced
4976         manpages.  If hyphenated is non-nil, record a concatenated word in
4977         Man-refpages-alist only if it matches Man-reference-regexp.
4978         Update word's length when it is concatenated.  Reverse the list,
4979         to get the first manpage at the head.
4980         (Man-possibly-hyphenated-word): New function.
4981         (Man-follow-manual-reference): Use it instead of current-word to
4982         find a manpage at point, in a way that accounts for hyphenated
4983         references.
4985 2001-03-06  Alex Schroeder  <alex@gnu.org>
4987         * sql.el (sql-interbase): New function.
4988         (sql-interbase-program): New option.
4989         (sql-interbase-options): New option.
4990         And some typos fixed: "customise" to "customize".
4992 2001-03-06  Dave Love  <fx@gnu.org>
4994         * textmodes/flyspell.el (flyspell-region):
4995         Set up flyspell-local-mouse-map.
4997 2001-03-05  Richard M. Stallman  <rms@gnu.org>
4999         * mail/rmail.el (rmail-retry-failure):
5000         Don't call rmail-beginning-of-message.
5001         Don't discard From: field.  Do discard Received: field.
5002         Use unwind-protect to re-prune.
5003         (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
5005 2001-03-06  Kenichi Handa  <handa@etl.go.jp>
5007         * international/quail.el (quail-title): Add autoload cookie.
5009 2001-03-05  Dave Love  <fx@gnu.org>
5011         * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
5012         new defs.
5014 2001-03-05  Kenichi Handa  <handa@etl.go.jp>
5016         * language/ethio-util.el (ethio-toggle-space):
5017         Update current-input-method-title if necessary.
5018         (ethio-toggle-punctuation): Likewise.
5020         * international/quail.el (quail-title): Fix for the case that a
5021         title of an input method is specified by a list of the same form
5022         as used in mode-line-format.
5024         * international/mule-cmds.el (activate-input-method):
5025         If current-input-method-title is set by activating INPUT-METHOD,
5026         respect that value.
5028 2001-03-05  Gerd Moellmann  <gerd@gnu.org>
5030         * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
5032 2001-03-05  Alex Schroeder  <alex@gnu.org>
5034         * sql.el (sql-sybase): Fix typo (was: query user about server two
5035         times instead of server and database).
5037         * sql.el (sql-sybase): Doc change.
5038         (sql-mysql): Doc change.
5039         (sql-postgres): Doc change.
5041 2001-03-05  Kenichi Handa  <handa@etl.go.jp>
5043         * international/mule-conf.el (emacs-mule, raw-text):
5044         Docstring modified.
5046 2001-03-04  Eli Zaretskii  <eliz@is.elta.co.il>
5048         * term/internal.el: Update copyright notice.
5050         * term/pc-win.el: Update copyright notice.
5052 2001-03-02  Dave Love  <fx@gnu.org>
5054         * files.el (insert-file-contents-literally):
5055         Bind inhibit-file-name-handlers and inhibit-file-name-operation,
5056         not jka-compr-compression-info-list.
5058 2001-03-02  Stefan Monnier  <monnier@cs.yale.edu>
5060         * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
5061         spaces in default comment-start-skip settings rather than \s-.
5063 2001-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
5065         * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
5066         default-frame-alist as well.
5068 2001-03-01  Dave Love  <fx@gnu.org>
5070         * textmodes/reftex.el (defvar): Wrap some defvars in
5071         eval-when-compile.  From Markus Rost <rost@math.ohio-state.edu>.
5073         * subr.el (event-basic-type): Doc fix.
5075         * international/quail.el: Doc fixes.
5077         * international/utf-8.el: Doc fixes.
5079         * international/mule-cmds.el: Doc fixes.
5080         (leim-list-header): Fix header text.
5082         * international/mule.el (coding-system-category): Doc fix.
5084         * international/ccl.el (ccl-compile): Doc fix.
5086 2001-03-01  Stefan Monnier  <monnier@cs.yale.edu>
5088         * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
5089         rather than (before|after)-change-functions.
5091 2001-03-01  Gerd Moellmann  <gerd@gnu.org>
5093         * ediff-util.el (ediff-scroll-horizontally): Arrange for
5094         scroll-left and scroll-right being called interactively so that
5095         they set the window's min_hscroll.
5097 2001-03-01  Eli Zaretskii  <eliz@is.elta.co.il>
5099         * info.el (info-insert-file-contents-1): Accept an additional
5100         argument `lfn': if it is non-nil, concatenate `filename' and
5101         `suffix'; otherwise use the complicated MS-DOS code.
5102         All callers changed.
5103         (info-insert-file-contents, Info-find-node): If the MS-DOS port
5104         can access long file names, try the long file-name version of
5105         `info-insert-file-contents-1', then the short file-name version.
5107 2001-02-28  TAKAHASHI Naoto  <ntakahas@m17n.org>
5109         * language/ethio-util.el (setup-ethiopic-environment-internal):
5110         Change bindings of functions keys to conform to "Emacs Lisp Coding
5111         Convention".
5113         * language/ethiopic.el ("Ethiopic"): Add documentation.
5115 2001-02-28  Kenichi Handa  <handa@etl.go.jp>
5117         * international/utf-8.el (mule-utf-8): Set coding-category
5118         property to coding-category-utf-8.
5120 2001-02-27  Richard M. Stallman  <rms@gnu.org>
5122         * lpr.el (lpr-page-header-switches, print-region-1):
5123         Undo 2000-07-06 change.
5124         (lpr-add-switches): Default to t on gnu/linux.
5126 2001-02-27  Gerd Moellmann  <gerd@gnu.org>
5128         * bs.el (bs-attributes-list): Doc fix.
5130 2001-02-26  Gerd Moellmann  <gerd@gnu.org>
5132         * help.el (describe-project): Display the file THE-GNU-PROJECT.
5134         * help.el (view-order-manuals): Use goto-address.
5136         * startup.el (command-line-1): Add info about ordering manuals
5137         to the not so fancy splash screens.
5139 2001-02-26  Andre Spiegel  <spiegel@gnu.org>
5141         * vc.el (vc-default-workfile-unchanged-p)
5142         (vc-default-latest-on-branch-p): Add missing BACKEND argument.
5144 2001-02-26  Gerd Moellmann  <gerd@gnu.org>
5146         * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
5147         fontify in the right buffer.
5149         * allout.el (outline-flag-region): Move macro in front of first
5150         use to avoid a run-time error.
5152 2001-02-24  Andrew Innes  <andrewi@gnu.org>
5154         * makefile.w32-in: Fix copyright notice.
5156 2001-02-24  Kenichi Handa  <handa@etl.go.jp>
5158         * international/utf-8.el (mule-utf-8): Set correct value for
5159         valid-codes property.
5161         * international/fontset.el (x-complement-fontset-spec): In the
5162         case that we use ASCII font for the other charsets, use only
5163         family and registry part of it.
5165 2001-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
5167         * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
5168         (shrink-window-if-larger-than-buffer): Doc fix.
5170 2001-02-23  Stefan Monnier  <monnier@cs.yale.edu>
5172         * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
5173         predicate passed to completing-read.
5175 2001-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
5177         * startup.el (command-line): Fix last change.
5179 2001-02-23  Jason Rumney  <jasonr@gnu.org>
5181         * startup.el (tool-bar-originally-present): New variable.
5182         (command-line): Set it if the tool-bar is switched on at startup.
5184         * frame.el (frame-notice-user-settings): Only adjust frame height
5185         for no tool-bar case if tool-bar was originally switched on.
5186         From E. Jay Berkenbilt.
5188 2001-02-22  Stefan Monnier  <monnier@cs.yale.edu>
5190         * server.el (server-switch-buffer): Only switch window if the
5191         current one is dedicated.
5193         * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
5194         rather than using (match-beginning 0) when searching for break point.
5196 2001-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
5198         * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
5199         @ follows an accent command such as @'.  Support optional braces
5200         in commands that insert accents, like makeinfo does.
5202 2001-02-22  Gerd Moellmann  <gerd@gnu.org>
5204         * startup.el (fancy-splash-text): Add a line for ordering
5205         manuals.  Reverse order of splash screens shown.
5206         (use-fancy-splash-screens-p): Adapt to the text line added.
5208         * menu-bar.el (menu-bar-help-menu): Add an item for ordering
5209         manuals from the FSF.
5211         * help.el (view-order-manuals): New function.
5212         (toplevel): Bind C-h C-m to this function.
5214 2001-02-21  Stefan Monnier  <monnier@cs.yale.edu>
5216         * newcomment.el (comment-forward): Skip the comment-start before
5217         searching for the comment-end.
5219 2001-02-21  Dave Love  <fx@gnu.org>
5221         * custom.el (custom-initialize-changed, defcustom): Doc fix.
5223         * international/mule-cmds.el, international/mule.el: Doc fixes.
5225 2001-02-21  Gerd Moellmann  <gerd@gnu.org>
5227         * startup.el (fancy-splash-screens): Use display-hourglass
5228         instead of display-busy-cursor.
5230         * frame.el (display-hourglass): Renamed from busy-cursor.
5231         (hourglass-delay): Renamed from busy-cursor-delay-seconds.
5232         (show-cursor-in-non-selected-windows): Doc fix.
5234 2001-02-20  Dave Love  <fx@gnu.org>
5236         * international/utf-8.el: Doc and commentary fixes.
5238 2001-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
5240         * ehelp.el (with-electric-help): Doc fix.
5242 2001-02-20  Gerd Moellmann  <gerd@gnu.org>
5244         * msb.el (msb-mode): Call the update-buffers function explicitly
5245         with a FORCE argument.
5247         * menu-bar.el (menu-bar-update-buffers): Add optional parameter
5248         FORCE.  If set, update the menu even if frame-or-buffer-changed-p
5249         returns nil.
5251 2001-02-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5253         * ps-print.el: Timestamp package replacement.  Some enhancements.
5254         Some XEmacs compatibility.  Doc fix.
5255         (ps-print-version): New version number (6.4).
5256         (ps-printer-name): Initialization fix.
5257         (ps-zebra-stripe-follow): Funcionality enhancement.
5258         (ps-prologue-file): Code enhancement.
5259         (ps-right-header): Timestamp package replacement.
5260         (ps-setup, ps-face-bold-p, ps-face-italic-p)
5261         (ps-get-page-dimensions)
5262         (ps-generate-header, ps-begin-file, ps-begin-job)
5263         (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
5264         (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
5265         (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
5266         (coding-system-for-write): Var declaration (XEmacs compatibility).
5268 2001-02-20  Miles Bader  <miles@gnu.org>
5270         * image-file.el (image-file-name-extensions): Add "tif".
5272 2001-02-19  Gerd Moellmann  <gerd@gnu.org>
5274         * wid-edit.el (widget-button-click): Save the selected window
5275         around the code handling clicks on buttons.
5277 2001-02-18  Dave Love  <fx@gnu.org>
5279         * imenu.el (imenu--generic-function): Use mapc to iterate over
5280         syntax characters.
5282 2001-02-17  Richard M. Stallman  <rms@gnu.org>
5284         * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
5286         * uniquify.el (uniquify-buffer-name-style): Doc fix.
5288 2001-02-16  Gerd Moellmann  <gerd@gnu.org>
5290         * mouse.el (mouse-save-then-kill): If the distance from the new
5291         point to the mark is equal to the distance of point from the new
5292         point, move point instead of the mark.
5294 2001-02-16  Dave Love  <fx@gnu.org>
5296         * textmodes/flyspell.el (flyspell-get-word): Return string without
5297         properties.
5299 2001-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
5301         * generic.el (generic-find-file-regexp): Doc fix.
5302         (generic-ignore-files-regexp): New defcustom.
5303         (generic-mode-find-file-hook): If the file's name matches the
5304         regexp in `generic-ignore-files-regexp', don't enter
5305         default-generic-mode.  Doc fix.
5307 2001-02-16  Gerd Moellmann  <gerd@gnu.org>
5309         * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
5310         Add autoload cookies.
5312         * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
5313         of cal-tex-24.
5315 2001-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
5317         * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
5319         * progmodes/compile.el (grep-regexp-alist): Remove the blank from
5320         the character class after the (optional) drive, to support file
5321         names with embedded blanks.
5323 2001-02-15  Sam Steingold  <sds@gnu.org>
5325         * textmodes/tex-mode.el (tex-shell-running):
5326         Check the process buffer too.
5328 2001-02-15  Dave Love  <fx@gnu.org>
5330         * battery.el (battery-status-function): Fix doc, :type.
5332         * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
5334 2001-02-15  Gerd Moellmann  <gerd@gnu.org>
5336         * subr.el (read-passwd): Clear Lisp memory holding password.
5338 2001-02-15  Miles Bader  <miles@gnu.org>
5340         * info.el (Info-copy-current-node-name): New function.
5341         (Info-mode-menu): Add it to the menu.
5343 2001-02-14  Richard M. Stallman  <rms@theobromine.ai.mit.edu>
5345         * international/mule-cmds.el (toggle-input-method): Doc fix.
5347 2001-02-13  Stefan Monnier  <monnier@cs.yale.edu>
5349         * replace.el (occur): Stop at end of buffer.
5351 2001-02-13  Eli Zaretskii  <eliz@is.elta.co.il>
5353         * international/mule-cmds.el (set-input-method): Another doc fix.
5355 2001-02-13  David M. Koppelman <koppel@ee.lsu.edu>
5357         * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
5359 2001-02-13  Miles Bader  <miles@gnu.org>
5361         * faces.el (set-face-background, set-face-foreground)
5362         (set-face-stipple): Treat a value of nil as being `unspecified'.
5364 2001-02-12  Dave Love  <d.love@dl.ac.uk>
5366         * international/latin1-disp.el:  Doc fixes.
5367         (latin1-display) <defgroup>: Add :link.
5368         (latin1-display) <function>: Set variable latin1-display.
5370 2001-02-12  Eli Zaretskii  <eliz@is.elta.co.il>
5372         * international/mule-cmds.el (set-input-method): Doc fix.
5374 2001-02-12  Eric M. Ludlam  <zappo@choochoo.ultranet.com>
5376         * speedbar.el (speedbar-frame-parameters): No toolbar lines.
5377         (speedbar-line-file): Return nil if not a file.
5378         (speedbar-buffers-line-path): Return file for tags, and dir for files.
5380 2001-02-12  Michael Kifer  <kifer@cs.sunysb.edu>
5382         * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
5383         for remote files.
5384         (ediff-coding-system-for-read): Replaced the no-conversion default
5385         with raw-text.
5387         * ediff-init.el: Removed :version from defcustom vars.
5389         * ediff-util.el (ediff-compute-custom-diffs-maybe):
5390         Better handling of the diff mode.
5392         * ediff.texi: Added ediff-coding-system-for-read.
5394         * viper.texi: Fix typos.
5396 2001-02-11  Dave Love  <fx@gnu.org>
5398         * shadowfile.el: Doc fixes.
5399         (shadow) <defgroup>: Add :link.
5400         (shadowfile-unload-hook): New function.
5401         (shadow-initialize): Use defalias, not fset.
5402         (shadow-define-cluster, shadow-define-literal-group)
5403         (shadow-define-regexp-group, shadow-initialize): Add autoload cookie.
5405         * international/mule.el: Doc and message fixes.
5407         * international/ccl.el (define-ccl-program): Doc fix.
5409 2001-02-11  Kenichi Handa  <handa@etl.go.jp>
5411         * faces.el (mode-line): Set :line-width property to -1.
5413 2001-02-10  Richard M. Stallman  <rms@gnu.org>
5415         * complete.el (partial-completion-mode): Doc fix.
5417         * simple.el (delete-key-deletes-forward-mode):
5418         Change `let' to `let*' to fix gross bug in last change.
5420         * repeat.el (repeat): Don't let execute-kbd-macro alter
5421         real-last-command.
5423 2001-02-10  Eli Zaretskii  <eliz@is.elta.co.il>
5425         * simple.el (eval-expression): Doc fix.
5427 2001-02-09  Dave Love  <fx@gnu.org>
5429         * imenu.el (imenu-generic-expression): Doc fix.
5431         * emacs-lisp/re-builder.el (reb-mode): Quote the hook name.
5432         From Juanma Barranquero.
5434         * emacs-lisp/authors.el (authors): Expand `root' before running find.
5436 2001-02-09  Kenichi Handa  <handa@etl.go.jp>
5438         * faces.el (set-face-attribute): Describe the case of a negative
5439         value specified for :line-width.
5441 2001-02-08  Stefan Monnier  <monnier@cs.yale.edu>
5443         * which-func.el (which-func-mode): Invert which-func-mode-global.
5444         From Juanma Barranquero <lektu@uol.com.br>.
5446 2001-02-08  Dave Love  <fx@gnu.org>
5448         * wid-edit.el (widget-plist-convert-widget): Replace binding of
5449         widget-plist-value-type.
5450         (widget-alist-convert-widget): Replace binding of
5451         widget-alist-value-type.
5453         * textmodes/paragraphs.el (sentence-end): Doc fix.
5455         * eshell/em-rebind.el (eshell-cannot-leave-input-list):
5456         Remove `backward-line'.
5458         * play/pong.el (pong-blank-color, pong-bat-color)
5459         (pong-ball-color, pong-border-color, pong-left-key)
5460         (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
5461         (pong-pause-key, pong-resume-key, pong-timer-delay):
5462         * mail/mh-comp.el (mh-compose-letter-function):
5463         * eshell/esh-mode.el (eshell-skip-prompt-function):
5464         * emulation/viper-ex.el (ex-unix-type-shell-options):
5465         * recentf.el (recentf-menu-filter):
5466         * ps-print.el (ps-print-region-function):
5467         * lpr.el (print-region-function):
5468         * forms.el (forms-mode-hooks):
5469         * dirtrack.el (dirtrack-directory-change-hook):
5470         * cus-start.el (temp-buffer-show-function, display-buffer-function):
5471         * textmodes/spell.el (spell-filter):
5472         * textmodes/fill.el (adaptive-fill-function):
5473         * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
5474         * progmodes/etags.el (find-tag-default-function):
5475         * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
5476         * progmodes/ada-mode.el (ada-popup-key): Fix :type.
5478 2001-02-07  Eli Zaretskii  <eliz@is.elta.co.il>
5480         * emulation/viper-init.el (viper-fast-keyseq-timeout)
5481         (viper-translate-all-ESC-keysequences): Doc fix.  From Jim
5482         Meyering <jim@meyering.net>.
5484         * loadup.el: Revert last change.
5486 2001-02-07  Kenichi Handa  <handa@etl.go.jp>
5488         * international/mule.el (transform-make-coding-system-args):
5489         Make it work also for coding systems not using CCL.
5491 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
5493         * simple.el (previous-matching-history-element)
5494         (next-matching-history-element): Doc fix.
5496         * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
5497         specific part.
5499 2001-02-06  Dave Love  <fx@gnu.org>
5501         * add-log.el (add-log-current-defun-function)
5502         (add-log-buffer-file-name-function, add-log-file-name-function):
5503         Fix :type.
5504         (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
5506 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
5508         * info.el (info-initialize): Remove the test for system-type when
5509         invocation-directory is non-nil.
5511         * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
5512         of `font-lock-defaults' to `backward-paragraph' rather than nil.
5514 2001-02-06  Andrew Innes  <andrewi@gnu.org>
5516         * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
5517         absolute.
5519 2001-02-06  David M. Koppelman <koppel@ee.lsu.edu>
5521         * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
5522         buffers.  When hi-lock turned on rather than only checking current
5523         buffer for regexps, all buffers are checked. Moved activation of
5524         font-lock to hi-lock-refontify. When font-lock turned off rather
5525         than removing added highlighting just in current buffer, remove it
5526         in all buffers.  Changed edit menu text from "Automatic
5527         Highlighting" to "Regexp Highlighting" Documentation for
5528         highlighting phrases, minor documentation changes.
5529         (hi-lock-set-file-patterns): Execute only if there are new or
5530         existing file patterns.
5531         (hi-lock-refontify): Assume font-lock-fontify-buffer will first
5532         unfontify and, if a support mode is active, will not refontify the
5533         whole buffer.  If necessary, turn on font lock. (Removed
5534         font-lock-unfontify and font-lock support-mode-specific calls,
5535         such as lazy-lock-fontify-window.)
5536         (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
5537         patterns are found. Not useful now since find-file-hook is removed
5538         if hi-lock is off, but may be needed for per-buffer hi-lock activation.
5539         (hi-lock-face-phrase-buffer): New function.  Also added related
5540         menu item and keybinding.
5541         (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
5542         (hi-lock-process-phrase): New function.
5543         (hi-lock-line-face-buffer): Doc fixes.
5544         (hi-lock-face-buffer): Doc fixes.
5545         (hi-lock-unface-buffer): Doc fixes.
5547 2001-02-06  Gerd Moellmann  <gerd@gnu.org>
5549         * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
5550         dabbrev-ignored-regexps.
5552 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
5554         * simple.el (kill-line): Doc fix.
5556 2001-02-05  Dave Love  <fx@gnu.org>
5558         * loadup.el: Revert last two changes -- bootstrapping works with
5559         regenerated loaddefs.
5561 2001-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
5563         * isearch.el (isearch-forward): Doc fix.
5565         * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
5566         of font-lock-defaults to backward-paragraph.
5568 2001-02-05  Gerd Moellmann  <gerd@gnu.org>
5570         * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
5571         X-Complaints-To, NNTP-Posting-Date, and User-Agent.
5573 2001-02-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5575         * ebnf2ps.el: Eliminate time-stamp functions.
5576         (ebnf-version): New version (3.5).
5577         (ebnf-eps-finish-and-write): Replace time-stamp functions by
5578         format-time-string.
5580 2001-02-05  Gerd Moellmann  <gerd@gnu.org>
5582         * simple.el (next-line): Goto end-of-line before inserting a newline.
5584 2001-02-05  Miles Bader  <miles@gnu.org>
5586         * image-file.el (insert-image-file): When visiting an image, also
5587         set `truncate-lines' to t so that any fringe arrow looks correct.
5589 2001-02-05  Kenichi Handa  <handa@etl.go.jp>
5591         * isearch.el (isearch-forward): Add description about input method
5592         in the docsting.
5594 2001-02-04  Stefan Monnier  <monnier@cs.yale.edu>
5596         * skeleton.el (skeleton-internal-1): Always push the mark for @.
5598 2001-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
5600         * info.el (info-initialize): If installation-directory is nil, for
5601         DOS/Windows systems try looking in a sibling of invocation-directory.
5603 2001-02-02  Gerd Moellmann  <gerd@gnu.org>
5605         * wid-edit.el (widget-button-click): Fix last change.
5607         * frame.el (frame-notice-user-settings): When resizing the initial
5608         frame because the tool bar is off, also change the frame's top
5609         position if a negative top position was specified.
5611 2001-02-02  Miles Bader  <miles@gnu.org>
5613         * image-file.el (insert-image-file): When visiting an image,
5614         suppress the cursor in the image buffer.
5616 2001-02-01  Dave Love  <fx@gnu.org>
5618         * progmodes/f90.el (f90-mode): Remove startup message.
5620         * vc-cvs.el: Remove autoloads.  Require vc when compiling.
5622 2001-02-01  Gerd Moellmann  <gerd@gnu.org>
5624         * startup.el (command-line): Fix code determining whether or not
5625         to use delete-key-deletes-forward-mode.
5627 2001-02-01  Andre Spiegel  <spiegel@gnu.org>
5629         * vc.el (vc-diff-switches): New user option.
5630         (vc-version-diff): Use it.
5631         (vc-diff-switches-list): New macro.
5633         * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches):
5634         New customization options.
5635         (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
5637         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
5639 2001-02-01  Gerd Moellmann  <gerd@gnu.org>
5641         * msb.el (toplevel): Quote hook symbols.
5643 2001-02-01  Kenichi Handa  <handa@etl.go.jp>
5645         * international/mule.el (make-coding-system): Add description
5646         about recognized properties in the docstring.
5648         * international/mule-conf.el: Remove unused charsets
5649         mac-roman-lower and mac-roman-upper.
5651 2001-01-31  Gerd Moellmann  <gerd@gnu.org>
5653         * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
5654         is in front of the left-margin, if any.
5656         * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
5657         like `delete'.
5659         * bindings.el: Define `kp-delete' like `delete' in function-key-map.
5661         * term/w32-win.el (mouse-set-font): Doc fix.
5663 2001-01-31  Stefan Monnier  <monnier@cs.yale.edu>
5665         * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
5666         (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
5667         on already.
5669 2001-01-31  Markus Rost  <rost@math.ohio-state.edu>
5671         * files.el (save-buffer): Don't give message if (buffer-file-name)
5672         returns nil.
5674 2001-01-31  Eli Zaretskii  <eliz@is.elta.co.il>
5676         * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
5678         * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
5679         concat for integers.  From Juanma Barranquero <lektu@uol.com.br>.
5681         * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
5682         display problems.
5684 2001-01-31  Kenichi Handa  <handa@etl.go.jp>
5686         * international/mule.el (charset-info): Fix docstring.
5688         * international/mule-diag.el (describe-character-set): Check final
5689         char valid before printing it.
5691 2001-01-30  Gerd Moellmann  <gerd@gnu.org>
5693         * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
5695         * frame.el (frame-notice-user-settings): Do the tool-bar
5696         stuff only for graphical displays.  Fix a braino.
5698         * frame.el (frame-initialize): Create initial frame visible.
5699         (frame-notice-user-settings): When tool-bar has been switched off,
5700         correct the frame size and sync tool-bar-mode.
5702         * startup.el (command-line): Remove manipulation of frame
5703         height for tool bars.
5705 2001-01-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
5707         * lpr.el: Compatibility with XEmacs and doc fixes.
5708         (lpr-windows-system, lpr-lp-system): New vars.
5709         (lpr-printer-switch): New defcustom.
5710         (printer-name, lpr-command): Customization fix.
5711         (print-region-1): Code fix.
5712         (print-region-new-buffer, printify-region): Indentation fix.
5713         (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1):
5714         New functions.
5716 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
5718         * msb.el (toplevel): Fix the eval-after-load.
5720 2001-01-29  Dave Love  <fx@gnu.org>
5722         * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
5724         * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
5726         * progmodes/tcl.el (outline, dabbrev, add-log): Require when compiling.
5727         (tcl-using-emacs-19-23): Consider Emacs 21+.
5728         (tcl-help-directory-list, tcl-command-switches): Fix :type.
5729         (tcl-add-emacs-menu): Supply menu name.
5730         (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
5732 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
5734         * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
5736 2001-01-29  Stefan Monnier  <monnier@cs.yale.edu>
5738         * pcvs.el (cvs-mark-fis-dead): New function.
5739         (cvs-mode-add): Use it.
5740         (cvs-mode-add-change-log-entry-other-window):
5741         Rebind change-log-default-name to itself rather than to nil.
5743 2001-01-29  Sam Steingold  <sds@gnu.org>
5745         * vc-cvs.el: Replaced (require 'vc) with a bunch of
5746         `autoload' statements.
5748 2001-01-29  Eli Zaretskii  <eliz@is.elta.co.il>
5750         * files.el (confirm-kill-emacs): Doc fix.
5752         * frame.el (frame-initialize): Doc fix.
5754         * time-stamp.el (time-stamp-string): Doc fix.
5756         * woman.el (WoMan-log-1): Make the log buffer writable.
5757         From Markus Rost <rost@math.ohio-state.edu>.
5759 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
5761         * imenu.el (imenu-syntax-alist): Add autoload cookie for
5762         the `make-variable-buffer-local'.
5764 2001-01-29  Dave Love  <fx@gnu.org>
5766         * ansi-color.el (ansi-color-for-comint-mode): Add :version.
5767         (ansi-color-for-comint-mode-on, ansi-color-process-output):
5768         Add autoload cookie.
5769         (ansi-color-apply-sequence): Fix typo.
5771 2001-01-29  Gerd Moellmann  <gerd@gnu.org>
5773         * menu-bar.el (menu-bar-files-menu): Add menu items for
5774         Postscript printing in black and white.
5776         * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
5777         X-Mailman-Version, Precedence, List-Help, List-Post,
5778         List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
5779         Content-Type, Content-Length.
5781 2001-01-29  Dave Love  <fx@gnu.org>
5783         * elide-head.el (elide-head): Make overlay evaporate.
5785         * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc fix.
5787 2001-01-28  Eli Zaretskii  <eliz@is.elta.co.il>
5789         * isearch.el (isearch-highlight): Don't punt if the display
5790         doesn't support colors, since isearch faces are defined for
5791         monochrome displays as well.
5793 2001-01-27  Sam Steingold  <sds@gnu.org>
5795         * shell.el (shell-write-history-on-exit): Make sure that we are in
5796         the shell buffer (M-x tex-file RET inserted the error message into
5797         the TeX buffer).
5799 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
5801         * simple.el (transient-mark-mode): Doc fix.
5803 2001-01-27  Gerd Moellmann  <gerd@gnu.org>
5805         * progmodes/etags.el (find-tag-noselect): Don't bind tags-file-name.
5807 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
5809         * shell.el (shell-unquote-argument): If the shell is one of the
5810         mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
5811         quote character.
5812         (shell-dumb-shell-regexp): Document that the shells which match
5813         this regexp are supposed to not treat a backslash as a quote character.
5815         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
5816         from 2001-01-12.  It is not needed, since backspace is mapped into DEL.
5818 2001-01-27  Richard M. Stallman  <rms@gnu.org>
5820         * dabbrev.el (dabbrev--substitute-expansion):
5821         Treat a one-capital-letter abbrev as "not all upper case",
5822         so as to force preservation of the expansion's pattern
5823         if the expansion starts with a capital letter.
5825 2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
5827         * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
5828         Doc fix.
5830         * simple.el (transient-mark-mode): Document the fact that many
5831         commands act on the region when mark is active.
5833 2001-01-27  Kenichi Handa  <handa@etl.go.jp>
5835         * international/quail.el (quail-setup-completion-buf): Make the
5836         multibyteness of current buffer inherited to Quail completion buffer.
5837         (quail-show-guidance-buf): Make the multibyteness of current
5838         buffer inherited to Quail guidance buffer.
5839         (quail-help): Make the multibyteness of current buffer inherited
5840         to Quail help buffer.
5842 2001-01-26  Dave Love  <fx@gnu.org>
5844         * time-stamp.el: Doc fixes.
5846         * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
5847         (delphi-keyword-face, delphi-other-face): Fix :type.
5849         * textmodes/flyspell.el: Doc fixes.  Add :version to new options.
5851         * mail/feedmail.el (feedmail): Add :link.
5852         (feedmail-send-it): Doc fix.
5854         * mail/sendmail.el: Doc fixes.
5855         (sendmail-send-it): Fix the non-ASCII regexp and use
5856         rfc2047-encode-string.
5858         * dired.el, dired-aux.el: Revert last change.
5860 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
5862         * makefile.w32-in (DONTCOMPILE): Add various term files.
5864 2001-01-26  Dave Love  <fx@gnu.org>
5866         * Makefile.in (DONTCOMPILE): Add various term files.
5868 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
5870         * man.el (Man-default-man-entry, Man-mode): Doc fix.
5872         * startup.el (display-startup-echo-area-message): Make sure
5873         the echo area is resized to fit the size of the startup message.
5875         * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
5876         part of which is a constant.
5878 2001-01-26  Eli Zaretskii  <eliz@is.elta.co.il>
5880         * loadup.el (Top-level) [ms-dos]: Don't load international/ccl twice.
5882 2001-01-26  Richard M. Stallman  <rms@gnu.org>
5884         * simple.el (next-line): Don't let `newline' expand abbrevs.
5885         Simplify slightly.
5886         (open-line): Don't let `newline' expand abbrevs.
5888 2001-01-25  John Wiegley  <johnw@gnu.org>
5890         * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
5891         to `repeat' in the :type field.
5893         * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
5894         allow a choice of regexp or nil.
5895         (pcomplete-dir-ignore): Same.
5897         * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
5898         a command) to always fail.
5900 2001-01-25  Gerd Moellmann  <gerd@gnu.org>
5902         * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
5903         discard the result.
5904         (iswitchb-to-end): Likewise.
5906 2001-01-25  Sam Steingold  <sds@gnu.org>
5908         * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
5909         Require vc.
5911 2001-01-25  Stefan Monnier  <monnier@cs.yale.edu>
5913         * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
5915         * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
5917 2001-01-25  Dave Love  <fx@gnu.org>
5919         * lisp/international/mule-diag.el (describe-char-after): Doc fix.
5920         (describe-coding-system): Tweak the English text.
5922         * loadup.el: Preload international/ccl for utf-8.
5924 2001-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
5926         * mail/rmail.el (rmail-redecode-body): Doc fix.
5928 2001-01-25  Kenichi Handa  <handa@etl.go.jp>
5930         * international/mule-cmds.el (reset-language-environment):
5931         Reset coding-category-utf-8 to mule-utf-8.
5933         * international/mule-conf.el (coding-category-utf-8):
5934         Initialize to mule-utf-8.
5936         * loadup.el: Preload international/utf-8.
5938         * international/utf-8.el: New file.
5940 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
5942         * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
5944 2001-01-24  Sam Steingold  <sds@gnu.org>
5946         * dired.el (dired-replace-in-string): Removed.
5947         (dired-sort-toggle): Use `replace-regexps-in-string'
5948         instead of `dired-replace-in-string'.
5950         * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
5951         (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
5953         * gs.el (gs-replace-in-string): Removed.
5954         (gs-options): Use `replace-regexps-in-string'
5955         instead of `gs-replace-in-string'.
5957 2001-01-24  Eli Zaretskii  <eliz@is.elta.co.il>
5959         * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
5960         bug report is mailed to an email list and posted to a news group.
5962 2001-01-24  Gerd Moellmann  <gerd@gnu.org>
5964         * comint.el (comint-replace-by-expanded-history-before-point):
5965         Fix change of 2000-08-03 to move point to the start of the line again.
5967         * startup.el (tool-bar-images-pixel-height): New variable.
5968         (command-line): After loading the user's init file, when
5969         tool-bar-mode is on, increase the frame's size by some lines for
5970         the tool-bar.
5972         * frame.el (frame-initialize): Create the initial frame invisible.
5974 2001-01-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
5976         * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
5977         (chinese-big5): MIME:Big5.
5979 2001-01-24  Gerd Moellmann  <gerd@gnu.org>
5981         * international/mule-cmds.el (universal-coding-system-argument):
5982         Handle commands with prefix args.
5984 2001-01-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5986         * calendar/diary-lib.el (diary-float): Fix case of MONTH
5987         being a list of numbers.
5988         (diary-mail-entries): Rewritten.
5990 2001-01-23  Dave Love  <fx@gnu.org>
5992         * international/mule.el (make-coding-system): Fix typo.
5994         * textmodes/outline.el (outline-mode) <font-lock-defaults>:
5995         Add backward-paragraph as font-lock-beginning-of-syntax-function.
5997 2001-01-23  Eli Zaretskii  <eliz@is.elta.co.il>
5999         * font-lock.el (font-lock-mode): Doc fix.
6001 2001-01-23  Kenichi Handa  <handa@etl.go.jp>
6003         * international/mule.el (make-translation-table): Fix docstring.
6005 2001-01-22  Eli Zaretskii  <eliz@is.elta.co.il>
6007         * mail/rmail.el (rmail-redecode-body): New function.
6009         * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
6011 2001-01-22  Gerd Moellmann  <gerd@gnu.org>
6013         * isearch.el (isearch-lazy-highlight-case-fold-search)
6014         (isearch-lazy-highlight-regexp): New variables.
6015         (isearch-lazy-highlight-cleanup): Update lazy highlight if
6016         case-fold search or regexp search has been toggled.
6018         * wid-edit.el (widget-button-click): Avoid a save-excursion
6019         around running a global binding.
6021         * isearch.el (isearch-lazy-highlight-initial-delay): Set default
6022         to 0.25.
6024 2001-01-20  Miles Bader  <miles@gnu.org>
6026         * cus-edit.el (custom-face-save): Do post-processing on the face's
6027         new value like `custom-face-set' does.
6029 2001-01-19  Eli Zaretskii  <eliz@is.elta.co.il>
6031         * mail/emacsbug.el (report-emacs-bug): Report the value of
6032         LC_CTYPE, not LC_TYPE.
6034         * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
6035         isearch-toggle-regexp and isearch-edit-string to doc string.
6037 2001-01-19  Gerd Moellmann  <gerd@gnu.org>
6039         * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
6040         as font-lock-beginning-of-syntax-function in font-lock-defaults.
6042         * jit-lock.el (jit-lock-fontify-now): Don't bind
6043         font-lock-beginning-of-syntax-function to nil.
6045 2001-01-19  Eli Zaretskii  <eliz@is.elta.co.il>
6047         * mail/emacsbug.el (report-emacs-bug): Report values of
6048         locale-coding-system, default-enable-multibyte-characters, and the
6049         environment variables LC_ALL, LC_TYPE, and LANG.
6051 2001-01-19  Gerd Moellmann  <gerd@gnu.org>
6053         * font-lock.el (font-lock-default-fontify-region): Fix last change.
6055         * font-lock.el (font-lock-multiline): Default to nil.
6056         (font-lock-default-fontify-region): If font-lock-multiline is
6057         nil, don't check the property `font-lock-multiline'.
6059         * jit-lock.el (jit-lock-after-change): If font-lock-multiline
6060         is nil, don't check the `font-lock-multiline' text property.
6062 2001-01-19  Michael Kifer  <kifer@cs.sunysb.edu>
6064         * viper.el: Call initial-major-mode on startup.
6066         * ediff.el (ediff-patch-file): Use better defaults.
6068         * ediff-vers.el: Fix for 8+3 DOS file systems.
6070 2001-01-19  Colin Walters <walters@cis.ohio-state.edu>
6072         * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
6073         diff mode, if available.
6075 2001-01-19  Michael Kifer  <kifer@cs.sunysb.edu>
6077         * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
6079         * ediff-init.el (subst-char-in-string): Define and use it, unless
6080         it's already defined.
6082 2001-01-18  Gerd Moellmann  <gerd@gnu.org>
6084         * tooltip.el (tooltip-hide-delay): New user-option.
6085         (tooltip-show): Use tooltip-hide-delay instead of the default.
6087 2001-01-18  Kenichi Handa  <handa@etl.go.jp>
6089         * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
6090         kill-local-variable doesn't work for enable-multibyte-characters.
6092 2001-01-17  Dave Love  <fx@gnu.org>
6094         * ediff-init.el (ediff-before-setup-hook)
6095         (ediff-merge-filename-prefix): Add :version.
6097         * international/latin1-disp.el: Require disp-table.
6098         (latin1-display): Fix :set.
6100         * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
6102 2001-01-17  Gerd Moellmann  <gerd@gnu.org>
6104         * isearch.el (isearch-lazy-highlight-initial-delay)
6105         (isearch-lazy-highlight-interval): Default to 0.
6107 2001-01-17  Bob Glickstein  <bobg@zanshin.com>
6109         * isearch.el (isearch-highlight): Set isearch-overlay priority to
6110         1 here rather than each time through
6111         isearch-lazy-highlight-new-loop.
6112         (isearch-lazy-highlight-max): Variable deleted.
6113         (isearch-lazy-highlight-max-at-a-time): New user variable, like
6114         isearch-lazy-highlight-max but controls a single invocation of
6115         isearch-lazy-highlight-update.
6116         (isearch-lazy-highlight-wrapped): Variable recreated.
6117         (isearch-lazy-highlight-window-start): New variable.
6118         (isearch-lazy-highlight-cleanup): Restored to behavior of
6119         before 2-Jan.
6120         (isearch-lazy-highlight-remove-overlays): Function deleted;
6121         behavior folded into isearch-lazy-highlight-cleanup.  "Keep"
6122         behavior removed.
6123         (isearch-lazy-highlight-new-loop): Restore old behavior of calling
6124         isearch-lazy-highlight-update in a loop rather than just once.
6125         Test isearch-invalid-regexp here and decide not to start a new
6126         loop, rather than testing it each time through
6127         isearch-lazy-highlight-update.
6128         (isearch-lazy-highlight-search): Function restored.
6129         (isearch-lazy-highlight-update): Get called in a timer loop again,
6130         but this time highlight more than one match each time through.
6131         Only highlight matches in the visible part of the window.
6132         Start at point, move in the direction of the search, and wrap around at
6133         the edge of the window.  Use sit-for to force redisplay and ensure
6134         window-start is credible.  "Face suppressing" behavior removed;
6135         overlay priorities should make it unnecessary, right?
6136         (isearch-highlight): Face suppressing behavior removed.
6137         (isearch-dehighlight): Face suppressing behavior removed.
6138         (isearch-set-lazy-highlight-faces-at): Removed.
6140 2001-01-17  Kenichi Handa  <handa@etl.go.jp>
6142         * language/european.el ("Latin-1"): Make the format of description
6143         about additional language environments same as that of Latin-2.
6145 2001-01-16  Dave Love  <fx@gnu.org>
6147         * isearch.el (isearch-lazy-highlight): Add :version.
6149         * simple.el (backward-delete-char-untabify-method)
6150         (next-line-add-newlines): Add :version.
6152 2001-01-16  Gerd Moellmann  <gerd@gnu.org>
6154         * bindings.el: Bind <backspace> and <delete> via function-key-map.
6155         Don't bind <delete> otherwise.
6157         * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
6158         and <delete> via function-key-map.
6160         * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
6161         Subject line only if point is after the `Subject:'.
6163 2001-01-16  Kenichi Handa  <handa@etl.go.jp>
6165         * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
6166         japanese-jisx0213-2 in `charset' property of this lang. env.
6168         * language/european.el ("Latin-1"): Add description for Dutch and
6169         Spanish lang. env.
6171         * international/mule.el (decode-char): Fix conditions.
6172         (encode-char): Handle eight-bit-control too.
6173         (transform-make-coding-system-args): New function.
6174         (make-coding-system): Accept XEmacs style arguments for CCL base
6175         coding system.
6177 2001-01-15  Gerd Moellmann  <gerd@gnu.org>
6179         * progmodes/etags.el (find-tag-noselect): Save the value of
6180         tags-file-name before switching buffers, for the case it has a
6181         buffer-local value.
6183 2001-01-15  Alex Schroeder  <alex@gnu.org>
6185         * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
6186         From Dave Love <fx@gnu.org>.
6187         (ansi-color-for-comint-mode): Fix :version.
6189 2001-01-15  Alex Schroeder  <alex@gnu.org>
6191         * ansi-color.el (ansi-color-unfontify-region): Doc change.
6193 2001-01-14  Eli Zaretskii  <eliz@is.elta.co.il>
6195         * dired.el (dired-insert-directory): If file-system-info fails,
6196         remove the " free " part, but don't signal an error.
6198 2001-01-12  Sam Steingold  <sds@gnu.org>
6200         * bookmark.el (bookmark-maybe-historicize-string):
6201         Use new backquote syntax.
6203 2001-01-12  Richard M. Stallman  <rms@gnu.org>
6205         * subr.el (last): Handle a list that doesn't end in nil.
6207 2001-01-12  Sam Steingold  <sds@gnu.org>
6209         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
6210         to `backward-delete-char-untabify'.
6212 2001-01-12  Dave Love  <fx@gnu.org>
6214         * cus-edit.el (customize-menu-create): Fix the :filter following
6215         easymenu change.
6217         * wid-edit.el (function): Add :match-alternatives.
6218         (widget-color-action): Doc fix.
6220 2001-01-12  Gerd Moellmann  <gerd@gnu.org>
6222         * calendar/calendar.el (calendar-basic-setup): Doc fix.
6224 2001-01-12  Kenichi Handa  <handa@etl.go.jp>
6226         * international/mule-cmds.el (prefer-coding-system): Fix docstring.
6228         * international/ccl.el (define-ccl-program): Fix docstring.
6230 2001-01-11  Dave Love  <fx@gnu.org>
6232         * international/mule-cmds.el (standard-display-european-internal):
6233         Set display table for 2208 as for 160.
6235         * progmodes/ada-mode.el (ada-popup-key): Fix last change.
6237         * progmodes/fortran.el (fortran-mode-map): Modify Customization
6238         entry for custom-menu-create change.
6239         (fortran-strip-sqeuence-nos): Make arg optional.  Fix regexp and
6240         don't cons it in the search loop.
6242         * imenu.el (imenu--truncate-items): Revert last change.
6244 2001-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
6246         * info.el (Info-setup-header-line): If the node header includes
6247         either Next: or Prev: links, don't show the File: and Node: parts
6248         in the header line.
6250 2001-01-11  Gerd Moellmann  <gerd@gnu.org>
6252         * comint.el (comint-goto-process-mark): Don't print a message
6253         when running in batch mode.
6255         * isearch.el (isearch-search): In the condition-case handler for
6256         `error', set isearch-invalid-regexp to the whole error message.
6258         * subr.el (eval-after-load): Call load-symbol-file-load-history to
6259         ensure that eval-after-load works for files dumped with Emacs.
6261         * help.el (load-symbol-file-load-history): New function extracted
6262         from function symbol-file.
6263         (symbol-file): Use it.
6265         * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as exit.xpm.
6267 2001-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
6269         * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
6270         behave as if there were no prefix argument.
6271         (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
6272         argument were nil.
6274 2001-01-11  Richard M. Stallman  <rms@gnu.org>
6276         * isearch.el (isearch-lazy-highlight-update):
6277         Don't look for more potential matches once maximum is exceeded.
6278         Use overlays-in to check correctly for overlap with current match.
6279         Ignore empty matches.
6281 2001-01-11  Miles Bader  <miles@gnu.org>
6283         * textmodes/ispell.el (ispell-adjusted-window-height): New function.
6284         (ispell-overlay-window, ispell-help, ispell-show-choices)
6285         (ispell-command-loop): Use it instead of `window-height'.
6287 2001-01-10  Gerd Moellmann  <gerd@gnu.org>
6289         * files.el (confirm-kill-emacs): New user-option.
6290         (save-buffers-kill-emacs): Ask for final confirmation before
6291         killing Emacs.
6293         * isearch.el (isearch-done): Set isearch-lazy-highlight-start
6294         to nil.
6296 2001-01-10  Dave Love  <fx@gnu.org>
6298         * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
6300         * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc, :type.
6302         * hi-lock.el (hi-lock-exclude-modes): Fix :type.
6304         * calculator.el (calculator-number-digits): Fix :type.
6306         * vc-cvs.el (vc-cvs-header): Fix :type.
6307         * vc-rcs.el (vc-rcs-header): Fix :type.
6308         * vc-sccs.el (vc-sccs-header): Fix :type.
6310         * progmodes/ada-mode.el (ada-popup-key): Fix :type.
6312         * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
6314         * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
6316 2001-01-10  Gerd Moellmann  <gerd@gnu.org>
6318         * simple.el (set-variable): Force a thorough redisplay for the
6319         case that the variable has an effect on the display, like
6320         `tab-width' has.
6322 2001-01-10  Andre Spiegel  <spiegel@gnu.org>
6324         * vc.el: Add documentation for backend interface.
6326 2001-01-10  Kenichi Handa  <handa@etl.go.jp>
6328         * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
6330         * international/mule-conf.el (latin-extra-code-table): Set to t
6331         for \223 and \224.
6333 2001-01-09  Kenichi Handa  <handa@etl.go.jp>
6335         * international/mule-cmds.el (locale-language-names): Map "es" to
6336         "Spanish" and "nl" to "Dutch".
6338 2001-01-09  Gerd Moellmann  <gerd@gnu.org>
6340         * bindings.el (global-map): Bind <home> to beginning-of-line,
6341         <end> to end-of-line, C-<home> to beginning-of-buffer, and
6342         C-<end> to end-of-buffer.
6344         * language/european.el: Add Dutch and Spanish language info
6345         to be able to use the appropriate tutorials.
6347 2001-01-09  Alex Schroeder  <alex@gnu.org>
6349         * ansi-color.el (ansi-color-process-output): Use markers instead
6350         of positions for start and end of region.
6351         (ansi-color-apply-on-region): Rewrote code to make it more robust.
6352         Previously, occasional mistakes happend when fontifying many
6353         chunks of output (eg. ls --color=yes /dev).  This happened
6354         whenever an overlay was created up to the end of the region, which
6355         coincided with the process-mark.  New text would then be added
6356         within that overlay instead of after it.
6357         (ansi-color-make-extent): Overlays are created with the property
6358         `modification-hooks' set to '(ansi-color-freeze-overlay).
6359         (ansi-color-freeze-overlay): New function.  When inserting text at
6360         the end of the overlay, the overlay will resize.
6362 2000-01-09  Alex Schroeder  <alex@gnu.org>
6364         * ansi-color.el (ansi-color-process-output): Doc change.
6365         (ansi-color-unfontify-region): Doc change.  No longer installed
6366         automatically in font-lock-unfontify-region-function.
6367         (ansi-color-apply): Doc change.
6368         (ansi-color-apply-on-region): Use extents or overlays instead of
6369         text-properties.
6370         (ansi-color-make-extent): New function.
6371         (ansi-color-set-extent-face): New function.
6373 2000-01-09  Alex Schroeder  <alex@gnu.org>
6375         * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
6376         both use ansi-color-process-output, now.
6377         (ansi-color-process-output): Doesn't return string anymore.  It is
6378         installed in comint-output-filter-functions for both Emacs and
6379         XEmacs, now.
6380         (ansi-color-unfontify-region): Simplified code removing variables
6381         pos and start-ansi.
6382         (ansi-color-apply): Put text-property ansi-color before putting
6383         text-property face because ansi-color-unfontify-region is called
6384         immediately after the call to put-text-property.
6385         (ansi-color-context-region): Doc change.
6386         (ansi-color-filter-region): Simplified code.
6387         (ansi-color-apply-on-region): Changed start to start-marker, using
6388         a marker explicitly.  Put text-property ansi-color before putting
6389         text-property face because ansi-color-unfontify-region is called
6390         immediately after the call to put-text-property.
6392 2000-01-09  Alex Schroeder  <alex@gnu.org>
6394         * ansi-color.el (ansi-color-faces-vector): Doc change.
6395         (ansi-color-for-comint-mode): Changed :type property to choice.
6396         (ansi-color-last-context): Removed.
6397         (ansi-color-process-output): Don't use ansi-color-last-context, as
6398         the main functions will store their context now.
6399         (ansi-color-context): Doc change.
6400         (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
6401         Uses ansi-color-context such that repeated calls will strip
6402         partial escape sequences, too.
6403         (ansi-color-apply): Simplified code.  Colorize end of string if
6404         face is not null.  Store context in new (FACE STRING) format, such
6405         that repeated calls will strip partial escape sequences, too.
6406         Append faces to face property using ansi-color-apply-sequence such
6407         that cumulative mode actually works.
6408         (ansi-color-context-region): New variable.
6409         (ansi-color-filter-region): Rewrote it based on
6410         ansi-color-apply-on-region.  Uses ansi-color-context-region such
6411         that repeated calls will strip partial escape sequences, too.
6412         (ansi-color-apply-on-region): Simplified code.  Colorize end of
6413         region if face is not null.  Store context in new (FACE POS)
6414         format, such that repeated calls will strip partial escape
6415         sequences, too.  Append faces to face property using
6416         ansi-color-apply-sequence such that cumulative mode actually works.
6417         (ansi-color-apply-sequence): New function.
6418         (ansi-color-get-face): When the default face is added to the list
6419         of faces, all previous settings are discarded and the list of
6420         faces is set to '(default).
6422 2000-01-09  Alex Schroeder  <alex@gnu.org>
6424         * ansi-color.el (ansi-color-faces-vector): Use nil for the default
6425         face, such that ansi-color-apply and ansi-color-apply-on-region
6426         will do the right thing.
6427         (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
6428         returns nil, set the list of faces back to nil instead of
6429         appending the result of ansi-color-get-face to the front of the list.
6431 2000-01-09  Alex Schroeder  <alex@gnu.org>
6433         * ansi-color.el (ansi-color-for-comint-mode): Doc change.
6434         (ansi-color-process): Doc change.
6435         (ansi-color-last-context): New buffer-local variable.
6436         (ansi-color-process-output): New function.  It is automatically
6437         added to comint-output-filter-functions if this is XEmacs.
6438         (ansi-color-unfontify-region): New optional parameter for XEmacs
6439         compatibility.  Check wether font-lock-syntactic-keywords is
6440         boundp before removing the syntax table text property, as XEmacs
6441         doesn't have it.
6442         (ansi-color-filter-region): Doc change.
6443         (ansi-color-apply-on-region): Doc change.
6444         (ansi-color-make-face): New function.  Compatibility layer for
6445         XEmacs.  Return temporary faces instead of cons cells for XEmacs.
6446         (ansi-color-make-color-map): Use ansi-color-make-face.
6447         (ansi-color-get-face): Avoid face text property '(nil) as results
6448         in an errow for XEmacs.
6450 2000-01-09  Alex Schroeder  <alex@gnu.org>
6452         * ansi-color.el (ansi-color-unfontify-region): New function.
6453         Uses text-property ansi-color in order to preserve fontification by
6454         ansi-color.  When the package is loaded, a lambda expression is
6455         put onto font-lock-mode-hook.  This lambda expression will check
6456         font-lock-unfontify-region-function and replace
6457         font-lock-default-unfontify-region with ansi-color-unfontify-region.
6458         (ansi-color-apply): Add text-property ansi-color in addition to
6459         text-property face.
6460         (ansi-color-apply-on-region): Add text-property ansi-color in
6461         addition to text-property face.
6462         (save-buffer-state): Copy of the macro that is also used by
6463         lazy-lock and font-lock.
6465         (ansi-color-for-comint-mode): New option.
6466         (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
6467         (ansi-color-for-comint-mode-off): Ditto.
6468         (ansi-color-for-comint-mode-filter): Ditto.
6469         (ansi-color-process): New function.  Uses ansi-color-for-comint-mode to
6470         decide what to do.  This function is added to
6471         comint-preoutput-filter-functions when the package is loaded.
6473         (ansi-color-for-shell-mode-set): Removed.
6474         (ansi-color-for-shell-mode): Removed.
6476 2000-01-09  Alex Schroeder  <alex@gnu.org>
6478         * ansi-color.el (ansi-color-for-shell-mode-set): New function with
6479         the lambda expression from the ansi-color-for-shell-mode :set
6480         property.  Additionally, modify shell-mode-hook to enable or
6481         disable font-lock-mode for future shell buffers.
6482         (ansi-color-for-shell-mode): The :set property calls
6483         ansi-color-for-shell-mode-set instead of a lambda expression.
6485 2000-01-09  Alex Schroeder  <alex@gnu.org>
6487         * ansi-color.el (ansi-color-for-shell-mode): Doc change.
6488         (ansi-color-context): New variable.
6489         (ansi-color-apply): Save context between calls.
6491 2001-01-09  Eli Zaretskii  <eliz@is.elta.co.il>
6493         * isearch.el (isearch, isearch-lazy-highlight-face):
6494         New definitions for face colors and attributes.
6496         * wid-edit.el (widget-choose): Call display-popup-menus-p instead
6497         of display-mouse-p.
6499 2001-01-09  Kenichi Handa  <handa@etl.go.jp>
6501         * international/mule.el (make-coding-system): If the coding system
6502         accepts extra latin codes, register such codes as safe for the
6503         coding system.
6505 2001-01-08  Richard M. Stallman  <rms@gnu.org>
6507         * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
6508         don't mention the file name or the date here, because they are
6509         logged at the start of the file.
6511 2001-01-08  Richard M. Stallman  <rms@gnu.org>
6513         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
6514         Change screen-width to frame-width.
6516 2001-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
6518         * info.el (Info-search): Print the default as part of the prompt.
6520 2001-01-08  Andre Spiegel  <spiegel@gnu.org>
6522         * vc.el (vc-default-latest-on-branch-p): New function, replaces
6523         constant implementations in backends.
6525         * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
6526         (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
6528         * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
6529         WRITABLE to EDITABLE.
6531         * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
6532         (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
6533         to EDITABLE.
6535 2001-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
6537         * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
6538         (copyright, copyright-update): Compute the current year at run time.
6540 2001-01-08  Gerd Moellmann  <gerd@gnu.org>
6542         * isearch.el (isearch-old-signal-hook): Removed.
6543         (isearch-mode): Add isearch-done to kbd-macro-termination-hook
6544         instead of setting signal-hook-function.
6545         (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
6547 2001-01-08  Kevin Gallagher  <kevingal@onramp.net>
6549         * emulation/edt.el: Update to version 4.0.  Provide support for
6550         EDT scroll margins at top and bottom of the window.  Provide an
6551         emulation of the EDT SUBS command (bound to GOLD-Enter, by
6552         default).  Enhance edt-quit, bound to GOLD-q by default, to warn
6553         user when file-related buffer modifications exist.
6554         Provide support for running EDT Emulation in XEmacs.
6555         Provide customize access to some user updatable variables.
6556         Add Commentary section to file header.
6557         Fixed a few minor bugs and cleaned up some code.
6559         * emulation/edt-mapper.el: Update to version 4.0.  Provide support
6560         for detecting a keypress that generates an ASCII key sequence.
6561         (Previously, only a keypress that generates a vector was
6562         recognized.)  Embed Window Manager name into name of the generated
6563         EDT Emulation initialization file since the initialization file is
6564         Window Manager specific.  Add Commentary section to file header.
6566 2001-01-07  Eli Zaretskii  <eliz@is.elta.co.il>
6568         * mail/sendmail.el (mail-mode): Doc fix.
6570         * info.el (Info-goto-emacs-command-node): Doc fix.
6571         (Info-goto-emacs-key-command-node): Doc fix.
6573 2001-01-06  Eli Zaretskii  <eliz@is.elta.co.il>
6575         * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
6576         systems without long file-name support.
6578 2001-01-06  Andrew Innes  <andrewi@gnu.org>
6580         * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
6582 2001-01-06  Eli Zaretskii  <eliz@is.elta.co.il>
6584         * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
6585         (isearch-lazy-highlight-update): Doc fix.
6587         * ffap.el (ffap-bindings): Doc fix.
6589         * dired-x.el (dired-virtual-guess-dir): Doc fix.
6591 2001-01-05  Dave Love  <fx@gnu.org>
6593         * emacs-lisp/cl-seq.el (remove, remq): Remove.
6595 2001-01-05  Gerd Moellmann  <gerd@gnu.org>
6597         * mouse-drag.el (mouse-drag-safe-scroll):
6598         Bind scroll-preserve-screen-position to nil.
6600         * isearch.el (isearch-old-signal-hook): New variable.
6601         (isearch-mode): Set signal-hook-function to isearch-done.
6602         (isearch-done): Restore old signal-hook-function.
6604         * info.el (Info-fontify-node): Mark one more char as intangible.
6606 2000-01-05  Kenichi Handa  <handa@etl.go.jp>
6608         * composite.el (compose-last-chars): New argument COMPONENTS.
6609         If it is non-nil, compose preceding characters by compose-region with
6610         COMPONENTS.
6612         * international/quail.el (quail-input-string-to-events): New function.
6613         (quail-input-method): Convert input string to events here.
6614         (quail-start-translation): Return input string, not event list.
6615         (quail-start-conversion): Likewise.
6617 2001-01-04  Gerd Moellmann  <gerd@gnu.org>
6619         * tooltip.el (tooltip-cancel-delayed-tip)
6620         (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
6621         and tooltip-add-timeout.
6622         (tooltip-show): Set border color from faces's foreground.
6623         (tooltip-show-help-function): If called with the same help string
6624         as last time, do nothing.
6625         (tooltip-help-tips): Don't set tooltip-help-message to nil.
6627         * startup.el (fancy-splash-screens): Don't bind show-help-function
6628         to nil.
6630         * tooltip.el (tooltip-frame-parameters): Remove colors.
6631         (tooltip): New face
6632         (tooltip-set-param): New function.
6633         (tooltip-show): Set up color frame parameters from face `tooltip'.
6634         Display the tooltip text in face `tooltip'.
6636 2001-01-04  Dave Love  <fx@gnu.org>
6638         * whitespace.el (whitespace-global-mode): Fix typo.
6640         * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
6642 2001-01-04  Eli Zaretskii  <eliz@is.elta.co.il>
6644         * help.el (help-for-help): Fix a typo in a doc string.
6645         From kwzh@gnu.org (Karl Heuer).
6647 2001-01-03  Dave Love  <fx@gnu.org>
6649         * dired-x.el: Doc fixes.  Maintainer change.
6650         (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix :type.
6651         (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
6652         (dired-guess-shell-alist-user): Customize.
6653         (dired-x-help-address): Set to bug-gnu-emacs.
6654         (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
6655         (dired-default-directory): Renamed from default-directory.
6657         * hl-line.el (hl-line): Doc fix.
6659 2001-01-03  Karl Fogel  <kfogel@red-bean.com>
6661         * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
6663 2001-01-02  Richard M. Stallman  <rms@gnu.org>
6665         * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
6666         to remove all the current alternative-match highlighting.
6667         If nil, remove only what's outside the current window.
6668         (isearch-lazy-highlight-remove-overlays): Take optional
6669         region within which NOT to remove them.
6670         (isearch-lazy-highlight-new-loop): Greatly simplified.
6671         (isearch-lazy-highlight-update): Find all the other occurrences
6672         visible in the window, in just one call.
6673         (isearch-lazy-highlight-start): Now holds start of region to scan.
6674         (isearch-lazy-highlight-end): Now holds end of region to scan.
6675         (isearch-lazy-highlight-wrapped): Variable deleted.
6676         (isearch-lazy-highlight-search): Function deleted.
6678 2000-01-02  Andrew Innes  <andrewi@gnu.org>
6680         * w32-fns.el (convert-standard-filename): Do length check on name
6681         before aref.
6683 2001-01-02  Dave Love  <fx@gnu.org>
6685         * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
6686         value.
6687         (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
6689         * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
6691         * net/browse-url.el (browse-url-filename-alist): Avoid backquote
6692         read syntax.
6694         * calendar/todo-mode.el (todo): Add :link, :version.
6695         (todo-save-top-priorities): Remove autoload cookie.
6696         (todo-add-category, todo-add-item-non-interactively)
6697         (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload cookie.
6699 2001-01-02  Gerd Moellmann  <gerd@gnu.org>
6701         * comint.el (comint-input-history-ignore): New variable.
6702         (comint-read-input-ring): Ignore entries matching
6703         comint-input-history-ignore.
6705 2001-01-02  Eric M. Ludlam  <zappo@gnu.org>
6707         * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
6708         (lm-copyright-mark): New function.
6709         (lm-crack-copyright): New function.
6710         (lm-verify): Check that the file has a copyright.
6711         Check that the file is copyright Free Software Foundation.
6713 2000-12-30  Kenichi Handa  <handa@etl.go.jp>
6715         * international/mule-diag.el (print-fontset): Indent font name by
6716         24 columns, not 25.
6718 2000-12-29  Gerd Moellmann  <gerd@gnu.org>
6720         * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
6721         in Subject line.
6723         * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
6724         Use mail-mode-hook instead of mail-setup-hook.
6725         Otherwise continuing an interrupted message with C-u C-x m for
6726         instance, winds up in Mail mode without abbrevs.
6728 2000-12-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
6730         * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
6731         non-nil.  Adding almost all customization variables on ps-setup.
6732         Doc fix.
6733         (ps-print-version): New version number (6.3.3).
6734         (ps-end-with-control-d): Initialization fix.
6735         (ps-lines-printed): New var.
6736         (ps-skip-newline): New fun.
6737         (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
6738         (ps-next-line, ps-continue-line, ps-plot-region)
6739         (ps-generate-postscript-with-faces, ps-end-job): Code fix.
6741 2000-12-29  Kenichi Handa  <handa@etl.go.jp>
6743         * international/fontset.el (x-complement-fontset-spec):
6744         Resolve ASCII font name so that the same family name is used for fonts
6745         registered in x-font-name-charset-alist.
6746         (create-fontset-from-fontset-spec): Adjusted for the above change.
6747         The name of fontset alias should be a unresolved ASCII font name.
6749 2000-12-28  Gerd Moellmann  <gerd@gnu.org>
6751         * simple.el (delete-key-deletes-forward-mode): Bind backspace
6752         and delete in isearch-mode-map.
6754 2000-12-28  Richard M. Stallman  <rms@gnu.org>
6756         * dired-x.el (dired-guess-shell-alist-default):
6757         Use xpdf instead of acroread.
6759 2000-12-28  Kenichi Handa  <handa@etl.go.jp>
6761         * textmodes/artist.el (artist-butlast): Deleted.
6762         (artist-ellipse-mirror-quadrant): Use butlast instead of
6763         artist-butlast.
6765         * subr.el (butlast, nbutlast): Moved from cl.el to here.
6767         * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
6769 2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
6771         From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
6773         * ls-lisp.el: Better support for the Mac and MS-Windows.
6774         (ls-lisp): New defgroup.
6775         (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
6776         (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
6777         (ls-lisp-support-shell-wildcards): New defcustoms.
6778         (ls-lisp-parse-symlink): New function.
6779         (insert-directory): Code to convert switches to a list and set up
6780         the wildcard argument copied from ls-lisp-insert-directory.
6781         (ls-lisp-insert-directory): New argument TIME-INDEX.  Add support
6782         for -C and -R switches.
6783         (ls-lisp-column-format): New function.
6784         (ls-lisp-delete-matching, ls-lisp-handle-switches)
6785         (ls-lisp-format-time): Add doc strings.
6786         (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
6787         Support ls-lisp-dirs-first.
6788         (ls-lisp-classify, ls-lisp-extension): New functions.
6789         (ls-lisp-format): Optionally support emulation of symlinks.
6790         Support -i, -s, and -G switches.
6792 2000-12-27  Gerd Moellmann  <gerd@gnu.org>
6794         * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
6796         * version.el (emacs-version): Print X scroll bar information.
6798         * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
6799         instead of x-toolkit-scroll-bars-p.
6801         * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
6802         of x-toolkit-scroll-bars-p.
6804 2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
6806         * ffap.el (ffap-bindings): Make interactive and add an autoload cookie.
6807         (ffap-bindings): Doc fix, to reflect the above change.
6809 2000-12-27  Kenichi Handa  <handa@etl.go.jp>
6811         * term.el (term-char-mode): Define all non-ascii self-inserting
6812         characters to 'term-send-raw in term-raw-map.
6814 2000-12-25  Michael Kifer  <kifer@cs.sunysb.edu>
6816         * viper-init (viper-restore-cursor-type): Added condition-case guard.
6818         * ediff-init.el (ediff-quit-hook,ediff-suspend-hook):
6819         Changed initialization; use add-hook.
6820         (ediff-file-remote-p): Use file-local-copy.
6822         * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
6824         * ediff.el (ediff-patch-buffer): Bug fix.
6825         (ediff-revision): Allow selection of the file at the prompt.
6827 2000-12-23  Stefan Monnier  <monnier@cs.yale.edu>
6829         * subr.el (combine-run-hooks): Remove.
6831         * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
6832         and remove the rogue second spec.
6834 2000-12-23  Gerd Moellmann  <gerd@gnu.org>
6836         * progmodes/compile.el (compilation-forget-errors): Fix indentation.
6838 2000-12-22  Stefan Monnier  <monnier@cs.yale.edu>
6840         * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
6841         Use minibuffer menu prompt for the `=' prefix.
6842         (smerge-command-prefix): Change default to C-^.
6843         (smerge-mode): Don't assume font-lock doesn't move point.
6845         * skeleton.el (skeleton-internal-1): Make sure the first line of
6846         the region is also re-indented.
6847         (skeleton-end-newline): New var.
6848         (skeleton-end-hook): Use it.
6850 2000-12-22  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6852         * comint.el (comint-password-prompt-regexp): Support CVS.
6854 2000-12-22  Gerd Moellmann  <gerd@gnu.org>
6856         * simple.el (delete-key-deletes-forward-mode): Simplify.
6857         Also backspace key combinations, depending on
6858         delete-key-deletes-forward.
6860         * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
6862         * simple.el (delete-key-deletes-forward): Doc fix.
6864 2000-08-22  Emmanuel Briot  <briot@gnat.com>
6866         * xml.el (top level comment): Updated to reflect the fact that
6867         white spaces are relevant in the XML file.
6868         (xml-parse-file): Do not kill an existing Emacs buffer if the file
6869         to parse was already edited. This allows for on-the-fly analysis
6870         of XML files.
6871         (xml-parse-tag): Check that the casing is the same in the start
6872         tag and end tag, since XML is case-sensitive.  Allows for spaces
6873         in the end tag, after the name of the tag.
6874         (xml-parse-attlist): Allow for the character '-' in the name of
6875         attributes, as in the standard http-equiv attribute Do not save
6876         the properties in the XML tree, since they are not relevant.
6878 2000-12-21  Stefan Monnier  <monnier@cs.yale.edu>
6880         * generic.el (generic-read-type): Undo last change, inline into
6881         `generic-mode' and then remove.
6882         (generic-mode): Inline generic-read-type.
6883         (define-generic-mode): Push the symbol name rather than the symbol
6884         onto generic-mode-list.
6886 2000-12-21  Gerd Moellmann  <gerd@gnu.org>
6888         * generic.el (generic-read-type): Build an alist for
6889         completing-read as in 20.7.
6891         * play/landmark.el (lm): Use interactive spec `P'.
6892         (toplevel): Don't set debug-on-error.
6894         * server.el (server-switch-buffer): Choose a window on a visible frame.
6896 2000-12-21  Dave Pearson  <davep@davep.org>
6898         * quickurl.el: Commentry change, I've moved my web site.
6900 2000-12-21  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
6902         * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
6903         ranges like \177-\237, but accepts the character sequence from \177 to
6904         \237.  Doc fix.
6905         (ebnf-version): New version (3.4).
6906         (ebnf-setup): Code fix.
6907         (ebnf-range-regexp): New fun.
6908         (ebnf-8-bit-chars): Const fix.
6910         * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
6911         entry.  Doc fix.
6912         (ebnf-bnf-lex): Code fix.
6913         (ebnf-bnf-comment-chars): Const fix.
6915         * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
6916         entry.  Doc fix.
6917         (ebnf-iso-comment-chars): Const fix.
6919         * ebnf-otz.el: Doc fix.
6921         * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
6922         entry.  Doc fix.
6923         (ebnf-yac-skip-code): Code fix.
6924         (ebnf-yac-comment-chars): Const fix.
6926 2000-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
6928         * files.el (insert-directory-safely): New function.
6929         (recover-file): Use it instead of insert-directory.
6930         From Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6932 2000-12-21  Kenichi Handa  <handa@etl.go.jp>
6934         * international/mule-cmds.el (select-safe-coding-system):
6935         Check coding-category-list more rigidly.  Improve help message.
6937         * dired.el (dired-move-to-filename-regexp): Fix previous change.
6939 2000-12-21  Miles Bader  <miles@gnu.org>
6941         * mail/sendmail.el (mail-mode): Set `comment-start' to the yank prefix.
6943 2000-12-21  Kenichi Handa  <handa@etl.go.jp>
6945         * international/mule-diag.el (describe-char-after): Make *Help*
6946         buffer inherit multibyteness of the current buffer.
6948         * international/mule.el (make-char): Docstring adjusted for the
6949         change of make-char-internal.
6951 2000-12-20  Stefan Monnier  <monnier@cs.yale.edu>
6953         * international/iso-cvt.el: Docstrings fix.
6955 2000-12-20  Dave Love  <fx@gnu.org>
6957         * subr.el (eval-after-load): Doc fix.
6959 2000-12-20  Kenichi Handa  <handa@etl.go.jp>
6961         * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
6962         for numbers.
6964 2000-12-20  Miles Bader  <miles@gnu.org>
6966         * international/quail.el (quail-help): Resize the help window
6967         again after it has all its contents.  Remove unneeded progn.
6969 2000-12-19  Gerd Moellmann  <gerd@gnu.org>
6971         * pcmpl-linux.el: Fix copy/paste error.
6973 2000-12-19  Andrew Innes  <andrewi@gnu.org>
6975         * simple.el (delete-key-deletes-forward-mode): Fix typo in docstring.
6977 2000-12-19  Carsten Dominik  <dominik@strw.leidenuniv.nl>
6979         * progmodes/idlw-rinfo.el: Fixed copyright notice.
6981         * progmodes/idlw-toolbar.el: Fixed copyright notice.
6983         * progmodes/idlw-shell.el: Fixed copyright notice.
6985         * progmodes/idlwave.el: Fixed copyright notice.
6987         * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
6988         TAB as key separators.
6990 2000-12-19  Alex Schroeder  <alex@gnu.org>
6992         * sql.el (sql-sybase-options): New option.
6993         (sql-sybase): Use it.  Add sql-database to the list of parameters
6994         provided for login.  The options -w 2048 -n are not used any more.
6995         (sql-postgres-options): Changed default from "--pset" to "-P".
6996         (sql-mysql-options): Doc change.
6997         (sql-stop): Doc change.
6999 2000-12-19  Kenichi Handa  <handa@etl.go.jp>
7001         * international/quail.el (quail-input-method): Always hide
7002         the guidance buffer on exiting.
7004 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
7006         * tooltip.el (tooltip-mode): Signal an error if x-show-tip
7007         isn't fboundp.
7009         * server.el (server-buffer-done): Bury the buffer before
7010         killing it.
7012         * faces.el (face-spec-set): Interpret a nil in specs for
7013         foreground and background colors as `unspecified', for
7014         compatibility with 20.x.
7016 2000-12-18  Dave Love  <fx@gnu.org>
7018         * simple.el (mail-user-agent): Doc fix.
7019         (input-mode-8-bit): Removed.
7021         * international/mule.el (set-keyboard-coding-system): Doc fix.
7022         (keyboard-coding-system): New option.
7024         * mail/sendmail.el (send-mail-function): Customize.
7026 2000-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
7028         * international/codepage.el (cp866-decode-table): New table.
7030 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
7032         * version.el (emacs-version): Remove `%a' from the time format
7033         because the weekday doesn't fit well into each locale.
7035 2000-12-18  Miles Bader  <miles@gnu.org>
7037         * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
7039         * textmodes/artist.el (artist-replace-chars, artist-replace-char):
7040         Check that emacs-major-version is `=' to 20, not `>='.
7041         (artist-replace-chars): Use `make-string' instead of a loop.
7043 2000-12-17  Stefan Monnier  <monnier@cs.yale.edu>
7045         * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
7046         (cvs-execute-single-file): Don't change directory.
7047         Patch from Per Cederqvist.
7049 2000-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
7051         * textmodes/ispell.el (check-ispell-version):
7052         If `ispell-program-name' is "aspell", pass it the -v switch instead
7053         of -vv.
7055 2000-12-16  Kenichi Handa  <handa@etl.go.jp>
7057         * international/mule-diag.el (mule-diag): Insert information about
7058         configure options, multibyte awareness, language env.
7060         * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
7061         regexp to search for candidates.
7063 2000-12-15  Eli Zaretskii  <eliz@is.elta.co.il>
7065         * info.el (Info-forward-node): If the node has an
7066         Info-header-line, widen the buffer before searching for "next:"
7067         and "up:" pointers, and set the search limit to stay in the
7068         current node.
7070 2000-12-16  Miles Bader  <miles@gnu.org>
7072         * simple.el (delete-trailing-whitespace): Remove extraneous let.
7074 2000-12-15  Miles Bader  <miles@gnu.org>
7076         * comint.el (comint-send-string, comint-send-region): Also accept
7077         a buffer, buffer-name, or nil for PROCESS, for compatibility with
7078         process-send-string/region.
7080 2000-12-15  Gerd Moellmann  <gerd@gnu.org>
7082         * isearch.el (isearch-lazy-highlight-max): New user-option.
7083         (isearch-lazy-highlight-update): Don't highlight more than
7084         isearch-lazy-highlight-max matches.
7086         * mail/mh-utils.el (mh-find-path): Set read-mail-command.
7088 2000-12-15  Richard M. Stallman  <rms@gnu.org>
7090         * sort.el (sort-columns): Fix error message.
7092         * dabbrev.el (dabbrev--last-case-pattern): Value is now
7093         `upcase' or `downcase' or nil.
7094         (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
7095         Pass new record-case-pattern arg to dabbrev--substitute-expansion.
7096         (dabbrev--substitute-expansion): New arg record-case-pattern.
7097         If it is non-nil, set dabbrev--last-case-pattern.
7098         If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
7100         * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
7102 2000-12-15  Miles Bader  <miles@gnu.org>
7104         * paths.el (Info-default-directory-list): Don't delete
7105         configure-info-directory from the list of standard info
7106         directories when appending it to the end -- their order is important.
7108         * faces.el (read-face-attribute): If there's no entry for the
7109         user's input in VALID, just use it as-is (this will often result
7110         in an error, but it may be OK for e.g. colors using hexadecimal
7111         notation, and at least will yield a better error message).
7113         * window.el (mode-line-window-height-fudge): Function removed.
7114         (height-affecting-face-attributes, mode-line-window-height-fudge):
7115         Variables removed.
7116         * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
7117         window is really the right size.  Use vertical-motion
7118         rather than forward-line.
7119         (ispell-help): Don't use ispell-mode-line-window-height-fudge.
7120         (ispell-command-loop, ispell-show-choices): Use the variable
7121         ispell-choices-win-default-height, rather than the function.
7122         (ispell-choices-win-default-height): Function removed.
7123         (ispell-mode-line-window-height-fudge): Function removed.
7125 2000-12-14  Stefan Monnier  <monnier@cs.yale.edu>
7127         * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
7129 2000-12-14  Eli Zaretskii  <eliz@is.elta.co.il>
7131         * paths.el (Info-default-directory-list):
7132         If configure-info-directory is not one of the standard directories,
7133         put it first in the list; otherwise put it last.  Doc string
7134         changed accordingly.
7136         * info.el (Info-directory-list): Change doc string to reflect the
7137         change in Info-default-directory-list.
7139         * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
7140         windows-nt as windowed environments, even under -nw.
7142         * startup.el (command-line): Don't call x-backspace-delete-keys-p
7143         if not fboundp.  Switch delete-forward mode for the <delete> key
7144         on all PC platforms, even under -nw.
7146         * term/internal.el ([M-delete]): Remap to M-d.
7148 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
7150         * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
7152 2000-12-14  Eli Zaretskii  <eliz@is.elta.co.il>
7154         * frame.el (show-cursor-in-non-selected-windows): Doc fix.
7156 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
7158         * startup.el (command-line): Call delete-key-deletes-forward-mode,
7159         if appropriate.
7161         * simple.el (delete-key-deletes-forward): New user-option.
7162         (delete-key-deletes-forward-mode): New function.
7164         * bindings.el: Bind `delete' to backward-delete-char.
7166         * emacs-lisp/easymenu.el (easy-menu-current-active-maps):
7167         Test if symbol is bound before getting its value.
7169         * tooltip.el (tooltip-show): If an error is signaled in
7170         x-show-tip, display that error, and display the help in the
7171         echo area.
7173 2000-12-14  Kenichi Handa  <handa@etl.go.jp>
7175         * international/ja-dic-cnv.el (skkdic-set-okuri-nasi):
7176         Show "... entries" messages for every 10000 entries, not 10.
7178 2000-12-13  Karl Fogel  <kfogel@red-bean.com>
7180         * bookmark.el: Provide a generic exit hook, as suggested by
7181         Ovidiu Predescu <ovidiu@cup.hp.com>:
7182         (bookmark-exit-hook): New var.
7183         (bookmark-exit-hook-internal): New func, replaces
7184         old raw lambda form in `kill-emacs-hook', and runs new
7185         `bookmark-exit-hooks'.  No longer tests for the bookmark feature,
7186         as logically that feature must have been provided if this function
7187         is running.
7188         Removed ;;;###autoload before the `add-hook' call.
7190 2000-12-13  Stefan Monnier  <monnier@cs.yale.edu>
7192         * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
7193         (easy-menu-current-active-maps): New function.
7194         (easy-menu-get-map): Use it.
7195         Make a proper menu entry when creating a new keymap.
7197 2000-12-13  Kenichi Handa  <handa@etl.go.jp>
7199         * international/characters.el: Fix cases and syntaxes for
7200         mule-unicode-0100-24ff.
7202         * dired.el (dired-move-to-filename-regexp): Fixed for the case
7203         that a Japanese character is not appended after day and year.
7205         * info.el (Info-suffix-list): Change format for a command that
7206         requires arguments.
7207         (info-insert-file-contents): Adjusted for the above change.
7209 2000-12-12  Andreas Schwab  <schwab@suse.de>
7211         * tar-mode.el (tar-extract): Base the name of the subfile buffer
7212         on the name of the tar buffer.  Verify that the existing buffer is
7213         visiting the same subfile.
7215 2000-12-12  Dave Love  <fx@gnu.org>
7217         * subdirs.el: Add obsolete.
7219 2000-12-12  Gerd Moellmann  <gerd@gnu.org>
7221         * mail/rmailsum.el (rmail-summary-expunge)
7222         (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
7223         instead of rmail-confirm-expunge.
7225         * replace.el (perform-replace): Don't use an empty match adjacent
7226         to a non-empty match when computing the next match before the
7227         replacement is performed.
7229 2000-12-12  Milan Zamazal  <pdm@freesoft.cz>
7231         * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
7232         definition (patch by Stefan Monnier).
7233         (glasses-mode): Use jit-lock instead of `after-change-functions'
7234         (patch by Stefan Monnier).
7236 2000-12-12  Miles Bader  <miles@gnu.org>
7238         * info.el (Info-last-preorder): Don't barf on nodes without a prev.
7239         (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
7241 2000-12-12  Andrew Choi  <akochoi@i-cable.com>
7243         * term/mac-win.el: Remove load for ls-lisp.
7245         * loadup.el: Load ls-lisp for system-type `macos'.
7247 2000-12-12  Miles Bader  <miles@gnu.org>
7249         * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
7250         Respect field end too.
7251         (just-one-space): Respect fields as `delete-horizontal-space'.
7252         (newline-and-indent, reindent-then-newline-and-indent):
7253         Use `delete-horizontal-space'.
7255 2000-12-11  Stefan Monnier  <monnier@cs.yale.edu>
7257         * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
7258         (so as to obey the field property in the minibuffer).
7260         * obsolete/c-mode.el: Moved from lisp/progmodes.
7261         * obsolete/auto-show.el: Moved from lisp.
7262         * obsolete/ooutline.el: Moved from lisp/textmodes.
7264 2000-12-11  Carsten Dominik  <dominik@strw.leidenuniv.nl>
7266         * progmodes/idlwave.el: Updated to IDLWAVE version 4.7.  Too many
7267         changes to list them here.
7269         * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7.
7270         Too many changes to list them here.
7272         * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7.
7273         Too many changes to list them here.
7275         * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
7277 2000-12-11  Gerd Moellmann  <gerd@gnu.org>
7279         * simple.el (kill-new): Don't try to setcar kill-ring if it is nil.
7281         * cus-edit.el (custom-save-variables, custom-save-faces):
7282         Comment fix.
7284         * hscroll.el: Moved to `obsolete' subdir.
7286 2000-12-11  Miles Bader  <miles@gnu.org>
7288         * window.el (window-text-height): Function removed (now in C).
7290 2000-12-10  Stefan Monnier  <monnier@cs.yale.edu>
7292         * log-edit.el (log-edit-parent-buffer): New var.
7293         (log-edit): Set it.  Add BUFFER argument.
7294         (log-edit-done): Use char-before.
7295         Don't bother checking validity of vc-comment-ring.
7296         Only bury the buffer if log-edit popped it up.
7298         * pcvs.el: Update references to CVS-Edit (now Log-Edit).
7299         (cvs-mode-diff-help): Remove.
7300         (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
7301         (cvs-mode-marked): Set up the default for CMD manually.
7303         * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
7304         Remove binding for ? now made unnecessary.
7306 2000-12-10  Carsten Dominik  <dominik@strw.leidenuniv.nl>
7308         * textmodes/reftex.el (reftex-scanning-info-available-p): New function.
7309         (reftex-TeX-master-file): Check for `tex-main-file' early enough.
7311         * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
7312         when master file is not open.
7314 2000-12-09  Stefan Monnier  <monnier@cs.yale.edu>
7316         * progmodes/ada-stmt.el: Update `maintainer'.
7318 2000-12-09  Stephen Gildea  <gildea@stop.mail-abuse.org>
7320         * time-stamp.el (time-stamp-old-format-warn): Reorder custom
7321         choices to match documentation string.
7323 2000-12-09  Miles Bader  <miles@gnu.org>
7325         * minibuf-eldef.el: New file.
7327         * window.el (fit-window-to-buffer): Don't pass last argument to
7328         pos-visible-in-window-p, now that its meaning is inverted.
7330 2000-12-08  Eli Zaretskii  <eliz@is.elta.co.il>
7332         * image.el (create-image): Doc fix; spotted by Per Cederqvist
7333         <ceder@lysator.liu.se>.
7335 2000-12-08  Stefan Monnier  <monnier@cs.yale.edu>
7337         * autoinsert.el (auto-insert-alist): Add missing final \n.
7339         * pcvs-defs.el (cvs-menu): Move.  Make submenu for diff commands.
7340         (cvs-menu-map): Remove.
7341         * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
7342         (cvs-mode-quit): Turn it back into a plain function.
7344         * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
7345         (texinfo-filter): Remove (move to texinfo.el).
7347         * textmodes/texinfo.el: Move the (require 'cl) to the front of the
7348         file where it's more visible.
7349         (texinfo-filter, texinfo-chapter-level-regexp): New variables
7350         moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
7351         (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
7352         (texinfo-inside-macro-p): Only catch `scan-error's.
7353         (texinfo-inside-env-p): Make better use of the match info.
7354         (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
7355         (texinfo-insert-@end): Slight re-organization.
7356         Also remove useless `looking-at' call.
7358 2000-12-08  Andrew Innes  <andrewi@gnu.org>
7360         * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
7361         accessible in -nw mode.
7363         * term/w32-win.el: Remove stuff about selection timeout, which is
7364         irrelevant on Windows.  Move clipboard support to w32-fns.el, so
7365         it is accessible in -nw mode.
7367 2000-12-08  Dave Love  <fx@gnu.org>
7369         * emacs-lisp/lisp-mode.el (lisp-mode):
7370         Set font-lock-keywords-case-fold-search.
7372 2000-12-08  Gerd Moellmann  <gerd@gnu.org>
7374         * textmodes/ispell.el (ispell): Doc fix.
7376 2000-12-08  Kenichi Handa  <handa@etl.go.jp>
7378         * international/quail.el (quail-insert-decode-map): Check the
7379         frame width of a window displaying the current buffer, not that of
7380         the selected frame.
7381         (quail-help): Make sure that the help buffer has window before
7382         inserting text in it.
7384 2000-12-07  Sam Steingold  <sds@gnu.org>
7386         * loadup.el: Load emacs-lisp/backquote instead of autoloading.
7387         Backquote is used in isearch.el, so autoloading saves nothing.
7389 2000-12-07  Eli Zaretskii  <eliz@is.elta.co.il>
7391         * startup.el (normal-top-level-add-subdirs-to-load-path):
7392         Ignore the CVS and RCS subdirectories case-insensitively.
7394         * dired.el (dired-insert-directory): If file-system-info is
7395         fboundp, call it instead of invoking dired-free-space-program.
7397 2000-12-07  Gerd Moellmann  <gerd@gnu.org>
7399         * server.el (server-visit-files): Push files on file-name-history.
7401         * progmodes/cc-langs.el: Update copyright.
7403         * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
7405         * bindings.el (mode-line-mode-menu): Add glasses-mode.
7407         * bindings.el (mode-line-mode-menu): Reverse the order
7408         of define-keys so that the menu appears in alphabetical order.
7410 2000-12-07  Milan Zamazal  <pdm@freesoft.cz>
7412         * progmodes/glasses.el (glasses-mode): Update mode line at the end
7413         of the function.
7415 2000-12-07  Dave Love  <fx@gnu.org>
7417         * jka-compr.el (jka-compr-compression-info-list): Fix :type.
7419         * facemenu.el (facemenu-unlisted-faces): Fix value.
7421 2000-12-07  Stefan Monnier  <monnier@cs.yale.edu>
7423         * font-lock.el (font-lock-default-fontify-region):
7424         Include the terminating \n (off-by-one error).
7425         (font-lock-set-defaults): Use dolist.
7427         * derived.el (define-derived-mode): Don't use combine-run-hooks.
7429 2000-12-07  Kenichi Handa  <handa@etl.go.jp>
7431         * international/mule-cmds.el (describe-language-environment):
7432         Fix for the case that an input method title is not string but a list.
7434         * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
7435         of wrong SIZE record.
7437 2000-12-06  Dave Love  <fx@gnu.org>
7439         * newcomment.el (comment-region, comment-dwim): Doc fix.
7441         * textmodes/texinfo.el: Require tex-mode when compiling.
7442         (texinfo-update-node): Doc fix.
7443         (texinfo-imenu-generic-expression): Add @anchor.
7444         (texinfo-font-lock-keywords): Add @uref.
7445         (texinfo-inside-macro-p): Don't use ignore-errors.
7446         (texinfo-insert-quote): Match more contexts.
7448         * international/mule.el (decode-char, encode-char): Doc fix.
7449         (auto-coding-alist): Customize.
7451         * files.el (load-file): Fix change of 2000-03-12.
7453         * wid-edit.el (widget-text-keymap): Doc fix.
7455 2000-12-06  Andrew Innes  <andrewi@gnu.org>
7457         * makefile.w32-in (lisp): Set to an absolute directory, namely
7458         $(CURDIR).
7460 2000-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
7462         * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
7463         read generated-autoload-file, and set buffer-file-coding-system to
7464         raw-text-unix after reading the file.
7466         * international/mule-conf.el (file-coding-system-alist):
7467         Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
7469 2000-12-06  Gerd Moellmann  <gerd@gnu.org>
7471         * replace.el (occur): Make line-number-width 1 smaller for the
7472         colon following the line number.
7474         * startup.el (fancy-splash-text, command-line-1):
7475         Use `File' for the menu name instead of `Files'.
7477         * tmm.el: Update copyright.
7479         * cus-start.el: Add entry for even-window-heights.
7481 2000-12-06  Miles Bader  <miles@gnu.org>
7483         * faces.el (frame-set-background-mode): Avoid stomping on
7484         locally modified faces.
7486 2000-12-06  Kenichi Handa  <handa@etl.go.jp>
7488         * international/fontset.el: Correct the font registries for
7489         japanese-jisx0213-1 and japanese-jisx0213-2.
7491 2000-12-05  Gerd Moellmann  <gerd@gnu.org>
7493         * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
7495         * iswitchb.el: Update customization commentary.
7497 2000-12-05  Rob Riepel  <riepel@Stanford.EDU>
7499         * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
7500         (tpu-search-highlight): Fixed comparison of overlay end positions.
7501         (tpu-trim-line-ends): Implemented trimming logic locally.
7503         * emulation/tpu-extras.el (tpu-write-file-hook)
7504         (tpu-set-cursor-bound): Replaced picture-clean with tpu-trim-line-ends.
7506 2000-12-05  Kenichi Handa  <handa@etl.go.jp>
7508         * language/chinese.el (chinese-iso-8bit): Change mime-charset name
7509         to cn-gb.
7510         (cn-gb, gb2312): New aliases for chinese-iso-8bit.
7512 2000-12-04  Dave Love  <fx@gnu.org>
7514         * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
7516 2000-12-04  Gerd Moellmann  <gerd@gnu.org>
7518         * mail/rmailsum.el (rmail-summary-expunge)
7519         (rmail-summary-expunge-and-save): Ask for confirmation with
7520         rmail-expunge-confirmed.
7522         * mail/rmail.el (rmail-expunge-confirmed): New function.
7523         (rmail-expunge): Use it.
7525 2000-12-04  Philippe Waroquiers  <wao@gull.tact.cfmu.eurocontrol.be>
7527         * progmodes/etags.el (tag-partial-file-name-match-p): New function.
7528         (etags-recognize-tags-table, find-tag-in-order):
7529         New functionality: interpret file names as tags.
7531 2000-12-04  Eli Zaretskii  <eliz@is.elta.co.il>
7533         * info.el (Info-scroll-prefer-subnodes): New defcustom.
7534         (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't visit
7535         the first subnode until the bottom of the current node is visible.
7537 2000-12-04  Gerd Moellmann  <gerd@gnu.org>
7539         * format.el (format-decode): Don't change buffer's undo list.
7541 2000-12-04  Kenichi Handa  <handa@etl.go.jp>
7543         * faces.el (face-font-registry-alternatives): Add entries for CJK
7544         fonts.  Doc-string adjusted for the actual usage of this data.
7546         * international/fontset.el: Change the font registries for CJK
7547         fonts in the default fontset.  Don't append '*' to registries.
7549 2000-12-03  Stefan Monnier  <monnier@cs.yale.edu>
7551         * emacs-lisp/easy-mmode.el (define-derived-mode)
7552         (easy-mmode-derived-mode-p): Remove (moved to derived.el).
7554         * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
7555         (derived-mode-p): New function.
7556         (derived-mode-make-docstring): Add `docstring' argument.
7557         Use it if available and complete it if necessary.
7559 2000-12-03  Andreas Schwab  <schwab@suse.de>
7561         * type-break.el (type-break): Don't make parent of itself.
7563 2000-12-03  Miles Bader  <miles@gnu.org>
7565         * simple.el (delete-trailing-whitespace): Don't delete newlines too.
7567 2000-12-02  Stefan Monnier  <monnier@cs.yale.edu>
7569         * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
7570         (tex-main-file, tex-file): Simplify.
7571         (tex-generate-zap-file-name): Use subst-char-in-string.
7572         (tex-strip-dots): Remove.
7574         * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
7576         * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
7577         to check if the match succeeded.
7579 2000-12-02  Gerd Moellmann  <gerd@gnu.org>
7581         * startup.el (use-fancy-splash-screens-p): New function.
7582         (command-line-1): Use it to determine whether or not to use
7583         a fancy splash screen.
7585 2000-12-02  Andreas Schwab  <schwab@suse.de>
7587         * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
7589 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
7591         * international/mule.el (make-char): Fix last change.
7593         * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
7594         New defcustoms.
7595         (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
7596         autoloading tex-mode; instead, do the same manually.
7597         Use texinfo-open-quote and texinfo-close-quote.  Insert literal quote
7598         with numeric argument.  Docstring fix.
7599         (toplevel): Require cl when compiling.
7601         * international/mule.el (make-char): Doc fix.
7603 2000-12-02  Jason Rumney  <jasonr@gnu.org>
7605         * term/w32-win.el (x-select-enable-clipboard): Customize (as per
7606         the Emacs Lisp manual)
7608 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
7610         * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
7612         * term/pc-win.el (x-select-enable-clipboard): Customize (as per
7613         the Emacs Lisp manual).
7615 2000-12-02  Gerd Moellmann  <gerd@gnu.org>
7617         * simple.el (next-line-add-newlines): Change default to nil.
7619 2000-12-01  Eli Zaretskii  <eliz@is.elta.co.il>
7621         * files.el (revert-buffer, recover-file):
7622         Bind coding-system-for-read to emacs-mule-unix, not to no-conversion.
7624 2000-12-01  Gerd Moellmann  <gerd@gnu.org>
7626         * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
7628 2000-12-01  Miles Bader  <miles@gnu.org>
7630         * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
7632 2000-12-01  Kenichi Handa  <handa@etl.go.jp>
7634         * international/mule-diag.el (describe-char-after): Fix typo.
7635         (describe-character-set, non-iso-charset-alist): Fix typo.
7637 2000-12-01  Miles Bader  <miles@gnu.org>
7639         * image-file.el (image-file-name-regexp): Automatically add
7640         upper-case variants of each filename extension in
7641         `image-file-name-extensions', since they seem to be common.
7643         * simple.el (minibuffer-contents)
7644         (minibuffer-contents-no-properties, delete-minibuffer-contents):
7645         New functions.
7646         * filecache.el (file-cache-directory-name)
7647         (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
7649 2000-12-01  Milan Zamazal  <Milan.Zamazal@qbizm.com>
7651         * filecache.el (file-cache-minibuffer-complete): Don't try to
7652         delete the minibuffer prompt.
7654 2000-11-30  Dave Love  <fx@gnu.org>
7656         * cus-start.el: Fix read-buffer-function type.
7658 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
7660         * md5.el: Removed.  There's a built-in function, now.
7662 2000-11-30  Markus Rost  <rost@math.ohio-state.edu>
7664         * mail/rmail.el (rmail-set-message-counters): Don't use "D"
7665         as dummy 0-th char of rmail-deleted-vector.
7667 2000-11-30  Eli Zaretskii  <eliz@is.elta.co.il>
7669         * ps-print.el (ps-end-job): Bind case-fold-search only after
7670         switching to ps-spool-buffer.
7672 2000-11-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
7674         * ps-print.el: Line number font customization.  PostScript: Lines and
7675         PageCount are initialized on each page.  Doc Fix.
7676         (ps-print-version): New version number (6.3.2).
7677         (ps-lpr-switches, ps-font-info-database, ps-font-size)
7678         (ps-header-font-size, ps-header-title-font-size, ps-left-header)
7679         (ps-right-header): Customization fix.
7680         (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
7681         Fix code.
7682         (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
7683         New vars.
7685 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
7687         * bs.el: Fix typos and spelling errors.
7688         (bs-appearance) <defgroup>: Renamed from bs-appearence.
7689         (bs-configuration): Doc fix.
7691         * bs.el: Undo mistaken change of 2000-11-28.  Update copyright.
7693 2000-11-30  Rob Riepel  <riepel@Stanford.EDU>
7695         * emulation/tpu-edt.el (tpu-version): New version.
7696         (tpu-search-overlay, tpu-replace-overlay): New initial range.
7697         (tpu-original-mode-line): Variable deleted.
7698         (tpu-mark-flag): New initial value.
7699         (tpu-set-mode-line): Don't redefine mode-line-format.
7700         Add tpu-mark-flag to minor-mode-alist.
7701         (tpu-update-mode-line): New mark flag logic.
7702         (tpu-get): Use find-file-wildcards.
7703         (tpu-search-highlight): Move overlay less, reset overlay properly.
7704         (tpu-unselect): Deactivate mark.
7705         (tpu-lm-replace): Reset overlay properly.
7706         (tpu-forward-line): Use forward-visible-line.
7707         (tpu-edt-on): Set transient mark mode.  ispell autoloads deleted.
7709         * emulation/tpu-extras.el (tpu-forward-line): Use forward-visible-line.
7711 2000-11-30  Per Abrahamsen  <abraham@dina.kvl.dk>
7713         * cus-edit.el (custom-face-value-create): Always emphasize tag.
7715 2000-11-30  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
7717         * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
7718         and skip whitespace and newlines.
7720 2000-11-30  Stefan Monnier  <monnier@cs.yale.edu>
7722         * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
7724 2000-11-29  Gerd Moellmann  <gerd@gnu.org>
7726         * help.el (describe-function-1): Regexp-quote function name
7727         when used as part of a regexp.
7729         * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
7730         Use face-attribute instead of face-foreground and face-background.
7731         (tool-bar-add-item): Likewise, and handle unspecified colors.
7733         * enriched.el (enriched-face-ans): Use face-attribute instead
7734         of face-foreground and face-background.
7736         * faces.el (face-foreground, face-background, face-stipple):
7737         Return nil if attribute is unspecified, for backward compatibility.
7739         * files.el (auto-mode-alist): Add an entry for antlr-mode.
7741         * play/5x5.el: Remove version info.
7743         * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
7745         * frame.el (blink-cursor-mode): Doc fix.
7747 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
7749         * antlr-mode.el: New commands to run ANTLR from within Emacs and
7750         to create Makefile rules.
7751         (antlr-tool-command): New user option.
7752         (antlr-ask-about-save): New user option.
7753         (antlr-makefile-specification): New user option.
7754         (antlr-file-formats-alist): New variable.
7755         (antlr-special-file-formats): New variable.
7756         (antlr-unknown-file-formats): New user option.
7757         (antlr-help-unknown-file-text): New variable.
7758         (antlr-help-rules-intro): New variable.
7759         (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
7760         (antlr-mode-menu): Add entries.
7761         (antlr-file-dependencies): New function.
7762         (antlr-directory-dependencies): New function.
7763         (antlr-superclasses-glibs): New function.
7764         (antlr-run-tool): New command.
7765         (antlr-makefile-insert-variable): New function.
7766         (antlr-insert-makefile-rules): New function.
7767         (antlr-show-makefile-rules): New command.
7769         * antlr-mode.el: More Emacs/XEmacs stuff.
7770         (antlr-no-action-keywords): New constant with value nil.
7771         (antlr-font-lock-keywords-alist): Use it.  Old value would break
7772         syntax highlighting in Emacs-21.0.
7773         (antlr-default-directory): Emacs/XEmacs dependend function.
7774         (antlr-read-shell-command): Ditto.
7775         (antlr-with-displaying-help-buffer): Ditto.
7777 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
7779         * antlr-mode.el: imenu, parsing and highlighting changes.
7780         (antlr-imenu-create-index-function): Don't create extra submenus
7781         for definitions in different grammar classes.  It is not necessary
7782         for the menu and would make command `imenu' awkward to use.
7783         (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
7784         header actions and more than one.
7785         (antlr-font-lock-tokendef-face): Changed color.
7786         (antlr-font-lock-tokenref-face): Changed color.
7787         (antlr-font-lock-additional-keywords): Also highlight lowercase.
7788         (antlr-mode-syntax-table): New variable.
7789         (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
7790         (antlr-with-syntax-table): Don't copy syntax table.
7792 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
7794         * antlr-mode.el: Minor changes: language setting.
7795         (antlr-language-alist): The value for file option "language" can
7796         be both an identifier and a string.
7797         Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
7798         (antlr-language-limit-n-regexp): Change accordingly.
7800 2000-11-29  Christoph Wedler  <Christoph.Wedler@sap.com>
7802         * antlr-mode.el: Minor changes: tabs, hiding.
7803         (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
7804         (antlr-action-visibility): Also allow value nil to also hide the
7805         braces.  Renamed from `antlr-tiny-action-length'.
7806         Suggested by Jay@aol.com.
7807         (antlr-hide-actions): Change accordingly.  Hide line if completely
7808         hidden action is on a line of its own.
7810 2000-11-29  Stefan Monnier  <monnier@cs.yale.edu>
7812         * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
7814         * sort.el (sort-columns): Don't concat strings with numbers.
7816 2000-11-29  Dave Love  <fx@gnu.org>
7818         * cus-edit.el (face): Fix :format.
7820         * mail/feedmail.el: Require smtpmail when compiling.
7821         (mail-do-fcc): Autoload.
7822         (feedmail) <defgroup>: Fix :link.
7823         (feedmail-nuke-body-in-fcc): Fix :type.
7824         (feedmail-send-it): Add autoload cookie.
7826 2000-11-29  Stefan Monnier  <monnier@cs.yale.edu>
7828         * newcomment.el (comment-indent): Save excursion around call to
7829         comment-indent-function.
7831 2000-11-29  Miles Bader  <miles@gnu.org>
7833         * subr.el (member-ignore-case): Return the tail of the list who's
7834         car matches, like `member', not the matching element itself.
7836 2000-11-29  Kenichi Handa  <handa@etl.go.jp>
7838         * xml.el (xml-parse-tag): Fix finding opening tag.  A tag name
7839         should not contain `\n'.
7841 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
7843         * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
7845         * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
7847         * dired-aux.el (dired-do-create-files): Construct default file
7848         name for dired-mark-read-file-name so that when the user enters
7849         just RET, the target file will end up in the target directory.
7851         * abbrev.el (prepare-abbrev-list-buffer): Get the value of
7852         local-abbrev-table before changing buffers because it might
7853         have a buffer-local binding.
7855 2000-11-28  Miles Bader  <miles@gnu.org>
7857         * simple.el (delete-horizontal-space): Handle fields more generally.
7859 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
7861         * simple.el (delete-horizontal-space): Handle minibuffer prompt.
7863 2000-11-28  Dave Love  <fx@gnu.org>
7865         * progmodes/ps-mode.el (ps-mode): Set comment-start and
7866         comment-start-skip locally.
7868         * progmodes/fortran.el (fortran-mode): Don't set
7869         fortran-comment-line-start-skip.  Set comment-start to
7870         fortran-comment-line-start.
7871         (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
7872         (fortran-comment-line-start-skip): Simplify slightly.
7874 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
7876         * play/5x5.el: Remove RCS keyword.
7878         * bs.el: Mistaken commit, undone 2000-11-30.
7880 2000-11-28  Milan Zamazal  <pdm@freesoft.cz>
7882         * textmodes/tildify.el (tildify-string-alist):
7883         Add `plain-tex-mode' here.
7885 2000-11-28  Colin Walters  <walters@cis.ohio-state.edu>
7887         * chistory.el (Command-history-setup): Remove extraneous `keymap'
7888         reference.
7890 2000-11-28  Miles Bader  <miles@gnu.org>
7892         * cus-face.el (custom-face-attributes): Add post-filter function
7893         for :box.  Make pre-filter function for :box handle all cases.
7895         * wid-edit.el (widget-choose): Make sure pop-up window is large
7896         enough to display all the choices, as there's no way to scroll it.
7898 2000-11-28  Kenichi Handa  <handa@etl.go.jp>
7900         * international/mule-conf.el: Make the coding system no-conversion
7901         safe for all characters.
7903 2000-11-27  Dave Love  <fx@gnu.org>
7905         * net/ldap.el (ldap) <defgroup>: Add :version.
7907         * tooltip.el (tooltip-use-echo-area): Doc fix.
7909         * cus-start.el <minibuffer-prompt-properties>: Add version.
7910         <read-buffer-function>: Add.
7912         * apropos.el (apropos-print): Add help-echo to active text.
7914         * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
7916 2000-11-27  Gerd Moellmann  <gerd@gnu.org>
7918         * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
7919         type, group and version.
7921 2000-11-27  Eli Zaretskii  <eliz@is.elta.co.il>
7923         * select.el (x-get-selection): Docstring fix.
7925 2000-11-27  Dave Pearson <davep@hagbard.demon.co.uk>
7927         * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
7929 2000-11-27  Andrew Innes  <andrewi@gnu.org>
7931         * makefile.nt (.SUFFIXES): Add .SUFFIXES.
7933         * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
7935 2000-11-27  Miles Bader  <miles@gnu.org>
7937         * dired.el (dired-get-filename): Return filename verbatim if
7938         LOCALP is `verbatim'.
7939         * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
7940         `verbatim' so that we don't inadvertently delete a non-existant
7941         directory name.
7943 2000-11-27  Kenichi Handa  <handa@etl.go.jp>
7945         * international/characters.el: Specify cases and syntaxes for
7946         mule-unicode-0100-24ff.
7948 2000-11-27  Gerd Moellmann  <gerd@gnu.org>
7950         * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
7951         that foreground and/or background colors of the face `tool-bar'
7952         are unspecified.
7954 2000-11-27  Miles Bader  <miles@gnu.org>
7956         * wid-edit.el (widget-field-buffer, widget-field-start)
7957         (widget-field-end): Handle widget field `pseudo-overlays'.
7958         (widget-field-value-delete): Delete WIDGET from `widget-field-new'
7959         if it's there instead of in `widget-field-list'.
7961         * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
7962         (help-make-xrefs): Delete extraneous newlines at the end of the
7963         docstring.
7965 2000-11-25  Jason Rumney  <jasonr@gnu.org>
7967         * startup.el (command-line): Call set-locale-environment after
7968         Window System init file is read, as it can result in a call to
7969         redraw-frame.
7971 2000-11-25  Eli Zaretskii  <eliz@is.elta.co.il>
7973         * simple.el (shell-command): Mention the effect of the prefix
7974         argument in the doc string.
7976 2000-11-25  Miles Bader  <miles@gnu.org>
7978         * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
7980         * wid-edit.el (widget-field-value-delete): Don't try to delete
7981         overlay when it's the `pseudo-overlay' that exists at some points.
7983 2000-11-24  Jason Rumney  <jasonr@gnu.org>
7985         * international/mule-cmds.el (locale-language-names): Add "jp" as
7986         a non-standard alternative for Japanese.
7988 2000-11-24  Andre Spiegel  <spiegel@gnu.org>
7990         * vc-hooks.el: Require 'cl during compilation.
7992 2000-11-24  Gerd Moellmann  <gerd@gnu.org>
7994         * faces.el (face-set-after-frame-default): Let face attributes
7995         specified for new frames override frame parameters.
7997         * startup.el (command-line): Fix computation of the source file
7998         for user-init-file when user-init-file is a compiled file.
8000 2000-11-24  Miles Bader  <miles@gnu.org>
8002         * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
8003         (custom-post-filter-face-spec): New functions.
8004         (custom-face-set, custom-face-value-create): Filter the face spec
8005         before and after customization.
8006         (custom-face-set): If VALUE specifies a null face, pass a
8007         non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
8008         * cus-face.el (custom-face-attributes): Remove SET and GET
8009         functions.  Add some IN-FILTER and OUT-FILTER functions in the few
8010         cases they're needed.
8012         * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
8013         that it's distinguishable from the :off-glyph on dark-background
8014         displays.  Set its background color too.
8016         * cus-start.el (all): Restore entry for `mode-line-inverse-video',
8017         so that people can easily turn it off.
8019 2000-11-24  Michael Kifer  <kifer@cs.sunysb.edu>
8021         * ediff-diff.el: Moved variables around to have it compile under NT.
8023         * ediff-help.el (ediff-use-long-help-message): Made it customizable.
8025         * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
8027         * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
8028         redundant skip-small-frames test.
8030         * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
8031         (viper-downgrade-to-insert): Protect against errors in hooks.
8033         * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
8034         (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
8035         (viper-restore-cursor-type,viper-set-insert-cursor-type):
8036         New functions.
8038         * viper-util.el (viper-memq-char): Bug fixes.
8040         * viper.el (viper-mode): Fix cursor handling.
8042 2000-11-24  Kenichi Handa  <handa@etl.go.jp>
8044         * international/mule-diag.el (list-iso-charset-chars):
8045         For two-byte charset, fix the `while' condition.
8046         (list-non-iso-charset-chars): Fix the `while' condition.
8048 2000-11-23  Stefan Monnier  <monnier@cs.yale.edu>
8050         * subr.el (add-hook, remove-hook): Don't call make-local-hook
8051         if the variable is make-variable-buffer-local.
8053         * progmodes/ada-stmt.el (ada-template-map):
8054         Initialize and bind it to C-c t in ada-mode-map.
8055         (ada-stmt-mode-hook): New function extracted from old code.
8056         Only change the buffer-local side of skeleton-*.
8057         (ada-mode-hook): Use it.
8059 2000-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
8061         * iswitchb.el (iswitchb-minibuf-depth): New variable.
8062         (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
8063         we expect to be returned by minibuffer-depth once we prompt the
8064         user in the minibuffer.
8065         (iswitchb-entryfn-p): If minibuffer-depth returns the same value
8066         as recorded in iswitchb-minibuf-depth, return non-nil.
8068 2000-11-23  Eli Zaretskii <eliz@is.elta.co.il>
8070         * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
8071         (hscroll-window-maybe): Docstring fix.
8073 2000-11-23  Dave Love  <fx@gnu.org>
8075         * rect.el (string-rectangle): Don't test delete-selection-mode.
8077 2000-11-23  Gerd Moellmann  <gerd@gnu.org>
8079         * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
8080         is in the tool bar.
8082         * dired-aux.el (dired-add-entry): Don't call dired-get-filename
8083         with `no-dir'; we want the directory part to be able to remove it.
8085 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
8087         * textmodes/outline.el (outline-flag-region):
8088         Don't bind inhibit-read-only since we don't modify the buffer.
8089         (outline-isearch-open-invisible): Don't jump to overlay-start
8090         since we're trying to unhide text around point.
8091         (outline-discard-overlays): Use dolist.
8093         * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
8095 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
8097         * mail/rmail.el (rmail-confirm-expunge): Default to y-or-n-p.
8099 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
8101         * textmodes/tex-mode.el (tex-font-lock-keywords-1):
8102         Fix ARG regexp to skip quoted braces.
8103         (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
8104         Remove `bf' and `it' from `bold' and `italic' (they were wrong and
8105         are (correctly) handled separately).
8106         Remove `caption' and `footnote' from `citations': they contain text.
8107         Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
8108         (latex-skeleton-end-hook): New function.
8109         (latex-mode): Use it.
8110         (tex-start-tex-marker): Remove.
8111         (tex-send-tex-command): Don't set tex-start-tex-marker.
8112         (tex-error-parse-syntax-table): New var.
8113         (tex-compilation-parse-errors): Use it.
8114         Ignore tex-start-tex-marker.  Don't bother with marker-position.
8115         (tex-validate-buffer): Don't bother with marker-position.
8117         * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
8118         (flyspell-generic-progmode-verify): Use it.
8120 2000-11-22  Sam Steingold  <sds@gnu.org>
8122         * simple.el (delete-trailing-whitespace): New interactive function.
8124         * progmodes/ada-mode.el (ada-mode): Use it instead of
8125         `ada-remove-trailing-spaces'.
8126         (ada-remove-trailing-spaces): Removed.
8128         * textmodes/two-column.el (2C-merge): Recommend it in the doc.
8130         * textmodes/picture.el (picture-clean): Removed.
8131         (picture-mode-exit): Call it instead of `picture-clean'.
8133 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
8135         * frame.el (show-cursor-in-non-selected-windows): Doc fix.
8137         * hi-lock.el (hi-lock-refontify): Don't call non-existent
8138         jit-lock-fontify-buffer; it should anyway be unneccessary to
8139         do anything special when jit-lock is active.
8140         (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
8142 2000-11-22  Dave Love  <fx@gnu.org>
8144         * calendar/todo-mode.el (todo-top-priorities): Use
8145         todo-tmp-buffer-name.  From Milan Zamazal <Milan.Zamazal@qbizm.com>.
8147         * language/chinese.el, language/cyrillic.el:
8148         * language/devanagari.el, language/ethiopic.el, language/greek.el:
8149         * language/hebrew.el, language/indian.el, language/japanese.el:
8150         * language/korean.el, language/lao.el, language/misc-lang.el:
8151         * language/thai.el, language/tibetan.el, language/vietnamese.el:
8152         Use provide.
8154         * cus-edit.el (custom-buffer-create-internal): Save some consing.
8155         (custom-variable-set): Improve validation error mesage.
8157         * rect.el (string-rectangle): Revert last change.
8158         (string-rectangle-line): New arg DELETE.
8159         (string-rectangle): Check delete-selection-mode.
8161         * emacs-lisp/edebug.el (edebug-version)
8162         (edebug-maintainer-address): Deleted.
8163         (edebug-submit-bug-report): Just alias to report-emacs-bug.
8164         (edebug-read-function): Account for other `'#' read forms.
8165         (edebug-mode-menus): Make some items toggles.
8166         (edebug-outside-unread-command-event, unread-command-event):
8167         Remove these to avoid warnings.
8169 2000-11-22  David Ponce  <david@dponce.com>
8171         * recentf.el (recentf-menu-items-for-commands)
8172         (recentf-make-menu-items, recentf-make-menu-item)
8173         (recentf-filter-changer): Added :help and :active menu-item properties.
8175         (recentf-build-dir-rules, recentf-dump-variable)
8176         (recentf-edit-list, recentf-open-files-item)
8177         (recentf-open-files): Replaced unnecessary `mapcar' with new
8178         built-in `mapc'.
8180 2000-11-23  Miles Bader  <miles@gnu.org>
8182         * faces.el (menu): Make inverse-video on ttys too.
8184 2000-11-22  Stefan Monnier  <monnier@cs.yale.edu>
8186         * simple.el (comment-line-break-function): Use the new name
8187         indent-new-comment-line -> comment-indent-new-line.
8188         (clone-indirect-buffer): Don't ignore NORECORD.
8189         (next-completion): Properly handle the case where items are adjacent.
8191         * mouse.el (popup-menu): Stupid typo.
8193 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
8195         * emacs-lisp/authors.el: Remove autoload cookies, add author,
8196         maintainer, keywords tags.
8198         * rect.el (replace-rectangle): Don't call string-rectangle-line
8199         with too many arguments.
8201 2000-11-22  Andre Spiegel  <spiegel@gnu.org>
8203         * ediff-util.el (ediff-file-checked-out-p)
8204         (ediff-file-checked-in-p): Call vc-state instead of
8205         vc-locking-user, which no longer exists.
8207         * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
8209 2000-11-22  Dave Love  <fx@gnu.org>
8211         * md5.el (md5): Provide.
8212         (md5): Fix error call.
8214 2000-11-22  Miles Bader  <miles@gnu.org>
8216         * textmodes/refill.el (refill-adjust-ignorable-overlay)
8217         (refill-fill-paragraph-at): Remove debugging code.
8219         * calendar/calendar.el (generate-calendar-window): When we don't
8220         call `fit-window-to-buffer', make sure the top line is fully visible.
8222         * image-file.el (insert-image-file): Don't make `read-only'
8223         property rear-nonsticky.
8225         * isearch.el (isearch-original-minibuffer-message-timeout): New var.
8226         (isearch-mode): Set `minibuffer-message-timeout' to nil, after
8227         stashing away its original value.
8228         (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
8229         in the recursive edit.
8230         Bind `isearch-original-minibuffer-message-timeout' to protect it.
8231         (isearch-done): Restore `minibuffer-message-timeout'.
8233         * cus-start.el: Remove entry for `mode-line-inverse-video'.
8235 2000-11-21  Stefan Monnier  <monnier@cs.yale.edu>
8237         * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
8239         * find-lisp.el (find-lisp-find-files-internal):
8240         Use dolist, when and file-name-as-directory.
8242         * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
8243         (define-derived-mode, define-minor-mode): Add specs.
8245         * window.el: General comment and spacing fixes.
8246         (save-selected-window): Use backquotes.
8247         (window-safely-shrinkable-p): New function.
8248         (shrink-window-if-larger-than-buffer): Use it.
8250         * subr.el (make-local-hook): Docstring fix.
8252         * shell.el (shell-mode): Use define-derived-mode.
8254         * newcomment.el (comment-indent): Insert comment before calling
8255         comment-indent-function.  Don't insert in column 0.
8256         (comment-dwim): Indent before inserting comment.
8258         * isearch.el (isearch-mode-map): Fix docstring.  Init in defvar.
8259         (minibuffer-local-isearch-map): Init in defvar.  Use inheritance.
8260         (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
8261         Use mapc rather than map.
8263         * files.el (find-buffer-visiting): Compare all attributes before
8264         declaring two files identical (rather than just their inode-no).
8265         (auto-mode-alist): Use \' rather than $.
8267         * which-func.el: Update maintainer line.
8269         * pcvs.el (uniquify-buffer-file-name): Remove advice.
8270         * uniquify.el (uniquify-list-buffers-directory-modes): New var.
8271         (uniquify-buffer-file-name): Use it.
8273 2000-11-22  Miles Bader  <miles@gnu.org>
8275         * cus-start.el: Add entry for `minibuffer-prompt-properties'.
8276         * simple.el (minibuffer-avoid-prompt): New function.
8278 2000-11-21  Gerd Moellmann  <gerd@gnu.org>
8280         * Makefile.in (.SUFFIXES): Add .SUFFIXES.
8282 2000-11-21  Miles Bader  <miles@gnu.org>
8284         * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
8285         inclusion of `track-mouse'.
8287         * textmodes/refill.el (refill-ignorable-overlay): New variable.
8288         (refill-adjust-ignorable-overlay): New function.
8289         (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
8290         only the paragraph's tail if possible.
8291         Update `refill-ignorable-overlay'.
8292         (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
8294         * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
8295         point inside the fill-prefix.
8297         * textmodes/refill.el (refill-post-command-function): Don't reset
8298         refill-doit in the case where a self-insertion command doesn't
8299         case a refill.  Use `refill-fill-paragraph-at', getting position
8300         from `refill-doit'.
8301         (refill-after-change-function): Set `refill-doit' to END.
8302         (refill-fill-paragraph-at): New function, mostly from old
8303         refill-fill-paragraph.
8304         (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
8305         (refill-pre-command-function): New function.
8306         (refill-mode): Add it to `pre-command-hook'.
8308 2000-11-20  Gerd Moellmann  <gerd@gnu.org>
8310         * textmodes/artist.el (artist-mode): Fix autoload cookie.
8312         * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
8313         javadoc tags.
8315 2000-11-20  Andre Spiegel  <spiegel@gnu.org>
8317         * vc.el, vc-hooks.el: Undo prev change (moved functions back to
8318         vc.el).
8320         * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
8321         require vc.
8323         * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
8324         checkouts.
8326 2000-11-20  Dave Love  <fx@gnu.org>
8328         * Makefile.in (DONTCOMPILE): Omit bindings.el.
8330 2000-11-20  Eli Barzilay <eli@www.barzilay.org>
8332         * calculator.el (calculator-paste): Use `if' instead of `and'
8333         and `or'.
8334         (calculator-help): Don't use electric-describe-mode for XEmacs.
8336 2000-11-19  Gerd Moellmann  <gerd@gnu.org>
8338         * info.el (info-menu-5): Doc fix.
8340         * textmodes/artist.el: New file.
8342 2000-11-19  Andre Spiegel  <spiegel@gnu.org>
8344         * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
8345         and differentiate according to checkout model.
8346         (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
8347         since this function is only concerned with master state.
8349         * vc-hooks.el (vc-workfile-unchanged-p)
8350         (vc-default-workfile-unchanged-p): Moved here from vc.el.
8352         * vc.el (vc-workfile-unchanged-p)
8353         (vc-default-workfile-unchanged-p): See above.
8355 2000-11-19  Miles Bader  <miles@gnu.org>
8357         * image-file.el (insert-image-file): Make `intangible' and
8358         `read-only' properties rear-nonsticky too.
8360 2000-11-18  Gerd Moellmann  <gerd@gnu.org>
8362         * ps-print.el: Update copyright notice.
8364         * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
8365         (tooltip-show): Use the offsets.
8367         * bindings.el (mode-line-modified): Fix a typo.
8368         (mode-line-toggle-modified, mode-line-widen)
8369         (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
8371 2000-11-17  Vinicius Jose Latorre <vinicius@cpqd.com.br>
8373         * ps-print.el (toplevel): Test for find-coding-system being
8374         fboundp before calling ps-x-find-coding-system.
8376 2000-11-16  Stefan Monnier  <monnier@cs.yale.edu>
8378         * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
8379         (vc-version-backup-file): Docstring fix.
8381 2000-11-16  Gerd Moellmann  <gerd@gnu.org>
8383         * files.el (basic-save-buffer): Don't add a newline if
8384         find-file-literally is non-nil.
8385         (find-file-literally): Extend doc string.
8387         * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
8388         sort(1) with the `-f' argument.
8390 2000-11-16  Andre Spiegel  <spiegel@gnu.org>
8392         * vc.el: Updated backend documentation.
8393         (vc-default-check-headers): New function.
8395         * vc-{cvs,rcs,sccs}.el: Functions reordered.
8397         * vc.el (vc-revert-buffer): Ask for confirmation if file seems
8398         up-to-date.
8399         (vc-do-command): In the asynchronous case, output messages only if
8400         the minibuffer is not active.
8402         * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
8403         `vc-cvs-use-edit' is on.
8404         (vc-cvs-checkout): When this is used for reverting the workfile,
8405         make a backup of the original contents and revert to that in case
8406         of error.
8407         (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
8408         remote repositories.
8410         * vc.el (vc-annotate): Changed handling of prefix arg; now asks
8411         for both version and ratio in the minibuffer.
8413         * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
8414         Use vc-do-command to perform the annotation, not call-process.
8416 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
8418         * international/quail.el (quail-start-translation): Don't call
8419         `message' before reading key sequence.
8421 2000-11-16  Miles Bader  <miles@lsi.nec.co.jp>
8423         * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
8425 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
8427         * window.el (fit-window-to-buffer): Be sure to acquire at least
8428         one text line even if the buffer is empty.
8430 2000-11-16  Gerd Moellmann  <gerd@gnu.org>
8432         * net/ange-ftp.el (ange-ftp-file-writable-p)
8433         (ange-ftp-file-readable-p, ange-ftp-file-executable-p):
8434         Bind ange-ftp-process-verbose to nil.
8436 2000-11-15  Dave Love  <fx@gnu.org>
8438         * wid-edit.el (widget-specify-field, widget-specify-button):
8439         If :help-echo is a function, set help-echo of overlay to
8440         widget-mouse-help.
8441         (widget-mouse-help): New function.
8442         (widget-echo-help): Rewritten for :help-echo functions only taking
8443         a widget arg.
8445         * net/eudc-bob.el (eudc-bob-can-display-inline-images):
8446         Use display-graphic-p.
8447         (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
8448         and that JPEG is available.
8449         (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
8451         * international/mule-cmds.el (locale-charset-language-names):
8452         Match @euro.
8454 2000-11-15  Gerd Moellmann  <gerd@gnu.org>
8456         * faces.el (face-set-after-frame-default):
8457         If `inhibit-default-face-x-resources' is bound, don't intialize the
8458         default face from X resources.
8460 2000-11-15  Eli Zaretskii  <eliz@is.elta.co.il>
8462         * Makefile.in (custom-deps, finder-data, autoloads, recompile):
8463         Don't set EMACSLOADPATH.
8465 2000-11-15  Eli Zaretskii  <eliz@is.elta.co.il>
8467         * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
8468         texinfo-insert-@url.
8469         (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
8470         (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
8472 2000-11-14  Stefan Monnier  <monnier@cs.yale.edu>
8474         * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
8475         (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
8476         (checkdoc-minor-keymap): Backward compatibility.
8477         (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
8478         (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
8479         (checkdoc-this-string-valid-engine): Be a bit more strict
8480         to avoid matching substrings of `...' quoted vars/funs.
8481         (checkdoc-defun-info): Only look for `interactive' if alone.
8482         (debug-ignored-errors): Add "arg doesn't appear in docstring".
8484         * progmodes/compile.el (grep): `tag-default' can be nil.
8486         * newcomment.el (comment-indent): Paren typo.
8488 2000-11-14  Dave Love  <fx@gnu.org>
8490         * calculator.el: New maintainer version.
8492         * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
8494         * cmuscheme.el: Doc fixes.
8495         (cmuscheme) <defgroup>: Use `scheme' as parent.
8496         (cmuscheme-program-name): Remove.  Change uses to scheme-program-name.
8498         * xscheme.el (scheme-program-name): Don't define here.
8500         * progmodes/scheme.el (scheme-program-name): New variable
8501         (originally in cmuscheme).
8503 2000-11-14  Miles Bader  <miles@gnu.org>
8505         * window.el (fit-window-to-buffer): Handle windows without mode-lines.
8506         Handle header-lines.  Don't loop forever if we can't enlarge the
8507         window anymore.  Simplify a bit.
8509 2000-11-14  Kenichi Handa  <handa@etl.go.jp>
8511         * window.el (fit-window-to-buffer): Don't check
8512         window-text-height.  Assure that the last line is fully visible.
8514         * international/quail.el (quail-show-guidance-buf):
8515         Call fit-window-to-buffer to assure the enough height of the guidance
8516         buffer.
8517         (quail-update-guidance): Avoid making the guidance buffer shorter.
8519 2000-11-14  Stefan Monnier  <monnier@cs.yale.edu>
8521         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
8522         rather than `prepend' and add an interesting comment.
8523         (tex-math-face, tex-font-lock-syntactic-face-function):
8524         New face and function to use it.
8525         (tex-define-common-keys, tex-mode-map): Use menu-item rather
8526         than `menu-enable' symbol property.
8527         (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
8528         (tex-mode): Add some latex-mode commands for auto-selection.
8529         Use tex-font-lock-syntactic-face-function.
8530         (tex-insert-quote): Simplify.
8531         (tex-shell): New mode.
8532         (tex-start-shell): Use it.
8533         (tex-shell-proc, tex-shell-buf): New functions.
8534         (tex-send-command): Use it.
8535         (tex-main-file): Fix the meaning of the new arg REALFILE.
8536         (tex-send-tex-command): New function split from `tex-start-tex'.
8537         Set compilation-last-buffer and compilation-parsing-end.
8539         * newcomment.el (comment-indent-default): Stick \s<\s< to the left
8540         when it follows non-comment text on the line.
8542         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
8543         Set font-lock-defaults.
8544         (lisp-mode-shared-map): Init inside the defvar.
8545         (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
8546         Use define-derived-mode.
8548 2000-11-14  Miles Bader  <miles@lsi.nec.co.jp>
8550         * faces.el (header-line): Use `:box nil' for color/gs displays too.
8552 2000-11-14  Gerd Moellmann  <gerd@gnu.org>
8554         * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda):
8555         Don't recursively optimize body because that can lead to infinite
8556         recursion; see comment there.
8558 2000-11-13  Eli Zaretskii  <eliz@is.elta.co.il>
8560         * faces.el (face-spec-set-match-display): Revert the change from
8561         2000-10-24.  Add a FIXME for after v21.1.
8563 2000-11-13  Miles Bader  <miles@gnu.org>
8565         * textmodes/fill.el (skip-line-prefix): New function.
8566         (fill-region-as-paragraph, fill-region):  Return the fill-prefix.
8567         (fill-paragraph): Don't leave point inside the fill-prefix.
8568         * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
8569         point inside the fill-prefix.
8571 2000-11-13  Miles Bader  <miles@lsi.nec.co.jp>
8573         * calendar/calendar.el (generate-calendar-window):
8574         Use `fit-window-to-buffer'.
8576 2000-11-12  Stefan Monnier  <monnier@cs.yale.edu>
8578         * gud.el (gud-minor-mode): New var.
8579         (gud-symbol, gud-val): New functions.
8580         (gud-find-file): Copy gud-minor-mode to the new buffer.
8581         (gud-menu-map): Include entries for commands that are not always
8582         available, using :enable to (de)activate them.
8583         (gud-minor-mode-map): New map.  Add it to minor-mode-map-alist.
8584         (gud-mode-map): New map.
8585         (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
8586         (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
8587         Don't set up gud's menu (it's done by the minor-mode).
8588         (gud-minibuffer-local-map): New.
8589         Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
8590         (gud-query-cmdline): New function.
8591         (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it.  Set gud-minor-mode.
8592         (gud-mode): Use define-derived-mode.
8593         Don't set up gud's menu (it's done by the minor-mode).
8594         (gud-chop-words): Remove.
8595         (gud-common-init): Use split-string instead.
8596         (gud-new-keymap, gud-make-debug-menu): Eradicate.
8598         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
8599         Add keyword arg :name.
8601         * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
8602         (diff-count-matches, diff-split-hunk): New functions.
8603         (diff-mode-map): Bind C-c C-s to diff-split-hunk.
8605         * pcvs-info.el (cvs-fi-conflict-face): New var.
8607         * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
8608         Make it into a simple syntax-table, shared among all submodes.
8609         (sh-heredoc-face): Re-introduce.
8610         (sh-font-lock-syntactic-face-function): New function.
8611         (sh-mode): Use it.  Also use define-derived-mode.
8612         Remove old bogus setting of indent-region-function.
8613         (sh-set-shell): Don't set the syntax-table any more.
8614         (sh-mode-syntax-table) <defun>: Remove.
8616 2000-11-12  Miles Bader  <miles@gnu.org>
8618         * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
8619         message if interactive.
8621 2000-11-12  Dave Love  <fx@gnu.org>
8623         * mail/feedmail.el: Fix header,
8624         (feedmail) <defgroup>: Add :link.
8626         * view.el: Use local-map property, not keymap on mode-line string.
8628         * scroll-all.el (scroll-all-mode): Customize variable.
8629         Add autoload cookie to function.
8631         * lazy-lock.el: Remove compatibility code.
8633         * finder.el (finder-known-keywords): Add `files', remove `vms'.
8634         (finder-help-echo): New variable.
8635         (finder-mouse-face-on-line): Add help-echo stuff.
8636         (finder-list-keywords, finder-list-matches): Use mapc.
8638         * faces.el (face-font-registry-alternatives): Add :version.
8640         * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
8641         tags-table-list.
8643         * net/browse-url.el (browse-url-browser-function): Update :version.
8645         * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
8646         (mail-mode): Use [:alnum:] in some regexps.
8648 2000-11-10  Dave Love  <fx@gnu.org>
8650         * ediff.el (ediff-regions-internal, ediff-documentation):
8651         * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
8652         fundamental mode.
8654         * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
8655         buffer into fundamental mode.
8656         (ediff-set-difference): Use copy-sequence if available.
8658         * ediff-ptch.el (ediff-dispatch-file-patching-job):
8659         Check ediff-patch-map non-nil.
8660         (ediff-fixup-patch-map, ediff-fixup-patch-map)
8661         (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
8662         buffer into fundamental mode.
8664         * ediff-merg.el (state-or-merge): Defvar when compiling.
8666 2000-11-10  Jason Rumney  <jasonr@gnu.org>
8668         * w32-fns.el (w32-add-charset-info): New function.
8669         (w32-charset-info-alist): Use it.
8671 2000-11-10  Gerd Moellmann  <gerd@gnu.org>
8673         * faces.el (face-font-registry-alternatives): New user-option.
8675 2000-11-10  Stefan Monnier  <monnier@cs.yale.edu>
8677         * textmodes/texinfo.el (texinfo-block-default): New var.
8678         (texinfo-insert-block): Use it.  Insert a newline if needed.
8680         * textmodes/fill.el (fill-indent-according-to-mode): New var.
8681         (fill-region-as-paragraph): Use it.
8683         * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
8684         (latex-mode): Tweak tex-*-(head|trail)er regexps.
8685         Tweak paragraph regexps to allow a leading [ \t]*.
8686         (tex-latex-block): Insert a newline if necessary.
8687         (latex-insert-item): Only insert a newline if necessary.
8688         (tex-guess-main-file): New function.
8689         (tex-main-file): Use it.  Add arg `realfile'.  Trim `.tex'.
8690         Set tex-main-file if TeX-master is provided.
8691         (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
8693 2000-11-10  Gerd Moellmann  <gerd@gnu.org>
8695         * startup.el (command-line): Set the default tooltip-mode
8696         to t for graphical displays which implement x-show-tip.
8698         * tooltip.el (tooltip-mode): Add a comment about startup.el
8699         setting the default value of this user-option.
8701 2000-11-09  Stefan Monnier  <monnier@cs.yale.edu>
8703         * font-lock.el (font-lock-*-face) <defvar>: Move.
8704         (font-lock-defaults-alist): Mark obsolete.
8705         (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
8706         (font-lock-mode): Use define-minor-mode.
8707         (font-lock-support-mode): Tweak type to default to jit-lock-mode.
8708         (font-lock-turn-off-thing-lock): Be more explicit.
8709         (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
8710         (font-lock-syntactic-face-function): New var.
8711         (font-lock-fontify-syntactically-region): Use it.
8712         (font-lock-doc-face): New.
8714         * pcvs.el (cvs-enabledp): Ignore errors.
8715         (cvs-commit-filelist): Never query.
8716         (cvs-mode-insert): Always add a terminating / in the initial prompt.
8717         (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
8718         (cvs-do-removal): Use cvs-partition rather than delete-if.
8719         Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
8720         cvs-bury-buffer.
8722         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8723         Allow `next' to jump to after the end of the last match.
8725 2000-11-09  Gerd Moellmann  <gerd@gnu.org>
8727         * simple.el (byte-compiling-files-p): New function.
8729         * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
8730         if it is there.
8732         * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
8733         nil again.
8735         * textmodes/ispell.el (ispell-library-path): Don't call
8736         check-ispell-version when byte-compiling because that starts
8737         an ispell process, and ispell might not be installed.
8738         (toplevel): Don't set up a menu when byte-compiling.
8740         * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
8741         it, so that a boundp test can be used to determine if we're
8742         currently byte-compiling.
8744 2000-11-09  Dave Love  <fx@gnu.org>
8746         * pcvs.el (uniquify-buffer-file-name): Wrap advice in eval-after-load.
8748 2000-11-09  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
8750         * ps-print.el: Patch for variable initialization when spooling.
8751         Doc fix.
8752         (ps-output-list): Fun eliminated.
8753         (ps-begin-file, ps-begin-job): Code fix.
8755 2000-11-08  Dave Love  <fx@gnu.org>
8757         * ediff-wind.el (ediff-control-frame-parameters): Zero tool-bar-lines.
8759 2000-11-08  Gerd Moellmann  <gerd@gnu.org>
8761         * simple.el (shell-command, display-message-or-buffer)
8762         (shell-command-on-region): Mention resize-mini-windows in the doc
8763         string.
8764         (display-message-or-buffer): Take the value of resize-mini-windows
8765         into account.
8767 2000-11-07  Gerd Moellmann  <gerd@gnu.org>
8769         * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
8771         * dired.el (dired-between-files): Add `^. find' as an alternative
8772         to the regular expression, for find-dired.
8774 2000-11-06  Stefan Monnier  <monnier@cs.yale.edu>
8776         * textmodes/texnfo-upd.el: Require texinfo.
8777         (defmacro, defgroup): Remove.
8778         (texinfo-section-to-generic-alist): Remove.
8779         Use texinfo-section-list instead (i.e. level is changed string->int).
8780         (texinfo-filter): New function.
8781         (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
8782         (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
8783         Use it.  And use regexp-opt.
8784         (texinfo-find-higher-level-node, texinfo-hierarchic-level)
8785         (texinfo-update-menu-region-beginning)
8786         (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
8787         (texinfo-update-the-node, texinfo-sequentially-update-the-node)
8788         (texinfo-update-menu-same-level-regexps): Update.
8789         (texinfo-update-node, texinfo-every-node-update)
8790         (texinfo-sequential-node-update): Remove autoload cookie.
8792         * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
8793         (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
8794         (texinfo-chapter-level-regexp): Remove.
8795         (texinfo-mode): Hard code texinfo-chapter-level-regexp.
8797 2000-11-06  Dave Love  <fx@gnu.org>
8799         * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
8801         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8802         Match defun*.
8804 2000-11-06  Kenichi Handa  <handa@etl.go.jp>
8806         * composite.el (composition-function-table): Variable declaration
8807         moved to src/composite.c.
8808         (compose-chars-after): New optional arg object.
8810 2000-11-06  Gerd Moellmann  <gerd@gnu.org>
8812         * bindings.el (mode-line-toggle-read-only)
8813         (mode-line-toggle-modified, mode-line-widen)
8814         (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
8815         (make-mode-line-mouse2-map): Rewritten.
8816         (mode-line-modified, mode-line-format, minor-mode-alist): Use new
8817         functions so that C-h k can show something with a doc string.
8819         * startup.el (fancy-splash-delay): Set to 10 seconds.
8820         (fancy-splash-max-time): New user-option.
8821         (fancy-splash-stop-time): New variable.
8822         (fancy-splash-screens): Set it.  Catch `stop-splashing'.
8823         (fancy-splash-screens-1): Throw `stop-splashing' when current
8824         time is greater than fancy-splash-stop-time.
8826 2000-11-06  Stefan Monnier  <monnier@cs.yale.edu>
8828         * vc-hooks.el (vc-insert-file): Don't assume byte==char.
8830         * pcvs.el (cvs-mode-marked): New arg `noquery'.
8831         Prompt user for a file rather than raising an error.
8832         (cvs-enabledp): Fix call to cvs-mode-marked.
8833         (cvs-insert-file): New function (extracted from cvs-mode-insert).
8834         (cvs-mode-insert): Use it.  Change the init prompt' value.
8835         (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
8837         * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
8838         Don't pass default arg to ewoc-locate.
8839         (ewoc-collect): Return result in the right order.
8841         * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
8843         * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
8844         (cvs-status-get-tags): Fix regexp.
8845         (cvs-status-trees, cvs-status-cvstrees):
8846         Combine after change hooks and don't sit-for.
8847         (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
8848         (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
8849         Use make-char rather than hard-coded cryptic data.
8850         (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
8852         * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
8854         * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
8855         (cvs-insert-strings): New function.
8857 2000-11-06  Miles Bader  <miles@lsi.nec.co.jp>
8859         * mwheel.el (mouse-wheel-scroll-amount): Renamed from
8860         `mwheel-scroll-amount'.
8861         (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
8862         (mouse-wheel-mode): Use (featurep 'xemacs) instead of
8863         string-matching against the version string.
8865 2000-11-06  Kenichi Handa  <handa@etl.go.jp>
8867         * language/thai.el ("Thai"): Set a lisp form that produces
8868         composed string in `sample-text' language info.
8870         * language/tibetan.el ("Tibetan"): Set a lisp form that produces
8871         composed string in `sample-text' language info.
8873         * international/mule-cmds.el (describe-language-environment):
8874         Eval `sample-text' data and insert the result.
8876         * international/mule-conf.el (compound-text): Define this coding
8877         system here.  Make x-ctext and ctext aliases of it.
8879         * language/european.el (compound-text, ctext): Moved to
8880         international/mule-conf.el.
8882 2000-11-05  Andrew Innes  <andrewi@gnu.org>
8884         * w32-fns.el (w32-version): New function.
8886 2000-11-05  Stefan Monnier  <monnier@cs.yale.edu>
8888         * progmodes/awk-mode.el: Update copyright.
8889         (awk-mode-abbrev-table): Remove.
8890         (awk-font-lock-keywords): Use regexp-opt.
8891         (awk-mode): Use define-derived-mode.
8893         * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
8894         when extracting a suffix.
8896 2000-11-04  Andre Spiegel  <spiegel@gnu.org>
8898         * vc-hooks.el (vc-insert-file): Rewritten.  Don't bother about
8899         auto-save-mode.
8901 2000-11-04  Jason Rumney  <jasonr@gnu.org>
8903         * language/european.el (decode-mac-roman): Test against r1 not r0.
8905 2000-11-03  Stefan Monnier  <monnier@cs.yale.edu>
8907         * progmodes/icon.el (icon-mode-map): Don't rebind \t.
8908         (icon-mode): Define indent-line-function.
8909         (icon-comment-indent): Simplify.
8910         (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
8912         * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
8914         * pcvs.el (cvs-mode-add-change-log-entry-other-window):
8915         Bind change-log-default-mode to defeat the caching done on it.
8916         Don't bother saving excursion any more.
8918         * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
8920         * frame.el (after-setting-font-hook): Rename hooks -> hook.
8921         (set-frame-font): Use the new name (and the old for compatibility).
8923         * toolbar/tool-bar.el (tool-bar-mode):
8924         * time.el (display-time-mode):
8925         * recentf.el (recentf-mode):
8926         * paren.el (show-paren-mode):
8927         * mwheel.el (mouse-wheel-mode):
8928         * msb.el (msb-mode):
8929         * jka-compr.el (auto-compression-mode):
8930         * image-file.el (auto-image-file-mode):
8931         * hl-line.el (hl-line-mode):
8932         * delsel.el (delete-selection-mode):
8933         * autoinsert.el (auto-insert-mode):
8934         * complete.el (partial-completion-mode): Drop unneeded positional args.
8936         * info.el (Info-mode):
8937         * comint.el (comint-mode): Don't bother with make-local-hook.
8939         * log-edit.el (log-edit-menu): New menu.
8941 2000-11-03  Miles Bader  <miles@gnu.org>
8943         * wid-edit.el (widget-end-of-line): Reinstate, with a new
8944         definition, so that trailing spaces are handled properly.
8945         (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
8947 2000-11-03  Gerd Moellmann  <gerd@gnu.org>
8949         * startup.el (fancy-splash-text, fancy-splash-text): Use a single
8950         tab character.
8951         (fancy-splash-screens): Set tab-width to 20.
8953 2000-11-03  Dave Love  <fx@gnu.org>
8955         * comint.el (comint-completion-addsuffix): Fix custom type.
8957 2000-11-02  Stefan Monnier  <monnier@cs.yale.edu>
8959         * font-lock.el (font-lock-buffers): Remove.
8960         (font-lock-global-modes): Define with easy-mmode-define-global-mode.
8961         (font-lock-change-major-mode): Remove.
8962         (turn-on-font-lock-if-enabled): Only apply to the current buffer.
8963         (font-lock-default-fontify-region): Extend the multiline
8964         fontification to whole lines.
8965         (font-lock-fontify-anchored-keywords)
8966         (font-lock-fontify-keywords-region): If matching just one
8967         line (with \n) only mark the \n as multiline.
8969         * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
8970         Correctly handle the case where several :group args are supplied.
8971         Allow :extra-args.
8972         (easy-mmode-define-global-mode): Allow :extra-args.
8973         Correctly handle the case where several :group args are supplied.
8975 2000-11-02  Miles Bader  <miles@gnu.org>
8977         * calendar/calendar.el (diary-face, calendar-today-face)
8978         (holiday-face): Remove dependency on `window-system'.
8980 2000-11-02  Ken Raeburn  <raeburn@gnu.org>
8982         * Makefile.in (emacs): Set EMACSLOADPATH always.
8983         (update-authors, .el.elc, compile-files): Don't do it explicitly here.
8984         (compile-files): Bomb out if compilation of a file fails.
8986 2000-11-02  Dave Love  <fx@gnu.org>
8988         * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
8990 2000-11-02  Eli Zaretskii  <eliz@is.elta.co.il>
8992         * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
8993         punctuation in the warning inserted into the *mail* buffer.
8995 2000-11-02  Gerd Moellmann  <gerd@gnu.org>
8997         * emacs-lisp/authors.el (authors-public-domain-files): New variable.
8998         (authors-public-domain-p): New function.
8999         (authors-print): Use it.
9001         * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
9003         * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
9005 2000-11-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9007         * ps-print.el: Extension for even/odd printing.  Doc fix.
9008         (ps-print-version): New version number (6.3.1).
9009         (ps-even-or-odd-pages): Customization fix.
9010         (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
9011         (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
9012         (ps-page-count): Var replaced by `ps-page-column'.
9013         (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
9014         (ps-print-sheet-p): New fun.
9016 2000-11-02  Miles Bader  <miles@lsi.nec.co.jp>
9018         * tooltip.el (tooltip-gud-tips-setup): New function.
9019         (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
9020         (tooltip-mode): Call tooltip-gud-tips-setup.
9021         (tooltip-gud-tips): Use `gud-basic-call' instead of
9022         process-send-string, so the prompt gets frobbed appropriately.
9023         Handle nil return value from `tooltip-gud-print-command'.
9025 2000-11-01  Eric M. Ludlam  <zappo@ultranet.com>
9027         * comint.el (comint-add-to-input-history): New function.
9028         (comint-send-input): Use `comint-add-to-input-history'.
9030 2000-11-02  Miles Bader  <miles@lsi.nec.co.jp>
9032         * info.el (info-menu-header): New face.
9033         (Info-fontify-menu-headers): New function.
9034         (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
9036         * info.el (Info-insert-dir): Don't include blank lines at
9037         beginning of additional dir files (one is added automatically).
9039 2000-11-01  Stefan Monnier  <monnier@cs.yale.edu>
9041         * emacs-lisp/easy-mmode.el (define-minor-mode):
9042         Revert the latest changes.
9043         Allow the three positional arguments to be skipped and replaced
9044         by keyword arguments.
9045         Add a :toggle argument to determine whether a nil arg means toggle
9046         or means turn-on.  The default is unchanged.
9047         Add a call to force-mode-line-update.
9049 2000-11-01  Dave Love  <fx@gnu.org>
9051         * emacs-lisp/elp.el (elp-restore-function): Remove autoload cookie.
9053 2000-11-01  Miles Bader  <miles@lsi.nec.co.jp>
9055         * calendar/calendar.el (diary-face, holiday-face):
9056         Add dark-background variants.
9058 2000-10-31  Sam Steingold  <sds@gnu.org>
9060         * textmodes/tex-mode.el (tex-file): Use `default-directory' when
9061         `tex-main-file' does not have directory in it.
9063 2000-10-31  Stefan Monnier  <monnier@cs.yale.edu>
9065         * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
9067 2000-10-31  Thien-Thi Nguyen  <ttn@gnu.org>
9069         * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
9070         functional change.
9072 2000-10-31  Gerd Moellmann  <gerd@gnu.org>
9074         * files.el (find-file-noselect): When we expand a wildcard, return
9075         a list of buffers, as we should do according to the doc string.
9077 2000-10-31  Ken Raeburn  <raeburn@gnu.org>
9079         * loadup.el (top level): Adjust load path if program name is
9080         "../src/bootstrap-emacs", in case it's not dumped and thus the
9081         load path adjustment hasn't already been done.
9083 2000-10-31  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9085         * ps-print.el: Fix bug on selected pages for printing.
9086         Use `color-values' for Emacs 21.  Ensure fontification when jit-lock
9087         is on.  Try to avoid warning messages when compiling.  Doc Fix.
9088         (ps-print-version): New version number (6.3).
9089         (ps-color-device): Use `color-values' to determine if device
9090         supports color.
9091         (ps-color-values): Try to use `x-color-values' when using XEmacs.
9092         (ps-print-page-p): Changed from defsubst to defun.
9093         (ps-page-number): Changed from defmacro to defun.
9094         (ps-header-sheet, ps-header-page): Fix bug on selected pages for
9095         printing.
9096         (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
9097         (ps-end-file, ps-dummy-page): Funs eliminated.
9098         (ps-print-color-scale): Changed default value.
9099         (ps-page-n-up, ps-print-page-p): New internal vars.
9100         (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
9101         (ps-plot-region, ps-generate, ps-end-job): Code fix.
9103         * delim-col.el: Little programming improvement.
9104         (delimit-columns-str): New macro.
9105         (delimit-columns-region, delimit-columns-rectangle): Code fix.
9107 2000-10-31  Kenichi Handa  <handa@etl.go.jp>
9109         * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
9110         Moved to european.el.
9111         (ccl-encode-mac-roman-font, fontset-mac): Modified for
9112         mule-unicode-2500-33ff and mule-unicode-e000-ffff.
9113         (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
9114         (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
9116 2000-10-30  Dave Love  <fx@gnu.org>
9118         * progmodes/cc-menus.el (imenu-generic-expression)
9119         (imenu-progress-message): Only defvar when compiling.
9121         * emacs-lisp/elp.el (elp-unload-hook): New function.
9123         * loadhist.el (unload-feature): Call elp-restore-function,
9124         checking for symbols; don't use elp-restore-all.
9125         (loadhist-hook-functions): Doc fix.
9127 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
9129         * log-edit.el (log-edit-confirm): Fix the default.
9131 2000-10-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9133         * delim-col.el: Little fix: replace delimit-columns-align-columns by
9134         delimit-columns-format.
9135         (delimit-columns-region, delimit-columns-rectangle): Code fix.
9137 2000-10-30  Miles Bader  <miles@lsi.nec.co.jp>
9139         * comint.el (comint-replace-by-expanded-history): Don't use
9140         comint-get-old-input (we're not looking at *old* input).
9141         (comint-get-old-input-default): If using fields, signal an error
9142         when the point is not in an input field.
9144 2000-10-30  Kenichi Handa  <handa@etl.go.jp>
9146         * international/mule-conf.el: New charsets mule-unicode-2500-33ff
9147         and mule-unicode-e000-ffff.
9149         * international/mule.el (decode-char, encode-char): New functions.
9150         (make-coding-system): Accept a symbol of translation table as a
9151         value of property `safe-chars'.
9153         * international/mule-cmds.el (encode-coding-char): Check property
9154         safe-chars instead of safe-charsets.
9156         * international/fontset.el (fontset-default): Modified for
9157         mule-unicode-2500-33ff and mule-unicode-e000-ffff.
9158         (x-font-name-charset-alist): Likewise.
9159         (ccl-encode-unicode-font): New CCL program.  Record it in
9160         font-ccl-encoder-alist to be used for fonts "ISO10646-1".
9162         * language/european.el (mac-roman-decoder, mac-roman-encoder):
9163         New translation tables.
9164         (decode-mac-roman, encode-mac-roman): Definition of these CCL
9165         programs are modified and moved from mac-win.el.
9166         (mac-roman): Definition of this coding system is modified and
9167         moved from mac-win.el.
9169 2000-10-29  Michael Kifer  <kifer@cs.sunysb.edu>
9171         * ediff-wind.el (ediff-setup-control-frame): Enclose
9172         face-attribute in condition-case to avoid errors in older emacsen.
9174 2000-10-29  Miles Bader  <miles@gnu.org>
9176         * custom.el (custom-add-to-group): Allow multiple entries for a
9177         given value OPTION, as long as their widget types are different.
9178         * cus-edit.el (custom-face-value-create): If face name doesn't end
9179         with "face", add such here (similar to custom group widgets).
9181         * comint.el (comint-highlight-prompt): Add :type.
9183 2000-10-28  John Wiegley  <johnw@gnu.org>
9185         * calendar/timeclock.el (timeclock-log): Doc fix.
9186         (timeclock-last-event): Doc fix.
9187         (timeclock-log): Kill the timelog buffer after appending a new event.
9188         (timeclock-find-discrep): Use a temp buffer to read in the
9189         timelog, instead of visiting the file.
9190         (timeclock-log-data): A new function, along with a host of helper
9191         functions, for the purpose of making timelog data accessible to
9192         programmers.
9194         * eshell/esh-mode.el (window-height test): Make certain that
9195         `eshell-stringify-t' is non-nil.
9196         (eshell-password-prompt-regexp): Changed to a much simpler
9197         password regexp.
9198         (eshell-send-input): If `eshell-invoke-directly' returns t,
9199         directly invoke the parsed command using `eval'.  This improves
9200         turn-around time on simple commands by a factor of three or
9201         greater, such as cd, ls, pwd, etc. -- which get used very often.
9202         It also conserves thousands of cons cells per call (since
9203         `eshell-do-eval' consumes memory like a Cookie Monster set loose
9204         in the Pacific Cookie Company).
9206         * eshell/esh-test.el (eshell-test): Whitespace fix.
9208         * eshell/em-ls.el (eshell-ls-insert-directory):
9209         Make `eshell-ls-initial-args' nil when inserting directory contents.
9211         * eshell/em-script.el (eshell-script-initialize): Add names to
9212         `eshell-complex-commands, since `source' and `.' are complex.
9214         * eshell/esh-cmd.el (eshell-rewrite-for-command)
9215         (eshell-rewrite-while-command): Use `eshell-protect' instead of
9216         `eshell-copy-handles'.
9217         (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
9218         bodies.
9219         (eshell-separate-commands): Whitespace fix.
9220         (eshell-complex-commands): Added a new list of names, for
9221         determining whether a given command is as simple as it looks.
9222         (eshell-invoke-directly): New function.  Returns t if a command
9223         should be invoked directly (using `eval'), rather than indirectly
9224         using `eshell-do-eval'.
9225         (eshell-do-eval): Whitespace fix.
9227         * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
9228         which provides an emulation of the DOS shell behavior of assuming
9229         that cp/mv/ln should copy/move/link to the current directory.
9230         (eshell-remove-entries): Added a doc string.
9231         (eshell-shuffle-files): Removed the check for `target' being null.
9232         (eshell-mvcp-template, eshell-mvcpln-template): Renamed
9233         `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
9234         it to do a smarter check of whether a destination was provided.
9235         (eshell/mv, eshell/cp): Enable `:preserve-args'.
9236         (eshell/ln): Enable `:preserve-args', and use
9237         `eshell-mvcpln-template' to implement the body of the function.
9238         (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
9239         (eshell/du, eshell/diff, eshell/locate): Stringify the argument
9240         list after flattening it.  This makes it possible to cat files
9241         with numerical names.
9242         (eshell-unix-initialize): Added several names to
9243         `eshell-complex-commands.
9244         (eshell-unix-command-complex-p): Return t if a given command name
9245         may result in external processes being invoked.
9247         * eshell/em-glob.el (eshell-glob-show-progress): Make this
9248         variable nil by default, since it slows down glob processing by a
9249         factor of two or more, and increases memory consumption.
9251         * eshell/em-smart.el: Added a note about how memory consumptive
9252         smart display mode can be (at least this is true in Emacs 21).
9253         (eshell-smart-initialize): Whitespace fix.
9254         (eshell-refresh-windows): Use `if' instead of `when'.
9255         (eshell-smart-scroll-window): Calling `save-current-buffer' was
9256         not necessary.
9257         (eshell-currently-handling-window): Added a missing global variable.
9259         * eshell/em-ls.el (eshell-do-ls): Code simplification.
9260         (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
9261         Whitespace fix.
9262         (eshell-ls-exclude-hidden): Added this variable in addition to
9263         `eshell-ls-exclude-regexp'.  This one prevents files beginning
9264         with . from even being read, which can improve memory consumption
9265         quite a bit.
9266         (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
9267         read file entries beginning with a dot.  In home directories with
9268         lots of hidden files, fully two-thirds of the time spent in ls is
9269         used to read directory entries that are immediately thrown away.
9270         (eshell-ls-initial-args): Added back this configuration variable,
9271         for specifying default initial arguments to every call to ls.
9272         Much faster than using an alias to do the same thing.
9273         (eshell-do-ls): Use `eshell-ls-initial-args', if set.
9274         (eshell-ls-dir): Whitespace change.
9276         * eshell/em-dirs.el (eshell/pwd): Small code simplification.
9278         * eshell/esh-util.el: Don't require `ange-ftp' if it's not available.
9279         (eshell-stringify-t): Added a customization variable, to indicate
9280         whether `t' should be rendered as a string at all.  If not, one
9281         can still determine if the result of an expression is true using
9282         "file-exists-p FILE && echo true".
9283         (eshell-stringify): If `eshell-stringify-t' is nil, don't
9284         stringify t!
9286         * eshell/esh-module.el: Whitespace fix.
9288         * eshell/em-alias.el (eshell-alias-initialize):
9289         Added `eshell-command-aliased-p' to `eshell-complex-commands'.
9290         (eshell-command-aliased-p): New function that returns t if a
9291         command name names an aliased.
9293 2000-10-29  Michael Kifer  <kifer@cs.sunysb.edu>
9295         * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
9296         redrawing the screen when changing cursor color.
9297         (viper-insert-state-pre-command-sentinel)
9298         (viper-replace-state-pre-command-sentinel)
9299         (viper-replace-state-post-command-sentinel):
9300         Use viper-preserve-cursor-color.
9301         Many functions changed to use viper= instead of = when comparing
9302         characters.
9303         * viper-util.el (viper-memq-char,viper=): New functions for
9304         working with characters.
9305         (viper-change-cursor-color): Fixed buglet.
9306         Many functions changed to use viper= instead of = when comparing
9307         characters.
9308         * viper.el (viper-insert-state-mode-list): Added eshell.
9310         * ediff-init.el (ediff-before-setup-hook): New hook.
9311         Several typos fixed in various docstrings.
9312         * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
9313         * ediff-nult.el (ediff-before-session-group-setup-hooks): New hook.
9314         (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
9315         * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
9316         (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
9317         (ediff-get-selected-buffers): New function.
9318         * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
9319         (ediff-vc-merge-internal,ediff-rcs-merge-internal):
9320         Use save-window-excursion.
9321         * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
9322         termination check in while loop.
9323         * ediff.el (ediff-get-default-file-name): Better defaults when in
9324         dired buffer.
9325         (ediff-files,ediff-merge-files,ediff-files3)
9326         (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
9328 2000-10-28  Dave Love  <fx@gnu.org>
9330         * info.el (Info-fontify-node): Add help-echo for menu items.
9332 2000-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
9334         * startup.el (normal-top-level): If the value of $TERM indicates
9335         we are running from xterm or one of its work-alikes, default to a
9336         light background mode.
9338         Support for -fg, -bg, and -rv command-line arguments for TTYs:
9339         * faces.el (tty-handle-reverse-video): New function.
9340         (tty-create-frame-with-faces): Call it.
9342         * frame.el (frame-notice-user-settings): Don't apply
9343         default-frame-alist and initial-frame-alist to MS-DOS frames.
9344         Call tty-handle-reverse-video, frame-set-background-mode, and
9345         face-set-after-frame-default for non-MS-DOS frames.
9347         * startup.el (tty-long-option-alist): New variable.
9348         (tty-handle-args): New function.
9349         (command-line): Call tty-handle-args.
9351         * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
9352         startup.el now does that for all character-terminal frames.
9354 2000-10-28  Miles Bader  <miles@gnu.org>
9356         * emacs-lisp/easy-mmode.el (define-minor-mode):
9357         Generate `turn-on-MODE' and `turn-off-MODE' functions unless the mode
9358         is global.  If :global is followed by a non-nil but non-t value,
9359         make the mode buffer-local, but also generate a `global-MODE'
9360         version using `easy-mmode-define-global-mode'.
9361         Add :conditional-turn-on keyword argument.
9363 2000-10-28  Dave Love  <fx@gnu.org>
9365         * international/latin1-disp.el (latin1-char-displayable-p):
9366         Don't use window-system.
9368 2000-10-27  Eli Zaretskii  <eliz@is.elta.co.il>
9370         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
9371         Don't call find-buffer-file-type-coding-system.  Instead, just
9372         set eol-type to -unix if inhibit-eol-conversion is in effect, or
9373         if the file is on an untranslated filesystem.
9374         (add-untranslated-filesystem): Use "D" instead of "f" inside
9375         interactive.
9377 2000-10-27  Dave Love  <fx@gnu.org>
9379         * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
9380         (refill-mode): Use it.
9382 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
9384         * international/quail.el (quail-activate): Don't make-local-hook.
9386 2000-10-27  Andre Spiegel  <spiegel@gnu.org>
9388         * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
9389         manual backups and file.~<rev>.~ for automatic ones.
9390         (vc-make-version-backup): Don't do it on MS-DOS without long file
9391         names.
9393         * vc.el (vc-version-other-window): If an automatic backup of the
9394         desired version exists, rename it instead of copying it.
9396         * vc-cvs.el (vc-cvs-checkin): Check both status and error message
9397         after command.  If there's an unexpected error, signal it instead
9398         of being silent.
9399         (vc-cvs-merge-news): Be prepared for no news at all.
9401 2000-10-27  Miles Bader  <miles@lsi.nec.co.jp>
9403         * shell.el (shell): Add BUFFER argument.
9404         * comint.el (make-comint-in-buffer): New function.
9405         (make-comint): Use it.
9407         * faces.el (face-spec-choose): Change syntax so that the list of
9408         attribute-value pairs is now the cdr of each clause, not the cadr.
9409         Detect old-style entries, and handle them.  Use pop.
9411 2000-10-26  Stefan Monnier  <monnier@cs.yale.edu>
9413         * cus-edit.el (custom-mode-map): Use a sparse map.
9414         (custom-mode): Don't bother with make-local-hook.
9416         * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
9418         * vc.el (vc-start-entry): Only erase the buffer if comment is set.
9420 2000-10-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9422         * ps-print.el: Avoid compilation gripes.
9423         (ps-print-version): New version number (6.2.1).
9425 2000-10-26  Dave Love  <fx@gnu.org>
9427         * menu-bar.el: Modify some menu item help strings.
9428         (menu-bar-help-menu): Add link to MORE.STUFF.
9430         * cus-edit.el (custom-mode): Add `special' mode-class property.
9432         * wid-browse.el (widget-browse-mode): Likewise.
9434         * wid-edit.el (widget-specify-field): Revert to using local-map
9435         property, not keymap.
9437 2000-10-26  Miles Bader  <miles@lsi.nec.co.jp>
9439         * wid-edit.el (widget-field-end): When checking for a `boundary'
9440         field, do so in the correct buffer.
9442         * simple.el (undo): Correctly distinguish between numeric and
9443         non-numeric prefix args in non-transient-mark-mode, as per the doc
9444         string.  When in transient-mark-mode, treat all prefix-args as
9445         numeric.
9447         * simple.el (previous-matching-history-element): Miscellaneous cleanup.
9448         Position point on match.  Handle N == 0 correctly.
9450         * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
9451         (comint-mode-map): Reverse order of `comint-write-output' and
9452         `comint-append-output-to-file'.
9453         (comint-append-output-to-file): Reinstate this function, for the
9454         benefit of the menu.
9456 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
9458         * vc.el (vc-version-other-window): Bind `file'.
9460 2000-10-25  Gerd Moellmann  <gerd@gnu.org>
9462         * Makefile.in (update-authors): New target for maintenance purposes.
9464         * emacs-lisp/authors.el (batch-update-authors): New function.
9465         (authors-fixed-entries): New defconst.
9466         (authors-add-fixed-entries): New function.
9467         (authors): Call it.: Don't process lispref/.
9469 2000-10-25  Jason Rumney  <jasonr@gnu.org>
9471         * cus-edit.el (custom-button-face, custom-button-pressed-face):
9472         Merge x w32 and mac definitions.
9474 2000-10-25  Gerd Moellmann  <gerd@gnu.org>
9476         * menu-bar.el (menu-bar-options-menu): Add a help string for
9477         `uniquify'.
9479 2000-10-25  Stephen Gildea  <gildea@stop.mail-abuse.org>
9481         * time-stamp.el (time-stamp-string-preprocess):
9482         Fix a wrong type argument error.
9484 2000-10-25  Miles Bader  <miles@gnu.org>
9486         * recentf.el (recentf-mode): Variable removed.
9487         (recentf-mode): Use `define-minor-mode'.
9489         * mwheel.el (mouse-wheel-mode): New global minor mode.
9490         (mwheel-install): Use `mouse-wheel-mode'.
9492 2000-10-25  Dave Love  <fx@gnu.org>
9494         * progmodes/cperl-mode.el (cperl-mode):
9495         Set normal-auto-fill-function correctly.
9497         * wid-edit.el (widget-field-keymap, widget-text-keymap):
9498         Don't inherit from global-map and don't nullify menu-bar and tool-bar
9499         bindings.
9501 2000-10-25  Miles Bader  <miles@lsi.nec.co.jp>
9503         * wid-edit.el (widget-field-at): New function.
9504         (widget-at, widget-field-activate): Use it.
9505         (widget-tabable-at): Use `widget-at'.
9506         (widget-specify-field): If the terminating character of the widget
9507         field (which is read-only) is a newline, put it into a special
9508         `boundary' field so that C-n/C-p act more naturally.
9509         (widget-field-end): Also don't subtract one if a special
9510         `boundary' field has been added after the widget field.
9512         * comint.el (comint-output-filter, comint-send-input):
9513         Don't bother adding stickiness fields to overlays to fool the field
9514         code, since it should notice the overlay insertion-types now.
9516         * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
9517         Replace with aliases of the normal emacs b-o-l/e-o-l functions.
9518         (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
9520 2000-10-24  Gerd Moellmann  <gerd@gnu.org>
9522         * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
9523         (authors): Set file coding system to iso-2022-7bit.
9524         Add file-local variables to output buffer.
9526         * files.el (after-find-file): Don't print any warnings if
9527         WARN is nil.
9529 2000-10-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9531         * ps-print.el (ps-generate): Fix odd/even pages printing bug.
9533         * delim-col.el: Now there is a column formatting mechanism.
9534         Modified to customization mechanisms convention.  Doc fix.
9535         (columns): New group for delim-col.
9536         (delimit-columns-before, delimit-columns-after)
9537         (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
9538         (delimit-columns-end): New vars.
9539         (delimit-columns-customize, delimit-columns-format): New funs.
9540         (delimit-columns-region, delimit-columns-rectangle)
9541         (delimit-columns-rectangle-line): Modified to support column
9542         formatting.
9544 2000-10-24  Dave Love  <fx@gnu.org>
9546         * log-edit.el (log-edit): Add :version and a :group for vc.
9548 2000-10-24  Gerd Moellmann  <gerd@gnu.org>
9550         * files.el (after-find-file): Don't print a message ``New file''
9551         if WARN is nil.
9553         * wid-edit.el (widget-field-keymap, widget-text-keymap):
9554         Define the tool-bar map as nil, as for the menu-bar.  Otherwise, we'll
9555         get duplicate tool-bar entries because we'll see the global ones
9556         on more than one path through keymaps.
9558         * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
9560         * progmodes/cmacexp.el: Change Francesco's email address.
9562 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
9564         * window.el (fit-window-to-buffer): Adjust point of the window
9565         buffer, not that of the current buffer.
9567 2000-10-24  Eli Zaretskii  <eliz@is.elta.co.il>
9569         * progmodes/cmacexp.el: Update the euthor's email address.
9571 2000-10-24  Miles Bader  <miles@lsi.nec.co.jp>
9573         * faces.el (face-spec-set-match-display): Add `graphic' display
9574         type (the inverse of `tty').  Use `display-graphic-p' instead of
9575         the window-system variable.
9577 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
9579         * international/isearch-x.el (isearch-with-input-method):
9580         Call input-method-function with the first event in
9581         unread-command-events.
9583 2000-10-24  Miles Bader  <miles@lsi.nec.co.jp>
9585         * faces.el (face-default-spec, face-user-default-spec): Make defsubsts.
9587 2000-10-24  Andrew Choi  <akochoi@i-cable.com>
9589         * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
9590         New charsets.
9592         * term/mac-win.el: Remove definitions of mac-roman-lower and
9593         mac-roman-upper, require dired, and define instead of set
9594         mac-ready-for-drag-n-drop to avoid compilation error.
9596 2000-10-23  Andrew Innes  <andrewi@gnu.org>
9598         * files.el (make-backup-file-name-1) [windowsnt, ms-dos]:
9599         Remove superfluous calls to subst-char-in-string; instead apply
9600         expand-file-name after convert-standard-filename to ensure
9601         expected directory separators are used.
9603 2000-10-23  Eli Zaretskii  <eliz@is.elta.co.il>
9605         * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
9607 2000-10-23  Dave Love  <fx@gnu.org>
9609         * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
9610         (tool-bar-add-item): Set foreground and background for XBM icons.
9612         * international/latin1-disp.el (latin1-char-displayable-p):
9613         New function (from Handa).
9614         (latin1-display-check-font): Use it.
9616         * imenu.el (imenu--create-keymap-2): Build menu with menu-item
9617         using :key-sequence, making it much more usable.
9618         Use nconc, not append.
9619         (imenu--create-keymap-1): Avoid append.
9621         * textmodes/refill.el: Remove bits redundant with define-minor-mode.
9623 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
9625         [the following changes fix a bug where `define-minor-mode' didn't
9626         correctly generate :require clauses for defcustoms in compiled files]
9627         * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
9628         (byte-compile-log-file, byte-compile-log-1): Don't set
9629         `byte-compile-current-file' to nil.  Instead set
9630         `byte-compile-last-logged-file' to it.  Test whether
9631         byte-compile-current-file equals byte-compile-last-logged-file
9632         instead of whether its nil.
9633         (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
9635 2000-10-23  Stefan Monnier  <monnier@cs.yale.edu>
9637         * textmodes/refill.el: Fix var names in doc.
9638         (refill-mode): Don't bother with make-local-hook anymore.
9640 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
9642         * faces.el (face-user-default-spec, face-default-spec): New functions.
9643         (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
9644         (frame-set-background-mode, face-set-after-frame-default):
9645         Use `face-user-default-spec'.  Simplify code slightly.
9647         * woman.el (woman-italic-face, woman-bold-face)
9648         (woman-unknown-face): Add dark-background variants.
9649         (woman-default-faces): Renamed from `woman-colour-faces'.
9650         Set using the stored defaults, rather than using hard-wired colors.
9651         (woman-monochrome-faces): Renamed from `woman-black-faces'.
9652         Just make the foreground `unspecified' rather than "black".
9653         (woman-menu): Rename menu entries accordingly.
9655         * faces.el (header-line): Make more reasonable on mono/grayscale
9656         displays.
9658 2000-10-23  Andrew Choi  <akochoi@i-cable.com>
9660         * cus-edit.el (custom-button-face): Use 3D look for mac.
9661         (custom-button-pressed-face): Likewise.
9663         * faces.el (set-face-attributes-from-resources): Handle mac frames
9664         in the same way as x and w32 frames.
9665         (face-valid-attribute-values): Likewise.
9666         (read-face-attribute): Likewise.
9667         (defined-colors): Likewise.
9668         (color-defined-p): Likewise.
9669         (color-values): Likewise.
9670         (display-grayscale-p): Likewise.
9671         (face-set-after-frame-default): Likewise.
9672         (mode-line): Same default face as for x and w32.
9673         (tool-bar): Likewise.
9675         * frame.el: Remove call to frame-notice-user-settings at end of
9676         the file.
9678         * info.el (Info-fontify-node): Make underlines invisible for mac
9679         as for x, pc, and w32 frame types.
9681         * term/mac-win.el: New file.
9683 2000-10-22  Dave Love  <fx@gnu.org>
9685         * textmodes/refill.el: New file.
9687 2000-10-22  Andre Spiegel  <spiegel@gnu.org>
9689         * vc-hooks.el (vc-version-backup-file-name): New optional args
9690         MANUAL and REGEXP.
9691         (vc-delete-automatic-version-backups, vc-make-version-backup):
9692         New functions.
9693         (vc-before-save): Use the latter.
9694         (vc-default-make-version-backups-p): Added `-p' suffix to avoid
9695         confusion.
9697         * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
9698         expected by vc[-hooks].el.
9700         * vc.el (vc-checkout): Added `-p' suffix in call to
9701         vc-make-version-backups-p; use vc-make-version-backup to actually
9702         make the backup.
9703         (vc-version-other-window, vc-version-backup-file): Handle both
9704         automatic and manual backups.
9705         (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
9706         of all of them.
9708 2000-10-22  Miles Bader  <miles@gnu.org>
9710         * comint.el (comint-highlight-input, comint-highlight-prompt):
9711         Renamed, `-face' at end removed.
9712         (comint-send-input, comint-output-filter): Use renamed faces.
9714         * window.el (fit-window-to-buffer): Change defaulting of
9715         MAX-HEIGHT slightly.
9717         * faces.el (color-values, color-defined-p): Use `member', not
9718         `memq', because it works correctly for strings.
9719         (frame-set-background-mode): Actually, "unspecified-fg" and
9720         "unspecified-bg" *are* strings.  Use `member', not `memq', and
9721         `equal', not `eq', when a string value is possible.
9723 2000-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
9725         * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
9727 2000-10-21  Stefan Monnier  <monnier@cs.yale.edu>
9729         * progmodes/sh-script.el (sh-mode-map): Remove bindings for
9730         sh-electric-rparen, sh-electric-less and sh-electric-hash.
9731         (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
9732         (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
9733         (sh-font-lock-syntactic-keywords): Use them.
9734         (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
9735         (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
9736         (sh-mode): Don't override font-lock-unfontify-region-function.
9737         Use a copy of sh-font-lock-syntactic-keywords.
9738         (sh-set-shell): Don't set sh-electric-rparen-needed-here.
9739         Don't call sh-scan-buffer since font-lock does it on the fly.
9740         (sh-get-indent-info): Use `face' rather than `syntax-table'
9741         text-property to detect here-documents.
9742         Replace sh-special-syntax with sh-st-punc.
9743         (sh-prev-line): Use `face' rather than `syntax-table'
9744         text-property to skip over here-documents.
9745         (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
9746         (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
9747         (sh-electric-less, sh-set-here-doc-region)
9748         (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
9749         (sh-scan-buffer, sh-rescan-buffer): Remove.
9751 2000-10-21  Andrew Innes  <andrewi@gnu.org>
9753         * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
9754         remote (ange-ftp) file names.
9756 2000-10-21  Miles Bader  <miles@gnu.org>
9758         * window.el (fit-window-to-buffer): New function.
9759         (shrink-window-if-larger-than-buffer): Use it.
9760         (window-text-height): Don't expect minibuffers to have mode-lines.
9762         * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
9763         * international/quail.el (quail-update-guidance):
9764         Use `fit-window-to-buffer' instead of `set-window-text-height'.
9766         * international/quail.el (quail-show-guidance-buf): Make sure
9767         guidance window really has enough room.
9768         (quail-update-guidance): If quail-guidance-win is already shown,
9769         make sure its height is OK.
9771         * window.el (window-text-height, set-window-text-height):
9772         New functions.
9773         (shrink-window-if-larger-than-buffer): Use `window-text-height'
9774         instead of `window-height' & `mode-line-window-height-fudge'.
9775         (mode-line-window-height-fudge): Add FACE parameter.
9776         * help.el (resize-temp-buffer-window): Use `set-window-text-height'
9777         instead of `enlarge-window' & `mode-line-window-height-fudge'.
9779 2000-10-20  Miles Bader  <miles@gnu.org>
9781         * window.el (height-affecting-face-attributes): Use `defconst'.
9783         * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
9784         New function, conditionally aliased to `mode-line-window-height-fudge'.
9785         (ispell-help): Use it.
9786         (ispell-choices-win-default-height): Don't include mode-line fudge.
9787         (ispell-choices-win-default-height): New function.
9788         (ispell-show-choices, ispell-command-loop): Use function
9789         `ispell-choices-win-default-height' instead of variable.
9791 2000-10-20  Miles Bader  <miles@lsi.nec.co.jp>
9793         * window.el (mode-line-window-height-fudge): New variable.
9794         (height-affecting-face-attributes): New variable.
9795         (mode-line-window-height-fudge): New function.
9796         (shrink-window-if-larger-than-buffer): Use it.
9797         * help.el (resize-temp-buffer-window): Likewise.
9799         * info.el (Info-fontify-node): Add support for @subsubsection
9800         titles, which use `Info-title-4-face'.
9801         (Info-title-4-face): New face.
9802         (Info-title-3-face): Inherit from Info-title-4-face instead of
9803         variable-pitch.
9805 2000-10-19  Jason Rumney  <jasonr@gnu.org>
9807         * dired.el (dired-insert-directory): Do not let errors signalled by
9808         attempt to run dired-free-space-program prevent dired from working.
9810 2000-10-19  Stefan Monnier  <monnier@cs.yale.edu>
9812         * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
9814 2000-10-19  Gerd Moellmann  <gerd@gnu.org>
9816         * dirtrack.el (dirtrack): Fix call to run-hooks.
9818         * cmuscheme.el (cmuscheme-program-name): Renamed from
9819         scheme-program-name because xscheme.el contains a defcustom with
9820         the same name.  As a consequence, customizing group `cmuscheme'
9821         loaded `xscheme' which redefined run-scheme.
9822         (run-scheme): Use cmuscheme-program-name.
9824         * ps-print.el (ps-print-emacs-type): Move into the eval-and-compile.
9826         * play/doctor.el (doctor-death): Update the Samaritans'
9827         anonymous address, and add a website for Befrienders International.
9829 2000-10-19  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9831         * ps-print.el: Even/odd pages fix.  Fix little bug on XEmacs.
9832         Avoid compilation gripes.  Doc fix.
9833         (ps-print-version): New version number (6.2).
9834         (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
9835         (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
9836         (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
9837         (ps-x-extent-priority, ps-x-extent-start-position)
9838         (ps-x-face-font-instance, ps-x-find-coding-system)
9839         (ps-x-font-instance-properties, ps-x-make-color-instance)
9840         (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
9841         avoid compilation gripes without defining functions.
9842         (ps-e-find-composition): Alias for function find-composition, to have a
9843         suitable function depending on Emacs version.
9844         (ps-color-device, ps-color-values, ps-face-foreground-name)
9845         (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
9846         (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
9847         (ps-print-ensure-fontified): Function definitions surrounded by
9848         `eval-and-compile' to avoid compilation gripes.
9849         (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
9850         by symbol-value to avoid compilation gripes.
9851         (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
9852         (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
9854 2000-10-19  Miles Bader  <miles@lsi.nec.co.jp>
9856         * startup.el (normal-top-level): Call `frame-set-background-mode'
9857         after `frame-notice-user-settings' because the latter doesn't call
9858         the former on a tty.
9860         * faces.el (frame-set-background-mode): `unspecified' &c are
9861         symbols, not strings.
9863 2000-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
9865         * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
9866         why some "light*" colors are deliberately absent from the alist.
9868         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
9869         Change colors for tty's, as suggested by Miles Bader.
9871 2000-10-19  Kenichi Handa  <handa@etl.go.jp>
9873         * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
9874         (ccl-encode-mule-unicode-0100-24ff): New CCL program.  Register it
9875         for ISO10646-1 fonts.
9876         (x-font-name-charset-alist): Add an entry for "iso10646-1".
9878 2000-10-19  Eli Zaretskii  <eliz@is.elta.co.il>
9880         * faces.el (frame-set-background-mode): If a tty frame defines a
9881         background color, use that to compute the background mode, instead
9882         of always defaulting to "dark".
9884 2000-10-19  Miles Bader  <miles@lsi.nec.co.jp>
9886         * comint.el (comint-write-output): New function.
9887         (comint-mode-map): Add it to the menu.
9888         Bind `C-c C-s' to comint-write-output.
9890 2000-10-18  Gerd Moellmann  <gerd@gnu.org>
9892         * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
9893         Use fancy-splash-delay.
9895 2000-10-18  Alex Schroeder  <alex@gnu.org>
9897         * progmodes/sql.el (sql-sybase-options): New option.
9898         (sql-sybase): Use it.  Add sql-database to the list of parameters
9899         provided for login.  The options -w 2048 -n are not used any more.
9901         * comint.el (comint-read-input-ring): Bugfix such that the first
9902         and the last entry of the input ring file are not lost.
9904 2000-10-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9906         * ps-print.el: Internal variable changes to defcustom,
9907         make-local-hook changes to defvar.  Doc fix.
9908         (ps-print-version): New version number (6.1).
9909         (ps-setup, ps-do-despool): Code fix.
9910         (ps-printer-name): Customization fix.
9911         (ps-printer-name-option): Now is a defcustom instead of an
9912         internal variable.
9913         (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
9914         (ps-print-begin-column-hook): Now are defvar instead of
9915         make-local-hook.
9917 2000-10-18  Miles Bader  <miles@gnu.org>
9919         * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
9920         (comint-kill-output): Changed into an alias for `comint-delete-output',
9921         and made obsolete.
9922         (comint-mode-map): Rename references to comint-kill-output.
9924 2000-10-18  Eli Zaretskii  <eliz@is.elta.co.il>
9926         * diff-mode.el (diff-header-face, diff-file-header-face)
9927         (diff-changed-face): Add bold and italic attributes to tty faces.
9928         (diff-function-face): New face.
9929         (diff-font-lock-keywords): Use it.
9931 2000-10-18  Miles Bader  <miles@lsi.nec.co.jp>
9933         * comint.el (comint-output-filter): Fixup comint-last-input-end too.
9934         Remove commented-out call to force-mode-line-update.
9935         (comint-kill-output): Use `forward-line 0' instead of
9936         beginning-of-line to make sure we get past the prompt.
9938 2000-10-17  Stefan Monnier  <monnier@cs.yale.edu>
9940         * diff-mode.el (diff-header-face, diff-file-header-face):
9941         Add specific setting for dark background.
9942         (diff-context-face): Renamed from diff-comment-face.
9943         Set explicitly rather than inheriting from font-lock-comment-face.
9945 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
9947         * startup.el (command-line): Move the code which sets the default
9948         TTY colors to before before-init-hook.
9950 2000-10-17  Gerd Moellmann  <gerd@gnu.org>
9952         * jit-lock.el (jit-lock-stealth-time): Doc fix.
9954 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
9956         * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
9957         extensions, for MS-DOS.
9959         * diff-mode.el (diff-header-face, diff-file-header-face)
9960         (diff-changed-face): Define tty-specific colors.
9962 2000-10-17  Gerd Moellmann  <gerd@gnu.org>
9964         * startup.el (fancy-splash-text): Realign the text.
9966 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
9968         * font-lock.el (font-lock-comment-face): Define a separate default
9969         for dark-background tty's.
9971 2000-10-17  Miles Bader  <miles@gnu.org>
9973         * help.el (resize-temp-buffer-window): Add hack to avoid last line
9974         being obscured by whizzy mode-lines on graphics displays.
9976 2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
9978         * info.el (Info-title-1-face, Info-title-2-face)
9979         (Info-title-3-face): Define colors for tty's.
9980         (info-header-node): Remove unneeded tty-specific definition.
9982 2000-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
9984         * term/pc-win.el (msdos-handle-reverse-video): Don't remove
9985         reverse from the frame parameters, and don't invert foreground and
9986         background colors.
9988 2000-10-16  Miles Bader  <miles@gnu.org>
9990         * info.el (Info-set-mode-line): Use `%b' instead of hardwired
9991         string "*Info*".  Call propertized-buffer-identification to spruce
9992         up the result.
9994 2000-10-16  Gerd Moellmann  <gerd@gnu.org>
9996         * help.el: Provide `help' for the sake of define-minor-mode
9997         which generates defcustoms with requires.
9999         * jit-lock.el (jit-lock-after-change): If we're in text that
10000         matches a multi-line font-lock pattern, make sure the whole text
10001         will be redisplayed.
10003         * emacs-lisp/authors.el (authors-add): Don't add an entry if
10004         author's name is unknown.
10006         * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
10007         * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
10008         * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
10009         * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
10010         * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
10011         * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
10012         * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
10013         * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
10014         * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
10015         Add author information.
10017 2000-10-16  Miles Bader  <miles@lsi.nec.co.jp>
10019         * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
10020         * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
10021         full-color version (using the Gimp) to eliminate dithering artifacts.
10023 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
10025         * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
10027         * simple.el (syntax-flag-table, string-to-syntax): Remove.
10029 2000-10-15  Dave Love  <fx@gnu.org>
10031         * progmodes/sh-script.el: Require skeleton and comint when compiling.
10033         * pcomplete.el (pcomplete) <defgroup>: Add :version.
10035         * whitespace.el: Doc fixes.
10036         (top-level): Don't add hooks here.
10037         (whitespace-running-emacs): Deleted.
10038         (timer): Don't require.
10039         (whitespace): Add back :version conditional on xemacs test.
10040         (whitespace-spacetab-regexp, whitespace-indent-regexp)
10041         (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
10042         (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
10043         (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
10044         Avoid specific xemacs test.
10045         (whitespace-global-mode): New option.
10046         (whitespace-global-mode): New command.
10047         (whitespace-unload-hook): New function.
10049         * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
10050         (Info-fontify-node, Info-goto-node, Info-mode-menu)
10051         (Info-fontify-node): `Goto' goes to `Go to'.
10052         (Info-fontify-node): Add help-echo to xref links.
10054 2000-10-15  Eli Zaretskii  <eliz@is.elta.co.il>
10056         * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
10058 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
10060         * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
10061         Use plist-get and allow :inherit.
10063         * emacs-lisp/cl-macs.el (cl-do-arglist):
10064         Use plist-get and plist-member instead of memq.
10066         * emacs-lisp/ewoc.el (ewoc-location): New function.
10067         (ewoc-enter-after, ewoc-enter-before): Document return value.
10068         * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
10069         Don't need make-local-hook any more.
10070         (cvs-addto-collection): Return the new tin.
10071         (cvs-mode-insert): Jump to the new line.
10073         * jit-lock.el (jit-lock-fontify-buffer): Remove.
10075         * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
10077         * font-lock.el (font-lock-syntactically-fontified): New var.
10078         (font-lock-fontify-syntactic-keywords-region): Use it.
10079         (font-lock-mode): Fix docstring.  Don't need make-local-hook anymore.
10081         * diff-mode.el (diff-find-file-name): Fix regexp.
10083         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
10084         (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
10086         * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
10087         (sh-mode-syntax-table): Add punctuation syntax for < and >.
10088         (sh-mode): Don't make all vars local here.
10089         (sh-kw): Reformat.
10090         (sh-set-shell): Use dolist.  Don't set indent-region-function.
10091         (sh-mode-syntax-table): Use pop.
10092         (sh-remember-variable): Use push.
10093         (sh-help-string-for-variable): Use memq.
10094         (sh-safe-backward-sexp): Remove.
10095         (sh-safe-forward-sexp): Add ARG.
10096         (sh-get-indent-info, sh-prev-stmt): Use it.
10097         (sh-prev-line): Simplify by using forward-comment.
10098         (sh-this-is-a-continuation): Simplify.
10099         (sh-learn-buffer-indent): Use dolist.
10100         (sh-do-nothing): Remove.
10101         (sh-set-char-syntax, sh-set-here-doc-region):
10102         Use inhibit-modification-hooks.
10103         (sh-name-style): Use mapcar and push.
10104         (sh-load-style): Use dolist.
10105         (sh-save-styles-to-buffer): Use with-current-buffer and pp.
10106         (sh-case, sh-while-getopts): Use propertize directly rather
10107         than sh-electric-rparen.
10109 2000-10-14  Stefan Monnier  <monnier@cs.yale.edu>
10111         * textmodes/tex-mode.el: Require CL when compiling.
10112         (tex-mode-syntax-table): Init immediately.
10113         (tex-mode-map): Bind M-RET to latex-insert-item.
10114         (latex-mode): Set indent-line-function to latex-indent.
10115         (tex-common-initialization): Don't setup the syntax-table any more.
10116         (latex-insert-item): New skeleton.
10117         (tex-next-unmatched-end): Fix copy/paste braino.
10118         (latex-syntax-after, latex-skip-close-parens, latex-down-list)
10119         (latex-indent, latex-find-indent): New functions.
10120         (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
10121         (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
10122         (tex-compilation-parse-errors): Use with-syntax-table.
10124 2000-10-15  Miles Bader  <miles@gnu.org>
10126         * font-lock.el (font-lock-comment-face): Change dark-background,
10127         color, non-tty, default to `chocolate1'.
10129 2000-10-13  John Wiegley  <johnw@gnu.org>
10131         * eshell/esh-util.el (require): Added a missing `require' form,
10132         needed when compiling (for an ange-ftp macro definition).
10134 2000-10-13  Dave Love  <fx@gnu.org>
10136         * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
10138 2000-10-13  Gerd Moellmann  <gerd@gnu.org>
10140         * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc fix.
10142         * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
10143         transparent -colors 8).
10145 2000-10-13  Stephen Gildea  <gildea@stop.mail-abuse.org>
10147         * time-stamp.el (time-stamp): Fixed bug in new multi-line code
10148         that breaks with old list format timestamps.
10149         (time-stamp-warn-inactive, time-stamp-old-format-warn)
10150         (time-stamp-count, time-stamp-conversion-warn): Improved doc strings.
10152 2000-10-13  John Wiegley  <johnw@gnu.org>
10154         * align.el, pcomplete.el, calendar/timeclock.el,
10155         eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
10157         * calendar/timeclock.el (timeclock-find-discrep): A fix to some
10158         faulty math, where holiday hours were being computing as seconds.
10160 2000-10-13  John Wiegley  <johnw@gnu.org>
10162         * desktop.el (desktop-buffer-modes-to-save): Added a global for
10163         specifying what "other" kinds of buffers should be saved.
10164         This used to be hard-coded.
10165         (desktop-buffer-misc-functions): A global for specifying how
10166         auxiliary data should be determined for special buffer types.
10167         (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
10168         instead of hard-coding the special buffer types.
10169         (desktop-save): Run `desktop-buffer-misc-functions' to gather
10170         auxiliary data, instead of hard-coding for Info buffers and dired.
10171         (desktop-buffer-info-misc-data): Aux function for determining Info
10172         buffer auxiliary info.
10173         (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
10174         (desktop-buffer-info): Changed this function to use the info
10175         gathered above.
10176         (desktop-create-buffer): Be a little more careful about what
10177         `minor-mode' means before calling it.  This is important for some
10178         buffer types.
10180 2000-10-13  John Wiegley  <johnw@gnu.org>
10182         * eshell/esh-util.el: Added a global form which declares an
10183         autoload for `parse-time-string', if that function is not already
10184         defined, and if parse-time.el is available on the user's system.
10186         * eshell/em-ls.el (eshell-ls-applicable): Extended this function
10187         to be aware of ange-ftp user info.
10188         (eshell-do-ls): Bind `ange-cache'.  Also, use `eshell-file-attributes'.
10189         (eshell-ls-annotate): Use `eshell-file-attributes'.
10190         (eshell-ls-file): Made the user-id printing code a bit smarter.
10192         * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
10193         allow identification of alias user ids in remote directories.
10194         It's manual, but there's no other way to know when the current user
10195         on the local machine, is also the owning user on the remote machine.
10196         (fboundp): Bind `ange-cache'.
10197         (eshell-directory-files-and-attributes): Re-organized the logic a
10198         bit to use `eshell-file-attributes' instead of `file-attributes'.
10199         The former is more sensitive to directories that are read via FTP,
10200         and knows how to use ange-ftp to determine full attribute
10201         information, instead of just the name and last modtime.
10202         (eshell-current-ange-uids): Return the current user id when in a
10203         remote directory.
10204         (eshell-parse-ange-ls): Parse a full directory listing that has
10205         been returned by ange-ftp.
10206         (eshell-file-attributes): This beefed up version of
10207         `file-attributes' is only special if the user is currently in a
10208         remote directory, in which case it does a lot of work to find out
10209         what the real attributes of a file are, as they appear on the
10210         remote machine.  This makes usage of remote directories (i.e.,
10211         ange-ftp pathnames) much more useful.  You can now use Eshell as a
10212         full-fledged FTP client, with much more manipulation ability than
10213         most other clients.
10215         * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
10216         variable, which means that Eshell's du should always be preferred
10217         in remote directories.
10218         (eshell-shuffle-files): Use `eshell-file-attributes', rather than
10219         just `file-attributes'.
10220         (eshell-mvcp-template): Bind `ange-cache', to improve performance
10221         when reading remote directories.  This is an Eshell-specific
10222         variable (not part of ange-ftp).
10223         (eshell/ln): Bind `ange-cache'.
10224         (eshell/du): Added some extra logic for determining when to use
10225         Eshell's du (which is slow), and when to use the external version
10226         (which may or may not exist).
10228         * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
10229         Call `eshell-interactive-process', rather than using
10230         `get-buffer-process', since backgrounded processes don't count in
10231         the context of this function's logic.
10233         * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
10234         `forward-char', so that null strings are parsed correctly.
10236 2000-09-13  John Wiegley  <johnw@gnu.org>
10238         * eshell/em-pred.el (eshell-pred-file-type)
10239         (eshell-pred-file-links, eshell-pred-file-size):
10240         Use `eshell-file-attributes'.  This is more correct over ange-ftp.
10242         * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
10243         that remote file globbing is more efficient.
10245         * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
10246         gathering the files and attributes within a directory.
10248         * eshell/em-unix.el (eshell/cat): If any of the files passed on
10249         the command line is a special file (not a regular file, directory
10250         or symlink), always attempt to call the external version of cat.
10252 2000-09-13  John Wiegley  <johnw@gnu.org>
10254         * eshell/esh-mode.el (eshell-find-tag): Corrections to the
10255         Eshell-friendly version of find-tag.
10257 2000-10-13  Miles Bader  <miles@lsi.nec.co.jp>
10259         * image-file.el (image-file-name-extensions)
10260         (image-file-name-regexps): Add autoload cookies.
10262 2000-10-13  Kenichi Handa  <handa@etl.go.jp>
10264         * international/mule-cmds.el (select-safe-coding-system): If FROM
10265         is string, show it in *Warning* buffer.
10267 2000-10-13  Eli Zaretskii  <eliz@is.elta.co.il>
10269         * startup.el (normal-top-level): Use display-popup-menus-p instead
10270         of window-system.
10271         (command-line): Use display-graphic-p instead of window-system.
10272         (command-line-1): Use display-popup-menus-p and display-mouse-p
10273         instead of window-system.
10275 2000-10-12  Sam Steingold  <sds@gnu.org>
10277         * tooltip.el (tooltip-use-echo-area): New user variable.
10278         (tooltip-show): Use it to choose between `x-show-tip' and `message'.
10280 2000-10-12  Dave Love  <fx@gnu.org>
10282         * recentf.el: Maintainer's checkdoc fixes.
10284         * startup.el (normal-top-level-add-subdirs-to-load-path):
10285         Use character class, not ASCII when matching file names.
10286         (fancy-splash-head): Add trailing slash to URL.
10287         (command-line): Don't require XPM support for toolbar.
10289         * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
10290         (cperl-invalid-face): Revert last change.
10291         (cperl-init-faces): Quote cperl-invalid-face.
10293 2000-10-12  Kenichi Handa  <handa@etl.go.jp>
10295         * startup.el (fancy-splash-text): Remove superfluous quote.
10297 2000-10-12  Gerd Moellmann  <gerd@gnu.org>
10299         * startup.el (fancy-splash-screens): Don't add a pre-command hook.
10300         (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
10301         (command-line-1): Don't use fancy-splash-pending-command.
10302         (fancy-splash-screens-1): Goto point-min after inserting text.
10304         * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
10306         * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
10307         instead of shared-lisp-mode-map.
10309 2000-10-12  Miles Bader  <miles@lsi.nec.co.jp>
10311         * faces.el (header-line): Change tty-variant to use underlining.
10313         * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
10314         (isearch-highlight): Restore lazy-isearch face properties at old
10315         position, and suppress them at new position.
10316         (isearch-dehighlight): Restore lazy-isearch face properties.
10317         (isearch-lazy-highlight-update): Add lazy-isearch overlays even
10318         over the real isearch overlay, but in that case, don't give it a
10319         face property.  Use `push'.
10321 2000-10-12  Kenichi Handa  <handa@etl.go.jp>
10323         * man.el (Man-getpage-in-background): Fix previous change.
10324         Decode the process output only when we are in multibyte mode.
10326 2000-10-11  Dave Love  <fx@gnu.org>
10328         * info.el (Info-mode-menu): Fix some help.
10329         (info-tool-bar-map): Add entry for Info-last.
10331         * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
10332         * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
10333         * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
10334         * toolbar/cut.xpm, toolbar/mail_compose.xpm:
10335         * toolbar/search-replace.xpm, toolbar/exit.xpm:
10336         * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
10337         * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
10338         * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
10339         * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
10340         * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
10341         Reduce colour requirements to 25 overall.  (Probably wants
10342         revisiting from the originals to reduce further.)
10344 2000-10-11  Eli Zaretskii  <eliz@is.elta.co.il>
10346         * hexl.el (hexlify-buffer): Bind coding-system-for-write to
10347         buffer-file-coding-system, instead of raw-text.
10348         (dehexlify-buffer): Bind coding-system-for-read to
10349         buffer-file-coding-system, instead of raw-text.
10351 2000-10-11  Sam Steingold  <sds@gnu.org>
10353         * progmodes/cperl-mode.el (cperl-invalid-face): Double-quote
10354         `underline' - fixes the bug introduced on 2000-09-21.
10356 2000-10-11  Dave Love  <fx@gnu.org>
10358         * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
10359         Avoid compiler warnings.
10360         (scheme-mode): Doc fix.
10361         (scheme-font-lock-keywords-1): Match `define-syntax'.
10363 2000-10-11  Miles Bader  <miles@lsi.nec.co.jp>
10365         * faces.el (frame-set-background-mode): Pay attention to saved
10366         face specs as well as default ones.  Only do anything if the
10367         bg-mode or display-type has actually changed.  Use `dolist'.
10368         (region): Make dark-background `region' face less in-your-face.
10370 2000-10-10  Sam Steingold  <sds@gnu.org>
10372         * chistory.el, ielm.el, ledit.el:
10373         * progmodes/inf-lisp.el, progmodes/scheme.el:
10374         Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
10376 2000-10-10  Stefan Monnier  <monnier@cs.yale.edu>
10378         * textmodes/texinfo.el: Update copyright and fix typo.
10380         * desktop.el (desktop-modes-not-to-save): New var.
10381         (desktop-save-buffer-p): Use it.
10382         Also, obey desktop-buffers-not-to-save even for non-file buffers.
10383         (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
10385 2000-10-10  Dave Love  <fx@gnu.org>
10387         * toolbar/tool-bar.el (tool-bar-add-item)
10388         (tool-bar-add-item-from-menu): Don't favour XPM icons on mono display.
10390         * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
10391         * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
10392         * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
10393         * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
10394         * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
10395         * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
10396         * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
10397         * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
10398         * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
10399         * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
10400         the .xpms; probably need retouching.
10402 2000-10-10  Miles Bader  <miles@lsi.nec.co.jp>
10404         * subr.el (add-to-list): Add optional argument APPEND.
10405         * battery.el (display-battery): Use `add-to-list'.
10407 2000-10-09  Thien-Thi Nguyen  <ttn@gnu.org>
10409         * play/zone.el (zone-timer, zone-wc-tbl): Rework these vars as symbol
10410         properties.
10411         (zone, zone-when-idle, zone-leave-me-alone)
10412         (zone-pgm-whack-chars): Use new symbol properties.
10414         * battery.el (display-battery): Doc spelling fix.
10416         * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
10417         property.
10419 2000-10-09  Dave Love  <fx@gnu.org>
10421         * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
10422         has been initialized before calling tool-bar-setup.
10423         (tool-bar-add-item-from-menu): Add autoload cookie.
10425 2000-10-09  Eli Zaretskii  <eliz@is.elta.co.il>
10427         * menu-bar.el (send-mail-item-name): New function.
10428         (menu-bar-tools-menu) <compose-mail>: Use it to display the value
10429         of mail-user-agent in the menu.  Don't display the "Send Mail"
10430         item if mail-user-agent is nil or its value is ignore.
10431         (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
10432         if read-mail-command is nil or its value is ignore.
10434         * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
10436 2000-10-09  Miles Bader  <miles@gnu.org>
10438         * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
10439         Correct image size.
10440         * toolbar/left_arrow.xpm: Correct image size.
10442         * jka-compr.el: Don't call `jka-compr-install' when loading (it
10443         will be done by the definition of `auto-compression-mode' if
10444         necessary.  Move code to uninstall existing file-name handler
10445         before definition of `auto-compression-mode'.
10447         * image-file.el (auto-image-file-mode): Move to the end of the
10448         file, because `define-minor-mode' actually calls the mode-function
10449         if the associated variable is non-nil, which requires that all
10450         needed functions be already defined.
10452         * mouse.el (popup-menu): Balance parens.
10454 2000-10-08  Stefan Monnier  <monnier@cs.yale.edu>
10456         * mouse.el (popup-menu): Move the command call outside the loop
10457         so that popup-menu returns whatever the command returns.
10459         * progmodes/etags.el: Docstring fixes.  Maintainer line updated.
10460         (initialize-new-tags-table): Use run-hook-with-args-until-success.
10461         (find-tag): Use pop-to-buffer if switch-to-buffer failed.
10462         (tags-table-format-functions): Renamed from tags-table-format-hooks.
10464         * vc.el (vc-version-diff): diff-switches can be a list.
10465         Use relative filenames for prettier output.
10467         * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
10468         (vc-post-command-functions): Remove old-VC compatibility code.
10470         * newcomment.el (comment-indent-default): Autoload.
10472         * font-lock.el (font-lock-defaults): Make buffer-local.
10473         (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
10474         (font-lock-choose-keywords):
10475         Ignore LEVEL unless KEYWORDS is a list of syms.
10476         (c-keywords, c++-keywords, objc-keywords, java-keywords):
10477         Don't wrap regexp-opt things in \(...\) unnecessarily.
10479         * jit-lock.el: Don't require font-lock any more.
10480         (jit-lock-functions): Make buffer-local.
10481         (jit-lock-saved-fontify-buffer-function): Remove.
10482         (jit-lock-mode): Remove autoload cookie.
10483         Remove font-lock specific code.
10484         (jit-lock-unregister): Don't bother handling complex hooks any more.
10485         (jit-lock-refontify): New function.
10486         (jit-lock-fontify-buffer): Use it.
10487         (jit-lock-function-1): Replaced by jit-lock-fontify-now.
10488         (jit-lock-fontify-now): Renamed from jit-lock-function-1.
10489         Add optional args START and END.
10490         Never call font-lock-fontify-region directly.
10491         (jit-lock-function, jit-lock-stealth-fontify): Use it.
10493         * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
10495 2000-10-08  Dave Love  <fx@gnu.org>
10497         * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
10499         * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
10501         * play/studly.el (studlify-region, studlify-word): Add autoload
10502         cookie.
10504         * play/morse.el (morse-region, unmorse-region): Add autoload
10505         cookie.
10507         * play/spook.el (spook-phrases-file): Use expand-file-name, not
10508         concat.
10510         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
10511         insist on symbols starting with word syntax.
10512         (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
10513         (eval-defun-1): Doc fix.
10514         (indent-sexp): Use nconc to build up indent-stack.
10516         * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
10517         Gnus with little use.
10518         (mail-setup-hook): Add mail-abbrevs-setup to options.
10520         * recentf.el: Doc fixes.
10522         * vcursor.el (vcursor-cs-binding): Remove compatibility code.
10523         Clean up remainder.
10525         * timezone.el (timezone-parse-date): Doc fix.  Fix regexps for (5)
10526         without timezone and (8) with timezone to enforce some whitespace.
10527         Simplify code somewhat.
10529         * options.el (list-options): Doc that you should use customize.
10531         * iswitchb.el (iswitchb-mode): Add :require.
10533         * info.el (Info-goto-node, Info-menu): Doc fix.
10534         (Info-mode-menu): Bind beginning-of-buffer, Info-edit
10535         (info-tool-bar-map): New variable.
10536         (Info-mode): Use it.
10537         (Info-edit-map): Define all in defvar.
10538         (speedbar-attached-frame): Avoid compiler warning.
10540         * toolbar/tool-bar.el (tool-bar-map): Define it empty.
10541         (global-map): Bind [tool-bar] to a filtered map.
10542         (tool-bar-add-item): Remove MAP arg.  Allow PBM icons.
10543         (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
10544         Allow PBM icons.
10545         (tool-bar-setup): Adjust calls of tool-bar-add-item.
10547         * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
10548         * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
10549         * toolbar/right_arrow.xpm: New files.  Renamed from tigert's
10550         icons, except up_arrow, which is left-arrow rotated.
10552         * imenu.el (imenu-add-to-menubar): Fix last change.
10554 2000-10-08  Peter Breton  <pbreton@ne.mediaone.net>
10556         * generic-x.el (rul-generic-mode): Remove eval-when-compile
10557         statements. Suggested by Stefan Monnier  <monnier@cs.yale.edu>.
10559 2000-10-08  Eli Zaretskii  <eliz@is.elta.co.il>
10561         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
10562         typos in doc strings.
10564         * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
10565         the doc strings how to customize Font Lock faces.
10567         * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
10568         computing growth when dragging the header line.
10570 2000-10-08  Eli Zaretskii  <eliz@is.elta.co.il>
10572         * simple.el (kill-line): Doc fix.
10574 2000-10-08  Miles Bader  <miles@gnu.org>
10576         * faces.el (secondary-selection): Make foreground visible on tty.
10578         * jka-compr.el (auto-compression-mode): Move to the end of the
10579         file, because `define-minor-mode' actually calls the mode-function
10580         if the associated variable is non-nil, which requires that all
10581         needed functions be already defined.
10582         (with-auto-compression-mode): Add autoload cookie.
10584 2000-10-07  Eli Zaretskii  <eliz@is.elta.co.il>
10586         * files.el (find-backup-file-name) [ms-dos]: If support for long
10587         file names is not available, behave as if version-control were set
10588         to never.
10590 2000-10-07  Dave Love  <fx@gnu.org>
10592         * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
10593         (browse-url-gnome-moz): New function.
10594         (browse-url-browser-function): Use it.
10595         Suggested by Colin Walters <walters@cis.ohio-state.edu>.
10597 2000-10-07  Stefan Monnier  <monnier@cs.yale.edu>
10599         * indent.el (tab-always-indent): New var.
10600         (indent-for-tab-command): Use it.
10602         * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
10603         raise an error.  This way it can still default to a sane value.
10605 2000-10-06  Stefan Monnier  <monnier@cs.yale.edu>
10607         * startup.el (fancy-splash-screens): Use local rather than global map.
10608         Don't use `update-menu-bindings' any more.
10609         Get rid of assumptions about keymap representation.
10611 2000-10-06  Dave Love  <fx@gnu.org>
10613         * textmodes/fill.el (sentence-end-double-space)
10614         (sentence-end-without-period):  Doc fix.
10615         (adaptive-fill-regexp): Purecopy.
10616         (unjustify-current-line): Use line-end-position.
10617         (fill-individual-paragraphs-prefix): Use line-beginning-position.
10619         * net/eudc-vars.el (eudc): Add :version, :link.
10621         * international/mule-conf.el (file-coding-system-alist): Use \', not $.
10623         * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
10624         Fix for define-minor-mode.
10625         (function-at-point): Alias to function-called-at-point.
10627         * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
10629         * simple.el (backward-word): Doc fix.
10631         * image-file.el (image-file-name-regexp): image-file-regexps ->
10632         image-file-name-regexps.
10633         (image-file-name-extensions): Add pbm.
10635 2000-10-06  Stefan Monnier  <monnier@cs.yale.edu>
10637         * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
10638         and add filename to the names so that diff-mode can jump to source.
10640         * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
10641         (tex-font-lock-keywords, tex-font-lock-keywords-2)
10642         (tex-font-lock-keywords-1): Remove.
10643         (font-lock-turn-on-thing-lock): Use jit-lock-register.
10644         (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
10645         (font-lock-default-fontify-region):
10646         Expand beg..end correctly when just following a multiline region.
10647         (font-lock-fontify-anchored-keywords):
10648         Include the anchor text as part of the multiline.
10650 2000-10-06  Gerd Moellmann  <gerd@gnu.org>
10652         * loadup.el (toplevel): Load `loaddefs' before `help' because the
10653         latter needs the autoloaded define-minor-mode macro during the
10654         bootstrap.
10656         * startup.el (command-line): For now, activate tool-bar-mode only
10657         if XPM images are supported.
10659         * mouse.el (mouse-drag-header-line): Don't allow resizing a
10660         window by dragging a header-line at the top of the frame; that's
10661         confusing because the header-line doesn't move.
10662         (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
10663         of treating the event as a list.  Some cleanup.
10665 2000-10-06  Miles Bader  <miles@gnu.org>
10667         * simple.el (display-message-or-buffer): New function.
10668         (shell-command-on-region): Use `display-message-or-buffer'.
10670         * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
10671         docstring parts.
10673         * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
10674         (smbclient-prompt-regexp): Add usage note to doc string.
10675         (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
10676         (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
10677         Use add-hook for adding the comint filter function, and only do so
10678         if it's not already in the global hook list.
10679         (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
10680         to `make-local-variable'.
10681         (nslookup-font-lock-keywords): Remove prompt entry.
10682         (nslookup): Don't set the process-filter.
10683         (finger): Exit the loop correctly when the regexps list runs out.
10684         (ftp, smbclient, smbclient-list-shares):
10685         Set the real major mode immediately, not after execing.
10686         Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
10688         * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
10690 2000-10-05  Stefan Monnier  <monnier@cs.yale.edu>
10692         * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
10694         * which-func.el (which-func-format): Remove spurious space.
10695         (which-func-mode): Don't make it permanent-local.
10696         (which-func-ff-hook): Allow which-func-maxout to be nil.
10697         (which-func-update): Simplify a bit.  Only run if which-func-mode is t.
10698         (which-func-mode): Simplify.
10699         Use post-command-idle-hook rather than post-command-hook.
10700         Go through all buffers and update their state.
10701         (which-function): Also try add-log-current-defun-function.
10703         * vc.el (with-vc-properties): Use conses rather than length-2 lists.
10704         (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
10705         Update call to with-vc-properties accordingly.
10706         (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
10707         (vc-revert-buffer): More careful about window selection and deletion.
10708         (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
10710         * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
10711         (cvs-retrieve-revision): Reuse a pre-existing buffer.
10712         (cvs-dired-action): Change the default to quickdir.
10714         * newcomment.el (comment-indent): Delegate to indent-according-to-mode
10715         if comment-indent-function returns nil.
10716         (comment-indent-default): New function.
10717         (comment-indent-function): Use it and document the new semantics.
10719         * image-file.el: Docstring fixes.
10721         * help.el (help-xref-on-pp): Use match-string.
10722         (describe-variable): New arg BUFFER.
10723         Store the current buffer in the help-xref-stack.
10724         (temp-buffer-resize-mode): Use define-minor-mode.
10726         * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
10727         consistently with its docstring.
10728         Set jit-lock-first-unfontify-pos in an idempotent way.
10729         (jit-lock-register): Autoload and add arg CONTEXTUAL.
10731 2000-10-05  Alex Schroeder  <alex@gnu.org>
10733         * sql.el (sql-mysql-options): New variable.
10734         (sql-mysql): Use it.
10736 2000-10-05  Miles Bader  <miles@lsi.nec.co.jp>
10738         * image.el (image): New group.
10740         * smerge-mode.el (smerge-mine-face, smerge-other-face)
10741         (smerge-base-face, smerge-markers-face): Add dark-background variants.
10743 2000-10-04  Peter Breton  <pbreton@ne.mediaone.net>
10745         * net/net-utils.el (nslookup-font-lock-keywords)
10746         (ftp-font-lock-keywords, smbclient-font-lock-keywords):
10747         Ignore the value of wqindow-system; always define keywords
10749 2000-10-05  Kenichi Handa  <handa@etl.go.jp>
10751         * startup.el (fancy-splash-screens): Remove the code for
10752         debugging; `(trace-to-stderr "EXITTT\n")'.
10754 2000-10-05  Miles Bader  <miles@gnu.org>
10756         * diff-mode.el (diff-goto-source): Update call to
10757         `diff-hunk-status-msg' to reflect new REV variable.
10759 2000-10-04  Stefan Monnier  <monnier@cs.yale.edu>
10761         * progmodes/icon.el (icon-mode):
10762         Don't gratuitously override the default for comment-column.
10764         * vc-hooks.el (vc-mode-line): Fix interactive spec.
10766         * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
10767         (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
10768         (jit-lock-functions): New var.
10769         (jit-lock-function-1): Use it if non-nil.
10770         Don't switch the syntax-table.  Don't set parse-sexp-lookup-properties.
10771         Set the `fontified' property before doing the fontification to avoid
10772         repeatedly going through the same error.
10773         Don't turn errors into messages.
10774         (jit-lock-register, jit-lock-unregister): New functions.
10776         * dired.el (dired-mark-pop-up): Turn comment into docstring.
10777         Use with-current-buffer.
10779         * dired-aux.el (dired-do-create-files, dired-kill-tree):
10780         Turn comment into docstring.
10782         * apropos.el (apropos-mode): Use define-derived-mode.
10784 2000-10-04  Gerd Moellmann  <gerd@gnu.org>
10786         * startup.el (fancy-splash-pending-command): New variable.
10787         (fancy-splash-pre-command): New function.
10788         (fancy-splash-screens): Rewritten.
10789         (command-line-1): If fancy-splash-pending-command is set, call it
10790         interactively.
10792 2000-10-04  Dave Love  <fx@gnu.org>
10794         * toolbar/tool-bar.el (tool-bar-setup): New function.
10795         (tool-bar-mode): Use it.
10797         * subr.el (substitute-key-definition): Doc fix.
10798         (play-sound-file): New command.
10800 2000-10-04  Andre Spiegel  <spiegel@gnu.org>
10802         * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
10803         vc-version-backup-file-name): New functions.
10805         * files.el (basic-save-buffer): Call vc-before-save before saving.
10807         * vc-cvs.el (vc-cvs-make-version-backups): Return t if
10808         vc-cvs-stay-local-p.
10810         * vc.el (vc-revert-buffer): Handle empty diff properly.
10811         (vc-version-backup-file): New function.
10812         (vc-checkout): Create a version backup if necessary.
10813         (vc-checkin): If a version backup file exists, delete it.
10814         (vc-version-diff): Diff locally using version backups, if available.
10815         (vc-revert-file): If there's a version backup, revert locally.
10816         (vc-transfer-file): Use version backup for base version, if
10817         available.  If not, ask for confirmation whether to get it from the
10818         server.  Update mode line before check-in.
10820 2000-10-04  Dave Love  <fx@gnu.org>
10822         * toolbar/tool-bar.el (tool-bar-setup): New function.
10823         (tool-bar-mode): Use it.
10825 2000-10-04  Peter Breton  <pbreton@ne.mediaone.net>
10827         * net/net-utils.el (nslookup-font-lock-keywords)
10828         (ftp-font-lock-keywords, smbclient-font-lock-keywords):
10829         Only set if window-system is non-nil
10830         (net-utils-run-program): Returns buffer.
10831         (network-connection-reconnect): Added this function.
10833         * generic.el:
10834         Incorporates extensive cleanup and docfixes by
10835         Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
10836         Uses cl compile-time macros.
10837         (generic-mode-name, generic-comment-list)
10838         (generic-keywords-list, generic-font-lock-expressions)
10839         (generic-mode-function-list, generic-mode-syntax-table):
10840         Removed variables.
10841         (generic-mode-alist): Renamed to generic-mode-list.
10842         (generic-find-file-regexp): Default changed to "^#".
10843         (generic-read-type): Uses completing read on generic-mode-list.
10844         (generic-mode-sanity-check): removed this function.
10845         (generic-add-to-auto-mode): Removed this function
10846         (generic-mode-internal): Bind mode-specific definitions
10847         into function instead of putting them in alist.
10848         (generic-mode-set-comments): Reworked extensively.
10849         (generic-mode-find-file-hook): Simplified regexp searching
10850         (generic-make-keywords-list): Omit extra pair of parens
10852         * find-lisp.el (find-lisp-find-files-internal):
10853         Make sure directory name ends with "/".
10855         * generic-x.el (apache-conf-generic-mode):
10856         Regexp now allows leading whitespace.
10857         (rc-generic-mode): Added eval-when-compile
10858         around generic-make-keywords-list.
10859         Deleted duplicate regexp
10860         (rul-generic-mode): Added eval-when-compile
10861         around generic-make-keywords-list.
10862         (etc-fstab-generic-mode): New generic mode.
10863         (rul-generic-mode): Removed one eval-when-compile
10864         which caused a max-specpdl-size exceeded error.
10866 2000-10-04  Miles Bader  <miles@gnu.org>
10868         * simple.el (minibuffer-temporary-goal-position): New variable.
10869         (next-history-element): Try to keep the position of point in the
10870         input string constant.
10872         * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
10873         (dired-do-create-files): If there's only one file, pass it in as
10874         the DEFAULT arg to dired-mark-read-file-name.
10876 2000-10-03  Stefan Monnier  <monnier@cs.yale.edu>
10878         * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
10879         (diff-goto-source): Be smarter when choosing REVERSE or not.
10881         * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
10882         (texinfo-mode-menu): Add an explicit shortcut for update all.
10884 2000-10-03  Andre Spiegel  <spiegel@gnu.org>
10886         * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
10887         factorize backend-specific code cleanly (this was essentially
10888         conceived by Stefan Monnier).
10889         (vc-unregister): Function removed.
10890         (vc-revert-file): New function.
10891         (vc-revert-buffer): Delegate some of the work to it.
10893         * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
10894         default branch unconditionally.
10895         (vc-rcs-set-default-branch): New function.
10896         (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
10897         (vc-rcs-checkin): If an appropriate default branch has been set,
10898         force creation of that branch.
10899         (vc-rcs-receive-file): Rewritten to contain only backend-specific
10900         code (as suggested by Stefan Monnier).
10902 2000-10-02  Gerd Moellmann  <gerd@gnu.org>
10904         * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
10905         highlighting overlay with a different face over the overlay
10906         isearch uses to highlight the current match because that can lead
10907         to bad face combinations.
10909         * loadup.el (toplevel): Load faces before isearch.
10911         * isearch.el (isearch-faces): New custom group.
10912         (isearch): New defface; was already tested for in the code.
10913         (isearch-lazy-highlight-face): Changed to defface from defcustom.
10914         (isearch-highlight): Always use face `isearch'.
10916 2000-10-02  Dave Love  <fx@gnu.org>
10918         * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
10919         unused vars.  Treat byte-constant2 like byte-constant.  Fix bogus
10920         comparison of opcode with operand.
10922 2000-10-03  Miles Bader  <miles@gnu.org>
10924         * play/yow.el (yow): Don't display multi-line quotations in a *Help*
10925         buffer, since the echo area will now grow to accommodate them.
10927 2000-10-02  Andre Spiegel  <spiegel@gnu.org>
10929         * vc-hooks.el (vc-registered): If FILE used to be registered under
10930         a certain backend, try that one first.
10932         * vc.el (vc-responsible-backend): Undo the previous change in the
10933         argument list.  Handle multiple backends correctly.
10934         (vc-find-new-backend): Function removed.
10935         (vc-register): Use vc-responsible-backend, as before.
10936         (vc-next-action-on-file): Do use vc-registered, not vc-backend.
10938 2000-10-02  Gerd Moellmann  <gerd@gnu.org>
10940         * startup.el (fancy-splash-head): Change message below the
10941         logo.
10943 2000-10-02  Miles Bader  <miles@lsi.nec.co.jp>
10945         * diff-mode.el (diff-goto-source): Emit a status message.
10946         (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
10947         (diff-test-hunk): Fix doc string.
10948         (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
10949         (diff-advance-after-apply-hunk): New variable.
10950         (diff-apply-hunk): Don't return a value.
10952 2000-10-01  Stefan Monnier  <monnier@cs.yale.edu>
10954         * vc.el (vc-editable-p): Minor optimization.
10955         (edit-vc-file, vc-next-action-on-file): Don't use find-file.
10956         (vc-find-new-backend): New function split from vc-responsible-backend.
10957         (vc-register): Use it.
10958         (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
10959         (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
10960         (vc-default-unregister, vc-revert-buffer): Docstring fix.
10961         (vc-clear-headers): Don't use find-file.
10962         (vc-revert-buffer): Use `and' again (must have been a braino).
10963         (vc-switch-backend): Only prompt if requested.
10964         Short circuit if nothing is to be done.
10965         Don't use vc-resynch-buffer which could lose unsaved editing.
10966         (vc-default-receive-file): Update call to vc-unregister.
10967         (with-vc-file, vc-next-action-on-file):
10968         Use vc-backend rather than vc-registered.
10969         (vc-next-action-on-file): Use intern-soft.
10970         Deal with read-only *vc-diff* buffer.
10971         (vc-transfer-file): Docstring fix.
10973         * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
10974         (vc-rcs-receive-file): Avoid with-vc-properties.
10975         Update call to vc-unregister.
10976         Use constant `RCS' rather than (dynamically bound) var `backend'.
10978 2000-10-01  Andre Spiegel  <spiegel@gnu.org>
10980         * vc.el (vc-next-action-on-file): Update mode line only if file
10981         is visited.
10982         (vc-start-entry): New argument initial-contents.  Don't visit the file
10983         if it isn't already visited.  Brought documentation up-to-date.
10984         (vc-next-action, vc-register): Updated calls to vc-start-entry.
10985         (vc-checkin): New optional arg initial-contents, which is passed to
10986         vc-start-entry.
10987         (vc-finish-logentry): Make sure to bury log buffer only if there
10988         really is one.  Call `vc-resynch-buffer' on log-file, not
10989         buffer-file-name.
10990         (vc-default-comment-history, vc-default-wash-log): New functions.
10991         (vc-index-of): Removed.
10992         (vc-transfer-file): Make do without the above.
10993         (vc-default-receive-file): Call comment-history unconditionally.  Pass
10994         the resulting string to vc-checkin, instead of inserting it into the
10995         comment ring.
10997         * vc-rcs.el (vc-rcs-receive-file): Call comment-history
10998         unconditionally.  Use the comments as initial contents of the log
10999         entry buffer.  Document the trick to force branch creation with no
11000         changes.
11002 2000-10-01  Miles Bader  <miles@gnu.org>
11004         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
11005         `recenter' with an arg to prevent redrawing the display.
11007 2000-09-30  Stefan Monnier  <monnier@cs.yale.edu>
11009         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
11011         * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
11013         * progmodes/c-mode.el (c-mode):
11014         Don't gratuitously override the default for comment-column.
11016         * textmodes/tex-mode.el (latex-metasection-list): New var.
11017         (latex-imenu-create-index): Use it.
11018         Move the regexp construction outside loops (and use push).
11019         (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
11020         (tex-font-lock-keywords): Moved from font-lock.el.
11021         (tex-comment-indent): Remove.
11022         (tex-common-initialization): Don't set comment-indent-function.
11023         (latex-block-default): New var.
11024         (tex-latex-block): Use it to provide a default choice.
11025         Add any unknown choice to latex-block-names.
11026         Insert [...] after {...}.
11027         (tex-last-unended-begin): Simplify regexp.
11028         (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
11029         (latex-forward-sexp-1, latex-forward-sexp): New functions.
11030         (latex-mode): Set forward-sexp-function.
11032         * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
11033         Add regexp for @ignore ... @end ignore.
11034         (texinfo-heading-face): New face.
11035         (texinfo-font-lock-keywords): Use it.
11036         (texinfo-mode-menu): New menu.
11037         (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
11038         New functions.
11039         (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
11040         (texinfo-section-types-regexp, texinfo-section-level-regexp)
11041         (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
11042         Remove declaration.
11043         (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
11045         * delsel.el (delete-selection-mode): Use define-minor-mode.
11047         * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
11049 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
11051         * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
11053 2000-09-30  Gerd Moellmann  <gerd@gnu.org>
11055         * replace.el (keep-lines-read-args): New function.
11056         (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
11057         read arguments interactively.  Add parameters RSTART and REND.
11058         Operate on the active region in Transient Mark mode.
11060         * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
11062         * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
11063         (authors-obsolete-files-regexps): New variable.
11064         (authors-add): Don't record changes in obsolete files.
11066 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
11068         * autoinsert.el (auto-insert-mode): Use define-minor-mode.
11070         * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
11071         (comment-indent): Make sure there's a space between code and comment.
11072         Shift comments left to avoid going past fill-column.
11074 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
11076         * startup.el (startup-echo-area-message): New function.
11077         (display-startup-echo-area-message): Use it.
11078         (fancy-splash-screens): Rewritten to use keymaps and a timer.
11079         (fancy-splash-default-action): New function.
11080         (fancy-splash-screens-1): New function.
11081         (fancy-splash-head): Put a help-echo and a keymap under the image.
11083 2000-09-29  Stefan Monnier  <monnier@cs.yale.edu>
11085         * diff-mode.el (diff-add-log-file-name): Remove.
11086         (diff-mode): Use add-log-buffer-file-name-function.
11088         * add-log.el (find-change-log): New arg BUFFER-FILE.
11089         (add-log-file-name): Obey add-log-file-name-function.
11090         (add-log-buffer-file-name-function): New var.
11091         (add-change-log-entry): Use it.
11093 2000-09-29  Miles Bader  <miles@gnu.org>
11095         * image-file.el (image-file-name-extensions): New variable.
11096         (image-file-name-regexps): Renamed from `image-file-regexps'.
11097         New default value is nil.  Call `auto-image-file-mode'.
11098         (image-file-name-regexp): New function.
11099         (auto-image-file-mode): New minor mode.
11100         (insert-image-file): Don't make conditional on the image-file
11101         handler being enabled.
11102         (image-file-handler): Make the call here conditional instead.
11103         (set-image-file-handler-enabled, enable-image-file-handler)
11104         (disable-image-file-handler): Functions removed.
11106         * emacs-lisp/authors.el (authors-print): Rephrase many-files
11107         string.
11109 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
11111         * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
11112         it's a function from CL.
11113         (latex-imenu-create-index): Replace eval-when-compile with progn
11114         because latex-section-alist is not bound while compiling.
11116 2000-09-28  Stefan Monnier  <monnier@cs.yale.edu>
11118         * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
11119         (outline-mode): Use define-derived-mode.
11121         * progmodes/perl-mode.el (perl-mode):
11122         * progmodes/awk-mode.el (awk-mode):
11123         * progmodes/asm-mode.el (asm-mode):
11124         Don't gratuitously override the default for comment-column.
11126         * emacs-lisp/lisp.el (lisp-complete-symbol):
11127         Distinguish the let-binding case from the funcall case.
11128         (forward-sexp-function): New variable.
11129         (forward-sexp): Use it.
11131         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
11132         (easy-mmode-defmap): Remove the now useless autoload.
11134         * time.el (display-time-mode): Use define-minor-mode.
11136         * subr.el (add-minor-mode): Don't eval NAME.
11137         Don't depend on the presence of TOGGLE-FUN for any special behavior.
11138         Use if rather than cond.
11140         * simple.el (read-expression-map): Define more properly.
11141         (comment-indent-hook): Remove.
11142         (string-to-syntax): Bug fix.
11144         * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
11145         (cvs-ediff-diff): Fix typo.
11146         (cvs-revert-if-needed): Don't bother preserving read-only.
11148         * paren.el (show-paren-mode): Use define-minor-mode.
11150         * jka-compr.el (auto-compression-mode): Use define-minor-mode.
11151         (toggle-auto-compression): Remove.
11152         (jka-compr-build-file-regexp): Remove useless grouping.
11154         * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
11155         Avoid user-reserved bindings.
11156         (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
11157         (diff-header-face): Revert to grey85.
11159         * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
11161         * complete.el (partial-completion-mode) <defcustom>: Remove.
11162         (partial-completion-mode): Use define-minor-mode.
11163         (PC-do-completion): Understand `completion-auto-help = delay'
11164         to mean to popup the completion buffer only the second time.
11165         (PC-include-file-all-completions, PC-include-file-all-completions)
11166         (PC-include-file-all-completions): Don't quote lambda.
11168         * comint.el (comint-mode-hook): Docstring fix.
11169         (comint-mode): Use define-derived-mode.
11170         (comint-mode-map): Remove obsolete comment.
11171         (make-comint): Minor stylistic change.
11172         (comint-insert-clicked-input): Be more careful to find the overlay.
11173         Use this-command-keys rather than hardcoding mouse-2.
11175         * font-lock.el: Replace confusing (,@ with ,
11176         (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
11177         Don't use regexp-opt-depth.  Spice up the regexp for args.
11178         Don't distinguish between cmds that can take an opt arg or not.
11179         Use `append' and `prepend' rather than `keep'.
11181         * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
11182         (latex-outline-regexp): New var.
11183         (latex-outline-level): New fun.
11184         (latex-section-alist): New var.
11185         (latex-imenu-create-index): Use it.  Use `push' as well.
11186         (tex-shell-map): Initialize it properly.
11187         (tex-mode): Minor stylistic change.
11188         (plain-tex-mode): Use define-derived-mode.
11189         (latex-mode): Use define-derived-mode.
11190         Construct the paragraph regexps in a more readable way.
11191         Set the buffer-local outline-{level,regexp} vars.
11192         (slitex-mode): Derive from latex-mode.
11193         (tex-common-initialization): Don't kill-all-vars anymore.
11194         Add setting for comment-add and font-lock-defaults.
11195         (tex-start-shell): Use with-current-buffer and don't re-init keymap.
11196         (tex-main-file): New fun.  Obey TeX-master as well and remove `.tex'.
11197         (tex-start-tex): New arg DIR (and send a chdir command for it).
11198         Also display the shell buffer and save it in tex-last-buffer-texed.
11199         (tex-region): Use expand-file-name rather than concat.
11200         Remove code made useless by changes in tex-start-tex.
11201         (tex-file): Use tex-main-file and adapt to new tex-start-tex.
11203         * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
11205 2000-09-28  Dave Love  <fx@gnu.org>
11207         * eshell/eshell.el (eshell) <defgroup>: Add :version.
11209 2000-09-28  Gerd Moellmann  <gerd@gnu.org>
11211         * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
11212         `append'.
11214 2000-09-28  Stefan Monnier  <monnier@cs.yale.edu>
11216         * info.el (Info-extract-pointer): Undo last change.
11217         Instead, fix the position of the `bound' arg to re-search-backward.
11219 2000-09-27  Stefan Monnier  <monnier@cs.yale.edu>
11221         * info.el (Info-extract-pointer):
11222         Widen more carefully, to avoid finding pointers in other nodes.
11223         (Info-index): Use push.
11225 2000-09-27  Gerd Moellmann  <gerd@gnu.org>
11227         * frame.el (set-frame-font): Remove call to obsolete function
11228         frame-update-faces.
11229         (set-foreground-color, set-background-color): Likewise for
11230         frame-update-face-colors.
11232 2000-09-27  Miles Bader  <miles@gnu.org>
11234         * image-file.el: New file.
11236 2000-09-27  Gerd Moellmann  <gerd@gnu.org>
11238         * frame.el (frame-notice-user-settings): Don't call
11239         frame-update-faces, which is a no-op now.
11241         * ediff-wind.el (ediff-control-frame-parameters): Add zero
11242         tool-bar-lines.
11244 2000-09-27  Dave Love  <fx@gnu.org>
11246         * mouse.el: Fix last change.
11248 2000-09-27  Miles Bader  <miles@lsi.nec.co.jp>
11250         * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
11252 2000-09-22  Kenichi Handa  <handa@etl.go.jp>
11254         * international/quail.el (quail-help): The output message is
11255         improved.
11257 2000-09-26  Dave Love  <fx@gnu.org>
11259         * mouse.el (popup-menu): If POSITION is nil, set it using
11260         mouse-position.
11262 2000-09-25  Sam Steingold  <sds@gnu.org>
11264         * net/browse-url.el (browse-url-file-url): Check for null maps.
11266 2000-09-26  Gerd Moellmann  <gerd@gnu.org>
11268         * frame.el (frame-notice-user-settings): Don't add a
11269         tool-bar-lines frame parameter to default-frame-alist in batch mode.
11271         * frame.el (frame-notice-user-settings):
11272         Make tool-bar-mode and default-frame-alist consistent.
11274         * toolbar/tool-bar.el (tool-bar-help): New function.
11276 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
11278         * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
11279         current-load-list in top-level forms.  Else this leaks a cons cell
11280         every time a defun is called.
11282         * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
11284 2000-09-25  Dave Love  <fx@gnu.org>
11286         * startup.el (fancy-splash-head): Check XPM is available.
11288         * autoinsert.el (auto-insert): Doc fix.
11289         (auto-insert-alist): Following GNU notices, don't say `copyright
11290         _by_'.  Use line-beginning-position.
11291         (auto-insert): Check buffer-file-name is non-nil before use.
11293 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
11295         * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
11296         starting with `@def' or `@multitable', in addition to ones
11297         specified by the user in auto-fill-inhibit-regexp.
11299 2000-09-25  Markus Rost  <rost@math.ohio-state.edu>
11301         * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
11302         rmail-dont-reply-to-names matches the empty string.
11304 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
11306         * startup.el (command-line-1, fancy-splash-text): Change the
11307         text to sound more friendly.
11309 2000-09-23  Thien-Thi Nguyen  <ttn@gnu.org>
11311         * progmodes/hideshow.el: Update author email address.
11312         Generally, sync w/ maintainer version 5.22.
11313         (hs-hide-all-non-comment-function): New var.
11314         (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
11315         (hs-hide-all): Use `hs-hide-all-non-comment-function'.
11316         (hs-show-region): Delete this command.
11317         (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
11319 2000-09-22  Dave Love  <fx@gnu.org>
11321         * hl-line.el (hl-line-overlay): Don't make it buffer-local.
11322         (hl-line-highlight): Specify buffer when moving overlay.
11324         * progmodes/fortran.el (fortran-mode): Locally set
11325         normal-auto-fill-function.
11326         (fortran-auto-fill-mode): Just alias to auto-fill-mode.
11327         (fortran-mode-map): Adjust auto-fill menu entry.
11329 2000-09-22  Gerd Moellmann  <gerd@gnu.org>
11331         * vc-rcs.el (toplevel): Require `vc' when compiling.
11333         * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
11335 2000-09-22  Andre Spiegel  <spiegel@gnu.org>
11337         * vc.el (vc-switch-backend): Signal an error if the file is not
11338         registered under the new backend.
11340         * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
11341         without explicit revision number.
11343 2000-09-21  Stefan Monnier  <monnier@cs.yale.edu>
11345         * diff-mode.el (diff-file-header-face): Reset to its previous value.
11346         (diff-hunk-text): Correctly use offsets rather than buffer-positions.
11347         (diff-xor): New function.
11348         (diff-find-source-location): Use it.  Fix a stupid name clash.
11349         (diff-hunk-status-msg): New function.
11350         (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
11351         (diff-test-hunk): Use diff-find-source-location.
11352         (diff-goto-source): Favor the `reverse'.
11353         (diff-hunk-text): Properly handle one-sided context diffs.
11354         (diff-apply-hunk): When done, advance to the next hunk.
11356 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
11358         * startup.el (command-line): If frame was created with a non-zero
11359         tool-bar-lines parameter, switch tool-bar-mode on.
11361         * add-log.el (change-log-date-face, change-log-name-face)
11362         (change-log-email-face, change-log-file-face)
11363         (change-log-list-face, change-log-conditionals-face)
11364         (change-log-function-face, change-log-acknowledgement-face):
11365         New faces, inheriting from font-lock faces.
11366         (change-log-font-lock-keywords): Use them.
11368 2000-09-21  Dave Love  <fx@gnu.org>
11370         * progmodes/cperl-mode.el (top-level): Clean up
11371         `eval-when-compile's and assorted defvars.
11372         (cperl-invalid-face): Don't double-quote value.  Change custom
11373         type.
11374         (cperl-mode): Set normal-auto-fill-function and don't zap
11375         auto-fill-function.
11376         (cperl-imenu--function-name-regexp-perl): Renamed from
11377         imenu-example--function-name-regexp-perl.
11378         (cperl-imenu--create-perl-index): Renamed from
11379         imenu-example--create-perl-index.
11380         (cperl-xsub-scan): Don't require cl.
11382         * msb.el (msb-mode-map): Use substitute-key-definition.
11383         (msb-mode): Use msb-mode-map.
11385 2000-09-21  Andre Spiegel  <spiegel@gnu.org>
11387         * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
11388         New functions.
11389         (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
11390         (vc-switch-backend): New function.
11391         (vc-prefix-map): Bind `vc-switch-backend' to `b'.
11392         (vc-register): Fix prompt.
11393         (vc-unregister, vc-default-unregister): New functions.
11394         (vc-version-diff): Handle empty buffer in sentinel.
11396         * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
11397         (vc-rcs-state-heuristic): Use it to guess the state of files with
11398         non-strict locking.
11399         (vc-rcs-find-most-recent-rev): Handle the case when a branch has
11400         been set with -b, but not created yet.
11401         (vc-rcs-fetch-master-state): With non-strict locking, compare file
11402         contents in order to find the state.
11403         (vc-rcs-checkin): Allow creation of branches with no changes.
11404         (vc-rcs-unregister, vc-rcs-receive-file)
11405         (vc-rcs-set-non-strict-locking): New functions.
11407         * vc-hooks.el (vc-name): Force correct computation of the value
11408         in case it is missing.
11410 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
11412         * startup.el (fancy-splash-tail): Use a different foreground
11413         color on a dark frame background.
11415 2000-09-21  Miles Bader  <miles@lsi.nec.co.jp>
11417         * info.el: Use the correct capitalization when making Info-mode
11418         and Info-edit-mode `special' modes.
11420 2000-09-20  Stefan Monnier  <monnier@cs.yale.edu>
11422         * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
11423         (diff-mode): Add support for add-log.el.
11424         (diff-hunk-text): Use char offsets rather than line offsets.
11425         (diff-find-source-location): Replace LINE with line-offset (nil
11426         if not found) and always set POS to a meaningful position.
11427         Adapt to the new char-offsets.
11428         (diff-apply-hunk): Drop support for the unused `select' POPUP.
11429         Adapt to the new diff-find-source-location.
11430         (diff-goto-source): Adapt to the new diff-find-source-location.
11432         * add-log.el (add-log-file-name): New function (split out of
11433         add-change-log-entry).
11434         (add-change-log-entry): Use it.
11435         Call add-log-file-name-function with the changelog file name if
11436         the current buffer is not associated with any file.
11437         Avoid find-file if the selected window is dedicated.
11439         * diff-mode.el (diff-find-source-location):
11440         Move code from diff-apply-hunk.  Return buffer rather than file.
11441         (diff-apply-hunk): Use the new result from  diff-find-source-location.
11442         (diff-goto-source): Use the new diff-find-source-location.
11444 2000-09-20  Dave Love  <fx@gnu.org>
11446         * iswitchb.el: Some doc fixes.
11447         (iswitchb-mode-map): Define completely initially.  Inherit
11448         minibuffer-local-map.
11449         (iswitchb-completion-help) <!iswitchb-xemacs>: Use
11450         fundamental-mode.
11451         (iswitchb-global-map): New variable.
11452         (iswitchb-summaries-to-end): Amalgamate regexps.
11453         (iswitchb-mode): New.
11454         (iswitchb-mode-hook): New variable.
11455         (iswitchb) <defgroup>: Add URL link.  Use group `completion', not
11456         `extensions'.
11458 2000-09-20  Gerd Moellmann  <gerd@gnu.org>
11460         * ehelp.el (electric-help): New defgroup.
11461         (electric-help-shrink-window): New user-option.
11462         (with-electric-help): Use it.
11464         * window.el (shrink-window-if-larger-than-buffer): If face
11465         `mode-line' has a :box, and we're on a graphical frame, add 1
11466         to the needed window height.
11468         * frame.el (frame-notice-user-settings): Add a last parameter nil
11469         to a call to `append', because the last list passed to `append' is
11470         not copied, and so subsequent calls to assq-delete-all will modify
11471         default-frame-alist.
11473         * startup.el (fancy-splash-image): Change :type.
11474         (fancy-splash-head): Use an XBM image if appropriate.
11475         (command-line-1): Show splash screens in more cases.
11477         * startup.el (fancy-splash-text): Don't quote faces.
11479         * dired.el (dired-font-lock-keywords): Undo last change.
11480         (dired-readin): Bind indent-tabs-mode to nil.
11482         * startup.el (fancy-splash-head): If frame's background mode
11483         is `dark', change the black background of the image to gray.
11484         (fancy-splash-screens): Display startup echo area message.
11485         (display-startup-echo-area-message): New function.
11487 2000-09-20  Miles Bader  <miles@lsi.nec.co.jp>
11489         * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
11491         * info.el (info-header-node): Tweak for color ttys.
11493         * faces.el (face-valid-attribute-values): Make sure directories we
11494         search for stipples both exist and are readable before trying to
11495         search them.
11497         * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
11498         in the dry-run case.
11500         * jka-compr.el (with-auto-compression-mode): New macro.
11502         * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
11503         (custom-group-tag-face, custom-variable-tag-face): Use relative
11504         :height and inherit from `variable-pitch' face instead of
11505         hardwiring :family.
11506         * hi-lock.el (hi-black-hb): Likewise.
11508         Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
11509         * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
11510         toolbar-add-item, if image doesn't have a mask add a `:mask
11511         heuristic'.
11513 2000-09-19  Stefan Monnier  <monnier@cs.yale.edu>
11515         * diff-mode.el: Docstring fixes.
11516         (diff-header-face, diff-comment-face): New faces.
11517         (diff-font-lock-keywords): Highlight a bit differently.
11518         (diff-find-source-location): Don't return SPAN any more.
11519         (diff-hunk-text): Don't bother erasing the temp buffer.
11520         (diff-find-text): Drop argument LINE.
11521         (diff-apply-hunk): Update calls to diff-find-text.
11522         (diff-goto-source): Use pop-to-buffer again and don't raise an error.
11524         * calendar/calendar.el: Docstring fixes.
11525         (calendar-make-alist): Don't quote lambda.
11526         (calendar-star-date): Use make-local-variable.
11528 2000-09-19  Dave Love  <fx@gnu.org>
11530         * toolbar/tool-bar.el: Renamed from toolbar.el.
11531         Change `toolbar' to `tool-bar' generally in symbols.
11532         Make some items invisible in `special' major modes.
11533         (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
11534         Add arg PROPS.
11536         * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
11537         Add :version here.
11538         (fancy-splash-delay, fancy-splash-image): Remove :version here.
11540 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
11542         * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
11544         * files.el (find-file-suppress-same-file-warnings): New user-option.
11545         (find-file-noselect): Use it.
11547         * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
11548         (fancy-splash-screen): Defgroup.
11550         * add-log.el (change-log-font-lock-keywords): Match names
11551         more exactly for the case that font-lock-constant-face is
11552         underlined.
11554 2000-09-19  Richard M. Stallman  <rms@gnu.org>
11556         * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
11558 2000-09-19  Andre Spiegel  <spiegel@gnu.org>
11560         * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
11562 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
11564         * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
11565         * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
11566         * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
11567         * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
11568         * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
11569         * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
11570         * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
11571         * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
11572         * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
11573         * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
11574         * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
11575         * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
11577         * startup.el (fancy-splash-text): New variable.
11578         (fancy-splash-delay, fancy-splash-image): New user-options.
11579         (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
11580         (fancy-splash-screens): New functions.
11581         (command-line-1): If display has a `display' frame parameter, has
11582         colors, and we have XPM support, show more fancy splash screens.
11584 2000-09-19  Dave Love  <fx@gnu.org>
11586         * map-ynp.el (map-y-or-n-p): Check use-dialog-box.  Don't lose
11587         with null `help'.  Use modern backquote syntax.
11589 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
11591         * font-lock.el (font-lock-mode): Change message telling the user
11592         that ``the buffer is too big''.
11594         * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
11595         for instance for the case that tab-width is 2.
11597 2000-09-18  Gerd Moellmann  <gerd@gnu.org>
11599         * toolbar/toolbar.el (toolbar-like-menu-item): Like in
11600         toolbar-add-item, if image doesn't have a mask add a `:mask
11601         heuristic'.
11603 2000-09-18  Miles Bader  <miles@lsi.nec.co.jp>
11605         * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
11606         and return a cons if it's non-nil.
11607         (diff-apply-hunk): Try to jump to the line in the source text
11608         corresponding to the position of point in the in the hunk.
11610         * info.el (Info-title-3-face, Info-title-2-face)
11611         (Info-title-1-face): Use face inheritance and relative sizes
11612         instead of hard-wiring things.
11614         * faces.el (secondary-selection): Make dark-background variant sane.
11616 2000-09-16  Andrew Innes  <andrewi@gnu.org>
11618         * makefile.w32-in (compile-files-CMD): No need to make .elc files
11619         read-only, since they aren't under VC now.
11621 2000-09-17  Dave Love  <fx@gnu.org>
11623         * tmm.el: Replace mapcar with mapc in several places.
11625         * loadhist.el (unload-feature): Maybe call elp-restore-list and
11626         ad-unadvise.
11628         * international/latin1-disp.el: New file.
11630         * calendar/cal-move.el (scroll-calendar-left)
11631         (scroll-calendar-right): Make arg optional (for active mode line).
11633         * calendar/calendar.el (calendar-mode-line-format): Make fields
11634         mouse-sensitive.
11635         (calendar-read-date, calendar-read-date, calendar-window-list):
11636         Unquote lambda.
11637         (calendar-month-name): Use aref, not sref.
11639         * view.el (minor-mode-alist): Propertize the string.
11641         * international/characters.el (standard-case-table): Add entries
11642         for Greek.
11644 2000-09-18  Miles Bader  <miles@gnu.org>
11646         * info.el (info-node, info-xref): Add dark-background variants.
11648         * faces.el (header-line): Change defaults to be less confusing
11649         when mixed with mode-lines.
11651         * info.el (Info-fontify-node): Make a few cleanups.
11652         Add extra `help-echo' and `local-map' props to node xrefs.
11653         Use header-specific faces for node-names & xrefs.
11654         (Info-use-header-line): New variable.
11655         (info-header-xref, info-header-node): New faces.
11656         (Info-setup-header-line): New function.
11657         (Info-select-node): Call Info-setup-header-line when enabled.
11658         (Info-extract-pointer): Work even if the header line is hidden.
11659         (Info-header-line): New variable.
11661 2000-09-16  Stefan Monnier  <monnier@cs.yale.edu>
11663         * vms-patch.el (print-region-function): Don't quote lambda.
11665         * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
11667         * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
11668         (lm-get-header-re): Allow spaces between the header and the colon.
11669         (lm-header): Allow $ in non-RCS headers.
11670         (lm-header-multiline): Put the strings back into order.
11671         Stop at an empty line.  Don't require two space chars if the
11672         line is clearly not another header line.
11674         * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
11675         (popup-menu-popup): Remove.
11677 2000-09-15  Gerd Moellmann  <gerd@gnu.org>
11679         * toolbar/toolbar.el (toolbar-add-item): Use the same image
11680         specification if or if not tool-bar item contains an `:enabled'
11681         property.
11683         * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
11684         current buffer has no file name.
11686 2000-09-15  Dave Love  <fx@gnu.org>
11688         * strokes.el: Sync with maintainer's current version with changes
11689         for Emacs, but avoid runtime cl and levents.
11690         (toplevel):  Change autoloads and compilation requires.
11691         (strokes-version, strokes-bug-address, strokes-lift): Values
11692         changed.
11693         (strokes-xpm-header, strokes-insinuated): New variable.
11694         (strokes): Add :link.
11695         (strokes-mode): Customized.
11696         (strokes-while-inhibiting-garbage-collector): New macro.
11697         (strokes-remassoc): Avoid remove-if.
11698         (strokes-fix-button2-command): Don't use ad-do-it.
11699         (strokes-insinuate): New function.
11700         (strokes-button-press-event-p, strokes-button-release-event-p):
11701         New functions, used instead of non-`strokes-' versions..
11702         (strokes-mouse-event-p): Rewritten.
11703         (strokes-event-closest-point): Avoid event-point.
11704         (strokes-get-grid-position): Avoid cdadr, caadr
11705         (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
11706         functions.
11707         (strokes-help): Use with-output-to-temp-buffer.
11708         (strokes-window-configuration-changed-p): New function.
11709         (strokes-update-window-configuration): Use buffer-live-p,
11710         strokes-window-configuration-changed-p.
11711         (strokes-mode): Use strokes-insinuate.  Alter mouse bindings.
11712         (strokes-char-face): New face.
11713         (strokes-char-table, strokes-base64-chars): New variable.
11714         (strokes-xpm-for-stroke, strokes-list-strokes)
11715         (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
11716         (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
11717         (strokes-xpm-to-compressed-string, strokes-decode-buffer)
11718         (strokes-encode-buffer, strokes-xpm-for-compressed-string)
11719         (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
11720         functions.
11722 2000-09-15  Gerd Moellmann  <gerd@gnu.org>
11724         * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
11726         * image.el (create-image): Doc fix.
11728         * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
11729         instead of `:heuristic-mask t'.
11731 2000-09-14  Andrew Innes  <andrewi@gnu.org>
11733         * makefile.w32-in: Revert to Unix line endings.
11735 2000-09-14  Andrew Innes  <andrewi@gnu.org>
11737         * makefile.w32-in: Add bootstrap support.  Also copy lisp source
11738         when installing.
11740         * makefile.nt (DONTCOMPILE): Fix typo.
11742         * shell.el (shell-write-history-on-exit): New function.
11743         (shell-dumb-shell-regexp): New custom variable.
11744         (shell-mode): Make shell-write-history-on-exit the process
11745         sentinel if shell name matches shell-dumb-shell-regexp.
11747         * w32-fns.el: Comment out before-init-hook function which resets
11748         source-directory based; this breaks bootstrap.
11750 2000-09-14  Dave Love  <fx@gnu.org>
11752         * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
11753         toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
11754         toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
11755         toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
11756         toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
11757         toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
11758         toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm:  New.
11759         From Tuomas Kuosmanen <tigert@gimp.org>.  (Gnome icons fetched
11760         from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
11762         * toolbar/toolbar.el: New.
11764         * subdirs.el: Add toolbar.
11766 2000-09-14  Gerd Moellmann  <gerd@gnu.org>
11768         * indent.el (indent-for-tab-command): Doc fix.
11770 2000-09-14  Alex Schroeder  <alex@gnu.org>
11772         * ansi-color.el (ansi-colors): Doc change.
11773         (ansi-color-get-face): Simplified regexp.
11774         (ansi-color-faces-vector): Added more faces, doc change.
11775         (ansi-color-names-vector): Doc change.
11776         (ansi-color-regexp): Simplified regexp.
11777         (ansi-color-parameter-regexp): New regexp.
11778         (ansi-color-filter-apply): Doc change.
11779         (ansi-color-filter-region): Doc change.
11780         (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
11781         deal with zero length parameters.
11782         (ansi-color-apply-on-region): Doc change.
11783         (ansi-color-map): Doc change.
11784         (ansi-color-map-update): Removed debugging message.
11785         (ansi-color-get-face-1): Added condition-case to trap
11786         args-out-of-range errors.
11787         (ansi-color-get-face): Doc change.
11788         (ansi-color-make-face): Removed.
11789         (ansi-color-for-shell-mode): New option.
11791 2000-09-13  Kenichi Handa  <handa@etl.go.jp>
11793         * international/quail.el (quail-start-translation): Translate KEY
11794         if necessary even if it doesn't have any mapping in the current
11795         input method.
11796         (quail-start-conversion): Likewise.
11797         (quail-help): The output message is improved.
11799 2000-09-13  Miles Bader  <miles@gnu.org>
11801         * comint.el (comint-output-filter): Revert to using
11802         `insert-before-markers'.  Add bletcherous hack to undo damage
11803         caused by `insert-before-markers'.  Put `front-sticky' property on
11804         overlays created here so that the field code understands how the
11805         overlay works.  Use a let when making comint-last-prompt-overlay,
11806         so that the code is easier to read.
11808 2000-09-13  Dave Love  <fx@gnu.org>
11810         * wid-edit.el (widget-default-format-handler): DTRT when
11811         doc-property is a function.
11813 2000-09-12  Francesco Potorti`  <pot@gnu.org>
11815         * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
11816         filed name if it's not there.
11818 2000-09-12  Dave Love  <fx@gnu.org>
11820         * simple.el (read-mail-command): Doc fix.
11821         (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
11823         * vc.el (vc-dired-listing-switches): Fix :version.
11825         * vc-hooks.el: Doc fixes.
11827         * subr.el (add-minor-mode): Use toggle-fun arg.
11829         * speedbar.el: Add :version to several defcustoms.
11831         * imenu.el (imenu--truncate-items, imenu--cleanup)
11832         (imenu--generic-function): Avoid mapcar.
11833         (imenu--replace-spaces): Function removed.
11834         (imenu--completion-buffer): Use subst-char-in-string.
11835         (imenu-add-to-menubar): Use keymap inheritance.
11837 2000-09-12  Miles Bader  <miles@gnu.org>
11839         * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
11840         (diff-mode-map): Bind `diff-test-hunk'.
11841         (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
11843 2000-09-11  Gerd Moellmann  <gerd@gnu.org>
11845         * bytecomp.el (byte-compile-defvar): Undo last change
11846         because it breaks '(make-variable-buffer-local (defvar ...)'
11847         which is used at least in dired.
11849 2000-09-12  Kenichi Handa  <handa@etl.go.jp>
11851         * international/quail.el (quail-define-package): Docstring
11852         modified.
11854 2000-09-12  Kenichi Handa  <handa@etl.go.jp>
11856         * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
11857         extra docstrings for "chinese-ccdospy", "chinese-ecdict",
11858         "chinese-etzy", "chinese-sw", and "chinese-ziranma".  Modify the
11859         docstring of "chinese-py".
11861         * international/quail.el (quail-translation-docstring): New
11862         variable.
11863         (quail-show-keyboard-layout): Docstring modified.
11864         (quail-select-current): Likewise.
11865         (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
11866         infinite recursive call.
11867         (quail-help): Check quail-translation-docstring.  Format of the
11868         output changed.
11869         (quail-help-insert-keymap-description): Adjusted for the above
11870         change.
11872 2000-09-11  Gerd Moellmann  <gerd@gnu.org>
11874         * bytecomp.el (byte-compile-defvar): Only cons onto
11875         current-load-list in top-level forms.  Else this leaks a cons cell
11876         every time a defun is called.
11878 2000-09-11  Miles Bader  <miles@lsi.nec.co.jp>
11880         * diff-mode.el (diff-apply-hunk): Function basically rewritten.
11881         Now understands non-unified diffs.  Some functionality moved into
11882         `diff-hunk-text' and `diff-find-text'.  Add OTHER-FILE, DRY-RUN,
11883         POPUP, and NOERROR arguments.  If DRY-RUN is true, don't actually
11884         modify anything.  Only reposition point in the patched file if the
11885         patch succeeds.  Only pop up another window if POPUP is true.
11886         Emit a message describing what happened if successful, and at what
11887         line-offset.  Automatically detect reversed hunks and do something
11888         appropriate.
11889         (diff-hunk-text, diff-find-text): New functions.
11890         (diff-filter-lines): Function removed.
11891         (diff-test-hunk): New function.
11892         (diff-goto-source): Rewritten in terms of diff-apply-hunk.
11894 2000-09-10  Dave Love  <fx@gnu.org>
11896         * textmodes/tildify.el: Minor doc/commentary fixes.
11897         (tildify) <defgroup>: Add :version.
11899         * faces.el (face-x-resources): Make custom type more specific.
11900         (frame-background-mode): Use mapc.
11901         (region) <defcustom>: Add :version.
11903 2000-09-08  Stefan Monnier  <monnier@cs.yale.edu>
11905         * vc-sccs.el (vc-sccs-register):
11906         * vc-rcs.el (vc-rcs-register):
11907         * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
11908         * vc.el (vc-register): Clear file's properties.
11910 2000-09-08  Gerd Moellmann  <gerd@gnu.org>
11912         * faces.el (face-spec-set): Only face-spec-reset-face when
11913         ATTRS is non-nil.
11915 2000-09-08  Eli Zaretskii  <eliz@is.elta.co.il>
11917         * help.el (help-insert-xref-button): Fix a typo in doc string.
11919 2000-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
11921         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
11922         Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
11923         methods.
11925         * menu-bar.el (read-mail-item-name): New function.
11926         (menu-bar-tools-menu): Use it to compute and display the package
11927         used to read email.
11928         (menu-bar-tools-menu): Fix typo in GUD's help string.
11930 2000-09-07  Dave Love  <fx@gnu.org>
11932         * diff-mode.el (diff-mouse-goto-source): New function.
11934         * vc-sccs.el: Doc fixes.
11935         (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
11937         * vc-rcs.el: Doc fixes.
11938         (vc-rcs-register-switches, vc-rcs-checkin-switches)
11939         (vc-rcs-checkout-switches, vc-rcs-header)
11940         (vc-rcs-master-templates): Add or change :version.
11942         * vc-cvs.el: Doc fixes.
11943         (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
11944         (vc-cvs-stay-local): Add :version.
11946         * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
11948 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
11950         * international/quail.el (quail-help): Fix previous change.
11952 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
11954         * faces.el (color-values): Doc fix.
11956         * faces.el (frame-set-background-mode): Use frame-parameter
11957         instead of frame-parameters.
11959         * frame.el (filtered-frame-list): Reduce consing.
11960         (frames-on-display-list): Call frame-parameter instead of
11961         frame-parameters.
11963 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
11965         * language/devan-util.el (devanagari-to-indian-region): In the
11966         loop, change the following char, not preceding char.
11968 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
11970         * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
11971         instead of frame-parameters.
11973         * faces.el (set-face-attribute): Simplify by calling
11974         internal-set-lisp-face-attribute with FRAME being 0.
11976         * vc.el: Remove `Id' version control keyword.
11978 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
11980         * help.el (help-make-xrefs): Adjusted for the change of
11981         help-xref-mule-regexp.
11982         (help-insert-xref-button): New function.
11984         * international/mule-cmds.el (help-xref-mule-regexp-template):
11985         Include the pattern for character set.
11986         (leim): New group.
11988         * international/quail.el: Don't require face.
11989         (quail): New group.
11990         (quail-other-command): Dummy command to make quail-help work better.
11991         (quail-keyboard-layout-alist): Add Keyboard type "jp106".
11992         (quail-keyboard-layout-substitution): New variable.
11993         (quail-update-keyboard-layout): New function.
11994         (quail-keyboard-layout-type): New customizable variable.
11995         (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
11996         (quail-keyboard-translate): Pay attention to
11997         quail-keyboard-layout-substitution.
11998         (quail-insert-kbd-layout): New function.
11999         (quail-show-keyboard-layout): New function.
12000         (quail-get-translation): If the definition is a vector of length
12001         1, and the element is a string of length 1, return the character
12002         in that string.
12003         (quail-update-current-translations): Fix the case of
12004         relative-index out of range.
12005         (quail-build-decode-map, quail-insert-decode-map): New Functions.
12006         (quail-help): Show keyboard layout by quail-insert-kbd-layout.
12007         Show key sequences for all available characters.
12008         (quail-help-insert-keymap-description): Don't show such verbose
12009         key bindings as quail-self-insert-command.
12011         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
12012         Format changed, and each element now have extra documentations.
12013         (tit-process-header): Delete invalid characters from TIT-PROMPT.
12014         Adjusted for the change of quail-cxterm-package-ext-info.
12016 2000-09-06  Gerd Moellmann  <gerd@gnu.org>
12018         * vc-hooks.el (toplevel): Don't require `vc' during compilation;
12019         requiring it leads to a recursive loading of vc.el and vc-hooks.el
12020         during bootstrap.
12022 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
12024         * vc.el: (toplevel): Don't require `dired' at run-time.
12025         (vc-dired-resynch-file): Remove autoload cookie.
12027 2000-09-05  Andre Spiegel  <spiegel@gnu.org>
12029         * vc.el: Made several backend functions optional.
12030         (vc-default-responsible-p): New function.
12031         (vc-merge): Use RET for first version to trigger merge-news, not
12032         prefix arg.
12033         (vc-annotate): Handle backends that do not support annotation.
12034         (vc-default-merge-news): Removed.  The existence of a merge-news
12035         implementation is now checked on caller sites.
12037         * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
12038         case.
12040         * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
12041         special case that has been removed from the default in vc-hooks.el.
12043 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
12045         * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
12047 2000-09-05  Andre Spiegel  <spiegel@gnu.org>
12049         * vc-hooks.el: Require vc during compilation.
12050         (vc-file-setprop): Use `vc-touched-properties' if bound by the new
12051         macro `with-vc-properties' in vc.el.
12052         (vc-file-getprop): Doc fix.
12053         (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
12055         * vc.el: Require dired-aux during compilation.
12056         (vc-name-assoc-file): Moved to vc-sccs.el.
12057         (with-vc-properties): New macro.
12058         (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
12059         vc-finish-steal): Use it.
12060         (vc-cancel-version): Moved RCS-specific code to vc-rcs.el.  The call
12061         to the backend-specific function is now supposed to do the checkout,
12062         too.
12063         (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
12065         * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
12066         set file properties; that gets done in the generic code now.
12068         * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
12069         Changed parameter list, added code from vc.el that does the
12070         checkout, possibly with a double-take.
12072         * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
12073         (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
12074         the above under the new name.
12075         (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'.  Changed
12076         parameter list, added checkout command.
12077         (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
12078         properties; that gets done in the generic code now.
12080 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
12082         * vc.el: Docstring fixes (courtesy of checkdoc).
12084 2000-09-05  Stefan Monnier  <monnier@cs.yale.edu>
12086         * vc.el (vc-checkout-writable-buffer-hook)
12087         (vc-checkout-writable-buffer): Remove.
12088         (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
12089         (vc-log-mode): Make it into a clean derived major mode.
12090         (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
12091         vc-log-mode if log-edit is not available.
12092         (vc-dired-mode-map): Don't set-keymap-parent yet.
12093         (vc-dired-mode): Do set-keymap-parent here.
12094         (vc-dired-buffers-for-dir): Nop if dired is not loaded.
12096 2000-09-05  Gerd Moellmann  <gerd@gnu.org>
12098         * faces.el (set-face-attribute, face-spec-reset-face)
12099         (face-spec-set): Avoid consing by removing calls to `apply'.
12101         * frame.el (frame-parameter): Move to C code.
12103 2000-09-05  Dave Love  <fx@gnu.org>
12105         * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
12106         insert-before-markers-and-inherit.  Now checked systematically!
12108 2000-09-05  Alex Schroeder  <alex@gnu.org>
12110         * sql.el (sql-postgres): Use sql-postgres-options.
12111         (sql-postgres-options): New variable.
12113 2000-09-05  Alex Schroeder  <alex@gnu.org>
12115         * sql.el (sql-mode-menu): Work around missing variable mark-active
12116         in XEmacs.
12117         (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
12118         (sql-interactive-mode): Added call to easy-menu-add for XEmacs
12119         compatibility.
12121 2000-09-04  Gerd Moellmann  <gerd@gnu.org>
12123         * vc.el (vc-dired-resynch-file): Add autoload cookie.
12125         * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
12127         * Makefile.in (DONTCOMPILE): Fix typo in file name.
12129 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12131         * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
12132         don't support anything else under SCCS yet.
12134         * vc-hooks.el: Minor doc fixes.
12136 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12138         * vc.el (vc-next-action-on-file): Do not visit the file if it's
12139         not necessary.  If verbose in state `needs-patch', do the same as
12140         under `up-to-date'.  When NOT verbose and `needs-patch', check out
12141         latest version instead of `merge-news'.
12142         (vc-next-action-dired): Don't mess with default-directory here; it
12143         breaks other parts of dired.  It is the job of the
12144         backend-specific functions to adjust it temporarily if they need it.
12145         (vc-next-action): Remove a special CVS case.
12146         (vc-clear-headers): New optional arg FILE.
12147         (vc-checkin, vc-checkout): Set properties vc-state and
12148         vc-checkout-time properly.
12149         (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
12150         (vc-print-log): Use new backend function `show-log-entry'.
12151         (vc-cancel-version): Do the checks in a different order.  Added a
12152         FIXME concerning RCS-only code.
12154         * vc-rcs.el (vc-rcs-show-log-entry): New function.
12155         (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
12157         * vc-cvs.el (vc-cvs-show-log-entry): New function.
12159         * vc-hooks.el (vc-default-mode-line-string): Show state
12160         `needs-patch' as a `-' too.
12162 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12164         * vc.el (vc-responsible-backend): New optional arg REGISTER.
12165         (vc-default-could-register): New function.
12166         (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
12167         (vc-resynch-buffer): Call vc-dired-resynch-file.
12168         (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
12169         vc-resynch-buffer instead of vc-resynch-window.
12170         (vc-next-action-dired): Don't redisplay here, that gets done as a
12171         result of the individual file operations.
12172         (vc-retrieve-snapshot): Corrected prompt order.
12174         * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
12176         * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
12177         as well.
12178         (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p.  Handle
12179         hostname regexps.  Updated all callers.
12180         (vc-cvs-responsible-p): Handle directories as well.
12181         (vc-cvs-could-register): New function.
12182         (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
12183         properties up-to-date.
12185         * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
12186         user whether to create one.
12188 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12190         * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
12191         check out a non-existing file.
12193         * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
12194         workfile does not exist.
12196         * vc.el (vc-version-diff): Use `require' to check for existence of
12197         diff-mode.
12199 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12201         * vc-cvs.el (vc-cvs-registered): Use new function
12202         vc-cvs-parse-entry to do the actual work.
12204 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12206         * vc-hooks.el (vc-find-backend-function): If function doesn't
12207         exist, return nil instead of error.
12208         (vc-call-backend): Doc fix.
12210         * vc.el (vc-do-command): Doc fix.
12211         (vc-finish-logentry): When checking in from vc-dired, choose the
12212         right backend for logentry check.
12213         (vc-dired-mode-map): Inherit from dired-mode-map.
12214         (vc-dired-mode): Local value of dired-move-to-filename-regexp
12215         simplified.
12216         (vc-dired-state-info): Removed, updated caller.
12217         (vc-default-dired-state-info): Use parentheses instead of hyphens.
12218         (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
12219         (vc-dired-listing-switches): New variable.
12220         (vc-directory): Use it, instead of dired-listing-switches.
12222         * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
12223         (vc-cvs-dir-state): New function.
12224         (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
12225         (vc-cvs-parse-entry): New function, also to be used in
12226         vc-cvs-registered.
12228 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12230         * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
12231         *or* single-window-frames.
12233 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12235         * vc.el (vc-update-changelog): Split into generic part and default
12236         implementation.  Doc string adapted.
12237         (vc-default-update-changelog): New function.  Call the `rcs2log'
12238         script in exec-directory, to fix a long-standing nuisance.
12240         * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
12241         simply signals an error.
12243 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12245         * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
12246         control-flow more clear and to avoid running `cvs' twice.
12248         * vc.el (vc-next-action-on-file): Doc fix.
12249         (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
12250         (vc-print-log): Eval `file' before constructing the continuation.
12252 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12254         * vc.el (vc-next-action-on-file): Corrected several messages.
12255         (vc-merge): Add prefix arg `merge-news'; handle it.
12257         * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
12258         is not reached.  It is.
12259         (vc-cvs-merge): Set state to 'edited after merge.
12260         (vc-cvs-merge-news): Set workfile version to nil if not known.
12261         (vc-cvs-latest-on-branch-p): Recommented.  Candidate for removal.
12263         * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
12264         via stdout. (Merge from main line.)
12266 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12268         * vc.el (vc-finish-logentry): Thinko in the "same comment"
12269         detection.
12271 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12273         * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
12274         against kill-all-local-variables.
12275         (vc-log-edit): Don't save vc-parent-buffer any more.
12276         (vc-last-comment-match): Initialize to an empty string.
12277         (vc-post-command-functions): New hook.
12278         (vc-do-command): Run it.
12279         (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
12280         (vc-finish-logentry): Only add the comment to the ring if it's
12281         different from the last comment entered.
12282         (vc-new-comment-index): New function.
12283         (vc-previous-comment): Use it.  Make the minibuffer message
12284         slightly less terse.
12285         (vc-comment-search-reverse): Make it work forward as well.  Don't
12286         set vc-comment-ring-index if no match is found.  Use
12287         vc-new-comment-index.
12288         (vc-comment-search-forward): Use vc-comment-search-reverse.
12289         (vc-dired-mode-map): Don't inherit from dired-mode-map since
12290         define-derived-mode will do it for us.  Bind `v' to a keymap that
12291         inherits from vc-prefix-map so that we can bind `vt' without
12292         binding C-x v t.
12293         (vc-retrieve-snapshot): Parenthesis typo.
12295         * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
12296         to 1.  Make sure to switch to *vc* before looking for an error
12297         message.  Use vc-parse-buffer.
12299 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12301         * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
12302         and NAME.
12303         (vc-retrieve-snapshot): Split into two parts.
12304         (vc-default-retrieve-snapshot): New function.
12306         * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
12307         (vc-cvs-retrieve-snapshot): New function (untested).
12308         (vc-cvs-stay-local): Default to t.
12309         (vc-cvs-remote-p): New function and property.
12310         (vc-cvs-state): Stay local only if the above is t.
12311         (vc-handle-cvs): Removed.
12312         (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
12313         done via vc-handled-backends now.
12314         (vc-cvs-header): Escape Id.
12316 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12318         * vc.el (vc-do-command): Remove unused commands.
12319         (vc-version-diff): Make sure default-directory ends with a slash.
12320         Move the window commands into a vc-exec-after.
12321         (vc-print-log): Move more of the code into the `vc-exec-after'.
12323 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12325         * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
12326         (vc-print-log): Search current revision from beginning of buffer.
12327         (vc-revert-buffer): Clear echo area after the diff is finished.
12328         (vc-prefix-map): Removed definition of "t" for terse display in vc
12329         dired.
12330         (vc-dired-mode-map): Inherit from dired-mode-map.  Added
12331         definition of "vt" for terse display.
12332         (vc-dired-mode): Fix dired-move-to-filename-regexp.
12334 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12336         * vc.el (vc-exec-after): Avoid caddr.
12338 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12340         * vc.el (vc-exec-after): New function.
12341         (vc-do-command): Use it to add a termination message for async
12342         procs.
12343         (vc-checkout): Try to handle a missing-backend situation.
12344         (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
12345         of a directory with a backend using async diffs.
12346         (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
12347         present.
12349         * vc-sccs.el (vc-sccs-state-heuristic): Use
12350         file-ownership-preserved-p.
12352         * vc-rcs.el (vc-rcs-state-heuristic): Use
12353         file-ownership-preserved-p.
12354         (vc-rcs-checkout): Remove the error-handling for missing-rcs.
12356 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12358         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
12359         vc-do-command.
12361         * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
12362         when there are no changes.
12364 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12366         * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
12368         * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
12370 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12372         * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
12374         * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
12375         the `fset' outside of the defvar so that it works even if
12376         vc-prefix-map was already defined.
12377         (vc-setup-buffer): New function, split out of vc-do-command.
12378         (vc-do-command): Allow BUFFER to be t to mean `just use the
12379         current buffer without any fuss'.
12380         (vc-version-diff): Change the `diff' backend operation to just put
12381         the diff in the current buffer without erasing it.  Always use
12382         *vc-diff* even for directory-diffs.  Use vc-setup-buffer.  Protect
12383         shrink-window-if-larger-than-buffer.
12384         (vc-print-log): Change the `print-log' backend operation to just
12385         put the log in the current buffer without erasing it.  Protect
12386         shrink-window-if-larger-than-buffer.
12387         (vc-update-change-log): Fix setd typo.
12389         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
12390         (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
12392         * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
12393         (vc-rcs-diff): Insert in the current buffer and remove unused arg
12394         CMP.
12396         * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
12397         with-temp-file.  Use the new BUFFER=t argument to vc-do-command.
12398         (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
12400 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12402         * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
12403         not possible, use vc-BACKEND-workfile-unchanged-p.
12404         (vc-default-workfile-unchanged-p): New function.  Delegates to a
12405         full vc-BACKEND-diff.
12407         * vc-hooks.el (vc-simple-command): Removed.
12409         * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
12410         instead of vc-simple-command.
12411         (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
12412         avoid doing a diff when opening a file.
12413         (vc-rcs-state): Added check for unlocked-changes.
12414         (vc-rcs-header): Escape Id.
12415         (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
12416         (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
12417         version.
12419         * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
12420         (vc-sccs-diff): Remove optional arg CMP.
12421         (vc-sccs-state): Call vc-workfile-unchanged-p, not the
12422         SCCS-specific function.
12424         * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
12425         vc-simple-command.
12427 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12429         * vc.el (vc-editable-p): Renamed from vc-writable-p.
12430         (with-vc-file, vc-merge): Use vc-editable-p.
12431         (vc-do-command): Remove unused var vc-file and fix the
12432         doubly-defined `status' var.  Add a user message when starting an
12433         async command.
12434         (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
12435         (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
12436         Use with-current-buffer.
12437         (vc-buffer-sync): Use unless.
12438         (vc-next-action-on-file): If the file is 'edited by read-only,
12439         make it read-write instead of trying to commit.
12440         (vc-version-diff, vc-update-change-log): Use `setq
12441         default-directory' rather than `cd'.
12442         (vc-log-edit): Don't forget to set default-directory in the
12443         buffer.
12445         * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
12446         (vc-sccs-state-heuristic): Use file-writable-p instead of
12447         comparing userids.
12448         (vc-sccs-checkout): Use `unless'.
12450         * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
12451         of comparing userids.
12452         (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
12453         Simplify the logic by eliminating unreachable code.
12454         (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
12455         just do a recursive call if we need to retry.
12456         (vc-rcs-checkout): Handle the case where rcs is missing by making
12457         the buffer read-write if requested and re-signalling the error.
12459         * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
12461 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12463         * vc-hooks.el (vc-handled-backends): Docstring change.
12464         (vc-ignore-vc-files): Mark obsolete.
12465         (vc-registered): Check vc-ignore-vc-files.
12466         (vc-find-file-hook, vc-file-not-found-hook): Don't check
12467         vc-ignore-vc-files.
12469         * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
12471 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12473         * vc.el (vc-checkout): Don't do anything special for ange-ftp
12474         files since ange-ftp already has vc-registered return nil.
12476         * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
12477         (vc-sccs-workfile-version): Use with-temp-buffer and new
12478         vc-parse-buffer and don't bother setting the property.
12479         (vc-sccs-add-triple): Use with-current-buffer and
12480         find-file-noselect.
12481         (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
12483         * vc-rcs.el (vc-rcs-find-most-recent-rev): New function.  The code
12484         derives from the old vc-parse-buffer but uses the revision number
12485         rather than the date (much easier to compare robustly).
12486         (vc-rcs-fetch-master-state): Use `with-temp-buffer'.  Adapt to the
12487         new vc-parse-buffer (and vc-rcs-find-most-recent-rev).  Find the
12488         locking-user more directly.  Check strict locking and set
12489         checkout-model appropriately.
12490         (vc-rcs-parse-locks): Remove.
12491         (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
12492         new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
12493         (vc-rcs-system-release): Use with-current-buffer and
12494         vc-parse-buffer.
12495         (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
12497         * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
12498         (vc-simple-command): Docstring fix.
12499         (vc-registered): Align the way the file-handler is called with the
12500         way the function itself works.
12501         (vc-file-owner): Remove.
12503         * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer.  Reorder
12504         extraction of fields and call to file-attributes because of a
12505         temporary bug in rcp.el.
12506         (vc-cvs-fetch-status): Use with-current-buffer.
12508 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12510         * vc.el (vc-do-command): Use file-relative-name.
12511         (vc-responsible-backend): Use vc-backend if possible.
12512         (vc-create-snapshot): Improve the `interactive' spec. Add support
12513         for branches and dispatch to backend-specific `create-snapshot'.
12514         (vc-default-create-snapshot): New function, containing the bulk of
12515         the old vc-create-snapshot.
12516         (vc-retrieve-snapshot): Improve the interactive spec.
12518         * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
12519         (vc-backend-hook-functions): Remove.
12520         (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
12521         (vc-backend): Reintroduce the test for `file = nil' now that I
12522         know why it was there (and added a comment to better remember).
12524         * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
12525         code from vc-sccs-hooks.el.
12526         (vc-sccs-release, vc-sccs-system-release): Remove.  Don't require
12527         'vc anymore.
12528         (vc-sccs-responsible-p): Use expand-file-name instead of concat
12529         and file-directory-p instead of file-exists-p.
12530         (vc-sccs-check-headers): Simplify the regexp.
12532         * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
12533         from vc-rcs-hooks.el.  Don't require 'vc anymore.
12534         (vc-rcs-responsible-p): Use expand-file-name instead of concat and
12535         file-directory-p instead of file-exists-p.
12537         * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
12538         from vc-cvs-hooks.el.
12539         (proto vc-cvs-registered): Require 'vc-cvs instead of
12540         'vc-cvs-hooks.  Don't require 'vc anymore.
12541         (vc-cvs-responsible-p): Use expand-file-name instead of concat and
12542         file-directory-p instead of file-exists-p.
12543         (vc-cvs-create-snapshot): New function, replacing
12544         vc-cvs-assign-name.
12545         (vc-cvs-assign-name): Remove.
12547 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12549         * vc-cvs.el (vc-cvs-header): New var.
12551         * vc-rcs.el (vc-rcs-exists): Remove.
12552         (vc-rcs-header): New var.
12554         * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
12555         `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
12556         (vc-sccs-header): New var.
12558         * vc.el (vc-do-command): Get rid of the `last' argument.
12559         (vc-header-alist): Remove, replaced by vc-X-header.
12560         (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
12561         (vc-dired-hook): Use expand-file-name instead of concat.
12562         (vc-directory): Use file-name-as-directory.
12563         (vc-snapshot-precondition, vc-create-snapshot)
12564         (vc-retrieve-snapshot): Allow the command to operate on any
12565         directory.
12567         * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
12568         just removing the 'WORKFILE argument or by removing the 'MASTER
12569         argument and replacing `file' with (vc-name file).
12571 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12573         * vc.el: Update Copyright and add a crude list of backend funs.
12574         (vc-writable-p): New function.
12575         (with-vc-file): Use vc-writable-p.
12576         (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
12577         (vc-register): Avoid vc-name.
12578         (vc-locking-user): Remove.
12579         (vc-steal-lock): Make the `owner' arg non-optional.
12580         (vc-merge): Use vc-writable-p instead of vc-locking-user and
12581         vc-checkout-model.
12582         (vc-default-dired-state-info): Use vc-state instead of
12583         vc-locking-user and return special strings for special states.
12584         (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
12585         and get rid of one of the special CVS cases.
12586         (vc-cancel-version): prettify error message with \\[...].
12587         (vc-rename-master): New function.
12588         (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
12589         use vc-rename-master) instead of vc-BACKEND-record-rename.  Make
12590         the CVS special case generic.
12591         (vc-default-record-rename): Remove.
12592         (vc-file-tree-walk-internal): Only call FUNC for files that are
12593         under control of some VC backend and replace `concat' with
12594         expand-file-name.
12595         (vc-file-tree-walk): Update docstring.
12596         (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
12597         (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
12599         * vc-sccs.el (vc-sccs-rename-file): Renamed from
12600         vc-sccs-record-rename.  Use `find-file-noselect' rather than
12601         `find-file' and call `vc-rename-master' to do the actual move.
12602         (vc-sccs-diff): Remove unused `backend' variable.
12604         * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
12605         to delay loading of vc-sccs until it is really used.
12606         (vc-sccs-master-templates): Preload.
12607         (vc-sccs-state): Update call to vc-sccs-parse-locks.
12608         (vc-sccs-project-dir): Remove (merged into
12609         vc-sccs-search-project-dir).
12610         (vc-sccs-search-project-dir): Rewrite using file name handling ops
12611         rather than `concat', make sure it is preloaded and don't bother
12612         to check that the file actually exists.
12613         (vc-sccs-parse-locks): Remove unused `file' argument, remove
12614         `locks' argument (use buffer's content instead) and eliminate n^2
12615         behavior.
12617         * vc-rcs.el: Update Copyright.
12618         (vc-rcs-rename-file): New function.
12619         (vc-rcs-diff): Remove unused `backend' variable.
12621         * vc-hooks.el: Update Copyright.
12622         (vc-backend): Don't accept a nil argument any more.
12623         (vc-up-to-date-p): Turn into a defsubst.
12624         (vc-possible-master): New function.
12625         (vc-check-master-templates): Use `vc-possible-master' and allow
12626         funs in vc-X-master-templates to return a non-existent file.
12628         * vc-cvs.el: Update Copyright.
12629         (vc-cvs-diff): Remove unused `backend' variable.
12630         (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
12632         * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
12634 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12636         * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
12637         since it can be called from vc-rcs.el.
12638         (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
12640 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12642         * vc.el (vc-version-diff): Expand file name read from the
12643         minibuffer.  Handle the case when a previous version number can't
12644         be guessed.  Give suitable messages when there were no differences
12645         found.
12646         (vc-clear-headers): Call backend-specific implementation, if one
12647         exists.
12648         (vc-cancel-version): Made error checks generic.  When done, clear
12649         headers generically, too.
12651         * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
12652         from vc-clear-headers in vc.el.
12654         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
12655         correctly.
12656         (vc-rcs-latest-on-branch-p): Made second argument VERSION
12657         optional.  Handle the case when it's not there.
12659 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12661         * vc.el (vc-locking-user): Moved from vc-hooks.el.
12663 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12665         * vc-hooks.el (vc-loadup): Remove.
12666         (vc-find-backend-function): Use `require'.  Also, handle the case
12667         where vc-BACKEND-hooks.el doesn't exist.
12668         (vc-call-backend): Cleanup.
12670 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12672         * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
12673         vc-rcs-grab-templates)
12674         (vc-rcs-registered): Remove.  The default function works as well.
12675         * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
12676         vc-sccs-grab-templates)
12677         (vc-sccs-registered): Remove.  The default function works as well.
12679         * vc.el (vc-version-diff): Left out a vc- in call to
12680         vc-call-backend.
12681         (vc-default-dired-state-info, vc-default-record-rename)
12682         (vc-default-merge-news): Update for the new backend argument.
12684         * vc-hooks.el (vc-find-backend-function): Return a cons cell if
12685         using the default function.
12686         (vc-call-backend): If calling the default function, pass it the
12687         backend as first argument.  Update the docstring accordingly.
12688         (vc-default-state-heuristic, vc-default-mode-line-string): Update
12689         for the new backend argument.
12690         (vc-make-backend-sym): Renamed from vc-make-backend-function.
12691         (vc-find-backend-function): Use the new name.
12692         (vc-default-registered): New function.
12694 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12696         * vc.el (vc-merge): Use vc-find-backend-function.
12698         * vc-hooks.el (vc-backend-functions): Remove.
12699         (vc-loadup): Don't setup 'vc-functions.
12700         (vc-find-backend-function): New function.
12701         (vc-call-backend): Use above fun and populate 'vc-functions
12702         lazily.
12703         (vc-backend-defines): Remove.
12705 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12707         * vc.el (vc-register): Put a FIXME note for a newly found bug.
12708         Call vc-call-backend without the leading vc-.
12709         (vc-responsible-backend, vc-finish-logentry, vc-annotate)
12710         (vc-check-headers): Call vc-call-backend without the leading vc-.
12711         (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
12712         (vc-annotate-display): Replace confusing use of `cond' with `or'.
12713         Call vc-call-backend without the leading vc-.
12715         * vc-cvs.el (tail): Provide vc-cvs.
12716         * vc-sccs.el (tail): Provide vc-sccs.
12717         * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
12719         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
12720         (vc-make-backend-function, vc-call): Pass names without leading
12721         `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
12722         (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
12723         (vc-call-backend): Always try to load vc-X-hooks.
12724         (vc-registered): Remove vc- in call to vc-call-backend.
12726 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12728         * vc.el (vc-process-filter): New function.
12729         (vc-do-command): Setup `vc-process-filter' for the async process.
12730         (vc-maybe-resolve-conflicts): New function to reduce
12731         code-duplication.  Additionally, it puts the buffer in
12732         `smerge-mode' if applicable.
12733         (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
12734         calling `merge-news'.
12735         (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
12736         (vc-log-edit): New function.  Replacement for `vc-log-mode' by
12737         interfacing to log-edit.el.
12738         (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
12739         log-edit is available.
12740         (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
12742 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12744         * vc.el (vc-register): Remove `vc-buffer-backend' setup.
12745         (vc-log-mode-map): New name for vc-log-entry-mode and merge the
12746         defvar and the initialization.
12747         (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
12749         * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
12750         (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
12752         * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
12754 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12756         * vc.el (vc-file-clear-masterprops): Removed.
12757         (vc-checkin, vc-revert-buffer): Removed calls to the above.
12758         (vc-version-diff): Use buffer-size without argument.
12759         (vc-register): Heed vc-initial-comment.
12761         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
12762         default branch.
12764         * vc-rcs.el (vc-rcs-register): Parse command output to find master
12765         file name and workfile version.
12766         (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
12768         * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
12769         vc-file-clear-masterprops.
12771         * vc-sccs.el (vc-sccs-checkout): Removed call to
12772         vc-file-clear-masterprops.  If writable, set vc-state to 'edited
12773         rather than user login name.
12776 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12778         * vc.el (vc-workfile-unchanged-p): Remove unused argument
12779         `want-differences-if-changed' and simplify.
12780         (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
12781         (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
12782         output (which is invalid for async vc-diff) to decide whether to
12783         do the revert silently or not.
12785 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12787         * vc-hooks.el (vc-loadup): Load files quietly.
12788         (vc-call-backend): Oops, brain fart.
12790 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12792         * vc-cvs.el (vc-cvs-state): Typo.
12793         (vc-cvs-merge-news): Return the status code rather than the error msg.
12795 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12797         * vc.el (with-vc-file, vc-next-action, vc-version-diff)
12798         (vc-dired-mark-locked): Replaced usage of vc-locking-user with
12799         vc-state or vc-up-to-date-p.
12800         (vc-merge): Use vc-backend-defines to check whether merging is
12801         possible.  Set state to 'edited after successful merge.
12803         * vc-hooks.el (vc-locking-user): If locked by the calling user,
12804         return that name.  Redocumented.
12806 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12808         * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
12809         new `vc-state' semantics.
12810         (vc-finish-steal): Set 'vc-state to 'edited rather than setting
12811         'vc-locking-user to the current user.
12812         (vc-merge): Inline vc-backend-merge.  Comment out code that I
12813         don't understand and hence can't adapt to the new `vc-state' and
12814         `vc-locking-user' semantics.
12815         (vc-backend-merge): Remove.
12817         * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
12818         rather than 'vc-locking-user.
12820         * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
12822         * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
12823         (vc-state): Don't use 'reserved any more.  Just use the same
12824         convention as the one used for vc-<backend>-state where the
12825         locking user (as a string) is returned.
12826         (vc-locking-user): Update, based on the above convention. The
12827         'vc-locking-user property has disappeared.
12828         (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
12830         * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
12831         with a heuristic one.
12832         (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
12833         (vc-cvs-checkin): Do a trivial parse to set the state in case of
12834         error.  That allows us to get to 'needs-merge even in the
12835         stay-local case.  There's still no way to detect 'needs-patch in
12836         such a setup (or to force an update for that matter).
12837         (vc-cvs-logentry-check): Remove, the default works as well.
12839 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12841         * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
12843         * vc.el (vc-do-command): kill-all-local-variables, to reset any
12844         major-mode in which the buffer might have been put earlier.  Use
12845         `remove' and `when'.  Allow `okstatus' to be `async' and use
12846         `start-process' in this case.
12847         (vc-version-diff): Handle the case where the diff looks empty
12848         because of the use of an async process.
12850 2000-09-04  Andre Spiegel  <spiegel@gnu.org>
12852         * vc.el (vc-next-action-on-file): Removed optional parameter
12853         `simple'.  Recompute state unconditionally.
12854         (vc-default-toggle-read-only): Removed.
12856         * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
12857         (vc-toggle-read-only): Undid prev change.
12859         * vc-cvs.el (vc-cvs-stay-local): Renamed from
12860         vc-cvs-simple-toggle.  Redocumented.
12861         (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
12862         (vc-cvs-toggle-read-only): Removed.
12864 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12866         * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
12867         (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
12868         (vc-release-greater-or-equal-p): Move to vc-rcs.el.
12869         (vc-file-clear-masterprops): Braindead "fix".  It was a nop and
12870         still is. So maybe it should be removed.
12871         (vc-head-version, vc-find-binary): Remove.
12872         (vc-recompute-state): Move from vc-hooks.el.
12873         (vc-next-action-on-file): Add a `simple' argument to allow
12874         avoiding the `recompute' step (use for vc-cvs-simple-toggle).
12875         (vc-default-toggle-read-only, vc-default-record-rename): New funs.
12876         (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
12877         (vc-dired-mode-map): Properly defvar it.
12878         (vc-print-log): Call log-view-mode if available.
12879         (small-temporary-file-directory): defvar instead of use boundp.
12880         (vc-merge-news): Moved to vc-cvs.el.
12881         (vc-default-merge-news): New function.
12883         * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
12884         (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
12885         (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
12886         unknown `vc-latest-version' function.  It should probably refer to
12887         vc-workfile-version or somesuch, but it's very unclear to me and I
12888         don't have SCCS to test things.
12890         * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
12891         (vc-sccs-state-heuristic): Fix typo.
12892         (vc-sccs-workfile-unchanged-p): Add missing argument.
12894         * vc-rcs.el: Require vc and vc-rcs-hooks.
12895         (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
12896         (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
12897         (vc-release-greater-or-equal-p): Move from vc.
12898         (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
12899         vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
12900         (vc-rcs-checkout): Add a missing `new-version' argument in the
12901         call to vc-rcs-latest-on-branch-p.  Hopefully that was the right one.
12903         * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
12904         (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
12905         (vc-rcs-latest-on-branch-p): Use the `version' argument rather
12906         than the apparently unbound `workfile-version'.
12908         * vc-hooks.el (vc-master-templates): Def the obsolete var.
12909         (vc-file-prop-obarray): Use `make-vector'.
12910         (vc-backend-functions): Add new hookable functions
12911         vc-toggle-read-only, vc-record-rename and vc-merge-news.
12912         (vc-loadup): If neither backend nor default functions exist, use
12913         the backend function rather than nil.
12914         (vc-call-backend): If the function if not bound yet, try to load
12915         the non-hook file to see if it provides it.
12916         (vc-call): New macro plus use it wherever possible.
12917         (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
12918         nor `vc-find-binary' since it's only called from
12919         vc-mistrust-permission which is only used once the backend is known.
12920         (vc-checkout-model): Fix parenthesis.
12921         (vc-recompute-state, vc-prefix-map): Move to vc.el.
12923         * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
12924         (vc-cvs-release, vc-cvs-system-release): Remove.
12925         (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
12926         (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
12927         status symbols.
12928         (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
12929         (vc-cvs-toggle-read-only): First cut at a function to allow a
12930         cvs-status-free vc-toggle-read-only.
12931         (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
12932         (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
12933         vc-cvs-status.  Also set vc-state rather than vc-locking-user.
12934         (vc-cvs-checkout): Modify access rights directly if the user
12935         requested not to use `cvs edit'.  And refresh the mode line.
12937         * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
12938         (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
12940 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
12942         * vc-cvs.el (vc-cvs-checkout): Docstring fix.  Added a `(if
12943         workfile' that got lost when the code was extracted from vc.el.
12944         And merged the tail with the rest of the code (not possible in the
12945         old vc.el where the tail was shared among all backends).  And
12946         explicitly set the state to 'edited if `writable' is set.
12948         * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
12949         (vc-cvs-state): Be careful to return the value from
12950         vc-cvs-parse-state.
12951         (vc-cvs-parse-status): Use expand-file-name.  Don't set 'vc-state
12952         property but return it instead.  Also be careful to handle a nil
12953         or "" `rev' when workfile is non-nil (it was handled properly when
12954         workfile was nil).
12956         * vc.el: Removed those pesky unnecessary `(function' quotes.
12957         (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
12958         directly in the defvar.
12959         (vc-do-command): Bind inhibit-read-only so as to properly handle
12960         the case where the destination buffer has been made read-only.
12961         (vc-diff): Delegate to vc-version-diff in all cases.
12962         (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
12963         (vc-annotate-mode-variables): Removed (code moved partly to
12964         defvars and partly to vc-annotate-add-menu).
12965         (vc-annotate-mode): Turned into a derived-mode.
12966         (vc-annotate-add-menu): Moved in code in
12967         vc-annotate-mode-variables.
12968         (vc-update-change-log): Use make-temp-file if available.
12970 2000-09-04  Martin Lorentzson  <martinl@delysid.gnu.org>
12972         * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
12973         `vc-checkout-model' updated to `vc-cvs-update-model'.
12975 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
12977         * vc.el (vc-next-action-on-file): Added handling of state
12978         `unlocked-changes'.
12979         (vc-checkout-carefully): Is now practically obsolete, unless the
12980         above is too slow to be enabled unconditionally.
12981         (vc-update-change-log): Fixed typo.
12983         * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
12985         * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
12986         Now handles state `unlocked-changes'.
12987         (vc-sccs-workfile-unchanged-p): New function, to support the above.
12989         * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
12991         * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
12992         (vc-rcs-fetch-master-state): Bug fixes.  Recognize state
12993         `unlocked-changes'.
12994         (vc-rcs-workfile-unchanged-p): Renamed from
12995         `vc-rcs-workfile-unchanged'.  This is not a real backend-specific
12996         function yet, but supposed to become one soon.
12998         * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
12999         `vc-steal-lock'.
13000         (vc-call-backend): Changed error message.
13001         (vc-state): Added description of state `unlocked-changes'.
13003 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13005         * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
13006         always return t in CVS-controlled directories.
13008         * vc.el (vc-responsible-backend): New function.
13009         (vc-register): Largely rewritten.
13010         (vc-admin): Removed (implementation moved into vc-register).
13011         (vc-checkin): Redocumented.
13012         (vc-finish-logentry): If no backend defined yet (because we are in
13013         the process of registering), use the responsible backend.
13015         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
13016         Updated function lists.
13017         (vc-call-backend): Fixed typo.
13019         * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
13020         New functions.
13021         (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
13022         Removed query option.  Redocumented.
13024 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13026         * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
13028         * vc.el: Updated callers of `vc-checkout-required' to use
13029         `vc-checkout-model'.
13031 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13033         * vc-rcs.el (vc-rcs-backend-release-p): function added.  other
13034         stuff updated to reference this function instead of the old
13035         `vc-backend-release-p'.
13037 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13039         * vc-sccs-hooks.el (vc-uses-locking): Renamed to
13040         vc-checkout-model.  Return appropriate values.  Updated callers.
13042 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13044         * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
13045         (vc-backend-revert): Function moved into `vc-revert';
13046         `vc-next-action' must be updated to accomodate this change.
13047         (vc-backend-steal): Function moved into `vc-finish-steal'.
13048         (vc-backend-logentry-check): Function moved into
13049         `vc-finish-logentry'.
13050         (vc-backend-printlog): Function moved into `vc-print-log'.
13051         (vc-backend-uncheck): Function moved into `vc-cancel-version'.
13052         (vc-backend-assign-name): Function moved into
13053         `vc-create-snapshot'.
13055 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13057         * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
13058         Rename to vc-checkout-model.  Return appropriate values.
13059         Update callers.
13061         * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
13062         to vc-checkout-model.
13063         (vc-checkout-required): Rename to vc-checkout-model.
13064         Re-implement and re-comment.
13065         (vc-after-save): Use vc-checkout-model.
13067 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13069         * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
13070         Update to use the vc-BACKEND-diff functions instead.
13071         `vc-diff' is now working.
13073         * vc-rcs.el (vc-rcs-logentry-check): New function.
13075         * vc-cvs.el (vc-cvs-logentry-check): New function.
13077         * vc-sccs.el (vc-sccs-diff): Function changed name from
13078         `vc-backend-diff'.  This makes `vc-diff' work.
13080         * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
13081         of functions possibly implemented in a vc-BACKEND library.
13082         (vc-checkout-required): Fix bug that caused an error to be
13083         signaled during `vc-after-save'.
13085         * vc.el: Fix typo.
13086         This checkin is made with our new VC code base for the very first time.
13087         A simple `(vc-checkin (buffer-file-name))' was used to perform it.
13089         * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
13090         `vc-checkout-required' updated to `vc-cvs-uses-locking'.
13092         * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
13093         updated to `vc-uses-locking'.
13094         (vc-checkout-required): Call to backend function.
13095         `vc-checkout-required' updated to `vc-uses-locking' instead.
13097         * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
13098         `vc-checkout-required' updated to `vc-rcs-uses-locking'.
13100         * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
13101         to match the split into various backends.
13102         (vc-backend-checkin): Remove.  Merge with `vc-checkin'.
13103         (vc-retrieve-snapshot): Bug fix.
13105 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13107         * vc-sccs.el (vc-sccs-release): Doc fix.
13109 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13111         * vc.el (vc-next-action-on-file): Bug found and fixed.
13112         (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
13113         (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
13115         * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
13116         (vc-rcs-checkout): Name space cleaned up.  No more revision number
13117         crunching function names that are not prefixed with vc-rcs.
13118         (vc-rcs-checkout-model): Function added.  References to
13119         `vc-checkout-model' replaced.
13121 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13123         * vc.el (vc-next-action-on-file): Rewritten for the new state model.
13124         (vc-backend-merge-news): Renamed to `vc-merge-news'.  (Specific parts
13125         still need to be split, and implemented for RCS).
13127 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13129         * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
13131         * vc-sccs.el (vc-sccs-admin): Added the query-only option as
13132         required by the vc.el file.
13134         * vc-rcs.el (vc-rcs-admin): Added the query-only option as
13135         required by the vc.el file.
13136         (vc-rcs-exists): Function added.
13138         * vc-cvs.el (vc-cvs-admin): Added the query-only option as
13139         required by the vc.el file.
13141         * vc.el (vc-admin): Updated to handle selection of appropriate
13142         backend.  Current implementation is crufty and need re-thinking.
13144         * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
13146 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13148         * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
13149         beginning of annotate buffers correctly.
13151         * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
13152         (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
13153         functionality updated quite a lot to support multiple backends.
13154         Variables `vc-annotate-mode', `vc-annotate-buffers',
13155         `vc-annotate-backend' added.
13157         * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
13158         `vc-annotate-difference' added to supported backend functions.
13160 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13162         * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
13163         Use with-temp-file instead of /bin/sh.  Merged from mainline
13165 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13167         * vc-sccs-hooks.el (vc-sccs-registered): Updated.
13169         * vc-rcs-hooks.el (vc-rcs-registered): Updated.
13171         * vc-cvs-hooks.el (vc-cvs-registered): Updated.
13173 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13175         * vc-hooks.el: vc-state-heuristic added to
13176         vc-backend-hook-functions.
13178         * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
13180         * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
13182         * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
13183         `vc-uses-locking' to `vc-checkout-required'.  Rename the `locked'
13184         state to `reserved'.
13186         * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
13187         `vc-checkout-required'.  Rename the `locked' state to `reserved'.
13189 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13191         * vc-rcs-hooks.el: Implement new state model.  Hardly anything
13192         untouched.
13194         * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
13196         * vc.el (vc-update-change-log): Use small-temporary-file-directory,
13197         if defined.  (Merged from main line, slightly adapted.)
13199         * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
13200         millenium problem (merged from mainline).
13202 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13204         * vc-cvs.el: Split the annotate feature into a BACKEND-specific
13205         part and moved the non-BACKEND stuff to vc.el.
13207         * vc.el: Split the annotate feature into a BACKEND specific part
13208         and moved it from the vc-cvs.el file to this one.
13210 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13212         * vc-hooks.el: Implement new state model.
13213         (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
13214         (vc-locking-user): Simplify.  Now only needed if the file is
13215         locked by somebody else.
13216         (vc-lock-from-permissions): Remove.  Functionality is in
13217         vc-sccs-hooks.el and vc-rcs-hooks.el now.
13218         (vc-mode-line-string): New name for former vc-status.  Adapted.
13219         (vc-mode-line): Adapt to use the above.  Remove optional parameter.
13221         * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
13222         Various simplifications and adaptations all over the place.
13224         * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
13225         Simplify and adapt the rest.
13227         * vc.el (vc-resynch-window): Add TODO comment: check for
13228         interaction with view mode according to recent RCS change.
13229         (vc-backend-merge-news): Merge "CMUP" patch from mainline.
13231 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13233         * vc.el: Convert the remaining function comments to docstrings.
13235 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13237         * vc.el (vc-backend-release, vc-release-greater-or-equal)
13238         (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
13239         (vc-minor-part, vc-previous-version): Functions that operate and
13240         compare revision numbers got proper documentation.  Comments added
13241         about their possible removal.
13243 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13245         * vc.el (vc-latest-on-branch-p): Function removed and replaced in
13246         the vc-backend.el files.
13248         * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
13250         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
13251         (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
13252         (vc-rcs-previous-version): Functions added.
13254         * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
13256         * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
13258 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13260         * vc-hooks.el (vc-master-templates): Is really obsolete.
13261         Comment out the definition for now.  What is the right procedure
13262         to get rid of it?
13263         (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
13264         rewritten.
13265         (vc-default-registered): Remove.
13266         (vc-check-master-templates): New function; does mostly what the
13267         above did before.
13268         (vc-locking-user): Don't rely on the backend to set the property.
13270         * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
13271         Rewrite documentation.
13272         (vc-rcs-templates-grabbed): New variable.
13273         (vc-rcs-grab-templates): New function.
13274         (vc-rcs-registered): Rewrite to use above mechanism.
13276         * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
13277         Rewrite documentation.
13278         (vc-sccs-templates-grabbed): New variable.
13279         (vc-sccs-grab-templates): New function.
13280         (vc-sccs-registered): Rewrite to use above mechanism.
13281         (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
13282         Don't throw the result, simply return it.
13284         * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
13285         (vc-cvs-find-master): Remove.  Code is now in vc-cvs-registered.
13286         (vc-cvs-registered): Does the check itself now.  Simplify.
13288         * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
13289         from main line.
13291 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13293         * vc-cvs.el (vc-cvs-diff): New function.
13295         * vc-sccs.el (vc-sccs-diff): New function.
13297         * vc-rcs.el (vc-rcs-diff): New function.
13298         (vc-rcs-checkout): Bug (typo) found and fixed.
13299         (vc-rcs-register-switches): New variable.
13301         * vc.el (vc-backend-diff): Function removed and placed in the
13302         backend files.
13304 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13306         * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
13308         * vc.el (vc-backend-checkout): Function removed and replaced in
13309         the vc-backend.el files.
13311         * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
13313         * vc.el (vc-backend-admin): Removed and replaced in the
13314         vc-backend.el files.
13316         * vc.el (Martin): Removed all the annotate functionality since it
13317         is CVS backend specific.
13319 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13321         * spec.txt: Added specification of vc-state.
13323         * vc-sccs-hooks.el (vc-sccs-master-properties):
13324         Remove handling of vc-latest-version and
13325         vc-your-latest-version.  What used to be vc-latest-version, is now
13326         returned as vc-workfile-version.
13327         (vc-sccs-workfile-version): Adapt.
13329 2000-09-04  Dave Love  <fx@gnu.org>
13331         * vc.el: [Merged from mainline.]
13332         (vc-dired-mode): Make the dired-move-to-filename-regexp
13333         regexp match the date, to avoid treating date as file size.
13334         Add YYYY S option to WESTERN/
13336 2000-09-04  Dave Love  <fx@gnu.org>
13338         * vc.el: Require `compile' when compiling.
13339         (vc-logentry-check-hook): New option.
13340         (vc-steal-lock): Use compose-mail.
13341         (vc-dired-mode-map): Defvar when compiling.
13342         (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
13343         vc-sccs.el and renamed.  Callers changed.
13344         (vc-backend-checkout, vc-backend-logentry-check)
13345         (vc-backend-merge-news): Doc fix.
13346         (vc-default-logentry-check): New function.
13347         (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
13348         (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
13349         (vc-backend-merge): Doc fix.  Use backend functions.
13350         (vc-check-headers): Use backend functions.
13352         * vc-cvs.el: Require vc when compiling.
13353         (vc-cvs-register-switches): Doc fix.
13354         (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
13355         (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
13356         (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
13357         New functions (code from vc.el).
13358         (vc-annotate-display-default): Fix interactive spec.
13359         (vc-annotate-time-span): Doc fix.
13361         * vc-rcs.el: Require vc when compiling.
13362         (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
13363         (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
13364         (vc-rcs-checkin): New functions (code from vc.el).
13365         (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
13366         Doc fix.
13367         (vc-rcs-release): Deleted.  (Duplicated vc-rcs-system-release).
13369         * vc-sccs.el: Require vc when compiling.
13370         (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
13371         (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
13372         (vc-sccs-revert)
13373         (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
13374         from vc.el).
13375         (vc-sccs-add-triple, vc-sccs-record-rename)
13376         (vc-sccs-lookup-triple): Moved from vc.el and renamed.
13377         (vc-sccs-admin): Doc fix.
13379 2000-09-04  Martin Lorentzson  <martinl@gnu.org>
13381         * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
13382         (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
13383         (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
13384         from vc.el.
13386         * vc-sccs.el (vc-admin-sccs): Added from vc.el
13388         * vc-cvs.el: Moved the annotate functionality from vc.el.
13389         (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
13391 2000-09-04  Dave Love  <fx@gnu.org>
13393         * vc.el (vc-backend-release): Call vc-system-release.
13395         * vc-sccs.el (vc-sccs-system-release):
13396         Renamed from vc-sccs-backend-release.
13398         * vc-rcs.el (vc-rcs-system-release):
13399         Renamed from vc-rcs-backend-release.
13401         * vc-cvs.el (vc-cvs-system-release):
13402         Renamed from vc-cvs-backend-release.
13404 2000-09-04  Dave Love  <fx@gnu.org>
13406         * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
13407         backend files.
13408         (vc-backend-release): Dispatch to backend functions.
13409         (vc-backend-release-p): Don't mention CVS, RCS.  [The SCCS case
13410         probably needs attention.]
13412         * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
13413         (vc-sccs-backend-release): New function.
13415         * vc-cvs.el (vc-cvs-release): Moved from vc.el.
13416         (vc-cvs-backend-release): New function.
13418         * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
13419         Doc fix.
13420         (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
13421         (vc-default-dired-state-info): New function.
13422         (vc-dired-state-info): Dispatch to backends.
13423         (vc-dired-hook): Doc fix.  Simplify, pending removal of CVS specifics.
13425         * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
13426         from vc.el and renamed.
13428 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13430         * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
13431         (vc-version-other-window, vc-backend-assign-name): Removed
13432         references to vc-latest-version; sometimes changed into
13433         vc-workfile-version.
13435         * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
13436         vc-rcs-master-workfile-version.
13437         (vc-rcs-workfile-version): Use the above.  Don't call
13438         vc-latest-version (that was unreachable code, anyway).
13439         (vc-rcs-fetch-master-properties): Doc fix.
13441         * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
13442         (vc-backend-hook-functions): Removed them from this list, too.
13443         (vc-fetch-properties): Removed.
13444         (vc-workfile-version): Doc fix.
13446         * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
13447         (vc-rcs-workfile-version, vc-rcs-locking-user)
13448         (vc-rcs-uses-locking): Use it.
13450         * vc-hooks.el (vc-consult-rcs-headers):
13451         Moved into vc-rcs-hooks.el, under the name
13452         vc-rcs-consult-headers.
13454         * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
13455         headers.
13456         (vc-cvs-find-master): Use this name only; correct different
13457         versions of the name.
13459         * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
13460         New functions.
13461         (vc-sccs-locking-user): Use the latter.
13463         * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
13464         New functions.
13466         * vc-hooks.el (vc-master-locks, vc-master-locking-user):
13467         Moved into both
13468         vc-rcs-hooks.el and vc-sccs-hooks.el.  These properties and access
13469         functions are implementation details of those two backends.
13471 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13473         * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
13474         (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
13476         * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
13477         (vc-sccs-parse-locks): SCCS-specific code moved here from
13478         vc-hooks.
13480         * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
13481         code moved here from vc-hooks.
13483         * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
13484         into back-end specific parts and removed.  Callers not updated
13485         yet; because I guess these callers will disappear into back-end
13486         specific files anyway.
13488 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13490         * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
13491         (vc-backend-checkout): Changed calls to `vc-checkout-model' to
13492         `vc-uses-locking'.
13494         * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
13495         Store yes/no in the property, and return t/nil.  Updated all
13496         callers.
13498         * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
13499         vc-sccs-uses-locking.  Don't set property.
13500         (vc-sccs-locking-user): Don't set property.
13502         * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
13503         vc-cvs-uses-locking.  Don't set property here; leave that to
13504         vc-hooks.
13505         (vc-cvs-locking-user): Reflect above change.  Streamlined.
13507         * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
13508         vc-rcs-uses-locking.
13509         (vc-rcs-locking-user): Reflect above change.
13511 2000-09-04  Dave Love  <fx@gnu.org>
13513         * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
13515         * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
13517         * vc-hooks.el (vc-checkout-model): Punt to backends.
13519         * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
13521         * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
13523         * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
13524         New functions.
13526         * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
13527         New functions.
13529         * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
13530         (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
13532         * vc-hooks.el (vc-default-locking-user): New function.
13533         (vc-locking-user, vc-workfile-version): Punt to backends.
13535 2000-09-04  Dave Love  <fx@gnu.org>
13537         * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
13538         (vc-master-workfile-version): Moved from vc-hooks.
13540         * vc-rcs-hooks.el: Fix duplicate code in last change.
13542         * vc-rcs-hooks.el: Require vc-hooks when compiling.
13543         (vc-rcs-master-templates): Improve :type.
13544         (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
13545         vc-master-workfile-version): Moved from vc-hooks.
13547         * vc-sccs-hooks.el: Require vc-hooks when compiling.
13548         (vc-sccs-master-templates): Improve :type.
13549         (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
13551         * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
13553         * vc-cvs-hooks.el: Require vc-hooks when compiling.
13554         (vc-cvs-master-templates): Improve :type.  Use
13555         vc-cvs-find-cvs-master.
13556         (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
13557         from vc-hooks.
13558         (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
13560         * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
13561         Moved to vc-cvs-hooks.
13563         * vc-hooks.el: Add doc strings in various places.  Simplify the
13564         minor mode setup.
13565         (vc-handled-backends): New user variable.
13566         (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
13567         simplification.
13569 2000-09-04  Dave Love  <fx@gnu.org>
13571         * vc.el: Some doc fixes for autoloaded and interactive functions.
13572         Fix compilation warnings from ediff stuff.
13573         (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
13575         * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
13577         * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
13579         * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
13581 2000-09-04  Dave Love  <fx@gnu.org>
13583         * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
13584         New variable.
13585         (vc-make-backend-function, vc-loadup, vc-call-backend)
13586         (vc-backend-defines): New functions.
13588         * vc-hooks.el: Various doc fixes.
13589         (vc-default-back-end, vc-follow-symlinks): Custom fix.
13590         (vc-match-substring): Function removed.  Callers changed to use
13591         match-string.
13592         (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
13593         Simplify.
13595 2000-09-04  Dave Love  <fx@gnu.org>
13597         * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
13598         type.
13599         (vc-sccs-project-dir, vc-search-sccs-project-dir)
13600         (vc-sccs-registered): Doc fix.
13602         * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
13603         (vc-cvs-registered): Doc fix.
13605         * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
13606         (vc-rcs-registered): Doc fix.
13608 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13610         * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
13612         * vc-hooks.el: vc-registered has been renamed
13613         vc-default-registered.  Some functions have been moved to the
13614         backend specific files.  they all support the
13615         vc-BACKEND-registered functions.
13617 2000-09-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
13619         * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
13621         * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
13623 2000-09-04  Dave Love  <fx@gnu.org>
13625         * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
13626         menu-bar-update-hook.
13628         * help.el (help-manyarg-func-alist): Add
13629         find-operation-coding-system.
13631         * wid-edit.el (widget-sexp-validate): Fix garbled code.
13633         * custom.el (custom-set-variables): Print message about errors in
13634         setting.
13636 2000-09-03  Andrew Innes  <andrewi@gnu.org>
13638         * makefile.w32-in: Change to DOS line endings.
13640 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
13642         * mouse.el (mouse-popup-menubar): Supply the prompt string for
13643         minor-mode keymaps, if they don't have one.
13645 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
13647         * eshell/esh-module.el (eval-when-compile): Don't lose if
13648         esh-module.el's file name is truncated to DOS 8+3 limits.
13650 2000-09-01  John Wiegley  <johnw@gnu.org>
13652         * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
13653         predicate, which caused entries in the completion list to be
13654         doubled.
13656 2000-08-30  John Wiegley  <johnw@gnu.org>
13658         * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
13659         sending to subprocesses.  Also, hook pre-command-hook if
13660         `eshell-send-direct-to-subprocesses' is non-nil.
13661         (eshell-send-direct-to-subprocesses): New config variable.  If t,
13662         subprocess input is send immediately.
13663         (eshell-toggle-direct-send): New function.
13664         (eshell-self-insert-command): New function.
13665         (eshell-intercept-commands): New function.
13666         (eshell-send-input): If direct subprocess sending is enabled,
13667         don't echo any input to the Eshell buffer.  Let the subprocess
13668         handle that.  This requires "stty echo" in bash, for example.
13670 2000-08-28  John Wiegley  <johnw@gnu.org>
13672         * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
13673         completion function for Eshell's implementation of `unset'.
13675 2000-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
13677         * info.el (Info-directory-list): Doc fix.
13679 2000-08-31  Peter Breton  <pbreton@ne.mediaone.net>
13681         * filecache.el (file-cache-add-directory-using-find): Don't quote
13682         wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
13684 2000-08-31  Kenichi Handa  <handa@etl.go.jp>
13686         * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
13687         coding systems.
13689 2000-08-30  Andrew Innes  <andrewi@gnu.org>
13691         * timer.el (run-with-idle-timer): Undo last change, so that timer
13692         is not activated immediately if Emacs is already idle.  Some
13693         existing code relies on this behaviour.
13695 2000-08-30  Miles Bader  <miles@gnu.org>
13697         * frame.el (set-frame-font): Do completion of font-name for
13698         interactive use.
13700 2000-08-30  Kenichi Handa  <handa@etl.go.jp>
13702         * international/quail.el (quail-start-translation): Bind locally
13703         last-command-event, last-command, and this-command.
13704         (quail-start-conversion): Likewise.
13705         (quail-self-insert-command): Fix docstring.
13707 2000-08-29  Gerd Moellmann  <gerd@gnu.org>
13709         * progmodes/executable.el
13710         (executable-make-buffer-file-executable-if-script-p): Check that
13711         buffer contains at least 2 characters.
13713 2000-08-29  Eli Zaretskii  <eliz@is.elta.co.il>
13715         * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
13717 2000-08-29  Dave Love  <fx@gnu.org>
13719         * diff-mode.el (diff-mode) <defgroup>: Add :version.
13720         (diff-mode-shared-map): Bind mouse-2.
13721         (diff-imenu-generic-expression): New variable.
13722         (diff-mode): Use it.
13724         * mouse.el (mouse-major-mode-menu): Use local-key-binding.
13725         (mouse-popup-menubar): Add minor mode menus.
13726         (popup-menu): Check for lookup-key returning number.
13728 2000-08-29  Miles Bader  <miles@gnu.org>
13730         * comint.el (comint-send-input): Create overlays using the proper
13731         front/read-advance arguments.
13733 2000-08-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
13735         * ps-print.el: Even/odd pages printing.  Doc fix.
13736         (ps-print-version): New version number (6.0).
13737         (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
13738         (ps-background, ps-begin-file, ps-begin-job): Code fix.
13739         (ps-print-duplex-feature): Variable eliminated.
13740         (ps-even-or-odd-pages): New variable.
13742         * progmodes/ebnf2ps.el: Doc fix.
13743         (ebnf-version): New version (3.3).
13744         (ebnf-user-arrow): Change variable customization to sexp.
13745         (ebnf-user-arrow): Function eliminated.
13746         (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
13748 2000-08-29  Kenichi Handa  <handa@etl.go.jp>
13750         * help.el (help-xref-mule-regexp): New variable.
13751         (help-make-xrefs): Handle help-xref-mule-regexp.
13753         * international/mule-cmds.el (help-xref-mule-regexp-template): New
13754         variable.
13755         (describe-input-method): Temporarily activate the specfied input
13756         method to display the information.
13757         (describe-language-environment): Hyperlinks to mule related items.
13759         * international/mule-diag.el (charset-multibyte-form-string): New
13760         function.
13761         (list-character-sets-1): Use charset-multibyte-form-string.
13762         (describe-character-set): New function.
13763         (describe-coding-system): Hyperlinks to safe character sets.
13765         * international/quail.el (quail-help): New arg PACKAGE.
13766         Hyperlinks to mule related items.
13767         (quail-help-insert-keymap-description): Use
13768         substitute-command-keys instead of describe-bindings.
13769         (quail-translation-help): Hyperlinks to mule related items.
13771 2000-08-28  John Wiegley  <johnw@gnu.org>
13773         * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
13774         have a defsubst call itself.  Made `eshell-flatten-list' back into
13775         a function again.
13777         * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
13778         catch, in case re-centering point at bottom messes up the display.
13779         This happens frequently in Emacs 21, due I believe to variable
13780         line heights.
13782         * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
13783         to call `find-tag-interactive'.
13785         * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
13786         the list of remember directories.
13788 2000-08-28  John Wiegley  <johnw@gnu.org>
13790         * align.el: Test align-region-separate to see if it's a symbol.
13792 2000-08-28  John Wiegley  <johnw@gnu.org>
13794         * eshell/esh-util.el (eshell-flatten-list): Made this function
13795         into a defsubst form.  It gets used very frequently, although
13796         calls don't occur all that often.
13798         * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
13799         examining it.
13801         * eshell/esh-cmd.el (eshell-rewrite-while-command):
13802         (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
13803         `eshell-protect'.
13804         (eshell-copy-handles): Created a new macro for duplicating the
13805         current set of open handles.  This is needed by the looping
13806         functions.
13807         (eshell-do-eval): Fixed while and if, so that the eshell-test-body
13808         is not incorrectly stomped on.
13810         * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
13811         declaration for pcomplete-use-paring.
13812         (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
13813         value of eshell-cmpl-use-paring.
13814         * pcomplete.el (pcomplete-use-paring): New config variable, to
13815         indicate whether paring should be used.
13816         (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
13817         completion alternatives that have already been used.
13819         * eshell/esh-mode.el (eshell-repeat-argument): Added function,
13820         bound to C-c C-y, which will repeat the previous N arguments
13821         (based on prefix argument).
13822         (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
13824         * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
13825         if there is no *Help* buffer.  This is for XEmacs, which renames
13826         its help buffers uniquely.  TODO: Find out what the current buffer
13827         name to delete is.
13829         * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
13830         first entry that correlates to a passwd/group number.  Later
13831         entries (used for group/user name aliasing to multiple IDs) are
13832         ignored.
13834         * eshell/em-xtra.el (eshell/expr):
13835         * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
13836         (eshell-grep, eshell/diff, eshell/locate):
13837         * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
13838         argument list, before passing it to the system command.
13840         * eshell/esh-mode.el (eshell-find-tag): Added a special version of
13841         `find-tag' for use at final position in Eshell buffers (which
13842         otherwise triggers an error on Emacs 21).
13843         (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
13844         buffer, if it is currently bound to `find-tag'.
13846         * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
13847         in the list of matched Makefile names.
13848         (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
13849         directory, prefer its contents to Makefile.
13851         * eshell/em-dirs.el (eshell/cd): cd commands that look up
13852         directory parts (like "cd old new", or "cd =regexp"), are now case
13853         sensitive on non-Windows/DOS platforms.
13855         * eshell/esh-mode.el (eshell-parse-command-input): When a user
13856         types RET after an open delimiter (like "), display a message
13857         indicating that Eshell is waiting for the closing delimiter.
13859         * eshell/esh-var.el (eshell/unset): Added a command for unsetting
13860         environment variables.
13862         * eshell/em-unix.el (eshell/diff): Added logic to fail more
13863         gracefully if the user enters incorrect arguments.
13865         * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
13866         Eshell buffers.
13868         * eshell/esh-var.el (eshell-interpolate-variable):
13869         * eshell/esh-mode.el (eshell-move-argument):
13870         * eshell/em-unix.el (eshell-du-sum-directory):
13871         * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
13872         * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
13873         (not (= ...)).
13875         * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
13876         to ensure the `preserve' flag gets propagated when doing recursive
13877         directory copies.
13879 2000-08-28  Stefan Monnier  <monnier@cs.yale.edu>
13881         * eshell/em-hist.el (eshell-put-history, eshell-get-history):
13882         Don't convert \n into \0177 in memory.
13883         (eshell-read-history, eshell-write-history): Convert \n to \0177,
13884         and back again, when reading and writing.
13886 2000-08-28  Eli Zaretskii  <eliz@is.elta.co.il>
13888         * eshell/esh-util.el (eshell-processp): Added to relieve constant
13889         testing of `fboundp' on `processp'.
13891         * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
13892         (eshell/jobs): Don't call process-list if it is not bound.
13893         (eshell-gather-process-output): Support systems where async
13894         subprocesses aren't supported.
13895         (eshell-scratch-buffer, eshell-last-sync-output-start): New
13896         variables.
13898         * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
13899         eshell-do-eval returns t.
13900         (eshell-do-pipelines-synchronously): New defmacro.
13901         (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
13902         when async subprocesses aren't supported.
13903         (eshell-do-eval): Use eshell-processp.  Don't throw eshell-defer
13904         if async subprocesses aren't supported.
13905         (eshell-resume-command): Don't assume STATUS is a string.
13907         * eshell/em-unix.el (eshell/rm): Use eshell-processp.
13909         * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
13910         (eshell-close-target, eshell-get-target): Use eshell-processp.
13911         (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
13912         fix.
13913         (eshell-get-target, eshell-create-handles): Doc fix.
13915 2000-08-28  Miles Bader  <miles@lsi.nec.co.jp>
13917         * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
13918         criterion to include commands that output something, as long as it
13919         leaves both the command and the end-of-buffer visible when the
13920         command has exited.
13921         (eshell-review-quick-commands): Adjust the help doc string
13922         accordingly.
13924 2000-08-28  Peter Breton  <pbreton@ne.mediaone.net>
13926         * locate.el (locate): Cleaned up locate command's interactive prompting
13927         Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
13929         * filecache.el (file-cache-case-fold-search): New variable
13930         (file-cache-assoc-function): New variable
13931         (file-cache-minibuffer-complete): Use file-cache-assoc-function.
13932         Use file-cache-case-fold-search variable
13933         (file-cache-add-file): Use file-cache-assoc-function
13934         (file-cache-delete-file): likewise
13935         (file-cache-directory-name): likewise
13936         (file-cache-debug-read-from-minibuffer): likewise
13938 2000-08-28  Gerd Moellmann  <gerd@gnu.org>
13940         * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
13941         (abbrev-table-name): New function.
13942         (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
13943         If non-nil list local abbrev, only.
13945 2000-08-28  Stanislav Shalunov  <shalunov@internet2.edu>
13947         * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
13948         from Gnus support code, and use special article copy buffer
13949         `(gnus-original-article-buffer)' instead.  This allows to get rid
13950         of article-hide-headers usage (which breaks in the latest Gnus
13951         version).  Thanks to Detlev Zundel.
13953 2000-08-28  Kenichi Handa  <handa@etl.go.jp>
13955         * international/quail.el (quail-use-package): Hide "... loaded"
13956         message.
13957         (quail-start-translation, quail-start-conversion): Likewise.
13959         * international/kkc.el (kkc-region): Hide "... loaded" message.
13961 2000-08-27  Dave Love  <fx@gnu.org>
13963         * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
13965 2000-08-27  Miles Bader  <miles@gnu.org>
13967         * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
13969 2000-08-27  Kenichi Handa  <handa@etl.go.jp>
13971         * international/ja-dic-cnv.el (skkdic-convert): Insert (require
13972         'ja-dic-cnv), not (require 'skkdic-cnv).
13974 2000-08-26  Miles Bader  <miles@gnu.org>
13976         * faces.el (face-x-resources): Add entry for :inherit.
13977         * cus-face.el (custom-face-attributes): Add support for :inherit
13978         attribute.  Add support for relative face heights.
13979         (custom-face-attributes-get): Treat `nil' as being a default value
13980         for :inherit (as well as `unspecified').
13982         * faces.el (set-face-attribute): Update doc string.
13983         (face-attribute-name-alist): Add :inherit.
13984         (face-valid-attribute-values): Handle :inherit.
13985         (face-read-string): Rephrase prompt to be less confusing.
13986         Assume that DEFAULT is a string, since we must return a string.
13987         (face-read-integer): Use `format' to turn DEFAULT into an
13988         acceptable default for face-read-string.  Match NEW-VALUE against
13989         the string "unspecified", not the symbol `unspecified', since
13990         that's what face-read-string returns.
13991         (read-face-attribute): Lookup a name for old-value in valid, and
13992         use it as a default if we find one.  Treat all values from
13993         face-read-string as strings.  If the default is used, don't do any
13994         more processing on the value, just use the old value directly.
13995         (read-face-and-attribute, modify-face): Tweak prompt.
13996         (read-face-name): Don't assume prompt ends with a space.
13998         * faces.el (describe-face): Add support for :inherit attribute.
14000 2000-08-25  Kenichi Handa  <handa@etl.go.jp>
14002         * terminal.el (terminal-emulator): Fix args to `concat'.  Now
14003         concat doesn't accept interger.
14005         * international/kkc.el: Remove SKK from Keywords.  Require
14006         ja-dic-utl instead of skkdic-utl.
14008         * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
14009         Provide ja-dic-cnv instead of skkdic-cnv.
14010         (ja-dic-filename): Renamed from skkdic-filename.  Referers changed
14011         (iso-2022-7bit-short): Add safe-charsets property.
14012         (skkdic-convert-postfix): Search Japanese chou-on character in
14013         addition to Hiragana character.
14014         (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
14015         (skkdic-convert): Change file names from skkdic.el to ja-dic.el
14016         (batch-skkdic-convert): Likewise.
14018         * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
14019         Provide ja-dic-utl instead of skkdic-utl.
14020         (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
14022 2000-08-24  Dave Love  <fx@gnu.org>
14024         * disp-table.el (standard-display-default): Make the test of `l'
14025         useful.
14027         * language/european.el ("Latin-8", "Latin-9"): Add input methods,
14028         mod sample text.
14030         * international/iso-ascii.el: Make pilcrow convenient string
14031         consistent with section.
14032         (iso-ascii-display): Set up multibyte characters as well as
14033         unibyte.
14035 2000-08-24  Kenichi Handa  <handa@etl.go.jp>
14037         * international/mule-cmds.el (reset-language-environment): Set
14038         default-process-coding-system to '(undecided . iso-latin-1), which
14039         makes process I/O almost consistent with file I/O.   Call this
14040         function when mule-cmds.el[c] is loaded.
14042 2000-08-22  Andrew Innes  <andrewi@gnu.org>
14044         * makefile.w32-in: New file.
14046 2000-08-22  Miles Bader  <miles@lsi.nec.co.jp>
14048         * comint.el (comint-output-filter): Compare end of
14049         comint-last-output-overlay with the start of the newly inserted
14050         text, not the end, when deciding whether to extend it.
14051         Set saved-point's insertion type to advance after insertion.
14053         * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
14054         since this is now done independently of font-lock mode.
14056 2000-08-21  Gerd Moellmann  <gerd@gnu.org>
14058         * server.el (server-kill-new-buffers): New user option.
14059         (server-existing-buffer): New buffer-local variable.
14060         (server-visit-files): When using an existing buffer, set
14061         server-existing-buffer to t.
14062         (server-buffer-done): If server-kill-new-buffers is t, kill the
14063         buffer, unless it was already present before visiting it with
14064         Emacs server.
14066 2000-08-21  Eli Zaretskii  <eliz@is.elta.co.il>
14068         * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
14069         even if the display doesn't support colors: some displays will
14070         support bold/underline faces.
14072 2000-08-21  Gerd Moellmann  <gerd@gnu.org>
14074         * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
14076         * startup.el (command-line): If user's init file had an error,
14077         add explanatory text to *Messages*.
14079 2000-08-21  Kenichi Handa  <handa@etl.go.jp>
14081         * man.el (Man-getpage-in-background): Decode the process output by
14082         the system locale coding system.
14084 2000-08-20  Dave Love  <fx@gnu.org>
14086         * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
14087         Don't test x-popup-menu.
14088         (function) <complete-function>: Complete only fbound symbols.
14089         <validate, value>: New.
14090         (variable) <complete-function>: Complete only bound symbols.
14091         (coding-system): Add :base-only, :complete-function, :validate,
14092         :value, :prompt-match.
14093         (widget-coding-system-prompt-value): Use read-coding-system and
14094         act on :base-only.
14095         (editable-field): Add :help-echo.
14096         (widget-push-button-gui, widget-push-button-cache)
14097         (widget-gui-action, widget-editable-list-gui): COmment out, along
14098         with uses.
14099         (widget-at): Make arg optional.
14100         (widget-echo-help): Adjust for current help-echo calling sequence.
14101         (widget-specify-field, widget-specify-button)
14102         (widget-specify-insert, widget-get-sibling, widget-image-find)
14103         (widget-convert, widget-insert, widget-leave-text)
14104         (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
14105         (widget-setup, widget-field-find, widget-before-change)
14106         (widget-after-change, widget-default-complete)
14107         (widget-default-create, widget-default-delete)
14108         (widget-push-button-value-create, editable-field)
14109         (widget-field-prompt-value, widget-field-validate)
14110         (widget-choice-value-create, widget-choice-action)
14111         (widget-choice-validate, widget-checklist-add-item)
14112         (widget-radio-add-item, widget-radio-chosen)
14113         (widget-radio-value-inline, widget-editable-list-value-create)
14114         (widget-editable-list-entry-create)
14115         (widget-documentation-link-add)
14116         (widget-documentation-string-value-create)
14117         (widget-regexp-validate, widget-file-complete)
14118         (widget-sexp-validate, widget-plist-convert-widget)
14119         (widget-plist-convert-widget, widget-alist-convert-widget)
14120         (widget-alist-convert-widget, widget-color-complete): Simplify,
14121         particularly to avoid bindings which aren't optimized out.
14123         * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
14124         Doc fix.
14125         (down-list, backward-up-list, up-list, kill-sexp)
14126         (backward-kill-sexp, mark-sexp): Make arg optional.
14127         (lisp-complete-symbol): Add optional arg PREDICATE.
14129         * cus-start.el: Add display-buffer-reuse-frames,
14130         file-coding-system-alist.
14132 2000-08-20  Gerd Moellmann  <gerd@gnu.org>
14134         * startup.el (command-line): Clear realized faces after
14135         modifying TTY color mappings.
14137 2000-08-20  Miles Bader  <miles@gnu.org>
14139         * faces.el (face-attr-match-p): Don't return true if ATTRS are
14140         merely a subset of FACE's attributes.
14142 2000-08-19  Miles Bader  <miles@gnu.org>
14144         * comint.el (comint-output-filter): Save the point with a marker,
14145         not just a buffer position.
14147         * international/mule.el (set-buffer-process-coding-system): Make
14148         interactive prompt less confusing.
14150 2000-08-19  Gerd Moellmann  <gerd@gnu.org>
14152         * hilit-chg.el: General cleanup of doc strings, comments and
14153         code formatting.
14155 2000-08-19  Miles Bader  <miles@gnu.org>
14157         * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
14158         Compiler macro removed; beginning-of-line is no longer always
14159         equivalent to forward-line, in the presence of fields.
14161         * comint.el (comint-output-filter): Remove ad-hoc saving of
14162         restriction, and just use save-restriction, now that it works
14163         correctly.  Don't adjust comint-last-input-start to account for
14164         our insertion; it shouldn't have moved because we don't use
14165         insert-before-markers anymore.  Comment out call to
14166         `force-mode-line-update'; why is it here?
14168         * gud.el (gud-basic-call): Temporarily widen gud comint buffer
14169         while checking for prompt to delete.  Use `forward-line 0'
14170         instead of beginning-of-line.
14171         (gud-filter): Temporarily widen gud comint buffer while
14172         examining output.
14174 2000-08-18  Stefan Monnier  <monnier@cs.yale.edu>
14176         * progmodes/sh-script.el: Big bag of typos.
14178         * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
14179         check since ispell-process is not bound when ispell is not yet loaded.
14181 2000-08-18  Dave Love  <fx@gnu.org>
14183         * image.el (find-image): Copy `spec' before using plist-put.
14185 2000-08-18  Gerd Moellmann  <gerd@gnu.org>
14187         * textmodes/ispell.el (ispell-dictionary-alist-6): Add
14188         `portugues'.
14190         * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
14191         backward-kill-sexp, analogous to kill-sexp.
14193         * progmodes/icon.el (icon-indent-line)
14194         (icon-is-continuation-line): Handle comments specially.
14196 2000-08-17  Ken Stevens <k.stevens@ieee.org>
14198         * ispell.el: Set to standard author/maintainer/keyword fields.
14199         Fine tuning to menu map appearance and operation, and added help.
14200         Remove `start' and `end' error messages when compiling.
14201         (ispell-choices-win-default-height): Fixed comment string.
14202         (ispell-dictionary-alist-1): Fixed regexp in castellano and
14203         castellano8 dictionaries.
14204         (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
14205         (ispell-dictionary-alist-4): Fixed regexp in francais-tex
14206         dictionary, added italiano dictionary.
14207         (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
14208         word character
14209         (ispell-tex-skip-alists): Added psfig support.
14210         (ispell-skip-html): Renamed from ispell-skip-sgml.
14211         (ispell-begin-skip-region-regexp, ispell-skip-region)
14212         (ispell-minor-check): Improved html skipping support to skip across
14213         code, and recognize `&' commands without propper `;' syntax;
14214         (ispell-process-line): Fix alignment error when manually
14215         correcting spelling.
14216         (ispell): Fix comment string.
14217         (ispell-add-per-file-word-list): Always put word list on new line.
14219 2000-08-17  Gerd Moellmann  <gerd@gnu.org>
14221         * format.el (format-encode-run-method): Fix error message to say
14222         `encode' instead of `decode'.  Use save-window-excursion around
14223         shell-command-on-region as in format-decode-run-method because
14224         shell-command-on-region can display a buffer with error output.
14225         (format-decode): Don't record undo information for the decoding.
14226         (format-annotate-function): Add parameter FORMAT-COUNT.  Make
14227         that number part of the temporary buffer name so that more than
14228         one decoding using a temporary buffer can happen safely.
14230         * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
14231         of `A-z' in the regexp.
14233         * hilit-chg.el: Fix typos in commentary.
14235         * help.el (view-emacs-news): Rewritten for new naming scheme
14236         for old NEWS files.
14238         * startup.el (command-line): Pop to *Messages* in case an error
14239         is signaled while loading user-init-file.
14241 2000-08-17  Andreas Schwab  <schwab@suse.de>
14243         * files.el (insert-directory): Don't lose original file name,
14244         undoing an undocumented change.
14246 2000-08-17  Alex Schroeder  <alex@gnu.org>
14248         * sql.el (sql-magic-go): Use comint-bol.
14249         (sql-copy-column): Use comint-line-beginning-position.
14250         (comint-line-beginning-position): Define a replacement for
14251         comint-line-beginning-position if it is not fboundp.
14253 2000-08-17  Alex Schroeder  <alex@gnu.org>
14255         * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
14256         it didn't have any effect anyway.
14258 2000-08-17  Alex Schroeder  <alex@gnu.org>
14260         * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
14261         --pset and pager=off instead of sending \\o|cat at the beginning
14262         of the session.
14264 2000-08-17  Miles Bader  <miles@gnu.org>
14266         * progmodes/octave-inf.el: Add compatibility definition of
14267         comint-line-beginning-position.
14269 2000-08-17  Kenichi Handa  <handa@etl.go.jp>
14271         * startup.el (normal-top-level): Look in each dir in load-path for
14272         a leim-list.el file too.  This assures of loading leim-list.el
14273         that is created at Emacs installation time even if a user have his
14274         own leim-list.el.
14276 2000-08-17  Miles Bader  <miles@gnu.org>
14278         * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
14279         foreground color to black if the background is dark.
14281 2000-08-16  Stefan Monnier  <monnier@cs.yale.edu>
14283         * loadhist.el (unload-feature): Typo.
14285         * finder.el (finder-compile-keywords):
14286         * cus-dep.el (custom-make-dependencies): Add local-variable settings
14287         to the generated file.
14289         * mail/mh-e.el (mh-make-local-vars):
14290         Replace make-variable-buffer-local with make-local-variable.
14292         * play/landmark.el:
14293         * options.el (Edit-options-{set,toggle,t,nil}):
14294         * mail/mailabbrev.el (mail-abbrevs-mode):
14295         * textmodes/tex-mode.el (tex-expand-files):
14296         * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
14298         * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
14300         * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
14301         (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
14302         Allow going past the last element.
14303         * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
14304         (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
14305         (cvs-mouse-toggle-mark): Don't move point.
14306         (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
14308         * progmodes/compile.el (grep): Provide a default set of files.
14309         (next-error): Docstring fix.
14310         (compilation-find-file): Avoid find-file (fails in a dedicated window).
14312         * emacs-lisp/easy-mmode.el (define-minor-mode):
14313         Use `symbol-value' to keep the byte-compiler quiet.
14315         * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
14316         (diff-find-source-location): New fun, extracted from diff-goto-source.
14317         (diff-goto-source): Use it.
14318         (diff-next-complex-hunk, diff-filter-lines): New function.
14319         (diff-apply-hunk): New command.
14321         * smerge-mode.el (smerge-mode-menu): Doc fix.
14323         * msb.el (msb-mode): Define it in terms of define-minor-mode.
14325 2000-08-16  Dave Love  <fx@gnu.org>
14327         * windmove.el (windmove) <defgroup>: Add :version.
14329         * net/goto-addr.el: Don't require browse-url.  Require thingatpt.
14330         (goto-address-fontify-p, goto-address-highlight-p)
14331         (goto-address-url-face, goto-address-url-mouse-face)
14332         (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
14333         (goto-address-url-regexp): Use thing-at-point-url-regexp.
14334         (goto-address-fontify, goto-address-at-mouse): Simplify,
14335         (goto-address-at-point): browse-url-url-at-point,
14336         goto-address-find-address-at-point can return nil.
14337         (goto-address-find-address-at-point): Return nil on failure.
14339         * align.el (align) <defgroup>: Add :version.
14341         * calculator.el (calculator): Add :version.
14342         (calculator): Use two lines for calculator window if `modeline'
14343         face is boxed.
14345         * play/5x5.el: Doc fixes.
14346         (5x5) <defgroup>: Add :version.
14348         * play/fortune.el (fortune) <defgroup>: Add :version.
14349         (fortune-append): Fix error message.
14350         (fortune-from-region): Doc fix.
14352         * play/pong.el (pong): Doc fix.
14354         * play/morse.el: Keywords, commentary, autoloads.
14356 2000-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
14358         * desktop.el (desktop-save): Don't look at symbol-value of a
14359         member of minor-mode-alist, unless it is boundp.
14361 2000-08-16  Sam Steingold  <sds@gnu.org>
14363         * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
14364         `while'; use `with-current-buffer' instead of `save-excursion'.
14365         Removed unnecessary kludges now that "*Buffer List*" is excluded.
14367 2000-08-16  Kenichi Handa  <handa@etl.go.jp>
14369         * international/ccl.el (declare-ccl-program): Docstring modified.
14370         (ccl-execute-with-args): Likewise.
14372 2000-08-16  Miles Bader  <miles@gnu.org>
14374         * progmodes/sql.el: Add compatibility definition of
14375         comint-line-beginning-position.
14377 2000-08-15  Gerd Moellmann  <gerd@gnu.org>
14379         * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
14380         'buffer-menu' property.
14381         (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
14382         fails.
14383         (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
14384         buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
14385         wasn't killed.
14387         * buff-menu.el (list-buffers-noselect): Don't display the
14388         *Buffer List* buffer.
14390         * font-lock.el: Require jit-lock to prevent a very late
14391         `Loading jit-lock' message.
14393         * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
14394         * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
14395         mail address.
14397 2000-08-15  Miles Bader  <miles@gnu.org>
14399         * textmodes/ispell.el (ispell-graphic-p): New constant.
14400         (ispell-choices-win-default-height, ispell-help): Use
14401         `ispell-graphic-p' instead of `xemacsp'.
14403 2000-08-15  Dave Love  <fx@gnu.org>
14405         * simple.el: Autoload widget-convert when compiling.
14406         (mail-user-agent): Doc fix.
14408         * help.el (function-called-at-point, variable-at-point): Use
14409         with-syntax-table.
14410         (help-manyarg-func-alist): Add insert-and-inherit.
14412         * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
14414         * delsel.el (delsel-unload-hook): New function.
14416         * find-file.el: Doc fixes.  Move provide to end.
14417         (ff) <defgroup>: Add :link.
14418         (ff-goto-click): Deleted.
14419         (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
14420         Use mouse-set-point.
14422         * textmodes/tildify.el: Doc fixes.
14423         (tildify) <defgroup>: Add:version.
14425         * progmodes/glasses.el (glasses) <defgroup>: Add :version.
14426         (glasses-custom-set): Use set-default, not set.
14427         (minor-mode-alist): Propertize the lighter.
14428         (glasses-mode): Provide optional arg.
14430         * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
14431         (global-cwarn-mode): Don't make it a user option.  Unquote lambda.
14432         (cwarn-font-lock-feature-keywords-alist): Don't make it a user
14433         option.  Provide :type.
14434         (cwarn-configuration): Provide :type.
14435         (cwarn-mode): Doc fix.
14437         * add-log.el (change-log-merge): Doc fix.
14438         (change-log-redate): New command.
14440         * net/browse-url.el (browse-url-filename-alist): Add a clause for
14441         Doze and Dog.
14442         (browse-url): Use dolist, not mapcar.
14443         (browse-url-at-point): Check for null url.
14444         (browse-url-event-buffer, browse-url-event-point): Functions
14445         deleted.
14446         (browse-url-at-mouse, browse-url-netscape): Simplify.
14448         * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
14449         modes.
14450         (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
14451         Fix previous change to mapcan.
14452         (msb--init-file-alist, msb--add-separators)
14453         (msb--make-keymap-menu): Simplify.
14454         (msb--choose-file-menu): Use copy-sequence.
14455         (msb-mode-map): Add title to keymap.
14456         (msb-unload-hook): New function.
14458         * bs.el: Fix indentation.
14459         (bs) <defgroup>: Add :links.
14460         (bs-show): Doc fix.
14461         (bs-apply-sort-faces): Don't use window-system.
14462         (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
14464 2000-08-15  Eli Zaretskii  <eliz@is.elta.co.il>
14466         * calendar/timeclock.el (timeclock-file): Run .timelog through
14467         convert-standard-filename.
14469 2000-08-14  Gerd Moellmann  <gerd@gnu.org>
14471         * emacs-lisp/authors.el: New file.
14473         * paren.el (show-paren-priority): New user option.
14474         (show-paren-function): Set overlay priorities to
14475         show-paren-priority.
14477 2000-08-14  Miles Bader  <miles@gnu.org>
14479         * comint.el (comint-bol): Use `forward-line 0' instead of calling
14480         beginning-of-line with inhibit-field-text-motion bound.
14482 2000-08-14  Gerd Moellmann  <gerd@gnu.org>
14484         * calendar/timeclock.el: New file.
14486 2000-08-14  David Ponce  <david@dponce.com>
14488         * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
14489         `widget-button-click'. so that one can use left mouse button to
14490         click on dialog buttons.
14492 2000-08-14  Emmanuel Briot  <briot@gnat.com>
14494         * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
14495         identifiers, since XML is case sensitive
14497 2000-08-12  Miles Bader  <miles@gnu.org>
14499         * comint.el (comint-output-filter): Don't bother frobbing
14500         window-start, it doesn't seem to be necessary.
14502         * comint.el (comint-send-string, comint-send-region): Make into
14503         real functions.  Snapshot the prompt before sending.
14505 2000-08-11  Eli Zaretskii  <eliz@is.elta.co.il>
14507         * info.el (Info-find-emacs-command-nodes): Rewrite to use
14508         technique similar to Info-index, instead of relying on specific
14509         names of relevant Index nodes.
14510         (Info-goto-emacs-command-node): Bind Info-history to nil when
14511         going to the first node found by Info-find-emacs-command-nodes.
14513 2000-08-11  Eli Zaretskii  <eliz@is.elta.co.il>
14515         * menu-bar.el (menu-bar-help-menu): Add a :help string.
14517 2000-08-10  Miles Bader  <miles@gnu.org>
14519         * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
14521 2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
14523         * info.el (Info-file-list-for-emacs): More elements for the
14524         autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
14525         and woman manuals.
14527 2000-08-10  Miles Bader  <miles@lsi.nec.co.jp>
14529         * comint.el (comint-send-input): Make the newline boundary overlay
14530         rear-nonsticky.  Use `insert' instead of `insert-before-markers'.
14531         (comint-output-filter): Use `insert' instead of
14532         `insert-before-markers'.  Extend comint-last-output-overlay when
14533         necessary since we can't rely on insert-before-markers to do it.
14534         * gud.el (gud-filter): Use `with-current-buffer' instead of
14535         save-excursion when inserting the output, so that point gets
14536         updated correctly; the old method relied on a rather dodgy
14537         side-effect of comint-output-filter to avoid the effect of
14538         save-excursion.
14540 2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
14542         * files.el (recover-file): Call insert-directory instead of
14543         invoking `ls' directly.
14545 2000-08-10  Miles Bader  <miles@gnu.org>
14547         * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
14548         (comint-last-prompt-overlay): New variables.
14549         (comint-output-filter): Implement prompt highlighting.
14550         (comint-snapshot-last-prompt): New function.
14551         (comint-send-input): Snapshot the last prompt.
14552         Use comint-highlight-input-face.
14553         (comint-highlight-input-face): Renamed from `comint-highlight-face'.
14554         Use defface instead of defcustom.
14555         (send-invisible, comint-send-eof): Snapshot the last prompt.
14556         (comint-delchar-or-maybe-eof): Use comint-send-eof.
14557         (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
14559 2000-08-09  Stefan Monnier  <monnier@cs.yale.edu>
14561         * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
14562         (regexp-opt-group): Use a list of chars for `letters'.
14563         (regexp-opt-charset): `chars' is now a list of chars.
14564         Use a char-table rather than a vector so it works for multibyte chars.
14566         * pcvs.el (cvs-menu): Don't move point.  Use popup-menu.
14567         Set cvs-minor-current-files to the selected fileinfo.
14568         (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
14569         (cvs-mode-insert): Manually macroexpand `ignore-errors'.
14571 2000-08-09  Eli Zaretskii  <eliz@is.elta.co.il>
14573         * files.el (insert-directory): Don't call access-file on
14574         directories on DOS and Windows.
14576 2000-08-09  Kenichi Handa  <handa@etl.go.jp>
14578         * international/ccl.el (ccl-embed-data): Make ccl-program-vector
14579         longer if necessary.
14580         (ccl-embed-code): Call ccl-embed-data to store CODE in
14581         ccl-program-vector.
14583 2000-08-09  Miles Bader  <miles@gnu.org>
14585         * comint.el (comint-output-filter): Properly handle the case where
14586         the text surrounded by comint-last-output-overlay was deleted.
14588 2000-08-08  Gerd Moellmann  <gerd@gnu.org>
14590         * info.el (Info-insert-dir): Use Info-additional-directory-list if
14591         non-nil.
14592         (Info-file-list-for-emacs): Remove "info" from the list because
14593         that leads to trying to use the documentation from file `info'
14594         in various situations where it isn't appropriate, for instance
14595         C-h C-k C-h i.
14597         * ffap.el (ffap-read-file-or-url-internal): Handle case that
14598         DIR and/or STRING are nil.
14600         * progmodes/compile.el (compilation-setup): Make variable
14601         compilation-error-screen-columns buffer-local, as some comment
14602         in the code suggests it should be.
14604         * files.el (auto-mode-interpreter-regexp): New variable.
14605         (set-auto-mode): Use it.
14607         * indent.el (indent-for-tab-command): Doc fix.
14609         * mouse-sel.el (mouse-sel-mode): Doc fix.
14611         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
14612         labels.
14614         * help.el (print-help-return-message): When
14615         display-buffer-reuse-frames is set, let the help window been quit,
14616         instead of deleting it, which might delete a reused frame.
14618 2000-08-08  Eli Zaretskii  <eliz@is.elta.co.il>
14620         * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
14621         rename a directory to a name that differs only by its letter case.
14623 2000-08-08  Kenichi Handa  <handa@etl.go.jp>
14625         * international/quail.el (quail-define-rules): Handle Quail decode
14626         map correctly.  Add code for supporting annotations.
14627         (quail-install-decode-map): New function.
14628         (quail-defrule-internal): New optional arguments decode-map and
14629         props.
14630         (quail-advice): New function.
14632 2000-08-07  Sam Steingold  <sds@gnu.org>
14634         * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
14635         `defconst', `define-condition', `with-slots'.
14636         * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
14638 2000-08-03  Miles Bader  <miles@gnu.org>
14640         * comint.el (comint-use-prompt-regexp-instead-of-fields):
14641         New variable.
14642         (comint-prompt-regexp, comint-get-old-input): Document dependence on
14643         comint-use-prompt-regexp-instead-of-fields.
14644         (comint-send-input): Add `input' field property to stuff we send to
14645         the process, if comint-use-prompt-regexp-instead-of-fields is nil.
14646         (comint-output-filter): Add `output' field property to process
14647         output, if comint-use-prompt-regexp-instead-of-fields is nil.
14648         (comint-replace-by-expanded-history)
14649         (comint-get-old-input-default, comint-show-output)
14650         (comint-backward-matching-input, comint-forward-matching-input)
14651         (comint-next-prompt, comint-previous-prompt):  Use field
14652         properties if comint-use-prompt-regexp-instead-of-fields is nil.
14653         (comint-line-beginning-position): New function.
14654         (comint-bol): Use comint-line-beginning-position.  Make ARG optional.
14655         (comint-replace-by-expanded-history-before-point): Use
14656         comint-line-beginning-position and line-end-position.
14657         (comint-last-output-overlay): New variable.
14658         (comint-mode): Make `comint-last-output-overlay' buffer-local.
14660         * shell.el (shell-prompt-pattern): Doc change.
14661         (shell-backward-command): Use line-beginning-position.
14663         * gud.el (gud-gdb-complete-command): Use
14664         comint-line-beginning-position.
14666         * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
14667         comint-bol doesn't actually go to the beginning of the line.
14669         * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
14670         if comint-use-prompt-regexp-instead-of-fields is non-nil.
14671         (try-expand-line-all-buffers): Likewise.
14673         * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
14674         explicitly matching comint-prompt-regexp.
14675         (sql-copy-column): Use comint-line-beginning-position instead of
14676         explicitly matching comint-prompt-regexp.
14678         * progmodes/octave-inf.el (inferior-octave-complete): Use
14679         comint-line-beginning-position.
14681         * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
14683         * progmodes/idlw-shell.el (idlwave-shell-send-command): When
14684         looking for a prompt, use `forward-line 0' instead of
14685         `beginning-of-line', to avoid getting caught by an input field.
14687 2000-08-07  Gerd Moellmann  <gerd@gnu.org>
14689         * files.el (shell-quote-wildcard-pattern): Make sure to return
14690         PATTERN, in the Unix case.
14692 2000-08-07  Eli Zaretskii  <eliz@is.elta.co.il>
14694         * play/zone.el (zone): Discard any pending input before running
14695         the randomly-chosen pgm.
14697 2000-08-07  Kenichi Handa  <handa@etl.go.jp>
14699         * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
14700         checking the existence of any multibyte characters.
14702 2000-08-06  Gerd Moellmann  <gerd@gnu.org>
14704         * help.el (describe-mode): Test minor-mode symbol for being
14705         bound before testing its value for being nil.
14707         * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
14708         `first', `second', and `third'.
14710         * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
14711         (second): Make it an alias for `cadr'.
14713 2000-08-06  Eli Zaretskii  <eliz@is.elta.co.il>
14715         * bs.el (bs-apply-sort-faces): Don't use window-system, since all
14716         types of display support faces now.
14718 2000-08-05  Gerd Moellmann  <gerd@gnu.org>
14720         * pcvs.el (require): Require `cl' during compilation, only.
14722         * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
14723         (toplevel): Remove `remq' and `remove' from autoloads.
14724         (cl-fake-autoloads): New variable.  If set, arrange for an error
14725         when CL functions etc. are autoloaded.
14727 2000-08-04  Eli Zaretskii  <eliz@is.elta.co.il>
14729         * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
14731         * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
14732         popped up, but the user clicks outside the menu, return an empty
14733         regexp (that causes unhighlight-regexp to have no effect).
14735         * menu-bar.el (menu-bar-games-menu): Add Zone.
14737         * hi-lock.el (toplevel): Require font-lock.
14739 2000-08-03  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14741         * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
14742         (ebnf-8-bit-chars): New var for bug fix.
14743         (ebnf-string): Bug fix.
14745 2000-08-03  Sam Steingold  <sds@gnu.org>
14747         * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
14748         instead of `buffer-string'.
14749         (require 'cl): Always, not just when compiling.
14750         `ignore-errors' in `interactive', `list*', `defun*' &c make this
14751         necessary.
14753 2000-08-03  Eli Zaretskii  <eliz@is.elta.co.il>
14755         * international/mule-cmds.el (select-safe-coding-system): Make
14756         the message text about selecting a safe coding system more clear.
14758 2000-08-02  Gerd Moellmann  <gerd@gnu.org>
14760         * hi-lock.el: New file.
14762         * play/zone.el: New file.
14764         * replace.el (occur): Set tab-width in the *Occur* buffer to the
14765         value of tab-width in the original buffer.  Choose a line number
14766         format that's a multiple of the original buffer's tab width, so
14767         that lines appear right.
14769         * textmodes/ispell.el (ispell): New function, replacing an alias.
14770         Spell-check active region if in transient-mark-mode and mark
14771         is active; otherwise spell-check buffer.
14773 2000-08-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14775         * ps-mule.el: Fix a customization problem on
14776         ps-mule-font-info-database-default.
14778 2000-08-02  Eli Zaretskii  <eliz@is.elta.co.il>
14780         * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
14781         display-mouse-p instead of window-system.
14782         (ebrowse-member-mode-map): Ditto.
14784 2000-08-01  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14786         * progmodes/ebnf2ps.el: Update ps-print functions call.
14787         Indentation fix.  Doc fix.
14788         (ebnf-version): New version number (3.2).
14789         (ebnf-format-color, ebnf-begin-job): Code fix.
14791 2000-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
14793         * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
14794         font lock support on window-system.
14795         (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
14797         * textmodes/ispell.el (ispell-highlight-spelling-error): Use
14798         display-color-p, if fboundp, instead of window-system.
14800 2000-07-31  Eli Zaretskii  <eliz@is.elta.co.il>
14802         * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
14803         instead of window-system.
14805         * wid-edit.el (widget-choose): Use display-mouse-p instead of
14806         window-system.
14807         (widget-choice-mouse-down-action): Use display-popup-menus-p
14808         instead of window-system.
14810         * strokes.el (strokes-file): Run the file name through
14811         convert-standard-filename.
14812         (strokes-mode): Call display-mouse-p instead of looking at
14813         window-system.  Change the error message accordingly.
14815         * progmodes/cpp.el (toplevel): Support faces on tty's.
14817         * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
14818         (lm-plot-square, lm-init-display): Don't use window-system.
14820         * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
14821         (gomoku-plot-square, gomoku-init-display): Don't use window-system.
14823         * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
14824         instead of looking at window-system.
14826 2000-07-30  Gerd Moellmann  <gerd@gnu.org>
14828         * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
14829         of testing if iswitchb-prepost-hooks is bound, because the
14830         latter will always be true when invoking a recursive minibuffer
14831         from an active Iswitchb buffer.
14833 2000-07-30  Eli Zaretskii  <eliz@is.elta.co.il>
14835         * files.el (shell-quote-wildcard-pattern): New function.
14836         (insert-directory): Call it.  Only prepend "\" to command on Unix
14837         and GNU/Linux systems.
14839 2000-07-30  Gerd Moellmann  <gerd@gnu.org>
14841         * eshell/esh-groups.el: Change custom :link file names
14842         from `eshell.info' to `eshell'.
14844 2000-07-30  Francis Wright  <fjw@maths.qmw.ac.uk>
14846         * dired.el (dired-build-subdir-alist): Expand subdirectory names
14847         correctly in recursive ange-ftp listings.
14849 2000-07-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
14851         * ps-print.el: Fix bug 1: if ps-font-size-internal,
14852         ps-header-font-size-internal and
14853         ps-header-title-font-size-internal variables are not set,
14854         ps-nb-pages and ps-line-lengths-internal crashes.  Fix bug 2: if
14855         face text property is (foreground-color . COLOR) or
14856         `(background-color . COLOR)', ps-print crashes.  Doc fix.
14857         (ps-print-version): New version number (5.2.4).
14858         (ps-plot-region): Code fix.
14859         (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
14860         (ps-face-attribute-list, ps-face-attributes, ps-face-background):
14861         Bug fix 2.
14863 2000-07-30  Milan Zamazal  <pdm@freesoft.cz>
14865         * glasses.el (glasses-make-readable): Fix uncapitalization of
14866         identifiers like `myXMLDocument'.
14868 2000-07-28  Karl Fogel  <kfogel@red-bean.com>
14870         * mail/mail-hist.el (mail-hist-previous-input)
14871         (mail-hist-next-input): Do the obvious code factorization.
14872         (mail-hist-retrieve-and-insert): New func, contains common
14873         code of above two.
14874         If inserting a message body, leave point at top.
14876 2000-07-28  Sam Steingold  <sds@gnu.org>
14878         * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
14879         Use `<=', not `<' to compare times!
14880         (ange-ftp-ls): Remove.
14882 2000-07-27  Gerd Moellmann  <gerd@gnu.org>
14884         * play/cookie1.el: Add explanation of how to make cookie.el
14885         compatible with strfile(1) to comment.
14887         * subr.el (remove, remq): New functions.
14889         * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
14890         escape `*' in regexps.
14891         (midnight-find): Reverse order of arguments in the funcall of
14892         TEST.
14894         * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
14895         and `.class'.
14897         * play/meese.el: Add Commentary section.
14899 2000-07-27  Alex Schroeder  <alex@gnu.org>
14901         * sql.el (sql-ms): Added autoload cookie.
14902         (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
14903         (sql-oracle): Ditto.
14904         (sql-help): Doc change.
14906         (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
14907         types and exceptions.
14909 2000-07-27  Alex Schroeder  <alex@gnu.org>
14911         * sql.el (sql-placeholder-history): New variable.
14912         (sql-query-placeholders-and-send): New function that will query
14913         the user and replace placeholders with user input.
14914         (sql-oracle): If running on NT, set comint-input-sender to
14915         sql-query-placeholders-and-send.
14917         (sql-stop): If in the SQLi buffer, insert stop notification, else
14918         present it as a message.
14920 2000-07-27  Alex Schroeder  <alex@gnu.org>
14922         * sql.el (sql-input-ring-separator): Doc change.
14923         (sql-input-ring-file-name): Doc change.
14924         (sql-interactive-mode): Use `sql-input-ring-separator' and
14925         `sql-input-ring-file-name' to set the comint-mode equivalents
14926         without making them local variables.
14927         (sql-stop): Don't bind `sql-input-ring-separator' and
14928         `sql-input-ring-file-name' dynamically to their comint-mode
14929         equivalents.
14931 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
14933         * international/mule.el (register-char-codings): New function.
14934         (make-coding-system): Handle `safe-chars' specification in the arg
14935         PROPERTY.
14937         * international/mule-cmds.el
14938         (find-coding-systems-region-subset-p): This function deleted.
14939         (sort-coding-systems-predicate): New variable.
14940         (sort-coding-systems): New function.
14941         (find-coding-systems-region): Use
14942         find-coding-systems-region-internal.
14943         (find-coding-systems-string): Use find-coding-systems-region.
14944         (find-coding-systems-for-charsets): Check
14945         char-coding-system-table.
14946         (select-safe-coding-system-accept-default-p): New variable.
14947         (select-safe-coding-system): Mostly rewritten.  New argument
14948         ACCEPT-DEFAULT-P.
14949         (select-message-coding-system): Call select-safe-coding-system
14950         with ACCEPT-DEFAULT-P arg.
14951         (reset-language-environment): Reset default-sendmail-coding-system
14952         to the default value iso-latin-1.
14953         (set-language-environment): Don't set the obsolete variable
14954         charset-origin-alist.
14956         * international/codepage.el (cp-coding-system-for-codepage-1):
14957         Give `safe-chars' property to make-coding-system.
14959         * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
14960         calling select-message-coding-system twice.
14962         * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
14963         instead of `safe-charsets'.
14964         (cyrillic-alternativnyj): Likewise.
14965         (ccl-encode-alternativnyj): Don't check the charset
14966         cyrillic-iso8859-5.
14968 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
14970         * composite.el (compose-chars-after): Preserve match data.
14972 2000-07-26  Sam Steingold  <sds@gnu.org>
14974         * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
14975         (ange-ftp-real-file-newer-than-file-p): New function.
14976         (ange-ftp-verify-visited-file-modtime): Use `float-time'.
14977         (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
14979         * tooltip.el (tooltip-float-time): Removed (use `float-time').
14980         * midnight.el (midnight-float-time): Ditto.
14982 2000-07-26  Andreas Schwab  <schwab@suse.de>
14984         * files.el (normal-backup-enable-predicate): Correct
14985         interpretation of the return value of compare-strings.
14987 2000-07-26  Gerd Moellmann  <gerd@gnu.org>
14989         * isearch.el (isearch-resume): New function.
14990         (isearch-done): Add something to command-history to resume
14991         the search.
14992         (isearch-yank-line, isearch-yank-word): Use
14993         buffer-substring-no-properties instead of buffer-substring.
14995         * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
14996         of flyspell-mouse-map.
14998         * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
14999         duplicate definition.
15000         (makefile-mode): Remove duplicate setting of local-abbrev-table.
15002         * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
15003         (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
15005 2000-07-25  Sam Steingold  <sds@gnu.org>
15007         * net/ange-ftp.el: Get modtime over the net.
15008         (ange-ftp-file-modtime): New function.
15009         (ange-ftp-write-region, ange-ftp-insert-file-contents)
15010         (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
15011         Use it.
15012         (ange-ftp-dot-to-slash): New function.
15013         (ange-ftp-fix-name-for-vms): Use it.
15015         * midnight.el (midnight-buffer-display-time): Use
15016         `with-current-buffer'.
15018 2000-07-25  Gerd Moellmann  <gerd@gnu.org>
15020         * find-dired.el: Update copyright notice.
15021         (find-dired): Offer to kill a running `find'.
15023         * enriched.el (enriched-face-ans): For a `foreground-color'
15024         property, return '(("x-color" COLOR))' so that COLOR will be
15025         output as a parameter of the x-color annotation.  Likewise for the
15026         `background-color' property.  In the case of normal face
15027         properties, don't return annotations for unspecified foreground
15028         and background face attributes.
15030 2000-07-25  Kenichi Handa  <handa@etl.go.jp>
15032         * language/japan-util.el (japanese-katakana-region): Fix handling
15033         HANKAKU argument.
15035 2000-07-25  Miles Bader  <miles@gnu.org>
15037         * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
15038         constrain-to-field.  Pass nil ESCAPE-FROM-EDGE argument to
15039         constrain-to-field.
15041 2000-07-24  Andrew Innes  <andrewi@gnu.org>
15043         * timer.el (timer-activate-when-idle): Add optional parameter
15044         DONT-WAIT.  Update docstring.
15045         (run-with-idle-timer): Specify extra parameter to
15046         timer-activate-when-idle, so that timer will be activated
15047         immediately if Emacs is already idle.
15049         * w32-fns.el (w32-using-nt): Fix docstring.
15051 2000-07-24  Dave Love  <fx@gnu.org>
15053         * mouse.el (popup-menu): Set last-command-event.
15054         (mouse-major-mode-menu-prefix): Declare.
15056 2000-07-24  Gerd Moellmann  <gerd@gnu.org>
15058         * textmodes/flyspell.el: Update to author's version 1.5d.
15060         * progmodes/hideshow.el: Update copyright notice.
15062         * vcursor.el: Set maintainer to FSF, since author cannot
15063         be reached.
15065 2000-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
15067         * info.el (Info-goto-emacs-key-command-node): Leave a space after
15068         the prompt.
15070         * mouse.el (popup-menu): Run the keymap through indirect-function,
15071         in case it was defined with define-prefix-key.  If the menu is a
15072         list of keymaps, look up the binding of user's choice in each one
15073         of the keymaps.
15074         (mouse-popup-menubar): If the global and local menu-bar keymaps
15075         don't have a prompt string, create one and insert it into the
15076         keymap.  Don't barf if current-local-map returns nil.
15078 2000-07-24  Francis Wright  <fjw@maths.qmw.ac.uk>
15080         * dired.el (dired-sort-R-check): Added to allow recursive listing
15081         to be undone.
15082         (dired-sort-other): Use it.
15084 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15086         * Release of cc-mode 5.27
15088 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15090         * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
15091         c-beginning-of-statement-1 that caused a bad case of recursion
15092         which could consume a lot of CPU in large classes in languages
15093         that have in-expression classes (i.e. Java and Pike).
15095         * cc-engine.el (c-guess-basic-syntax): Check for in-expression
15096         statements before top level constructs (i.e. case 6 is moved
15097         before case 5 and is now case 4) to catch in-expression
15098         classes in top level expressions correctly.
15100 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15102         * cc-engine.el (c-guess-basic-syntax): Less naive handling of
15103         objc-method-intro. Case 4 removed and case 5I added.
15105         * cc-langs.el (c-append-paragraph-start): New variable used by
15106         c-common-init to get paragraph-start correct.
15107         * cc-langs.el (c-common-init): Use c-append-paragraph-start to
15108         initialize paragraph-start to make it correct both with and
15109         without the javadoc special case.
15111         * cc-mode.el (java-mode): Use c-append-paragraph-start to
15112         initialize paragraph-start for javadoc markup.
15114         * cc-vars.el (c-style-variables-are-local-p): Incompatible
15115         change by defaulting this to t.  It's motivated by the
15116         confusing behavior that otherwise arise from the style system
15117         when editing both java and non-java files at the same time
15118         (see the comments about style setting in c-common-init).
15120 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15122         * cc-cmds.el (c-indent-new-comment-line): Added a kludge
15123         similar to the one in c-fill-paragraph to check the fill
15124         prefix from the adaptive fill function for sanity.
15126 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15128         * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
15129         defun block.
15131 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15133         * cc-align.el (c-lineup-multi-inher): Handle lines with
15134         leading comma nicely. Extended to handle member initializers
15135         too.
15137         * cc-engine.el: (c-beginning-of-inheritance-list,
15138         c-guess-basic-syntax): Fixed recognition of inheritance lists
15139         when the lines begins with a comma.
15141         * cc-vars.el (c-offsets-alist): Changed default for
15142         member-init-cont to c-lineup-multi-inher since it now handles
15143         member initializers and indents better for leading commas.
15145 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15147         * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
15148         handling that caused class open lines to be recognized as
15149         statement-conts in some cases.
15151         * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
15152         guessed by the adaptive fill function unless point is on the
15153         first line of a block comment.
15155         * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
15156         when the buffer ends with a macro continuation char.
15158         * cc-engine.el (c-guess-basic-syntax): Added support for
15159         function definitions as statements in Pike.  The first
15160         statement in a lambda block is now labeled defun-block-intro
15161         instead of statement-block-intro.
15163         * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
15164         so that the class surrounding point is selected, not the one
15165         innermost in the state.
15167         * cc-engine.el (c-guess-basic-syntax): Fixed bug in
15168         recognition of switch labels having hanging multiline
15169         statements.
15171         * cc-engine.el (c-beginning-of-member-init-list): Broke out
15172         some code in c-guess-basic-syntax to a separate function.
15173         * cc-engine.el (c-just-after-func-arglist-p): Fixed
15174         recognition of member inits with multiple line arglists.
15175         * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
15176         member-init-cont when the commas are in funny places.
15178 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15180         * cc-defs.el (c-auto-newline): Removed this macro since it's
15181         not used anymore.
15183         * cc-engine.el (c-looking-at-bos): New helper function.
15184         * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
15185         inexpr and toplevel classes apart in Pike.
15187         * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
15188         of case 9A.
15190         * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
15191         constant, since "class" can introduce an in-expression class
15192         in Pike nowadays.
15194 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15196         * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
15197         indentation on cpp-macro lines.
15199         * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
15200         a syntax modifier like comment-intro, to make it possible to
15201         get syntactic indentation for preprocessor directives.  It's
15202         incompatible wrt to lineup functions on cpp-macro, but it has
15203         no observable effect in the 99.9% common case where cpp-macro
15204         is set to -1000.
15206 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15208         * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
15209         member-init-cont when the preceding arglist is several lines.
15211 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15213         * cc-styles.el (c-style-alist): The basic offset for the BSD
15214         style corrected to 8.
15216 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15218         * cc-styles.el (c-style-alist): Adjusted the indentation of
15219         brace list openers in the gnu style.
15221 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15223         * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
15225         * cc-cmds.el (c-electric-brace, c-electric-slash,
15226         c-electric-star, c-electric-semi&comma, c-electric-colon,
15227         c-electric-lt-gt, c-electric-paren): Don't reindent old lines
15228         when c-syntactic-indentation is nil.
15230         * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
15231         we were left at comments preceding the first statement when
15232         reaching the beginning of the buffer.
15234         * cc-vars.el (c-syntactic-indentation): New variable to turn
15235         off all syntactic indentation.
15237 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15239         * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
15240         between the text and the block comment ender when it hangs,
15241         depending on how many there are before the fill.
15243 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15245         * cc-engine.el (c-beginning-of-closest-statement): New helper
15246         function to go back to the closest preceding statement start,
15247         which could be inside a conditional statement.
15248         * cc-engine.el (c-guess-basic-syntax): Use
15249         c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
15251         * cc-engine.el (c-guess-basic-syntax): Better handling of
15252         arglist-intro, arglist-cont-nonempty and arglist-close when
15253         the arglist is nested inside parens.  Cases 7A, 7C and 7F
15254         changed.
15256         * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
15257         up-to-date with javadoc 1.2.
15259 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15261         * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
15262         multiline Pike type decls.
15264 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15266         * cc-cmds.el (c-indent-new-comment-line): Always break
15267         multiline comments in multiline mode, regardless of
15268         comment-multi-line.
15270 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15272         * cc-engine.el (c-guess-basic-syntax): Fixed bug with
15273         fully::qualified::names in C++ member init lists.  Preamble in
15274         case 5D changed.
15276 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15278         * cc-langs.el (c-common-init): Handling of obsolete variables
15279         moved to c-initialize-cc-mode.  More compatible style override
15280         when using global style variables.
15281         * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
15282         variables moved here.
15284         * cc-styles.el (c-make-styles-buffer-local): Flag style
15285         variable localness in c-style-variables-are-local-p to make
15286         the compatibility measure in c-common-init work well.
15288         * cc-styles.el (c-set-style-1): c-special-indent-hook can no
15289         longer contain set-from-style.
15290         * cc-styles.el (c-initialize-builtin-style): Don't check for
15291         set-from-style on c-special-indent-hook.
15292         * cc-styles.el (c-copy-tree): Obsolete.  The standard function
15293         copy-alist is sufficient now.
15295         * cc-styles.el (c-set-style, c-set-style-1,
15296         c-get-style-variables): Fixes to variable initialization so
15297         that duplicate entries in styles have the same effect
15298         regardless of DONT-OVERRIDE.
15300         * cc-styles.el (c-set-style-2): Fixed bug where the
15301         initialization of inheriting styles failed when the
15302         dont-override flag is set.
15304         * cc-vars.el (c-special-indent-hook): Don't use set-from-style
15305         on this.
15307 2000-07-24  Martin Stjernholm  <bug-cc-mode@gnu.org>
15309         * cc-defs.el (c-forward-comment): Removed the workaround
15310         introduced in 5.38 since it had worse side-effects.  If a line
15311         contains the string "//\"", it regarded the // as a comment
15312         start since the \ temporarily doesn't have escape syntax.
15314 2000-07-17  Emmanuel Briot  <briot@act-europe.fr>
15316         * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
15317         ada-xref.el before ada-prj.el, so that the Project menu is created
15318         when ada-prj tries to add to it.
15319         (ada-activate-keys-for-case): Suppress the characters that are not
15320         part of the Ada syntax. Better compatibility with else-mode
15321         (ada-adjust-case-interactive): When auto-casing is not active,
15322         correctly insert newlines (used to insert only ^M).  Prevent the
15323         syntax table from being changed in case of an error
15324         (or '_' becomes part of a word and some commands are confused).
15325         Do nothing if ada-auto-case is nil.
15326         (ada-after-keyword-p): Ignore keywords that are also attributes
15327         (ada-batch-reformat): Update usage comment
15328         (ada-call-from-contextual-menu): New function
15329         (ada-case-read-exceptions): Reinitialize the casing exception list
15330         first to nil first, so that the casing exception file can be
15331         shared.
15332         (ada-check-defun-name): Handles "configure" keyword for gnatdist
15333         files.
15334         (ada-compile-goto-error): Fix regexp used to detect a file:line
15335         anywhere in the error message
15336         (ada-contextual-menu-last-point): New variable
15337         (ada-create-keymap): If the variable delete-key-deletes-forward is
15338         t on XEmacs, it means that DEL should delete one character
15339         forward.
15340         (ada-create-menu): Use :included instead of :visible for XEmacs.
15341         New submenu "Options".
15342         (ada-end-stmt-re): Correctly indent "select ... then abort"
15343         statements.
15344         (ada-fill-comment-paragraph): Correctly delete all leading '--'
15345         even if they don't match ada-fill-comment-prefix Fix handling of
15346         paragraphs on the first or last line of a file.
15347         (ada-format-paramlist): Fix handling of default parameter values.
15348         (ada-get-body-name): New function.
15349         (ada-get-current-indent): Optimized by searchling directly for an
15350         existing generic part or a statement outside of it.  Handle
15351         ada-indent-align-comments when indenting comments Replaced some
15352         regexps by testing directly the next character. This results in a
15353         huge speedup on some files.  New indentation scheme for renames
15354         statements.  Stop looking for the 'while' or 'for' associated with
15355         a 'loop' at the first semicolon encountered.  A "return" can also
15356         match an anonymous access subprogram declaration.
15357         (ada-get-indent-noindent): Ignore strings and comments when
15358         looking for the keywords "record" and "private".
15359         (ada-goto-matching-decl-start): When matching "if", make sure we
15360         are not in fact seeing "end if".  Ignore "when" statements except
15361         when initial keyword was "begin".  Fix handling of nested
15362         procedures.  Add a recursive call to this function to skip over
15363         other 'end' statmts.  Fix indentation for "when .. => begin"
15364         (ada-in-open-paren-p): Fix indentation for complex boolean
15365         expressions, where 'and then', 'or else' and parenthesis
15366         statements are mixed up.
15367         (ada-in-paramlist-p): Skip comments while searching for the
15368         beginning Fix handling of operator declarations.
15369         (ada-indent-align-comments): New variable
15370         (ada-indent-current): Change the syntax table only in the
15371         protected section, so that we are sure it is restored correctly.
15372         (ada-indent-on-previous-lines): Use ada-use-indent and
15373         ada-with-indent Correctly indent "select ... then"
15374         (ada-indent-region): Slight speedup.
15375         (ada-indent-renames): New variable.
15376         (ada-last-which-function-subprog, ada-last-which-function-line):
15377         New variables
15378         (ada-looking-at-semi-private): Correctly indent the 'private'
15379         keyword when it is the first word in a package declaration.
15380         (ada-loose-case-word): Stop searching if at the end of the buffer.
15381         (ada-loose-case-word, ada-capitalize-word): Recase the whole word
15382         even if point is not initially at the end of the word.
15383         (ada-matching-decl-start-re): Add "when".
15384         (ada-mode): Add support for abbrev-mode, outline-mode and
15385         which-func-mode Override the old find-file.el entry in
15386         ff-special-constructs since it is using the obsolete
15387         ada-spec-suffix variable
15388         (ada-no-auto-case): New function
15389         (ada-scan-paramlist): When parsing the argument type, accept
15390         spaces (as in "X 'Class", generated by Rational Rose).
15391         (ada-other-file-name): No longer loads the other file.
15392         (ada-popup-menu): Save and restore the current buffer and cursor
15393         position before and after displaying the menu.
15394         (ada-search-ignore-complex-boolean): New function.
15395         (ada-uncomment-region): Emacs21 already knows how to delete
15396         comments not starting in the first column.
15397         (ada-use-indent): New variable
15398         (ada-which-function): New function.
15399         (ada-with-indent): New variable
15400         (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
15401         can be batch-compiled from the command line.
15403         * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
15404         Add to the menu when the file is loaded, not in ada-mode-hook.
15405         Add -toolbar to the default ddd command Switches moved from
15406         ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
15407         ada-prj-default-comp-opt
15408         (ada-add-ada-menu): Remove the map and name parameters Add the Ada
15409         Reference Manual to the menu
15410         (ada-check-current): rewritten as a call to ada-compile-current
15411         (ada-compile): Removed.
15412         (ada-compile-application, ada-compile-current, ada-check-current):
15413         Set the compilation-search-path so that compile.el automatically
15414         finds the sources in src_dir.  Automatic scrollong of the
15415         compilation buffer.  C-uC-cC-c asks for confirmation before
15416         compiling
15417         (ada-compile-current): New parameter, prj-field
15418         (ada-complete-identifier): Load the .ali file before doing
15419         processing
15420         (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
15421         conform to gnatmake's behavior.
15422         (ada-find-file-in-dir): New function
15423         (ada-find-references): Set the environment variables for gnatfind
15424         (ada-find-src-file-in-dir): New function.
15425         (ada-first-non-nil): Removed
15426         (ada-gdb-application): Add support for jdb, the java debugger.
15427         (ada-get-ada-file-name): Load the original-file first if not done
15428         yet.
15429         (ada-get-all-references): Handles the new ali syntax (parent types
15430         are found between <>).
15431         (ada-initialize-runtime-library): New function
15432         (ada-mode-hook): Always load a project file when a file is opened,
15433         so that the casing exceptions are correctly read.
15434         (ada-operator-re): Add all missing operators ("abs", "rem", "**").
15435         (ada-parse-prj-file): Use find-file-noselect instead of find-file
15436         to open the project file, since the latter does not work with
15437         speedbar Get default values before loading the prj file, or the
15438         default executable file name is wrong.  Use the absolute value of
15439         src_dir to initialize ada-search-directories and
15440         compilation-search-path,...  Add the standard runtime library to
15441         the search path for find-file.
15442         (ada-prj-default-debugger): Was missing an opening '{'
15443         (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
15444         variables.
15445         (ada-prj-default-gnatmake-opt): New variable
15446         (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
15447         buffers, the project file is the default one Save the windows
15448         configuration before displaying the menu.
15449         (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
15450         (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
15451         ...)  regexp-quote identifiers names to support operators +,
15452         -,... in regexps.
15453         (ada-remote): New function.
15454         (ada-run-application): Erase the output buffer before starting the
15455         run Support remote execution of the application.  Use
15456         call-process, or the arguments are incorrectly parsed
15457         (ada-set-default-project-file): Reread the content of the active
15458         project file, not the one from the current buffer When a project
15459         file is set as the default project, all directories are
15460         automatically associated with it.
15461         (ada-set-environment): New function
15462         (ada-treat-cmd-string): New special variable ${current}
15463         (ada-treat-cmd-string): Revised.  The substitution is now done for
15464         any ${...} substring
15465         (ada-xref-current): If no body was found, compiles the spec
15466         instead.  Setup ADA_{SOURCE,OBJECTS}_PATH before running the
15467         compiler to get rid of command line length limitations.
15468         (ada-xref-get-project-field): New function
15469         (ada-xref-project-files): New variable
15470         (ada-xref-runtime-library-specs-path)
15471         (ada-xref-runtime-library-ali-path): New variables
15472         (ada-xref-set-default-prj-values): Default run command now does a
15473         cd to the build directory.  New field: main_unit Provide a default
15474         file name even if the current buffer has no prj file.
15476         * ada-prj.el:
15477         Rewritten to show a tabbed-dialog.
15478         (ada-prj-add-ada-menu): Remove the map and name parameters.
15479         (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
15480         New function
15481         (ada-prj-load-directory, ada-prj-subdirs-of): New functions
15482         (ada-prj-load-from-file): New function
15483         (ada-prj-save): Always save fields that depend on the current buffer
15484         (ada-prj-show-value): New function
15486         * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
15487         Ada mode. This will allow us to display the Ada menu in any buffer
15488         we want (for project items).
15489         (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
15490         number of spaces in the header.
15492 2000-07-24  Dave Love  <fx@gnu.org>
15494         * ediff-init.el (ediff-region-help-echo): Bind face-help.
15496 2000-07-23  Noah Friedman  <friedman@splode.com>
15498         * type-break.el (type-break): perform autosave.
15499         Suggested by Stephen Gildea <gildea@stop.mail-abuse.org>.
15500         (type-break-do-query): Cancel query schedule while performing
15501         actual query, to avoid possibility of a second query being made
15502         while first one is already in progress.
15503         (type-break-time-stamp-format): New variable.
15504         (type-break-time-stamp): New function.
15505         (type-break-time-warning): Use it.
15506         (type-break-keystroke-warning): Use it.
15507         (type-break-noninteractive-query): Use it.
15509         * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
15510         cookie.
15511         Use add-minor-mode to set minor-mode-alist, if available.
15512         (eldoc-echo-area-use-multiline-p): New user option.
15513         (eldoc-echo-area-multiline-supported-p): New variable.
15514         (eldoc-docstring-format-sym-doc): Use them.
15515         (eldoc-mode): If not using idle timers, append to local post and
15516         pre command hooks.  Suggested by David Byers <davby@ida.liu.se>.
15517         (eldoc-display-message-no-interference-p): Don't interfere with
15518         edebug.
15519         Add autoload cookie for eldoc-mode minor-mode-alist initialization.
15520         (eldoc-function-arglist): New function.
15521         (eldoc-function-argstring): Use it.
15523         * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
15524         auto save directory exists before calling directory-files.
15526 2000-07-23  Dave Love  <fx@gnu.org>
15528         * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
15529         ^o, ^u.
15531 2000-07-21  Dave Love  <fx@gnu.org>
15533         * ediff-init.el (ediff-region-help-echo): Modify to use overlay
15534         now passed to the function.  It now works properly.
15536         * smerge-mode.el (smerge-mode-menu): Fill it out.
15538 2000-07-20  Gerd Moellmann  <gerd@gnu.org>
15540         * info-look.el (info-lookup): If *info* is shown in another frame
15541         on the same display, select that frame, instead of switching to
15542         the Info buffer in another window of the selected frame.
15544         * simple.el (universal-argument-map): Bind numeric keypad keys
15545         kp-0 to kp-9 and kp-subtract.
15546         (digit-argument): Handle these keys.
15548 2000-07-20  Dave Love  <fx@gnu.org>
15550         * net/goto-addr.el (goto-address-fontify): Don't bother with
15551         buffer-modified and read-only stuff -- irrelevant with overlays.
15552         Put an extra property on the overlays and use it to clean up in
15553         case goto-address is re-run.
15555 2000-07-19  Richard M. Stallman  <rms@gnu.org>
15557         * timer.el (run-with-idle-timer): Doc fix.
15559         * mail/mail-utils.el (mail-strip-quoted-names):
15560         Handle case where <...> appears inside "...".
15561         Use replace-match to edit the string more simply.
15562         (rmail-dont-reply-to): Cope with an unmatched ".
15564 2000-07-19  Dave Love  <fx@gnu.org>
15566         * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
15567         implementation.
15569         * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
15570         (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
15571         (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
15573 2000-07-19  Gerd Moellmann  <gerd@gnu.org>
15575         * textmodes/refer.el: Correct maintainer's email address.
15577         * progmodes/hideif.el: Correct author's email address.
15578         Fix typo in comment.
15580         * xml.el: New file.
15582         * mail/mailheader.el: Correct author's mail address.
15584         * gnus/parse-time.el: Correct author's mail address.
15586 2000-07-19  Colin Walters <walters@cis.ohio-state.edu>
15588         * comint.el (comint-highlight-input, comint-highlight-face):
15589         New user options.
15590         (comint-input-ring-file-name): Change custom type.
15591         (comint-mode-map): Bind mouse-2.
15592         (comint-insert-clicked-input): New function.
15593         (comint-send-input): Handle input highlighting.
15595 2000-07-18  Stefan Monnier  <monnier@cs.yale.edu>
15597         * mouse.el (popup-menu): New function.
15598         (mouse-major-mode-menu): Use it.
15600 2000-07-18  Dave Love  <fx@gnu.org>
15602         * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
15603         improvements.
15605 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
15607         * faces.el (face-font-selection-order)
15608         (face-font-family-alternatives): Add custom type.
15610 2000-07-18  Dave Love  <fx@gnu.org>
15612         * cus-edit.el (custom-variable-reset-saved)
15613         (custom-variable-reset-standard): Remove unused bindings.
15615         * rect.el (open-rectangle-line): Remove unused let.
15617         * hl-line.el (hl-line-highlight): Check hl-line-mode.
15619 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
15621         * cdl.el: Fix `Maintainer' keyword.
15623         * play/pong.el: Add author's email address.
15625 2000-07-17  Sam Steingold  <sds@gnu.org>
15627         * files.el (insert-directory): Call `split-string' instead of
15628         re-implementing it.
15630 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
15632         * mail/vms-pmail.el: Change maintainer to FSF.
15634         * net/goto-addr.el: Change maintainer to FSF.
15636         * info.el (Info-title-face-alist): Removed.
15638 2000-07-18  David Ponce  <david@dponce.com>
15640         * recentf.el (recentf-open-files): New command that works like
15641         `recentf-open-more-files', but shows the whole list of files (not just
15642         those omitted from the menu). Useful if you don't use a menu-bar!
15643         (recentf-open-more-files) Modified to use `recentf-open-files'.
15645         (recentf-open-files, recentf-open-more-files)
15646         (recentf-edit-list): Dialogs use `recentf-dialog-mode'
15648         (recentf-dialog-mode): New mode for dialogs. You can now just type
15649         "q" to cancel the dialogs.
15651 2000-07-18  David Ponce  <david@dponce.com>
15653         * recentf.el: This is a major update of recentf.el. It adds new
15654         features to better organize the recentf menu and "More..." buffer.
15656         Using new provided menu filtering functions you can now organize the
15657         recent files list:
15659         - by major modes
15660         - by directories
15661         - by user defined rules
15663         Finally, with the new `recentf-filter-changer' customizable filter you
15664         can define a ring of filters and dynamically (via the menu) cycle on
15665         each menu organization in the ring (a la msb).
15667 2000-07-18  Eli Zaretskii  <eliz@is.elta.co.il>
15669         * eshell/eshell.el (eshell): Replace links to eshell.info with
15670         links to eshell, to avoid problems on systems where the manual is
15671         installed as `eshell'.
15672         * eshell/esh-cmd.el (eshell-cmd): Ditto.
15673         * eshell/em-smart.el (eshell-smart): Ditto.
15674         * eshell/em-banner.el (eshell-banner): Ditto.
15675         * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
15677         * eshell/em-unix.el (eshell-shuffle-files): Don't disable
15678         same-file check in the MS-DOS version (it does support inodes).
15680         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
15682         * eshell/eshell.el (eshell-directory-name):
15683         Run default directory name through convert-standard-filename.
15685 2000-07-18  Kenichi Handa  <handa@etl.go.jp>
15687         * international/mule-cmds.el (select-safe-coding-system):
15688         Fix typo in the comment.
15690         * language/european.el (compound-text):
15691         Force katakana-jisx0201 to be designated to G1.
15693         * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
15694         Don't translate some national variant characters of latin-jisx0201.
15695         (x-ctext): Force katakana-jisx0201 to be designated to G1.
15697         * international/kkc.el (kkc-after-update-conversion-functions):
15698         New variable.
15699         (kkc-update-conversion): Run functions in it at the tail.
15701 2000-07-16  John Wiegley  <johnw@gnu.org>
15703         * lisp/align.el (align-newline-and-indent):
15704         Adding new function.  for auto-aligning blocks of code on RET.
15705         (align-region): Fixed badly formatted minibuffer message.
15707 2000-07-17  Kenichi Handa  <handa@etl.go.jp>
15709         * international/kkc.el (kkc-show-conversion-list-count): Customize it.
15710         (kkc-region): Update kkc-next-count and kkc-prev-count here.  Show
15711         the conversion list at first if appropriate.
15712         (kkc-next): Don't update kkc-next-count here.
15713         (kkc-prev): Don't update kkc-prev-count here.
15714         (kkc-show-conversion-list-update): Fix setting up of conversion
15715         list message.
15717 2000-07-16  Stefan Monnier  <monnier@cs.yale.edu>
15719         * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
15721 2000-07-16  Dave Love  <fx@gnu.org>
15723         * cus-edit.el (custom-buffer-create-internal): Use a help-echo
15724         function to be more specific.
15726         * wid-edit.el (widget-specify-field, widget-specify-button): Allow
15727         non-string help-echo.
15728         (widget-types-convert-widget): Defsubst it.
15729         (widget-echo-help): Try to cope with a help-echo function of two
15730         possible sorts.
15732 2000-07-15  Jason Rumney  <jasonr@gnu.org>
15734         * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
15735         Declare as obsolete.
15737         * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
15739 2000-07-14  Gerd Moellmann  <gerd@gnu.org>
15741         * hilit-chg.el: Fix typo.
15743 2000-07-14  Dave Love  <fx@gnu.org>
15745         * info.el (Info-mode-menu): Fix use of :help, :enable.
15747 2000-07-14  Stefan Monnier  <monnier@cs.yale.edu>
15749         * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
15751 2000-07-13  Dave Love  <fx@gnu.org>
15753         * emacs-lisp/easymenu.el: Doc fixes.
15754         (easy-menu-remove): Defalias to ignore.
15756         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
15757         Call throw correctly.
15759 2000-07-13  Gerd Moellmann  <gerd@gnu.org>
15761         * faces.el (frame-background-mode): Doc fix.
15763         * simple.el (eval-expression-print-length): Change custom type to
15764         allow entering nil as value.
15766 2000-07-13  Dave Love  <fx@gnu.org>
15768         * progmodes/fortran.el (fortran-imenu-generic-expression):
15769         Change definition layout.
15770         (fortran-mode-menu): Reinstate customize entries.
15772         * cus-edit.el (custom-group-menu-create, customize-menu-create):
15773         Use :filter, per old XEmacs code.
15775 2000-07-12  Gerd Moellmann  <gerd@gnu.org>
15777         * term.el (term-send-raw-meta): Strip modifiers from the keyboard
15778         event when deciding what to send to the terminal.
15780 2000-07-12  Dave Love  <fx@gnu.org>
15782         * cus-start.el: Add optional version as 4th element of specs and
15783         use it for several things new in v21.  Remove load-path.  Fix type
15784         of line-number-display-limit.
15786 2000-07-11  Dave Love  <fx@gnu.org>
15788         * progmodes/fortran.el: Don't require easymenu.
15789         Use repeat counts in various regexps.
15790         (fortran-mode-syntax-table): Defvar directly.
15791         (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
15792         (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
15793         Use defvar, not defconst.
15794         (fortran-mode-map): Change locals in `let'.  Use `fortran-auto-fill'.
15795         (fortran-mode): Set fortran-comment-line-start-skip,
15796         fortran-comment-line-start-skip, dabbrev-case-fold-search.
15797         (fortran-comment-indent): Use defsubst.
15798         (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
15799         Use fortran-comment-indent, not fortran-comment-indent-function.
15800         (fortran-comment-region, fortran-electric-line-number): Simplify.
15801         (fortran-auto-fill): New function.
15802         (fortran-do-auto-fill): Deleted.
15803         (fortran-find-comment-start-skip):
15804         Check for non-null comment-start-skip.
15805         (fortran-auto-fill-mode, fortran-fill-statement):
15806         Use fortran-auto-fill.
15807         (fortran-fill): Use fortran-auto-fill.  Check for null
15808         comment-start-skip.  Simplify final clause and use end-of-line finally.
15810         * widget.el (widget-plist-member): New alias.
15812 2000-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
15814         * eshell/esh-module.el (toplevel): Reference
15815         byte-compile-current-file only if it is bound.
15817 2000-07-10  Gerd Moellmann  <gerd@gnu.org>
15819         * dired.el: Don't require `dired-aux'.
15821 2000-07-10  Miles Bader  <miles@lsi.nec.co.jp>
15823         * dired-aux.el (dired-show-file-type): New function.
15824         * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
15825         (dired-show-file-type): Add autoload.
15827 2000-07-10  Kenichi Handa  <handa@etl.go.jp>
15829         * international/mule-diag.el (describe-font): Adjusted for the
15830         change of fontset-info.
15831         (print-fontset): Likewise.
15833 2000-07-09  Stefan Monnier  <monnier@cs.yale.edu>
15835         * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
15837 2000-07-07  Gerd Moellmann  <gerd@gnu.org>
15839         * bindings.el: Bind `[delete]' to delete-char.
15841         * dired.el (dired-find-alternate-file): New function.
15842         (dired-mode-map): Bind `a' to dired-find-alternate-file.
15843         (toplevel): Require dired-aux when compiling.
15844         (dired-buffers): Move defvar within file to avoid compiler warning.
15846         * info.el (Info-last-search): Variable removed.
15847         (Info-search-history): New variable.
15848         (Info-search): New Info-search-history.
15850         * battery.el, info-look.el: Change author's mail address.
15852 2000-07-07  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
15854         * mail/rmail.el (rmail-clear-headers): Don't throw an error
15855         if rmail-ignored-headers is nil.
15856         (rmail-retry-failure): Bind rmail-ignored-headers and
15857         rmail-displayed-headers to nil.
15859 2000-07-06  Gerd Moellmann  <gerd@gnu.org>
15861         * lpr.el (lpr-page-header-switches): Add `-h' switch.
15862         (print-region-1): Don't hard code `-h' here.
15864         * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
15866 2000-07-01  Francesco Potorti`  <pot@gnu.org>
15868         * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
15869         exim can use "your message" instead of "the message".
15871 2000-07-06  Stefan Monnier  <monnier@cs.yale.edu>
15873         * facemenu.el: Docstrings fixes.
15874         (facemenu-get-face): Don't use internal-find-face.
15875         (facemenu-iterate): Rename arg to match the docstring.
15877         * newcomment.el (uncomment-region): Be more careful when skipping
15878         backwards over `=' not to bump into BOBP.
15880 2000-07-05  Michael Kifer  <kifer@cs.sunysb.edu>
15882         * ediff-diff.el (ediff-wordify): Use syntax table.
15883         * ediff-init.el (ediff-has-face-support-p): Use
15884         ediff-color-display-p.
15885         (ediff-color-display-p): Use display-color-p, changed to defun
15886         from defsubst.
15887         Got rid of special cases for NeXT and OS/2.
15888         * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
15889         face.
15891 2000-07-05  Stefan Monnier  <monnier@cs.yale.edu>
15893         * emacs-lisp/lucid.el: Require CL.
15894         (copy-tree, remprop): Remove, it's provided by CL.
15895         (map-keymap): Define in terms of cl-map-keymap.
15896         (extent-property, set-extent-end-glyph): New functions.
15898         * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
15900 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
15902         * Makefile.in (DONTCOMPILE): Add comment that the name may
15903         not be changed without changing the make-dist script.
15905         * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
15906         (cl-mapc): Use mapc instead of cl-old-mapc.
15908 2000-07-05  Andrew Innes  <andrewi@gnu.org>
15910         * makefile.nt: Add support for `bootstrap' and related targets.
15912 2000-07-05  Stefan Monnier  <monnier@cs.yale.edu>
15914         * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
15915         (easy-menu-do-define): Use `menu-item' format.
15916         Handle case where easy-menu-create-menu returns a symbol.
15917         Manually call the potential top-level filter in the function binding.
15918         (easy-menu-filter-return): New arg NAME.
15919         Convert to a keymap if MENU is an XEmacs menu.
15920         (easy-menu-convert-item-1): New.  Extracted from easy-menu-do-add-item.
15921         (easy-menu-converted-items-table, easy-menu-convert-item):
15922         New var and fun to memoize easy-menu-convert-item-1.
15923         (easy-menu-do-add-item): Use it.
15924         (easy-menu-create-menu): Use easy-menu-convert-item.
15925         Wrap easy-menu-filter-return around any :filter specification.
15926         Don't convert the menu if a filter was specified.
15927         Tell easy-menu-make-symbol not to check for MENU being an expression.
15928         (easy-menu-make-symbol): New arg NOEXP.
15930 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
15932         * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
15933         EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
15934         (eval-defun): If called with prefix arg, instrument code for
15935         Edebug.
15937         * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
15938         similar to that of eval-defun.
15940 2000-07-04  Dave Love  <fx@gnu.org>
15942         * hl-line.el (hl-line-overlay): Make it permanent-local.
15944         * calendar/todo-mode.el: Replaced with a working version, based on
15945         1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
15947 2000-07-03  Miles Bader  <miles@lsi.nec.co.jp>
15949         * paths.el (prune-directory-list): New function.
15950         (Info-default-directory-list): Rewritten to more methodically
15951         enumerate a big list of possible info directories (based on the
15952         list used by the standalone info reader).
15954         * info.el (info-initialize): Use prune-directory-list to remove
15955         non-existent directories from Info-directory-list.
15957         * paths.el (Info-default-directory-list): Try a list of possible
15958         info-directories instead of a single one.  Add the possible
15959         info directory "/usr/share/info".
15961         * woman.el (woman-man.conf-path): Explicitly include the debian
15962         man-db config file "/etc/manpath.config".
15963         (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
15964         are present in `manpath.config'.
15965         (woman-manpath): Include "/usr/share/man".
15967 2000-07-03  Gerd Moellmann  <gerd@gnu.org>
15969         * frame.el (blink-cursor-mode): Don't hide cursor initially.
15971         * startup.el (command-line): Initialize blink-cursor based
15972         on window-system.
15974         * frame.el (blink-cursor): Default to nil if not running under
15975         a window-system.
15977         * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
15978         (face-x-resources): Remove duplicate entry for :font.
15980         * textmodes/refer.el (refer-find-entry-internal): Use some-window
15981         instead of cycling through windows with next-window.
15983         * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
15984         of cycling through windows with next-window.
15986         * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
15987         of cycling through windows with next-window.
15989         * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
15990         (edebug-get-displayed-buffer-points): Use walk-windows/some-window
15991         instead of cycling through windows with next-window.
15993         * calendar/appt.el (appt-select-lowest-window): Use walk-windows
15994         instead of cycling through windows with next-window.
15996         * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
15997         of cycling through windows with next-window.
15999         * terminal.el (te-process-output): Use walk-windows instead of
16000         cycling through windows with next-window.
16002         * server.el (server-switch-buffer): Use some-window instead of
16003         cycling through windows with next-window.
16005         * window.el (some-window): New function.
16006         (walk-windows): Remove reference to walk-windows-start.
16008         * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
16010 2000-07-03  Richard Stallman  <rms@gnu.org>
16012         * window.el (walk-windows): Guarantee termination by keeping a list
16013         of all the windows already handled.
16015 2000-06-28  Eli Zaretskii  <eliz@is.elta.co.il>
16017         * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
16018         window-system.
16020         * man.el (Man-notify-when-ready): Don't use window-system.  If
16021         Man-notify-method is newframe, and the display is not
16022         multi-frame, select the frame created for the man page.
16023         (Man-init-defvars): Doc fix.
16025 2000-06-28  Gerd Moellmann  <gerd@gnu.org>
16027         * faces.el (region): Change background color for light background.
16029         * ediff-wind.el (ediff-setup-control-frame): Remove :box
16030         attribute from mode-line face of Ediff control frame.
16032         * replace.el (query-replace-map): Bind `e' like `E'.
16034 2000-06-28  Eli Zaretskii  <eliz@is.elta.co.il>
16036         * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
16037         Change name to "Select All".
16039         * dos-fns.el (convert-standard-filename): Fix last change.
16041 2000-06-27  Gerd Moellmann  <gerd@gnu.org>
16043         * help.el (describe-variable): Don't insert a second `'s' in front
16044         of the string `value is shown below'.  Since the syntax-table is
16045         set to emacs-lisp-mode-syntax-table, forward-sexp skips over
16046         an existing `'s', so that this won't be deleted.
16048         * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
16049         * pcmpl-unix.el: New files.
16051 2000-06-26  Stefan Monnier  <monnier@cs.yale.edu>
16053         * wid-edit.el (widget-member): Use the new plist-member.
16055 2000-06-26  Gerd Moellmann  <gerd@gnu.org>
16057         * replace.el (perform-replace): Undo change of 2000-04-04.
16058         Instead, move backward 1 character at the end of the loop when
16059         necessary.
16061         * faces.el (fringe): Change face for different backgrounds.
16063         * eshell/esh-module.el (toplevel): Load defgroup's differently;
16064         patch from John.
16066         * eshell/*.el: Change spelling of the Free Software Foundation.
16068         * eshell/esh-toggle.el: Removed.
16070         * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
16072         * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
16073         interactively.
16075 2000-06-26  Alex Schroeder  <alex@gnu.org>
16077         * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
16078         `define-key'; instead of checking `(emacs-version)' check for
16079         `set-keymap-parent' and `set-keymap-name' directly.  Add entries
16080         for `;' and `o' which might be electric.
16082         (sql-electric-stuff): New user option.
16083         (sql-magic-go): New function which uses `sql-electric-stuff'.
16084         (sql-magic-semicolon): New function which uses
16085         `sql-electric-stuff'.
16087         (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
16088         is not fboundp.
16090         (sql-oracle-options): New variable.
16091         (sql-oracle): Use it.
16093         (sql-imenu-generic-expression): Doc change.
16094         (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
16095         is used.
16097         (sql-informix): Added command line parameter "-" to force
16098         sql-informix-program to use stdout.
16100 2000-06-25  Eli Zaretskii  <eliz@is.elta.co.il>
16102         * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
16103         (cp864-decode-table): Doc fix.
16104         (cp720-decode-table): New variable, supports the Arabic OEM
16105         codepage used by Windows.
16106         (cp737-decode-table): New, Greek OEM codepage used by Windows.
16108 2000-06-23  Dave Love  <fx@gnu.org>
16110         * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
16111         (font-lock-fontify-anchored-keywords): Use
16112         line-beginning-position.
16113         (global-font-lock-mode): Use mapc.
16115 2000-06-23  Stefan Monnier  <monnier@cs.yale.edu>
16117         * eshell/esh-module.el: Require CL when compiling.
16119 2000-06-23  Gerd Moellmann  <gerd@gnu.org>
16121         * comint.el (comint-substitute-in-file-name): Call replace-match
16122         with second and third arg t.
16124         * cus-edit.el (custom-button-face, custom-button-pressed-face):
16125         Specify foreground color.
16127         * faces.el (tool-bar, mode-line, header-line): Specify foreground
16128         color.
16130         * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
16132         * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
16133         cddr instead of cdddr.
16135         * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
16136         instead of copy-list.
16138         * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
16139         of copy-list.
16141         * subdirs.el: Add eshell subdirectory.
16143         * eshell: New subdirectory containing the Eshell package.
16145         * pcomplete.el: New file.
16147 2000-06-23  Paul Eggert  <eggert@twinsun.com>
16149         * mail/mailpost.el (post-mail-send-it): Make sure file has
16150         proper permissions from birth.
16152         * files.el (basic-save-buffer-2): When temporarily setting
16153         file modes, set them to current modes plus 0200, not to 0777.
16155         * emerge.el (emerge-make-temp-file): Make sure file has proper
16156         permissions from birth.
16158 2000-06-22  Eli Zaretskii  <eliz@is.elta.co.il>
16160         * files.el (make-backup-file-name-1): On DOS/Windows, run the
16161         backup file name through convert-standard-filename.
16163         * dos-fns.el (convert-standard-filename): Convert leading
16164         directories as well.  When long file names are supported, convert
16165         characters that are invalid in Windows file names.
16167 2000-06-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
16169         * ps-print.el: Fix bug: if ^L is the very first buffer character,
16170         ps-print crashes.  New feature: page selection for printing.  Create
16171         raw-text-unix coding system for XEmacs.  Doc fix.
16172         (ps-print-version): New version number (5.2.3).
16173         (ps-plot-region): Bug fix.
16174         (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
16175         (ps-header-sheet, ps-generate, ps-end-job): Code fix.
16176         (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
16177         funs.
16178         (ps-selected-pages, ps-last-selected-pages, ps-first-page)
16179         (ps-last-page): New vars.
16181 2000-06-21  Gerd Moellmann  <gerd@gnu.org>
16183         * progmodes/sh-script.el (sh-while-getopts): Fix handling of
16184         empty option string.
16186 2000-06-21  Eli Zaretskii  <eliz@is.elta.co.il>
16188         * man.el (man): Doc fix.
16190 2000-06-21  Kenichi Handa  <handa@etl.go.jp>
16192         * international/mule-cmds.el (set-language-info-alist): Docstring
16193         fixed.
16195 2000-06-20  Gerd Moellmann  <gerd@gnu.org>
16197         * version.el (emacs-version): Use ISO date format.
16199         * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
16200         instead of `M-backspace'.
16202         * simple.el (turn-off-auto-fill): New function.
16204 2000-06-20  Stefan Monnier  <monnier@cs.yale.edu>
16206         * jit-lock.el (with-buffer-prepared-for-jit-lock):
16207         Renamed from with-buffer-prepared-for-font-lock and use
16208         inhibit-modification-hooks rather than setting *-change-functions.
16209         Update all functions to use the new name.
16210         (jit-lock-first-unfontify-pos): New semantics (and doc).
16211         (jit-lock-mode): Make non-interactive.
16212         Don't automatically turn on font-lock.
16213         Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
16214         Always use jit-lock-after-change.
16215         Remove and restore font-lock-after-change-function.
16216         (turn-on-jit-lock, jit-lock-after-fontify-buffer)
16217         (jit-lock-after-unfontify-buffer): Remove.
16218         (jit-lock-stealth-fontify):
16219         Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
16220         (jit-lock-after-change): Set the `fontified' text-prop to nil.
16222 2000-06-20  Sam Steingold  <sds@gnu.org>
16224         * emacs-lisp/cl-indent.el (toplevel): Indent
16225         `print-unreadable-object' properly.  Untabify.
16227 2000-06-14  Carsten Dominik  <dominik@strw.leidenuniv.nl>
16229         * textmodes/reftex.el (reftex-find-citation-regexp-format):
16230         Support for bibentry.
16231         (reftex-compile-variables): Fixed problem with end of section-re.
16233         * texmodes/reftex-dcr.el (reftex-view-crossref,
16234         reftex-view-crossref-from-bibtex):
16235         Deal with changed `reftex-find-citation-regexp-format'.
16236         (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
16237         Replaced `remprop' with `put'.
16238         (reftex-view-crossref, reftex-view-crossref-when-idle):
16239         Support for bibentry.
16241         * textmodes/reftex-vars.el (reftex-cite-format-builtin):
16242         New entry for bibentry package.
16244         * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
16245         Regexp also matches "\nobibliography".
16247         * textmodes/reftex-global.el (reftex-renumber-simple-labels):
16248         Call `reftex-ensure-write-access' before doing anything.
16249         (reftex-ensure-write-access): New function.
16251 2000-06-14  Carsten Dominik  <dominik@strw.leidenuniv.nl>
16253         * progmodes/idlwave.el: File re-installed (update to version 4.2)
16255         * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
16257         * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
16259         * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
16262 2000-06-20  Dave Love  <fx@gnu.org>
16264         * faces.el (frame-background-mode): Use set-default, not set, in
16265         setter.
16266         (frame-update-faces, frame-update-face-colors): Define with
16267         defalias.
16269         * enriched.el (enriched-decode-foreground)
16270         (enriched-decode-background): Don't use internal-find-face.
16272         * apropos.el: Doc fixes.
16274         * cus-edit.el (customize-changed-options): Check arg.
16275         (customize-version-lessp): Don't require decimal point.
16277         * custom.el (defcustom, defgroup): Doc fix.
16279         * newcomment.el (comment) <defgroup>: Add :version.
16280         (comment-multi-line): Doc fix.
16282         * emulation/mlsupport.el (define-hooked-local-abbrev,
16283         define-hooked-global-abbrev): Fix, using define-abbrev.
16285 2000-06-19  Gerd Moellmann  <gerd@gnu.org>
16287         * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
16288         the whole buffer.
16290 2000-06-19  Dave Love  <fx@gnu.org>
16292         * menu-bar.el (menu-bar-options-save): New function.
16293         (menu-bar-options-menu): Use it.
16294         (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
16295         Simplify.
16297 2000-06-19  Andreas Schwab  <schwab@suse.de>
16299         * progmodes/etags.el (tags-query-replace): Put new parameters
16300         START and END at the end, for backward compatibility.
16302 2000-06-19  Kenichi Handa  <handa@etl.go.jp>
16304         * international/codepage.el:
16305         (cp-coding-system-for-codepage-1): Delete special codes for
16306         generating xxx-dos coding system because now a CCL based coding
16307         system can handle EOL conversion by default.
16309         * international/mule.el (make-coding-system): Generate subsidiary
16310         coding systems for EOL handling variants even for a CCL based
16311         coding system.
16313 2000-06-19  Kenichi Handa  <handa@etl.go.jp>
16315         * international/isearch-x.el (isearch-minibuffer-input-method)
16316         (isearch-minibuffer-input-method-function): These variables
16317         deleted.
16318         (isearch-with-input-method): Don't use the above variables.
16319         (isearch-process-search-multibyte-characters): Likewise.  Call
16320         read-string with the arg INHERIT-INPUT-METHOD t.
16322 2000-06-17  Stefan Monnier  <monnier@cs.yale.edu>
16324         * font-lock.el (font-lock-after-fontify-buffer)
16325         (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
16327         * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
16328         Use consistent make-local-variable style for font-lock-fontified.
16329         (jit-lock-fontify-buffer):
16330         Don't bother checking for font-lock-mode and jit-lock-mode.
16332         * time.el: Remove trailing ^M that prevent CVS-merging.
16334 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
16336         * Makefile.in (distclean): New target.
16338 2000-06-16  Stefan Monnier  <monnier@cs.yale.edu>
16340         * Makefile.in (srcdir): Define for update-subdirs.
16342 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
16344         * find-lisp.el: New file.
16346 2000-06-16  Andrew Innes  <andrewi@gnu.org>
16348         * time.el (display-time-mail-function): New variable, to allow
16349         external packages to indicate when new mail is available.
16350         (display-time-update): Use it.
16352 2000-06-16  Kenichi Handa  <handa@etl.go.jp>
16354         * international/mule.el (mule-version): Change version name to
16355         SAKAKI.  AOI has already been used by Meadow.
16357         * international/quail.el (quail-show-guidance-buf): To find the
16358         bottom window (but minibuffer), pay attention to the height of
16359         minibuffer.
16361 2000-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
16363         * arc-mode.el (archive-mode-map): Use the new menu-item format for
16364         menu-bar menus.  Add help strings.  Don't remove the Edit menu
16365         from the menu bar, as the menu bar has enough space now.
16367         * Makefile.in (SHELL): Make sure /bin/sh is used.
16369         * woman.el (woman-man-buffer): Fix bold and underlined CJK
16370         characters, which use series of two ^H characters instead of one.
16372 2000-06-15  Gerd Moellmann  <gerd@gnu.org>
16374         * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
16375         (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
16376         functions.
16377         (Info-find-node-2): Try a case-sensitive search first, then
16378         do a case-insensitive search.
16380         * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
16381         tutorials.
16383         * complete.el (PC-env-vars-alist): New variable.
16384         (PC-complete-as-file-name): New function.
16385         (partial-completion-mode): Initialize PC-env-vars-alist from
16386         process-environment.
16387         (PC-do-completion): Handle completion of env vars.
16389         * info.el (Info-set-mode-line): Show file name in mode line,
16390         use `*Info*' instead of `Info:'.
16392         * startup.el (command-line-1): Change copyright messages to year
16393         2000.
16395 2000-06-15  Dave Love  <fx@gnu.org>
16397         * net/goto-addr.el (goto-address-fontify): Use keymap property,
16398         not local-map.
16400 2000-06-15  Kenichi Handa  <handa@etl.go.jp>
16402         * international/mule.el (set-buffer-file-coding-system): Almost
16403         rewritten to handle `undecided' as no-op.
16405 2000-06-14  Gerd Moellmann  <gerd@gnu.org>
16407         * Makefile.in: New file.
16409         * Makefile: Removed.
16411         * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
16412         (goto-address-highlight-keymap): Bind C-c RET.
16414 2000-06-14  Kenichi Handa  <handa@etl.go.jp>
16416         * mail/sendmail.el (sendmail-send-it): The temporary buffer
16417         inherits buffer-file-coding-system of the current buffer.
16419         * tar-mode.el (tar-extract): For goto-char, use (point-min), not
16420         0.  Give correct argument to set-auto-coding-function.
16421         (tar-expunge): For goto-char, use (point-min), not 0.
16422         (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
16423         (tar-subfile-save-buffer): Likewize.
16425         * international/mule.el
16426         (after-insert-file-set-buffer-file-coding-system): Call
16427         set-buffer-file-coding-system with the arg FORCE t.
16429 2000-06-13  Gerd Moellmann  <gerd@gnu.org>
16431         * mail/sendmail.el (mail-specify-envelope-from): Initialize to
16432         nil.  Contemporary sendmails issue an X-Authentication-Warning if
16433         the sender is set with `-f'.
16435 2000-06-13  Dave Love  <fx@gnu.org>
16437         * help.el (describe-function-1): Kluge around cases of functions
16438         fset to subrs whose doc doesn't match their symbol-name.
16440         * image.el (insert-image): Default STRING to a space.
16442         * info.el Doc fixes.
16443         (Info-build-node-completions): Match Ref tags.
16445 2000-06-13  Eli Zaretskii <eliz@is.elta.co.il>
16447         * frame.el (display-multi-frame-p, display-multi-font-p): New
16448         defaliases for display-graphic-p.
16450         * hl-line.el: Fixed a typo in commentary.
16452 2000-06-13  Kenichi Handa  <handa@etl.go.jp>
16454         * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
16455         fixed.
16457 2000-06-12  Dave Love  <fx@gnu.org>
16459         * image.el (insert-image): Save a little consing.
16461 2000-06-12  Kenichi Handa  <handa@etl.go.jp>
16463         * language/tibet-util.el: Convert all tibetan-1-column characters
16464         to the corresponding tibetan characters.
16465         (tibetan-add-components): Delete code for the special treatment of
16466         'a chung.
16468         * language/tibetan.el (tibetan-composable-pattern): Fix previous
16469         change.
16470         (tibetan-vowel-transcription-alist): More rules added.
16471         (tibetan-composite-vowel-alist): New variable.
16472         (tibetan-precomposition-rule-alist): More rules added.
16474 2000-06-12  Stefan Monnier  <monnier@cs.yale.edu>
16476         * startup.el (command-line): Only call menu-bar-mode if interactive.
16478         * thingatpt.el (toplevel symbol-properties):
16479         * textmodes/makeinfo.el (makeinfo-compile):
16480         * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
16481         * progmodes/hideif.el (hif-compress-define-list)
16482         (hide-ifdef-use-define-alist):
16483         * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
16484         (ange-ftp-vms-add-file-entry):
16485         * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
16486         * man.el (Man-build-man-command):
16487         * mail/rnewspost.el (news-reply-header-hook):
16488         * info.el (Info-insert-dir):
16489         * emulation/mlconvert.el (backward-word, forward-word, setq):
16490         * emacs-lisp/gulp.el (gulp-send-requests):
16491         * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
16492         (byte-optimize-inline-handler, byte-optimize-form-code-walker)
16493         (byte-optimize-apply, end of file):
16494         * emacs-lisp/advice.el (ad-advice-class-completion-table)
16495         (ad-make-freeze-definition):
16496         * startup.el (command-line, command-line-1): Don't quote lambdas.
16498         * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
16499         (cvs-cleanup-removed): New function.
16500         (cvs-cleanup-functions): New var.
16501         (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
16502         some flexibility in specifying additional entries to auto-cleanup.
16503         (cvs-quickdir): New function.
16504         (cvs-mode-insert): Use cvs-fileinfo-from-entries.
16505         (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
16506         (cvs-mode-find-file): Check that we are on a filename or dirname
16507         when invoked through a mouse-click.
16508         (cvs-full-path): Remove.
16509         (cvs-dired-action): Re-introduced.
16510         (cvs-dired-noselect): Use it.
16511         (vc-post-command-functions): use this new hook if available.
16513         * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
16514         (cvs-status-map): Don't inherit from cvs-mode-map anymore.
16515         (cvs-filename-map, cvs-dirname-map): Remove.
16516         (cvs-default-action): Remove.
16517         (cvs-add-face): Use `keymap' rather than `local-map' property, and only
16518         if the arg is really a keymap.
16519         (cvs-fileinfo-pp): Don't use any special map for file and dir names.
16520         Don't hardcode the mapping from state (aka type) to face, but check
16521         the var cvs-fi-<type>-face instead.
16522         (cvs-fileinfo-from-entries): New function.
16524         * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
16525         Docstring fix.
16526         (cvs-find-file-and-jump): Change default to be safer.
16527         (cvs-mode-diff-map): Define it as a function as well.
16528         (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
16529         Bind mouse-2 in this global map rather than with text-properties.
16531         * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
16532         file to resolve the ambiguity between C(conflict) and C(need-merge).
16534 2000-06-12  Kenichi Handa  <handa@etl.go.jp>
16536         * international/mule.el (set-buffer-file-coding-system): If
16537         CODING-SYSTEM is nil, set buffer-file-coding-system to nil
16538         unconditionally.
16540 2000-06-12  Dave Love  <fx@gnu.org>
16542         * wid-edit.el (widget-specify-button): Really suppress the face if
16543         required.
16545 2000-06-11  Gerd Moellmann  <gerd@gnu.org>
16547         * term/x-win.el (x-colors): Add colors from recent rgb.txt.
16549 2000-06-11  Stefan Monnier  <monnier@cs.yale.edu>
16551         * imenu.el (imenu-generic-expression): Docstring fix.
16553         * composite.el (composition-function-table): Move the `put'
16554         below the autoload cookie so we can load the file before loaddefs.
16556         * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
16558         * emacs-lisp/autoload.el (make-autoload): Use `cond'.
16559         Handle easy-mmode-define-global-mode.
16560         For complex macros like define-minor-mode that can generate
16561         several autoload entries, try to autoload entries in the
16562         macroexpanded code.
16564         * emacs-lisp/easy-mmode.el (define-minor-mode):
16565         If KEYMAP is a symbol, just use it.
16566         Use byte-compile-current-file and load-file-name to infer the
16567         proper :require to pass to defcustom.
16568         Wrap the hook var into `progn' so as not to autoload it.
16569         Add a :autoload-end cookie.
16570         Be more careful about the evaluation of KEYMAP.
16571         (easy-mmode-define-global-mode): Add a :autoload-end cookie.
16572         (define-derived-mode): Move define-abbrev-table outside of defvar.
16574 2000-06-10  Stefan Monnier  <monnier@cs.yale.edu>
16576         * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
16577         (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
16578         (backup-compiled-files): Ignore errors during `tar'.
16579         (bootstrap): Make autoloads before elc files.
16581 2000-06-10  Kenichi Handa  <handa@etl.go.jp>
16583         * international/mule.el (set-buffer-file-coding-system): If one of
16584         undecided-XXX is specified, change only EOL conversion.
16586         * international/mule-conf.el (unix): New alias for the coding
16587         system undecided-unix.
16589 2000-06-09  Dave Love  <fx@gnu.org>
16591         * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
16593         * progmodes/executable.el: Byte compile dynamic.
16594         (executable-insert): Change custom type.
16595         (executable-find): Add autoload cookie.
16596         (executable-make-buffer-file-executable-if-script-p): New
16597         function.  After Noah Friedman.
16599         * files.el (after-save-hook): Customize, with
16600         executable-make-buffer-file-executable-if-script-p as an option.
16602 2000-06-09  Kenichi Handa  <handa@etl.go.jp>
16604         * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
16605         "tib24p-mule.bdf" for Tibetan.
16607         * composite.el (decompose-composite-char): Declare it as obsolete.
16609         * man.el (Man-fontify-manpage): Pay attention to underline and
16610         overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
16612 2000-06-08  Gerd Moellmann  <gerd@gnu.org>
16614         * thingatpt.el (forward-thing): Use functionp instead of fboundp.
16615         Set maintainer to FSF since author isn't reachable.
16617 2000-06-08  Dave Love  <fx@gnu.org>
16619         * international/mule-cmds.el (select-safe-coding-system): If
16620         DEFAULT-CODING-SYSTEM is not specified, also check the most
16621         preferred coding-system if buffer-file-coding-system is
16622         `undecided'.  From Handa.
16624 2000-06-08  Kenichi Handa  <handa@etl.go.jp>
16626         * international/mule.el
16627         (after-insert-file-set-buffer-file-coding-system): If the buffer
16628         size is greater than INSERTED, judget that we are not visiting.
16630 2000-06-07  Rajesh Vaidheeswarran  <rv@gnu.org>
16632         * whitespace.el (defgroup whitespace): Comment out `:version'.
16633         XEmacs 20.4 has problems defining the group with this present.
16634         We'll have this commented out till get resolve the problem.
16636 2000-06-07  John Wiegley  <johnw@gnu.org>
16638         * align.el (align-dq-string-modes, align-sq-string-modes)
16639         (align-open-comment-modes): Add pyhton-mode.
16640         (align-rules-list): Use get-text-property instead of
16641         text-properties-at.
16642         (align-rules-list): Add python-assignment.
16643         (align-rules-list): Change perl-comma-delimiter to
16644         basic-comma-delimiter.  Use if for Perl modes and python-mode.
16645         (align-rules-list): Add python-chain-logic and
16646         basic-line-continuation.
16648 2000-06-07  Jari Aalto  <jari.aalto@poboxes.com>
16650         * apropos.el (apropos-mode-hook): New user variable.
16651         (apropos-mode): Run apropos-mode-hook.
16653 2000-06-07  David Ponce  <david@dponce.com>
16655         * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
16656         commands.  Require `wid-edit' at run-time.
16658 2000-06-07  David Ponce  <david@dponce.com>
16660         * recentf.el: Added some "Commentary".
16661         (recentf-open-more-files, recentf-edit-list): Minor changes to
16662         move the point at the top of the file list.  This behaviour is
16663         consistent with the menu one when the list contains a lot of
16664         files.
16665         (recentf-cleanup): Now displays the number of items removed from
16666         the list.
16667         (recentf-relative-filter) New menu filter to show filenames
16668         relative to `default-directory'.
16670 2000-06-07  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
16672         * ps-print.el: XEmacs compatibility.  Doc fix.  Can select page size
16673         with/without giving an error if PostScript printer doesn't have this
16674         kind of page size.  Zebra Stripe continues or restarts on next page.
16675         Manual/automatic paper feeding.  Switch or not the header.
16676         (ps-print-version): New version number (5.2.2).
16677         (ps-windows-system): Include emx as a Windows system.
16678         (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
16679         (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
16680         (ps-background-text): Code fix.
16681         (ps-error-handler-message, ps-user-defined-prologue)
16682         (ps-print-prologue-header, ps-printer-name)
16683         (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
16684         (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
16685         (ps-use-face-background): Customization fix.
16686         (ps-n-up-database): Data fix.
16687         (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
16688         (ps-switch-header): New vars.
16689         (ps-xemacs-color-name, ps-face-foreground-name)
16690         (ps-face-background-name, ps-boolean-constant): New funs.
16692 2000-06-07  Dave Love  <fx@gnu.org>
16694         * allout.el: New version from Manheimer.
16696 2000-06-07  Kenichi Handa  <handa@etl.go.jp>
16698         * textmodes/fill.el (fill-find-break-point): Check the validity of
16699         charset.
16701 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
16703         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
16704         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
16705         Call display-color-p and display-mouse-p instead of looking at
16706         window-system.
16708 2000-06-06  Dave Love  <fx@gnu.org>
16710         * image.el (find-image): Doc fix.  Return nil if image not found.
16711         (put-image, insert-image): Make STRING arg optional.
16713 2000-06-06  Kenichi Handa  <handa@etl.go.jp>
16715         * language/vietnamese.el: Remove eval-when-compile.
16716         (viet-viscii-nonascii-translation-table): Define it as a
16717         translation table made from viet-viscii-decode-table.
16718         (viet-viscii-encode-table): Define it as a translation table made
16719         from the reverse map of above.
16720         (viet-vscii-nonascii-translation-table): Define it as a
16721         translation table made from viet-vscii-decode-table.
16722         (viet-vscii-encode-table): Define it as a translation table made
16723         from the reverse map of above.
16724         (ccl-decode-viscii): Use translate-character.
16725         (ccl-encode-viscii, ccl-encode-viscii-font)
16726         (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
16727         Likewize.
16729         * language/cyrillic.el: Remove eval-when-compile.
16730         (cyrillic-koi8-r-nonascii-translation-table): Define it as a
16731         translation table made from cyrillic-koi8-r-decode-table.
16732         (cyrillic-koi8-r-encode-table): Define it as a translation table
16733         made from the reverse map of above.
16734         (ccl-decode-koi8): Use translate-character.
16735         (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
16736         (cyrillic-alternativnyj-nonascii-translation-table): Define it as
16737         a translation table made from cyrillic-alternativnyj-decode-table.
16738         (cyrillic-alternativnyj-encode-table): Define it as a translation
16739         table made from the reverse map of above.
16740         (ccl-decode-alternativnyj): Use translate-character.
16741         (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
16742         Likewize
16744         * international/mule-diag.el (non-iso-charset-alist): Specify
16745         translation table symbol instead of translation table itself.
16746         (list-block-of-chars): CHARSET may be a translation table symbol.
16748         * international/mule.el (make-coding-system): If CODING-SYSTEM
16749         already exists, override it.
16751         * international/fontset.el: Use family `proportional' for Tibetan
16752         fonts.
16754         * international/ccl.el (ccl-compile-translate-character): Don't
16755         check if Rrr has property translation-table.
16756         (ccl-compile-map-multiple): Modified to avoid compiler warning.
16758 2000-06-05  Gerd Moellmann  <gerd@gnu.org>
16760         * info.el: Bind case-fold-search to t when searching in case
16761         a user sets it to nil in a hook.
16763 2000-06-05  Stefan Monnier  <monnier@cs.yale.edu>
16765         * autoarg.el (autoarg-mode, autoarg-kp-mode):
16766         * hl-line.el (hl-line-mode): Use the new :global key argument.
16768         * tar-mode.el (tar-header-block-recompute-checksum): Remove.
16769         (tar-clip-time-string): Prepend a space.
16770         (tar-grind-file-mode): Construct a string rather than modifying one.
16771         (tar-header-block-summarize): Fix docstring.
16772         Use `format' rather than an error-prone set of copy-loops.
16774         * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
16775         (diff-goto-source, diff-unified->context, diff-context->unified)
16776         (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
16777         understand the format output by the `-p' argument to diff.
16779         * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
16780         (sh-re-done): Use defconst.
16781         (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
16782         (sh-help-string-for-variable, sh-guess-basic-offset):
16783         Don't quote lambdas.
16784         (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
16785         (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
16787         * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
16788         (mh-letter-mode): Derive from text-mode.
16789         This implicitly means that it now calls kill-all-local-variables.
16790         Also remove the Emacs-18 compatibility code.
16792         * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
16793         Make use of symbol-property doc-string-elt.
16794         Use memq rather than a sequence of eq.
16795         (doc-string-elt): Fix the wrong or missing previously unused values.
16796         (autoload-print-form): New function extracted from
16797         generate-file-autoloads to allow recursion when handling progn
16798         so that defvar's and defun's docstrings are properly printed.
16799         (generate-file-autoloads): Use it.
16801         * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
16802         Use find-file-hooks in the minor-mode function.
16803         Be careful not to loop indefinitely in the post-command-hook function.
16805 2000-06-05  Michael Kifer  <kifer@cs.sunysb.edu>
16807         * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
16808         tty's.
16809         * ediff-diff.el (ediff-exec-process): Use --binary for fine
16810         differences whenever appropriate.
16811         * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
16812         * viper.el (find-file, find-file-other-window): Get viper to do
16813         wildcards.
16815 2000-06-04  Stefan Monnier  <monnier@cs.yale.edu>
16817         * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
16818         (jit-lock-fontify-buffer): New function for JIT refontification.
16819         (jit-lock-mode): Fix docstring.
16820         Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
16821         Remove jit-lock-after-change from the _local_ hook.
16822         (jit-lock-function-1): Fix docstring.
16824         * info.el (Info-on-current-buffer): Initialize info.
16826         * newcomment.el (comment-indent): Ignore comment-indent-hook.
16828         * progmodes/tcl.el (tcl-indent-for-comment):
16829         Ignore comment-indent-hook.
16831         * emacs-lisp/easy-mmode.el: Require CL during compilation.
16832         (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
16833         (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
16834         and improve to use the lighter to guess the capitalization.
16835         (define-minor-mode): Inline code from easy-mmode-define-toggle.
16836         Add keyword arguments to specify global-ness or the custom group.
16837         Add local-map and help-echo properties to the lighter.
16838         (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
16839         (easy-mmode-define-global-mode): New macro.
16841 2000-06-02  Dave Love  <fx@gnu.org>
16843         * wid-edit.el: byte-compile-dynamic since we typically don't use
16844         all the widgets.  Don't require cl or widget.  Remove
16845         eval-and-compile.  Don't autoload finder-commentary.  Doc fixes.
16846         (widget-read-event): Removed.  Callers changed to use read-event.
16847         (widget-button-release-event-p): Renamed from
16848         button-release-event-p.
16849         (widget-field-add-space, widget-field-use-before-change):
16850         Uncustomize.
16851         (widget-specify-field): Use keymap property, not local-map.
16852         (widget-specify-button): Obey :suppress-face.
16853         (widget-specify-insert): Use modern backquote syntax.
16854         (widget-image-directory): Renamed from widget-glyph-directory.
16855         (widget-image-enable): Renamed from widget-glyph-enable.
16856         (widget-image-find): Replaces widget-glyph-find.
16857         (widget-button-pressed-face): Move defvar.
16858         (widget-image-insert): Replaces widget-glyph-insert.
16859         (widget-convert): Use keywordp.
16860         (widget-leave-text, widget-children-value-delete): Use mapc.
16861         (widget-keymap): Remove XEmacs stuff.
16862         (widget-field-keymap, widget-text-keymap): Define all inside defvar.
16863         (widget-button-click): Don't set point at the click, but re-centre
16864         if we scroll out of window.  Rewritten for images v. glyphs &c.
16865         (widget-tabable-at): Use POS arg, not point.
16866         (widget-beginning-of-line, widget-end-of-line)
16867         (widget-item-value-create, widget-sublist, widget-princ-to-string)
16868         (widget-sexp-prompt-value, widget-echo-help): Simplify.
16869         (widget-default-create): Use widget-image-insert; some rewriting.
16870         (widget-visibility-value-create)
16871         (widget-push-button-value-create, widget-toggle-value-create): Use
16872         widget-image-insert.
16873         (checkbox): Create on and off images dynamically.
16874         (documentation-link): Change :help-echo.
16875         (widget-documentation-link-echo-help): Remove.
16877 2000-06-02  Stefan Monnier  <monnier@cs.yale.edu>
16879         * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
16881         * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
16882         (easy-mmode-define-toggle, define-minor-mode): Use it.
16883         (easy-mmode-define-keymap): Docstring fix.
16884         (define-derived-mode): Default PARENT to fundamental-mode.
16885         Add the derived-mode-parent symbol-property.
16886         (easy-mmode-derived-mode-p): New function.
16888 2000-06-02  Dave Love  <fx@gnu.org>
16890         * files.el (convert-standard-filename): Doc fix.
16891         (normal-backup-enable-predicate): New function.
16892         (backup-enable-predicate): Use it to replace the lambda form.
16894         * calendar/todo-mode.el: [This needs more work on the outline
16895         stuff.]  Doc fixes.
16896         (todo) <defgroup>: Add :version.
16897         (todo-add-category): Don't use pushnew.
16898         (todo-cmd-raise): Fix typo.
16899         (todo-top-priorities): Change temp buffer name.
16900         (todo-category-alist): Avoid redundant lambda.
16901         (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
16902         Use outline-next-heading.
16904         * autoarg.el: Rewritten to use define-minor-mode.
16905         (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
16906         (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
16908 2000-06-02  Kenichi Handa  <handa@etl.go.jp>
16910         * isearch.el (isearch-other-meta-char): Fix previous change.
16912 2000-06-01  Stefan Monnier  <monnier@cs.yale.edu>
16914         * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
16915         (log-edit-done): Only add the comment to the ring if it's different
16916         from the last comment entered.
16918         * isearch.el (isearch-highlight): Turn internal-find-face into facep.
16920 2000-06-01  Dave Love  <fx@gnu.org>
16922         * hl-line.el: Rewritten using define-minor-mode.
16924         * help.el (describe-function-1): Distinguish special form from
16925         builtin function.  Sanity-check presence of arglist for builtins.
16927 2000-06-01  Kenichi Handa  <handa@etl.go.jp>
16929         * international/characters.el: Fix syntax/category setting of
16930         Tibetan characters.
16932         * language/tibet-util.el (tibetan-add-components): Fixes for new
16933         encoding of Tibetan characters.
16934         (tibetan-decompose-precomposition-alist): New variable.
16935         (tibetan-decompose-region): Convert precomposed characters to
16936         non-precomposed characters.
16937         (tibetan-decompose-string): Likewise.
16938         (tibetan-composition-function): Fix args to
16939         thibetan-compose-string.
16941         * language/tibetan.el (tibetan-composable-pattern): More
16942         characters included.
16943         (tibetan-consonant-transcription-alist): Rule for "R" added.
16944         (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
16945         "+R" added.
16946         (tibetan-base-to-subjoined-alist): Rule for "RA" added.
16948         * language/lao-util.el (lao-composition-function): Fix args to
16949         compose-string.
16951         * language/thai-util.el (thai-composition-function): Fix args to
16952         compose-string.
16954         * isearch.el (isearch-update): Set disable-point-adjustment to t
16955         to prevent the point moving to the end of a composition when a
16956         part of a composition is searched.
16957         (isearch-other-meta-char): If the key invoking this command can be
16958         mapped by function-key-map to a printing char, call
16959         isearch-process-search-char directly.
16961 2000-06-01  Stefan Monnier  <monnier@cs.yale.edu>
16963         * emacs-lisp/bytecomp.el:
16964         * frame.el:
16965         * international/mule-cmds.el:
16966         * international/mule-util.el:
16967         * international/mule.el:
16968         * mouse.el:
16969         * subr.el:
16970         * faces.el: Update calls to make-obsolete with a WHEN argument.
16972         * byte-run.el (make-obsolete, make-obsolete-variable):
16973         Add an optional WHEN argument and change the format of the
16974         symbol-property information.
16975         * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
16976         (byte-compile-obsolete, byte-compile-variable-ref): Understand the
16977         new obsolete-symbol-property format and print WHEN if it is provided.
16979 2000-05-31  Dave Love  <fx@gnu.org>
16981         * loadhist.el (loadhist-hook-functions): Remove
16982         before-change-function, after-change-function.
16983         (unload-feature): Deal with symbols which are both bound and
16984         fbound.
16986         * mouse.el (mouse-save-then-kill-delete-region): Don't bind
16987         before-change-function, after-change-function.
16989         * simple.el (newline): Don't bind before-change-function,
16990         after-change-function.
16992 2000-05-31  Rajesh Vaidheeswarran <rv@gnu.org>
16994         * whitespace.el (whitespace-rescan-timer-time): Update interval
16995         set to 600 seconds (10 minutes) instead of 60 seconds since
16996         a large number of whitespace buffers causes emacs to `freeze'
16997         for a considerable amount of time.
16999         * whitespace.el: Updated email address
17001 2000-05-31  Dave Love  <fx@gnu.org>
17003         * add-log.el (change-log-font-lock-keywords) <function>: Add
17004         pattern for function of change.
17005         (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
17006         acknowledgements patterns.
17008 2000-05-31  Kenichi Handa  <handa@etl.go.jp>
17010         * isearch.el (isearch-printing-char): If keyboard coding system is
17011         being used, call isearch-process-search-multibyte-characters.
17013         * international/isearch-x.el: Mostly rewritten.
17015         * international/quail.el (quail-start-conversion): Don't include
17016         unhandled events in the returned events, but set them in
17017         unread-command-events.  Exit if all inputs are deleted.
17019 2000-05-30  Jason Rumney  <jasonr@gnu.org>
17021         * w32-fns.el (w32-charset-info-alist): Add each charset separately.
17023         * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
17024         Reenable code to create initial fontsets.
17025         Use set-fontset-font in place of put-charset-property.
17027 2000-05-30  Gerd Moellmann  <gerd@gnu.org>
17029         * progmodes/perl-mode.el (perl-indent-line): When looking for a
17030         label, ensure that the first colon isn't followed by another.
17032         * paths.el (Info-default-directory-list): Doc fix.
17034         * net/net-utils.el (finger-X.500-host-regexps): New user-option.
17035         (finger): If HOST matches a regexp from finger-X.500-host-regexps,
17036         send a query containing USER only, not USER@HOST.
17038         * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
17039         and rmail-msgend to compute the restriction at the end, instead of
17040         computing it.
17042 2000-05-29  Gerd Moellmann  <gerd@gnu.org>
17044         * dabbrev.el (dabbrev-expand): Don't display messages in the
17045         echo area if the minibuffer window is active.
17047         * jit-lock.el (jit-lock-mode): Add after change function to
17048         local hook.
17050 2000-05-29  Christoph Wedler  <Christoph.Wedler@sap.com>
17052         * antlr-mode.el: New commands: hide/unhide actions,
17053         upcase/downcase literals.
17054         (antlr-tiny-action-length): New user option.
17055         (antlr-hide-actions): New command.  Suggested by
17056         Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
17057         (antlr-mode-map): New binding [C-c C-v].
17058         (antlr-mode-menu): New entries.
17059         (antlr-downcase-literals): New command.
17060         (antlr-upcase-literals): Ditto.
17062         * antlr-mode.el: Minor changes: indendation, mode-name.
17063         (antlr-indent-line): Indent cpp directive at column 0.
17064         (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
17066         * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
17067         (antlr-font-lock-additional-keywords): Workaround for intentional
17068         bug in XEmacs version of font-lock.
17069         (antlr-mode): Set symbol property `mode-name' to "Antlr".  Could
17070         be used by a smarter version of `buffers-menu-grouping-function'.
17072 2000-05-29  Gerd Moellmann  <gerd@gnu.org>
17074         * tmm.el (tmm-prompt): Recognize menu item definitions of the for
17075         `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
17077 2000-05-29  Kenichi Handa  <handa@etl.go.jp>
17079         * international/encoded-kb.el
17080         (encoded-kbd-iso2022-designation-map): Pay attention to that
17081         charset-iso-final-char return -1 for eight-bit-control and
17082         eight-bit-graphic.
17084 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
17086         * speedbar.el (speedbar-use-images, speedbar-update-flag)
17087         (speedbar-easymenu-definition-base): Use display-graphic-p where
17088         available, instead of window-system.
17090 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
17092         * international/codepage.el (cp-coding-system-for-codepage-1): Add
17093         eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
17094         coding systems.
17096 2000-05-26  Dave Love  <fx@gnu.org>
17098         * disp-table.el (standard-display-underline): Don't use
17099         internal-find-face.
17101         * mail/reporter.el: Maintainer change.  Doc fixes.
17102         (reporter-version): Deleted.
17104         * emacs-lisp/elp.el: Maintainer change.
17105         (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
17107 2000-05-26  Stefan Monnier  <monnier@cs.yale.edu>
17109         * add-log.el (add-change-log-entry): Merge the current entry with the
17110         previous one if the previous one is empty.
17112 2000-05-26  Dave Love  <fx@gnu.org>
17114         * loadhist.el (unload-feature): Fix interactive spec [from
17115         lijnzaad@ebi.ac.uk].
17117         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
17118         subr-arity to check primitives.
17119         (byte-compile-flush-pending, byte-compile-file-form-progn)
17120         (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
17121         (byte-compile-insert, byte-compile-funcall): Use mapc instead of
17122         mapcar.
17124 2000-05-26  Kenichi Handa  <handa@etl.go.jp>
17126         * international/fontset.el: Set family names of non-latin charsets
17127         in default fontset to "*".
17129         * international/mule-diag.el (print-fontset): Combine family part
17130         and registry part of the fontname by "-*-" instead of "-".
17132         * international/mule-cmds.el (encode-coding-char): Make strings
17133         multibyte before calling encode-coding-string.
17135 2000-05-25  Stefan Monnier  <monnier@cs.yale.edu>
17137         * derived.el: Fix keywords.
17138         (define-derived-mode): Only define if needed.
17140         * simple.el (fill-comment, comment-column, comment-start)
17141         (comment-start-skip, comment-end, comment-indent-function)
17142         (block-comment-start, block-comment-end, indent-for-comment)
17143         (set-comment-column, kill-comment, comment-padding, comment-region)
17144         (comment-multi-line, indent-new-comment-line): Remove.
17146         * bindings.el (esc-map): Change ; to comment-dwim and use the new
17147         function names for comment operations.
17149         * newcomment.el: Add abundant autoload cookies.
17150         (comment-style): Don't depend on runtime data at compile-time.
17151         (comment-indent-hook): Remove.
17152         (comment-indent): Check if comment-indent-hook is bound.
17153         (comment-region): Docstring fix.
17155 2000-05-25  Dave Love  <fx@gnu.org>
17157         * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
17158         byte-code-function-p.
17160         * mail/rmailsum.el: Add provide.
17162         * net/goto-addr.el (goto-address-fontify): Add help-echo property.
17164         * smerge-mode.el (smerge-diff-switches): Don't use list* in
17165         defcustom.
17167 2000-05-25  Michael Kifer  <kifer@cs.sunysb.edu>
17169         * ediff-diff.el (ediff-exec-process): delete --binary option from
17170         non-buffer ediff jobs.
17172 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
17174         * hilit-chg.el (highlight-changes-mode): Ask about color or
17175         grayscale support, not about window-system.
17177         * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
17178         window-system.
17179         (ffap-highlight): Always default to t.
17181         * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
17182         display-popup-menus-p instead of looking at window-system.
17184         * disp-table.el (standard-display-g1, standard-display-graphic):
17185         Only refuse to use string glyphs on X and MS-Windows.
17187         * avoid.el: Remove window-system from commentary, suggest to use
17188         display-*-p instead.
17190         * apropos.el (apropos-print): Use display-mouse-p instead of
17191         window-system.
17193 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
17195         * international/codepage.el (cp-decoding-vector-for-codepage):
17196         Fill up unsupported characters with their own codes.  From Kenichi
17197         Handa.
17199 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
17201         * international/mule-diag.el (describe-char-after): Use
17202         display-graphic-p instead of window-system, so that this function
17203         works on MS-DOS.
17205 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
17207         * international/codepage.el (cp-make-coding-systems-for-codepage):
17208         Remove the eight-bit-graphic and eight-bit-control charsets from
17209         the list of charsets which we convert into `?'.
17211 2000-05-25  Kenichi Handa  <handa@etl.go.jp>
17213         * international/mule-conf.el: Specify CHARSET-ID explicitely for
17214         private charsets.
17215         (mule-unicode-0100-24ff, japanese-jisx0213-1,
17216         japanese-jisx0213-2): New charsets.
17218         * international/fontset.el: Setup default fontset for new charsets.
17220 2000-05-24  Dave Love  <fx@gnu.org>
17222         * info.el (Info-find-node-2): Restructure [following "Vadim
17223         S. Solomin" <sovs@uic.nnov.ru>].
17225         * icomplete.el: Fix header for Finder.
17227 2000-05-24  Eric M. Ludlam  <zappo@ultranet.com>
17229         * rmailout.el (rmail-output-to-rmail-file): Added optional param
17230         STAY.
17232         * rmail.el (rmail-automatic-folder-directives): New user variable.
17233         (rmail-show-message): Add call to `rmail-auto-file' during
17234         display.
17235         (rmail-auto-file): New function.
17237 2000-05-24  Michael Kifer  <kifer@cs.sunysb.edu>
17239         * ediff-diff.el (ediff-forward-word): Take syntactic word class into
17240         account.
17241         (ediff-test-utility,ediff-diff-mandatory-option)
17242         (ediff-reset-diff-options): Utilities for proper initialization of
17243         ediff-diff-options and ediff-diff3-options on Windows.
17245         * ediff-init.el (ediff-merge-filename-prefix): New customizable
17246         variable.
17248         * ediff-mult.el (ediff-filegroup-action): Use
17249         ediff-merge-filename-prefix.
17251 2000-05-24  Michael Kifer  <kifer@cs.sunysb.edu>
17253         * viper-ex.el (ex-write): Set selective display to nil.
17255 2000-05-24  Eli Zaretskii  <eliz@is.elta.co.il>
17257         * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
17258         aliases for hebrew-iso-8bit.
17260 2000-05-24  Eli Zaretskii  <eliz@is.elta.co.il>
17262         * woman.el: New version from Francis J. Wright
17263         <F.J.Wright@Maths.QMW.ac.uk>.
17264         (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
17265         names in environment variables regardless of the path separator.
17266         (woman-topic-all-completions-1): Don't call file-name-directory-p
17267         on all files, since woman-file-regexp already filters out any
17268         directories.
17270 2000-05-24  Kenichi Handa  <handa@etl.go.jp>
17272         * international/quail.el (quail-start-translation): Don't change
17273         modified-p of the current buffer.
17274         (quail-start-conversion): Likewise.
17276         * international/kkc.el (kkc-region): Don't change modified-p of
17277         the current buffer.
17279         * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
17280         conform to RFC1468.
17281         (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
17283 2000-05-23  Eric M. Ludlam  <zappo@ballista.ultranet.com>
17285         * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
17286         (speedbar-insert-button): Invisible text property fix.
17287         (speedbar-directory-plus): Renamed from speedbar-directory-+
17288         (speedbar-directory-minus): Renamed from speedbar-directory--
17289         (speedbar-page-plus): Renamed from speedbar-file-+
17290         (speedbar-page-minus): Renamed from speedbar-file--
17291         (speedbar-page): Renamed from speedbar-file-
17292         (speedbar-tag): Renamed from speedbar-tag-
17293         (speedbar-tag-plus): Renamed from speedbar-tag-+
17294         (speedbar-tag-minus): Renamed from speedbar-tag--
17295         (speedbar-expand-image-button-alist): Use above renames.
17297         * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
17298         * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
17299         * sb-pg-plus.xpm: Renamed from sb-file+.xpm
17300         * sb-pg-minus.xpm: Renamed from sb-file-.xpm
17301         * sb-pg.xpm: Renamed from sb-file.xpm
17302         * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
17303         * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
17305 2000-05-24  Kenichi Handa  <handa@etl.go.jp>
17307         * international/quail.el (quail-show-guidance-buf): Set
17308         current-input-method of the guidance buffer to the name of the
17309         curren input method.
17311 2000-05-23  Stefan Monnier  <monnier@cs.yale.edu>
17313         * progmodes/compile.el (compile-internal): Style typo.
17315         * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
17316         quote vars and functions in the docstring.
17318         * newcomment.el (comment-make-extra-lines): Don't use `assert'.
17320         * completion.el (dynamic-completion-mode, dynamic-completion-mode):
17321         Don't quote lambdas.
17323         * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
17325 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
17327         * startup.el (command-line): Determine source file of compiled
17328         user init file differently.  Warn if compiled user init file
17329         is older than its source file.
17331         * ffap.el (ffap-url-regexp): Add `https'.
17333 2000-05-23  Eli Zaretskii  <eliz@is.elta.co.il>
17335         * files.el (make-backup-file-name-1): Replace slashes with `!'
17336         rather than `|' (which is not allowed on Windows).  Replace the
17337         drive letters with a string "drive_X".
17339 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
17341         * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
17343         * files.el (interpreter-mode-alist): Add `bash2'.
17345 2000-05-22  Dave Love  <fx@gnu.org>
17347         * loadhist.el (feature-symbols, file-provides, file-requires): Use
17348         mapc.
17349         (feature-file): Avoid calling symbol-name.  Doc fix.
17350         (file-set-intersect, file-dependents): Use dolist, not mapcar.
17351         (loadhist-hook-functions): Add mouse-position-function.
17352         (unload-feature): Change uses of mapcar.
17354         * files.el (parse-colon-path): Doc fix.
17355         (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
17356         (set-auto-mode): Use mapc.
17358         * complete.el (PC-look-for-include-file): Use :alnum: character
17359         class.
17360         (partial-completion-mode): Add autoload cookie.
17362 2000-05-22  Sam Steingold  <sds@gnu.org>
17364         * info.el (Info-fontify-node): Fixed the call to
17365         `add-text-properties' (bug introduced on 2000-05-18).
17367 2000-05-22  Dave Love  <fx@gnu.org>
17369         * bindings.el: Remove debug-ignored-errors set in other files.
17371         * progmodes/etags.el: Add to debug-ignored-errors.
17372         (visit-tags-table-buffer): Clear out buffers holding old tables
17373         when making a new list.
17374         (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
17375         mapc.
17377         * completion.el: Doc fixes.  Add to debug-ignored-errors.  Don't
17378         quote keywords.
17379         (cmpl-string-case-type): Use character classes.
17381         * comint.el:
17382         * textmodes/ispell.el:
17383         * imenu.el:
17384         * mail/mh-e.el:
17385         * progmodes/compile.el: Add to debug-ignored-errors.
17387         * dabbrev.el: Add to debug-ignored-errors.
17388         (dabbrev-completion): Use mapc.
17390 2000-05-22  Eli Zaretskii  <eliz@is.elta.co.il>
17392         * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
17393         (woman-mapcan, woman-parse-man.conf)
17394         (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
17395         (woman-reset-emulation, woman-select-symbol-fonts): New functions.
17396         (woman-parse-colon-path): Call woman-mapcan.  Recognize Cygwin
17397         path syntax better.
17398         (woman-man.conf-path, woman-use-own-frame): New defcustoms.
17399         (woman-manpath): Call woman-parse-man.conf.
17400         (woman-emulation): New defcustom, defaults to nroff.
17401         (woman-font-support): New defconst.
17402         (woman-use-symbol-font): New defcustom.
17403         (woman-menu): Add new menu items: "Colored/BW", "Advanced",
17404         "Emulation".
17405         Many functions: Doc fix.
17407 2000-05-22  Kenichi Handa  <handa@etl.go.jp>
17409         * international/quail.el (quail-simple-translation-keymap): Map
17410         128..255 to quail-self-insert-command.
17411         (quail-keyboard-layout-alist): Add definition for "pc102-de".
17413 2000-05-22  Stefan Monnier  <monnier@cs.yale.edu>
17415         * help.el (help-manyarg-func-alist): Typo.
17417         * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
17418         intervals which makes it heaps simpler.
17420         * newcomment.el (comment-region-internal): Go back to BEG after quoting
17421         the nested comment markers.
17423         * subr.el (remove-hook): Don't turn the hook's value into a list.
17425 2000-05-21  Dave Love  <fx@gnu.org>
17427         * edmacro.el (edmacro-parse-keys): Return vector if any elements
17428         are invalid characters.
17430         * international/mule-util.el (detect-coding-with-priority): Use
17431         mapc.  Remove redundant lambda.
17433         * international/mule-diag.el (list-non-iso-charset-chars)
17434         (describe-fontset): Remove redundant lambda.
17436         * emulation/crisp.el (brief-mode): New alias.
17438         * emacs-lisp/ring.el (ring-elements): New function.
17440         * emacs-lisp/easymenu.el (easy-menu-create-menu)
17441         (easy-menu-do-add-item): Use keywordp.
17443         * emacs-lisp/byte-opt.el: Update side-effect free function lists.
17445         * replace.el: Doc and error message fixes.
17446         (replace-highlight): Use facep, not internal-find-face.
17448 2000-05-20  Stefan Monnier  <monnier@cs.yale.edu>
17450         * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
17452         * log-edit.el (log-edit-done): Cleanup trailing empty lines.
17453         (log-edit-insert-changelog): Drop `:' as well.
17455         * log-view.el: Fix file description.
17456         (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
17457         available.
17458         (log-view-font-lock-keywords): Only use cvs-filename-face if present.
17459         (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
17461         * emacs-lisp/easy-mmode.el: Update copyright and commentary.
17462         (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
17463         Print a status message if the toggle is called interactively.
17464         (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
17465         for global minor modes and use `defcustom' for them.
17466         Use add-minor-mode.
17467         (easy-mmode-define-derived-mode): Remove.
17468         (define-derived-mode): Fancier default docstring.
17469         (easy-mmode-define-navigation): Signal an error rather than (ding).
17471         * newcomment.el (comment-styles): New `box-multi'.
17472         (comment-normalize-vars): Better default for comment-continue to
17473         avoid whitespace-only continuations.
17474         (comment-search-forward): Always move even in the no-syntax case.
17475         (comment-padright): Only obey N if it's only obeyed for padleft.
17476         (comment-make-extra-lines): Better handling of empty continuations.
17477         Use `=' for the filler if comment-start has only one character.
17478         (uncomment-region): Try handling the special `=' filler.
17479         (comment-region): Allow LINES even if MULTI is nil.
17480         (comment-box): Choose box style based on comment-style.
17482 2000-05-20  Kenichi Handa  <handa@etl.go.jp>
17484         * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
17485         (ccl-compile-write-repeat): If ARG is string, make it unibyte.
17487 2000-05-20  Kenichi HANDA  <handa@etl.go.jp>
17489         * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
17490         and insert, not subst-char-in-region.
17492         * international/mule-diag.el (list-character-sets-1): Handle
17493         charsets eight-bit-control and eight-bit-graphic.
17494         (list-iso-charset-chars): Likewise.
17495         (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
17496         charactes as is.  Use indent-to to align characters.
17498         * international/mule-cmds.el (find-multibyte-characters): Never
17499         exclude charsets eight-bit-control and eight-bit-graphic.
17501 2000-05-19  Stefan Monnier  <monnier@cs.yale.edu>
17503         * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
17504         Don't quote lambdas.
17506         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
17508 2000-05-19  Gerd Moellmann  <gerd@gnu.org>
17510         * gud.el (gud-jdb-directories): Doc fix.
17512 2000-05-19  Stefan Monnier  <monnier@cs.yale.edu>
17514         * newcomment.el: New file.
17516 2000-05-19  Gerd Moellmann  <gerd@gnu.org>
17518         * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
17520 2000-05-18  Andreas Schwab  <schwab@suse.de>
17522         * dired.el (dired-between-files): Also skip lines beginning with
17523         `used'.
17525 2000-05-18  Gerd Moellmann  <gerd@gnu.org>
17527         * msb.el (msb-menu-cond): Add choice `user'.
17529 2000-05-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
17531         * ps-print.el: Compatibility, customization and doc fix.
17532         (ps-printer-name-option): Replace defconst by defvar.
17533         (ps-postscript-code-directory): XEmacs compatibility.
17534         (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
17535         fix.
17536         (ps-user-defined-prologue, ps-print-prologue-header)
17537         (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
17538         compatibility and code fix.
17539         (ps-print-background-image, ps-print-background-text):
17540         Customization fix.
17541         (ps-line-number-start, ps-n-up-on): New vars.
17543 2000-05-18  Espen Skoglund  <esk@ira.uka.de>
17545         * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
17546         the indent-comment function to just return the appropriate indent.
17548 2000-05-18  Eric M. Ludlam  <zappo@ultranet.com>
17550         * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
17551         sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
17552         sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
17554 2000-05-18  Dave Love  <fx@gnu.org>
17556         * info.el (Info-fontify-node): Add intangible property as well as
17557         invisible.
17559         * calendar/appt.el (appt-make-list): Match all lines of entry.
17560         From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
17562 2000-05-18  Kenichi Handa  <handa@etl.go.jp>
17564         * international/mule-diag.el (describe-char-after): Call
17565         internal-char-font, not char-font.  If internal-char-font returns
17566         nil, display "-- none --".
17568 2000-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
17570         * image.el (image-type-available-p): Don't reference image-types
17571         if it isn't bound.
17573 2000-05-17  Stefan Monnier  <monnier@cs.yale.edu>
17575         * autoarg.el (autoarg-mode): Typo in the :set argument.
17577 2000-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
17579         * startup.el (command-line-1): Don't signal an error if the
17580         directory for auto-save-list files does not yet exist.
17582 2000-05-17  Kenichi Handa  <handa@etl.go.jp>
17584         * international/mule-conf.el (arabic-iso8859-6): Fix typo.
17586 2000-05-16  Stefan Monnier  <monnier@cs.yale.edu>
17588         * subr.el (remove-hook): `setq' hook-value, not `set'.
17590 2000-05-16  Sam Steingold  <sds@gnu.org>
17592         * info.el (debug-ignored-errors): More errors to ignore.
17594 2000-05-16  Dave Love  <fx@gnu.org>
17596         * cus-edit.el: Don't require cl or easymenu.
17597         (custom-variable-prompt): Test standard-value property, not
17598         user-variable-p.
17600 2000-05-16  Sam Steingold  <sds@gnu.org>
17602         * subr.el (add-hook): `setq' hook-value, not `set'.
17604 2000-05-16  Gerd Moellmann  <gerd@gnu.org>
17606         * startup.el (command-line-1): Mention the FAQ in the startup
17607         message.
17609         * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
17611         * progmodes/compile.el (compilation-parse-errors): Collect
17612         `nomessage' regexps last.
17614         * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
17616         * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
17617         to the function name.
17619 2000-05-15  Dave Love  <fx@gnu.org>
17621         * speedbar.el (speedbar-recenter): Typo.
17622         (speedbar-expand-line): Make arg optional.
17623         (speedbar-mode): Avoid a compiler warning.
17625 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
17627         * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
17628         user-specified option string is empty.
17630         * mouse.el (mouse-yank-at-click): Doc fix.
17632 2000-05-15  Eli Zaretskii  <eliz@is.elta.co.il>
17634         * term/internal.el (IT-character-translations): More updates of
17635         latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
17636         documents.
17638 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
17640         * env.el (getenv): New function, interactively callable.
17641         (setenv, getenv): Remove autoload cookies.
17643         * loadup.el: Load `env'.
17645         * progmodes/f90.el: Change author's mail address.
17647 2000-05-14  Dave Love  <fx@gnu.org>
17649         * mail/rmail.el (rmail-show-message-hook): Customize and offer
17650         goto-addr as an option.
17652         * help.el (help-xref-stack): Doc fix.
17653         (help-xref-following): New variable.
17654         (help-make-xrefs): Use it.
17655         (help-xref-go-back): Use position information from stack element.
17656         (help-follow): Make position in stack element a pair.  Use
17657         help-xref-following.
17659         * autoarg.el: New file.
17661         * faces.el: Declare more functions obsolete.
17663         * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
17664         * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
17665         * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
17666         * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
17667         Remove all the setup-...-environment functions.
17669 2000-05-13  Eric M. Ludlam  <zappo@ultranet.com>
17671         * speedbar.el: Updated the commentary section.  xemacs20p now uses
17672         >= when detecting.  Require `defimage' safely.
17673         (speedbar-easymenu-definition-base): Add toggle for images.
17674         (speedbar-easymenu-definition-special): Add flush cache & expand.
17675         (speedbar-visiting-tag-hook): Set new defaults.  Added options.
17676         (speedbar-reconfigure-keymaps-hook): New variable.
17677         (speedbar-frame-parameters): Updated documentation.
17678         (speedbar-use-imenu-flag): Updated custom tag
17679         (speedbar-dynamic-tags-function-list): New variable.
17680         (speedbar-tag-hierarchy-method): Updated doc & custom.
17681         (speedbar-indentation-width, speedbar-indentation-width) New
17682         variables.
17683         (speedbar-hide-button-brackets-flag): Customizable.
17684         (speedbar-vc-indicator): Doc update.
17685         (speedbar-ignored-path-expressions): Updated default value.
17686         (speedbar-supported-extension-expressions): Updated default value.
17687         (speedbar-syntax-table): Remove {} paren status.
17688         (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
17689         as "+".  Added overlay aliases.
17690         (speedbar-mode): Use `speedbar-mode-line-update' instead of
17691         `force-mode-line-update'.
17692         (speedbar-mode, speedbar-quick-mouse, speedbar-click)
17693         (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
17694         `mouse-set-point'
17695         (speedbar-reconfigure-keymaps): Run configure keymap hooks.
17696         (speedbar-item-info-tag-helper): Revamped to handle a wider range
17697         of arbitrary text, and new helper functions.
17698         (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
17699         filename finder.
17700         (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
17701         (speedbar-directory-buttons): Update path search/expansion.
17702         (speedbar-make-tag-line): Pay attention to
17703         `speedbar-indentation-width'.  Use more care w/ invisible
17704         properties.
17705         (speedbar-change-expand-button-char): Call
17706         `speedbar-insert-image-button-maybe'.
17707         (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
17708         (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
17709         (speedbar-trim-words-tag-hierarchy)
17710         (speedbar-simple-group-tag-hierarchy): New functions
17711         (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
17712         (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
17713         functions.
17714         (speedbar-mouse-set-point): New function
17715         (speedbar-power-click): Updated documentation.
17716         (speedbar-line-token, speedbar-goto-this-file): Handle more types
17717         of tag prefix text.
17718         (speedbar-expand-line, speedbar-contract-line): Make more robust
17719         to strange text.
17720         (speedbar-expand-line): Takes universal argument to flush the
17721         cache.
17722         (speedbar-flush-expand-line): New function.
17723         (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
17724         Use new generator insertion method.
17725         (speedbar-fetch-dynamic-tags): New function.
17726         (speedbar-fetch-dynamic-imenu): Removed code now handled in
17727         `speedbar-fetch-dynamic-imenu'.
17728         (speedbar-fetch-dynamic-etags): Fix current buffer problem.
17729         (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
17730         "Revert Buffer" menu items.
17731         (speedbar-buffer-buttons-engine): Be smarter when creating a
17732         filename tag (for expansion purposes.).
17733         (speedbar-highlight-one-tag-line,
17734         (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
17735         (speedbar-recenter): New functions.
17736         (defimage-speedbar): Image loading abstraction.
17737         (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
17738         (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
17739         (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
17740         (speedbar-tag-type, speedbar-tag-mail): New images.
17741         (speedbar-expand-image-button-alist): New variable.
17742         (speedbar-insert-image-button-maybe): Insert an image over some
17743         buttons.
17745 2000-05-13  Kenichi Handa  <handa@etl.go.jp>
17747         * international/mule-cmds.el (encode-coding-char): An ASCII
17748         character is always encodable.
17750         * international/mule-conf.el: Add more information in descriptions
17751         of character sets.
17753         * international/mule-diag.el (describe-char-after): New function.
17754         (describe-font-internal): Adjusted for the change of font-info.
17755         (describe-font): Likewise.
17756         (print-fontset): Rewritten for the new fontset implementation.
17757         (describe-fontset): Include fontset alias names in completion.
17758         (list-fontsets): Adjusted for the change of print-fontset.
17760         * simple.el (what-cursor-position): If DETAIL is non-nil, call
17761         describe-char-after instead of displaying the detail in the echo
17762         area.
17763         (syntax-code-table): Format changed.
17764         (string-to-syntax): Adjusted for the above change.
17766 2000-05-12  Stefan Monnier  <monnier@cs.yale.edu>
17768         * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
17770 2000-05-12  Dave Love  <fx@gnu.org>
17772         * calendar/todo-mode.el: Remove some compatibility stuff and CL
17773         dependence.  Use line-{beginning,end}-position, not
17774         point-at{b,e}ol.  Some doc fixes.
17775         (todo-position): New function.  Fix callers of position to use it.
17776         (todo-save-top-priorities, todo-print): Use with-temp-buffer.
17778 2000-05-12  Gerd Moellmann  <gerd@gnu.org>
17780         * time.el (display-time-mail-icon): Use `:ascent center'.
17782         * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
17783         handling FTP security extensions.
17785 2000-05-11  Dave Love  <fx@gnu.org>
17787         * calendar/todo-mode.el: New file.
17789 2000-05-11  Gerd Moellmann  <gerd@gnu.org>
17791         * comint.el (comint-read-input-ring): Move reference to
17792         comint-input-ring-size outside of the save-excursion.  It was
17793         causing the default value to be the only one ever seen.
17795         * font-lock.el: Update copyright.  Remove Simon Marshall's email
17796         address on request from him.
17798         * subr.el (substitute-key-definition): Add comment describing
17799         the meaning of PREFIX.
17801 2000-05-10  Stefan Monnier  <monnier@cs.yale.edu>
17803         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
17805         * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
17806         (add-minor-mode): Don't make the variable buffer-local and add a
17807         reference to define-minor-mode in the docstring.
17809         * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
17810         HEADER/FOOTER and fix bug with trailing empty directory.
17811         (cvs-append-to-ignore): Use vc-editable-p if available.
17812         (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
17813         (vc-do-command): Tweak advice to handle the new VC.
17815         * log-view.el (log-view-goto-rev): New function for the new VC.
17816         (log-view-minor-wrap): Use mark-active.
17818         * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
17819         (log-edit-changelog-full-paragraphs): New var.
17820         (log-edit-insert-changelog): Remove a lonely leading `* file'.
17821         (log-edit-narrow-changelog, log-edit-changelog-paragraph)
17822         (log-edit-changelog-subparagraph, log-edit-changelog-entry)
17823         (log-edit-changelog-ours-p, log-edit-changelog-entries)
17824         (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
17825         Replace the `cvs' prefix with `log-edit'.
17827         * iswitchb.el (iswitchb-completion-help): Unquote lambda.
17829         * diff-mode.el (diff-font-lock-keywords): Recognize comments.
17830         (diff-font-lock-defaults): Explicitly turn off multiline.
17831         (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
17832         (diff-ediff-patch): Fix call to ediff-patch-file.
17833         (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
17834         Handle comments.
17836         * frame.el (automatic-hscrolling): Typo.
17838         * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
17840 2000-05-09  Sam Steingold  <sds@goems.com>
17842         * apropos.el (apropos-print): use `describe-face' instead of
17843         `customize-face-other-window'.
17845 2000-05-09  Dave Love  <fx@gnu.org>
17847         Changes mostly following Richard Sharman <rsharman@wave.home.com>.
17849         * help.el (describe-variable): Have customize button pop the
17850         help-xref stack when invoked.
17851         (help-xref-symbol-regexp): Add `face'.
17852         (help-make-xrefs): Check for quoted face names and adapt regexp
17853         submatch numbers to cope.
17854         (help-xref-interned): Maybe insert face doc too.  Separate
17855         sections with a line of hyphens.
17857         * faces.el:  Some doc fixes.  Declare some functions obsolete.
17858         (describe-face): Add customize button.  Return the help
17859         text.  Fix prompt.
17861 2000-05-09  Eli Zaretskii  <eliz@is.elta.co.il>
17863         * term/internal.el (IT-character-translations): Fix last change.
17865 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
17867         * woman.el: New file
17868         (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
17870 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
17872         * term/internal.el (IT-character-translations): Update ASCII
17873         simulations for greek-iso8859-7, add latin-iso8859-14 and
17874         latin-iso8859-15.
17876         * international/mule-cmds.el (set-language-info-alist): Call
17877         define-prefix-command with 3 arguments, to make the map suitable
17878         for a menu.
17880 2000-05-07  Dave Love  <fx@gnu.org>
17882         * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
17884 2000-05-05  Dave Love  <fx@gnu.org>
17886         * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
17887         list in doc string.  Don't quote keyword symbols.
17888         * emacs-lisp/cl.el: Likewise
17889         * emacs-lisp/cl-seq.el: Likewise
17891 2000-05-05  Gerd Moellmann  <gerd@gnu.org>
17893         * abbrev.el (abbrev-mode): Make ARG optional.
17895 2000-05-04  Gerd Moellmann  <gerd@gnu.org>
17897         * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
17899         * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
17901         * subr.el (substitute-key-definition): Clarify documentation.
17903 2000-05-04  Milan Zamazal  <pdm@freesoft.cz>
17905         * glasses.el (glasses-convert-to-unreadable): Use
17906         `glasses-separator' instead of the hard-wired "_".
17907         (glasses-mode): Call `glasses-make-unreadable' only in a single
17908         place.
17910 2000-05-04  Eli Zaretskii  <eliz@is.elta.co.il>
17912         * term/internal.el (cjk-codepages-alist): Add associations for
17913         Chinese and Korean codepages.  Remove FIXME comment.
17915 2000-05-03  Dave Love  <fx@gnu.org>
17917         * time.el (display-time-mail-face, display-time-use-mail-icon):
17918         New option.
17919         (display-time-mail-icon): New variable.
17920         (display-time-string-forms): Use the above.  Fix the local-map.
17922 2000-05-03  Gerd Moellmann  <gerd@gnu.org>
17924         * replace.el (query-replace-map): Add binding for `E'.
17925         (query-replace-help): Extend help text.
17926         (perform-replace): Allow editing the replacement string.
17928         * make-mode.el (makefile-mode-abbrev-table): New variable.
17929         (makefile-mode): Set local abbrev table to
17930         makefile-mode-abbrev-table.
17931         (makefile-font-lock-keywords): Fontify includes and conditionals.
17933         * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
17934         set TOGGLE's value.
17936         * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
17937         mail-interactive-insert-alias.
17938         (mail-abbrev-complete-alias): New command.
17939         (mail-mode-map): Bind it to `M-TAB'.
17941 2000-05-03  Kenichi Handa  <handa@etl.go.jp>
17943         * language/lao-util.el (lao-compose-region): New function.
17945 2000-05-02  Gerd Moellmann  <gerd@gnu.org>
17947         * files.el (recover-session): Make directories as necessary
17948         if they don't exist yet.
17950         * calendar/cal-french.el
17951         (french-calendar-multibyte-special-days-array)
17952         (french-calendar-special-days-array): Change French text.
17953         (calendar-french-date-string): Change output.
17954         (calendar-goto-french-date): Likewise.
17956 2000-05-02  Per Abrahamsen  <abraham@dina.kvl.dk>
17958         * wid-edit.el (widget-default-active): Obey `:always-active'.
17959         (widget-documentation-string-value-create): Set `:always-active'.
17961 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
17963         * startup.el (auto-save-list-file-prefix): For ms-dos, set the
17964         default prefix to `~/_emacs.d/auto-save.list/_s'.
17965         (normal-top-level): Create the directory for auto-save files, if
17966         it doesn't already exist (in the ms-dos case only).
17968 2000-05-02  Eli Zaretskii  <eliz@is.elta.co.il>
17970         * international/mule-cmds.el (set-language-environment): Don't
17971         concat an integer (dos-codepage), use format instead.
17973 2000-05-02  Dave Love  <fx@gnu.org>
17975         * help.el (help-xref-on-pp): Check for constant symbols.
17977 2000-04-29  Gerd Moellmann  <gerd@gnu.org>
17979         * startup.el (normal-top-level): Put a condition-case around
17980         the code loading subdirs.el.
17982 2000-04-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
17984         * ps-print.el: Upside-down and face background color printing,
17985         line number step, doc fix.
17986         (ps-print-version): New version number (5.2).
17987         (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
17988         (ps-face-attribute-list, ps-plot-with-face): Code fix.
17989         (ps-spool-config): Var fix.
17990         (ps-printer-name-option): Const fix.
17991         (ps-print-upside-down, ps-use-face-background)
17992         (ps-line-number-step): New vars.
17993         (ps-window-system, ps-lp-system): New consts.
17994         (ps-face-background): New fun.
17996 2000-04-28  Richard Stallman  <rms@gnu.org>
17998         * files.el (make-auto-save-file-name):
17999         Apply auto-save-file-name-transforms to visited file name
18000         before generating auto save file name.
18001         (auto-save-file-name-transforms): New variable.
18003         * files.el (backup-enable-predicate):
18004         Correctly test for a file under a temporary directory.
18006 2000-04-28  Gerd Moellmann  <gerd@gnu.org>
18008         * subr.el (add-minor-mode): Rewritten.
18010 2000-04-28  Kenichi Handa  <handa@etl.go.jp>
18012         * mail/sendmail.el (sendmail-send-it): Set
18013         buffer-file-coding-system to the selected coding system for MIME
18014         header.
18016 2000-04-27  Gerd Moellmann  <gerd@gnu.org>
18018         * dired.el (dired-move-to-filename-regexp): Allow format where
18019         YYYY is followed by two spaces.
18021         * progmodes/etags.el (etags-tags-completion-table): Add a `:'
18022         in the second character class of the regexp.
18024         * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
18025         mh-etc, too.
18027         * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
18028         nil.
18030         * subr.el (add-minor-mode): Use `set' instead of `setq'.
18032         * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
18033         argument.
18035 2000-04-27  Sen Nagata <sen@eccosys.com>
18037         * emacs-lisp/crm.el (crm-completion-table): New variable.
18038         (crm-collection-fn, crm-test-completion)
18039         (completing-read-multiple): Use it.
18041 2000-04-27  Dave Love  <fx@gnu.org>
18043         * help.el (locate-library): Use mapc.
18044         (help-manyarg-func-alist): Add call-process-region.
18046 2000-04-26  Gerd Moellmann  <gerd@gnu.org>
18048         * subr.el (add-minor-mode): Make argument MAP optional.
18050         * desktop.el (desktop-save): Save list of minor modes.
18051         (desktop-create-buffer): Restore minor modes.
18052         (desktop-minor-mode-table): New user-option.
18054         * subr.el (add-minor-mode): New function.
18056         * image.el (find-image): New function.
18057         (defimage): Rewritten to find image at load time.
18059         * startup.el (normal-top-level-add-to-load-path): Handle
18060         case that the default directory is not in load-path.
18062         * help.el: Old patch from Stefan Monnier.
18063         (help-xref-on-pp): New function.
18064         (describe-variable): Use it to display xrefs in a symbol's value.
18066 2000-04-26  Stefan Monnier  <monnier@cs.yale.edu>
18068         * cus-edit.el (custom-face): Fix parenthesis.
18070 2000-04-26  Kenichi Handa  <handa@etl.go.jp>
18072         * mail/rmail.el (rmail-expunge): When there are no deleted
18073         messages, do nothing.
18075 2000-04-26  Dave Love  <fx@gnu.org>
18077         * international/mule-cmds.el (locale-translation-file-name):
18078         Defvar to nil.
18079         (set-locale-environment): Set it here (at runtime).
18081 2000-04-25  Gerd Moellmann  <gerd@gnu.org>
18083         * replace.el (perform-replace): Add parameters START and END.  Use
18084         them instead of the check for a region in Transient Mark mode.
18085         (query-replace-read-args): Return two more list elements for the
18086         start and end of the region in Transient Mark mode.
18087         (query-replace, query-replace-regexp, query-replace-regexp-eval)
18088         (map-query-replace-regexp, replace-string, replace-regexp): Add
18089         optional last arguments START and END and pass them to
18090         perform-replace.
18092         * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
18093         form with additional arguments for perform-replace.
18095         * progmodes/etags.el (tags-query-replace): Add parameters START
18096         and END.  Construct a form with additional arguments for
18097         perform-replace.
18099         * simple.el (shell-command): Set default directory for "*Shell
18100         Command Output" buffer.
18102         * language/european.el (iso-latin-4): Fix typo.
18104         * emacs-lisp/crm.el: New file.
18106 2000-04-24  Dave Love  <fx@gnu.org>
18108         * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
18109         (Custom-reset-saved, Custom-reset-standard)
18110         (custom-group-value-create, custom-group-set, custom-group-save)
18111         (custom-group-reset-current, custom-group-reset-saved)
18112         (custom-group-reset-standard): Use mapc.
18113         (custom-buffer-create-internal): Disable undo when creating items.
18114         Use mapc.
18115         (custom-face): Avoid redundant lambda.
18117 2000-04-24  Gerd Moellmann  <gerd@gnu.org>
18119         * startup.el (auto-save-list-file-prefix): Set default to
18120         `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
18122 2000-04-24  Sam Steingold  <sds@gnu.org>
18124         * time-stamp.el (time-stamp-string-preprocess): Always convert
18125         `field-result' to a string.
18127 2000-04-24  Gerd Moellmann  <gerd@gnu.org>
18129         * frame.el (scrolling): New group.
18130         (automatic-hscrolling): New user-option.
18132         * startup.el (command-line-x-option-alist): Add `-lsp' and
18133         `--line-spacing'.
18135 2000-04-19  Dave Love  <fx@gnu.org>
18137         * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
18138         (cl-mapc): Rename from mapc.  Fix the funcall.
18140 2000-04-19  Gerd Moellmann  <gerd@gnu.org>
18142         * simple.el (clone-indirect-buffer-other-window): New command.
18143         (clone-indirect-buffer): Add optional arg NORECROD.
18144         (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
18146         * help.el (resize-temp-buffer-window): Use count-screen-lines.
18148         * window.el (count-screen-lines): New function.
18149         (shrink-window-if-larger-than-buffer): Use count-screen-lines
18150         instead of window-buffer-height.
18152         * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
18153         non-existing variable comint-input-sentinel.
18154         (inferior-lisp-args-to-list): Removed.
18155         (inferior-lisp): Use split-string instead of
18156         inferior-lisp-args-to-list.
18158         * hexl.el (hexl-insert-hex-string): New command.
18160         * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
18161         instead of concat.
18163 2000-04-18  Gerd Moellmann  <gerd@gnu.org>
18165         * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
18166         at the start of an existing but empty folder.
18168 2000-04-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18170         * ps-mule.el: Customization fix, doc fix.
18171         (ps-multibyte-buffer): Customization fix.
18173 2000-04-17  Richard M. Stallman  <rms@gnu.org>
18175         * subr.el (read-passwd): Use read-char-exclusive.
18177 2000-04-17  Gerd Moellmann  <gerd@gnu.org>
18179         * textmodes/texinfo.el (texinfo-insert-@email)
18180         (texinfo-insert-@emph, texinfo-insert-@quotation)
18181         (texinfo-insert-@strong, texinfo-insert-@url): New functions.
18182         (texinfo-mode-map): Add key bindings for them.
18184         * files.el (basic-save-buffer-2): Use a template with `$'
18185         instead of `#' for VMS.
18187         * simple.el (clone-indirect-buffer): New function.
18189 2000-04-16  Stephen Eglen  <stephen@gnu.org>
18191         * iswitchb.el (iswitchb-case): New function.  If the user input
18192         contains any upper-case characters, the search is made
18193         case-sensitive.
18195 2000-04-17  Stefan Monnier  <monnier@cs.yale.edu>
18197         * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
18198         comment-end.
18199         (texinfo-font-lock-syntactic-keywords): New var.
18200         (texinfo-font-lock-keywords): Remove comment regexp.
18201         (texinfo-insert-block): New function.
18202         (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
18203         (texinfo-mode): Use define-derived-mode.  Tweak comment-start-skip
18204         and font-lock-defaults.  Use regexp-opt for outline-regexp.
18205         (texinfo-environments): New var.
18206         (texinfo-environment-regexp): Use regexp-opt and
18207         texinfo-environments.
18209         * textmodes/ispell.el (ispell-menu-map-needed): Check that
18210         ispell-process is bound since this might be eval'd before ispell
18211         is loaded.
18212         (ispell-message): Use a tiny bit less magic and a bit more hard
18213         data to figure out what kind of sc-cite-regexp to use.
18215         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
18217         * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
18218         (insert-cyclic-diary-entry): Unquote the lambda.
18220         * gud.el (gud-jdb-build-source-files-list): Fix typo.
18222         * files.el (backup-enable-predicate): Unquote the lambda.
18224         * cus-edit.el (custom-face, face): Unquote the lambda.
18226 2000-04-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18228         * ps-print.el: Check for line-beginning-position definition.
18230         * ps-print.el: Fix counting lines in a region.
18231         (ps-print-version): New version number (5.1.5).
18232         (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
18233         (ps-printing-region): Fun code fix.
18235 2000-04-15  Gerd Moellmann  <gerd@gnu.org>
18237         * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
18238         to file-directory-p.
18240 2000-04-14  Gerd Moellmann  <gerd@gnu.org>
18242         * gud.el (gud-jdb-build-source-files-list): Check that directory
18243         exists before calling directory-files.
18245 2000-04-13  Dave Love  <fx@gnu.org>
18247         * emacs-lisp/trace.el: Change maintainer.  Use new backquote
18248         syntax.
18250         * emacs-lisp/cl-specs.el: Remove when, unless.
18252         * emacs-lisp/cl-extra.el: Don't quote keywords.
18253         (cl-old-mapc): New variable.
18254         (mapc): Use it.
18255         (cl-map-intervals): Use with-current-buffer.  Don't check for
18256         next-property-change.
18257         (cl-map-overlays): Use with-current-buffer.
18258         (cl-expt): Remove.
18259         (copy-tree, remprop): Define unconditionally.
18261         * emacs-lisp/cl-compat.el (keywordp): Remove.
18263         * emacs-lisp/edebug.el (edebug-keywordp): Remove.  Change callers
18264         to use keywordp.
18265         (edebug-spec): Enable keywordp.
18267         * cus-edit.el (custom-sort-items): Avoid symbol-name with new
18268         string-lessp.
18270         * cus-start.el: Use keywordp.
18272 2000-04-13  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
18274         * diary-lib.el (include-other-diary-files): Fix the fix of
18275         2000-02-18 by doing a save-excursion.
18277 2000-04-13  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18279         * ps-print.el: Customization fix, doc fix.
18280         (ps-print-version): New version number (5.1.4).
18281         (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
18282         (ps-print-preprint): Adjust code.
18283         (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
18284         (ps-print-prologue-header, ps-print-control-characters)
18285         (ps-spool-config): Customization fix.
18287 2000-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
18289         * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
18290         converted to the new menu-item format, names silightly changed,
18291         help strings added.
18293         Support for spelling without async subprocesses:
18295         * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
18296         (ispell-session-buffer): New variables.
18297         (ispell-start-process, ispell-process-status,
18298         ispell-accept-output, ispell-send-string): New functions, for
18299         Ispell invocation when async subprocesses aren't supported.
18300         (ispell-word, ispell-pdict-save, ispell-command-loop,
18301         ispell-process-line, ispell-buffer-local-parsing): Replace calls
18302         to process-send-string with calls to ispell-send-string, and
18303         accept-process-output with ispell-accept-output.
18304         (ispell-init-process): Call ispell-process-status instead of
18305         process-status with.
18306         (ispell-init-process): Call ispell-start-process.  Call
18307         ispell-accept-output and ispell-send-string.  Don't call
18308         process-kill-without-query and kill-process if they are unbound.
18309         (ispell-async-processp): New function.
18311 2000-04-12  Dave Love  <fx@gnu.org>
18313         * info.el: Add debug-ignored-errors.
18314         (Info-mode-menu): Add some items.
18315         (Info-directory): Add autoload cookie.
18317         * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
18318         Modify `truncate-lines'.  Make `describe-language-environment'
18319         always visible and add help.  Modify `describe-key' help.  Invoke
18320         Info-directory from `info'.  New entry `emacs-manual'.
18322 2000-04-10  Gerd Moellmann  <gerd@gnu.org>
18324         * progmodes/ebrowse.el (ebrowse-tree-mode):
18325         Use propertized-buffer-identification.
18326         (ebrowse-update-member-buffer-mode-line): Likewise.
18327         (ebrowse--mode-strings): Removed.
18328         (ebrowse--mode-line-props): Removed.
18330         * files.el (auto-mode-alist): Add `EBROWSE'.
18332         * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
18333         space before testing for end of buffer.
18334         (ebrowse-load): Removed.
18335         (ebrowse-revert-tree-buffer-from-file): Rewritten.
18336         (ebrowse-create-tree-buffer): Rewritten.
18337         (ebrowse-tree-mode): Read tree from buffer.
18339         * progmodes/ebrowse-ffh.el: Removed.
18341 2000-04-10  Kenichi Handa  <handa@etl.go.jp>
18343         * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
18345 2000-04-10  Gerd Moellmann  <gerd@gnu.org>
18347         * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
18348         at the wrong place.
18350 2000-04-09  Dave Love  <fx@gnu.org>
18352         * files.el (backup-enable-predicate):
18353         Use temporary-file-directory, small-temporary-file-directory.
18354         (make-backup-file-name-function, backup-directory-alist): New vars.
18355         (make-backup-file-name-1): New function.
18356         (make-backup-file-name): Use it.
18357         (find-backup-file-name): Likewise.  Use format for clarity, not concat.
18358         (file-newest-backup): Use make-backup-file-name.
18360 2000-04-09  Gerd Moellmann  <gerd@gnu.org>
18362         * progmodes/ebrowse-ffh.el: New file.
18364         * progmodes/ebrowse.el (ebrowse-find-file-hook-fn):
18365         Moved to ebrowse-ffh.el.
18366         (ebrowse-load): Add autoload.
18368         * finder.el (finder-commentary): Add autoload cookie.
18370         * mail/rfc2368.el: Correct author's email address.
18372         * progmodes/ebrowse.el: New file.
18374         * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
18375         item help string.
18376         (easy-menu-do-add-item): Ditto.
18377         (easy-menu-define): Extend doc string.
18379         * jit-lock.el (with-buffer-unmodified): Use restore-buffer-modified-p.
18380         (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
18381         (jit-lock-function, jit-lock-stealth-fontify): Don't use
18382         with-buffer-unmodified.
18384 2000-04-08  Dave Love  <fx@gnu.org>
18386         * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
18387         unless, when.
18389 2000-04-07  Mikio Nakajima  <minakaji@osaka.email.ne.jp>
18391         * viper-util.el (viper-put-on-search-overlay): New subroutine.
18392         (viper-flash-search-pattern): No operation when using Emacs
18393         doesn't support face.
18394         Use `viper-put-on-search-overlay'.
18396 2000-04-04  Gerd Moellmann  <gerd@gnu.org>
18398         * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
18399         like C-r.
18401         * progmodes/make-mode.el: Some doc fixes.
18402         (makefile-mode-abbrev-table): New variable.
18403         (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
18404         (makefile-font-lock-keywords): Fontify includes and conditionals.
18405         (toplevel): Require `dabbrev' and `add-log' when compiling.
18407         * replace.el (perform-replace): Don't move forward one char
18408         when MATCH-AGAIN is nil, and REGEXP-FLAG is t.  We don't want
18409         to do that because it leaves point 1 position after the last
18410         replacement, after everything has been replaced.
18412         * jit-lock.el (with-buffer-unmodified): New macro.
18413         (with-buffer-prepared-for-font-lock): Don't preserve buffer's
18414         modified state.
18415         (jit-lock-function-1): Extracted from jit-lock-function; not
18416         preserving buffer's modified state.
18417         (jit-lock-function, jit-lock-stealth-fontify):
18418         Call jit-lock-function-1.
18420         * mail/rfc2368.el: Remove supernumerary copyright line.
18422 2000-04-04  Milan Zamazal  <pdm@freesoft.cz>
18424         * glasses.el: Provide facilities for inserting space before left
18425         parentheses and uncapitalization of identifiers.
18426         (glasses-mode): Try to remove old overlays in all cases.
18428 2000-04-03  Gerd Moellmann  <gerd@gnu.org>
18430         * progmodes/compile.el (compile-internal): Display the compilation
18431         buffer in a different frame, if it's already displayed there.
18433         * mail/rfc2368.el: New file.
18435         * simple.el (sendmail-user-agent-compose): Recognize a `body'
18436         header and insert its value as mail body.
18438         * subr.el (member-ignore-case): New function.
18440         * dabbrev.el (dabbrev-ignored-regexps): New user-option.
18441         (dabbrev--find-expansion): Ignore buffers matching a regexp
18442         from dabbrev-ignored-regexps.
18444         * jka-compr.el (jka-compr-compression-info-list): Add `.z'
18445         to extensions handled by gzip.
18447 2000-04-03  Richard M. Stallman  <rms@gnu.org>
18449         * files.el (insert-directory): List the total free space
18450         along with the used space.
18452         * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
18453         line is followed by one that matches CITATION-REGEXP, end the
18454         paragraph.
18456 2000-04-03  Markus Rost  <rost@delysid.gnu.org>
18458         * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
18459         (rmail-make-basic-summary-line): Use that option.
18461 2000-04-03  Kenichi Handa  <handa@etl.go.jp>
18463         * international/mule-cmds.el (encoded-string-description):
18464         Rewritten.   Try pretty description for ISO 2022 escape sequences
18465         only if CODING-SYSTEM is based on ISO 2022.  Use uppercase letters
18466         for hexadecimal format.
18468 2000-04-01  Dave Love  <fx@gnu.org>
18470         * cpp.el: Change customization group to `c' from `C'.
18472         * vcursor.el (vcursor-move): Use display-color-p.
18474         * international/mule-util.el: Provide mule-utils.
18475         (string-to-sequence): Simplify and speed up.
18477         * international/mule.el (make-coding-system): Purecopy doc-string.
18479         * international/mule-cmds.el: Various menu changes.
18480         (describe-specified-language-support): Handle `Default'.
18481         (set-language-info): Purecopy `info'.
18483 2000-03-31  Andrew Innes  <andrewi@gnu.org>
18485         * vc.el (vc-backend-diff): Return the correct status if we had to
18486         retry the rcsdiff command without the --brief option.
18488 2000-03-31  Dave Love  <fx@gnu.org>
18490         * help.el (help-manyarg-func-alist): Correct several omissions.
18492         * add-log.el: Don't require cl, fortran.
18493         (add-log-current-defun-function): Doc fix.
18494         (change-log-version-number-regexp-list): Remove SCCS part.  Doc fix.
18495         (change-log-version-rcs): Function deleted.
18496         (change-log-version-number-search): Doc fix.
18497         Use vc-workfile-version. Avoid CL dolist.
18498         (add-change-log-entry): Just call add-log-current-defun to get
18499         defun.  Simplify somewhat.
18500         (change-log-get-method-definition-1): Likewise.
18501         (add-log-current-defun): Return nil if calling
18502         add-log-current-defun-function does so.  Move Fortran stuff to
18503         fortran.el.  Return string without properties.
18505         * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
18506         and :alpha: char classes.
18508         * mail/supercite.el: Defvar curline when compiling.
18509         (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
18510         (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
18511         rather than a-zA-Z0-9 to allow non-ASCII characters.
18513 2000-03-31  Gerd Moellmann  <gerd@gnu.org>
18515         * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
18517         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
18518         Re-enable new code.
18520         * lpr.el (print-region-1): Use -d to specify printer name for
18521         systems `usg-unix-v*, `dgux', `hpux', `irix'.
18523 2000-03-31  Dave Love  <fx@gnu.org>
18525         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
18526         Look for function definition in symbol's function value slot first
18527         instead of first consulting byte-compile-function-environment.
18529 2000-03-31  Kenichi Handa  <handa@etl.go.jp>
18531         * language/european.el ("Polish"): New language environment.
18532         (setup-polish-environment): New function.
18534 2000-03-30  Gerd Moellmann  <gerd@gnu.org>
18536         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
18537         Disable new code.
18539         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
18540         trying to `load' the symbol of an autoload instead of the file
18541         recorded in the autoload.  Fix error messages.
18543 2000-03-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18545         * ps-print.el: PostScript programming fix for ghostview, doc fix.
18546         (ps-print-version): New version number (5.1.3).
18547         (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
18548         (ps-insert-file, ps-output-boolean, ps-plot-with-face)
18549         (ps-generate-postscript-with-faces): Code fix.
18550         (ps-color-values): XEmacs compatibility.
18551         (ps-print-background-image, ps-print-background-text, ps-printer-name)
18552         (ps-default-fg, ps-default-bg): Adjust customization.
18553         (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
18554         (ps-color-scale): Renaming old ps-color-value fun.
18555         (ps-print-headers): Replace ps-print-header group to avoid conflict
18556         with ps-print-header variable.
18557         (ps-print-miscellany): New group.
18558         (ps-format-color, ps-rgb-color): New funs.
18559         (ps-default-foreground): New var.
18560         (ps-printer-name-option): New const.
18562 2000-03-30  Peter Breton  <pbreton@ne.mediaone.net>
18564         * net/net-utils.el:
18565         (network-connection-host, network-connection-service): New variables
18566         (network-connection-mode): New mode, derived from comint-mode
18567         (network-connection-mode-setup): New function, saves host and
18568         service information in local variables.
18570         * lisp/locate.el:
18571         (locate-word-at-point): Added this function
18572         (locate): Default to using locate-word-at-point as input
18573         Run dired-mode-hook
18575 2000-03-29  Dave Love  <fx@gnu.org>
18577         * calendar/appt.el: Doc fixes.
18578         (appt-check): Convert min-to-app to a string before passing to
18579         appt-disp-window-function or concat.
18580         (appt-delete-window): Remove test for frame-root-window.
18581         (appt-select-lowest-window, appt-convert-time): Simplify.
18583         * emacs-lisp/bytecomp.el: Doc fixes.
18584         (byte-compile-file-form-autoload):
18585         Update byte-compile-function-environment.
18587 2000-03-29  Andreas Schwab  <schwab@suse.de>
18589         * emacs-lisp/autoload.el: Also print defsubst doc string specially.
18591         * dired.el (dired-insert-directory): If dired-free-space-program
18592         failed just delete its output.
18594 2000-03-29  Dave Love  <fx@gnu.org>
18596         * international/iso-cvt.el: Move provide to end.  Doc fixes.
18597         (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
18598         (iso-iso2sgml, iso-sgml2iso): New functions.
18599         (iso-cvt-define-menu): Fix some entries and use backquote for
18600         clarity.
18602         * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
18604 2000-03-28  Gerd Moellmann  <gerd@gnu.org>
18606         * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
18607         ISO-DATE.  If non-nil, return date in ISO 8601 format.
18609 2000-03-26  Stefan Monnier  <monnier@cs.yale.edu>
18611         * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
18612         if it ever becomes used.
18613         (log-edit-mode-hook): Default to vc-log-mode-hook.
18614         (log-edit-mode): Fix the docstring.
18616         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
18617         the code.
18619 2000-03-26  Dave Love  <fx@gnu.org>
18621         * net/browse-url.el (browse-url): Re-fix case of
18622         browse-url-browser-function being an alist.
18623         (browse-url): Add :link to defgroup.
18625         * files.el: Doc fixes.
18626         (file-truename): Include `[' in wildcard characters.
18627         (automount-dir-prefix): Customize.
18628         (find-file-wildcards): Add :version.
18629         (find-file-noselect): Simplify a mapcar call.
18631         * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
18632         compatible with inf-lisp version.
18633         (eval-defun-1): Fix custom-declare-variable case.
18635 2000-03-25  Stefan Monnier  <monnier@cs.yale.edu>
18637         * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
18639 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
18641         * Makefile (COMPILE_FIRST): New macro.
18642         (compile-files): Compile files from COMPILE_FIRST first.
18644         * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new code.
18646         * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
18647         matching open parenthesis in column 0 to defun-prompt-regexp
18648         only if open-paren-in-column-0-is-defun-start is set.
18650         * sun-curs.el: Require CL at compile-time only.
18652         * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
18653         instead of copy-list which is a function from CL.
18654         (msb--choose-menu, msb--mode-menu-cond)
18655         (msb--create-buffer-menu-2): Use dolist instead of mapc.
18656         (msb--init-file-alist): Use mapcar instead of mapcan.
18657         (msb--aggregate-alist): Use mapcar instead of mapcan.
18658         Fix `(' in column 0 in doc string.
18659         (msb--add-separators): Use mapcar instead of mapcan.
18661         * cus-dep.el: Require CL at compile-time only.
18663 2000-03-24  Stefan Monnier  <monnier@cs.yale.edu>
18665         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
18666         (byte-compile-warnings): New warning `noruntime'.
18667         (byte-compile-constants, byte-compile-variables): Fix docstring.
18668         (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
18669         execute `eval-whenc-compile's body.
18670         (byte-compile-unresolved-functions): Fix docstring.
18671         (byte-compile-eval): New function.
18672         (byte-compile-callargs-warn): Check if the function will be available
18673         at runtime (via property `byte-compile-noruntime').
18674         (byte-compile-print-syms): New function.
18675         (byte-compile-warn-about-unresolved-functions): Also warn about
18676         `noruntime' functions (and use `byte-compile-print-syms').
18677         (byte-compile-file): Capitalize the message.
18679 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
18681         * mail/rmail.el (rmail-confirm-expunge): New user-option.
18682         (rmail-expunge): Ask for confirmation depending on the setting
18683         of rmail-confirm-expunge.
18685 2000-03-23  Gerd Moellmann  <gerd@gnu.org>
18687         * Makefile (bootstrap-clean): If $(emacs) exists, build
18688         loaddefs.el first.  A loaddefs.el that's not up-to-date might
18689         cause a bootstrap failure because things don't autoload as expected.
18691 2000-03-23  Dave Love  <fx@gnu.org>
18693         * net/browse-url.el: Restore previous use of
18694         browse-url-maybe-new-window.
18696 2000-03-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18698         * ps-print.el: Skip banner page fix.
18699         (ps-print-version): New version number (5.1.2).
18700         (ps-begin-file, ps-end-file, ps-generate): Code fix.
18702 2000-03-23  Dave Pearson  <davep@davep.org>
18704         * net/quickurl.el Changed the type of parameter passed to the
18705         function defined by `quickurl-format-function'. Before only the
18706         text of the URL was passed. Now the whole URL structure is passed
18707         and the function is responsible for extracting the parts it requires.
18708         Changed the default of `quickurl-format-function' accordingly.
18709         (quickurl-insert): Changed the `funcall' of
18710         `quickurl-format-function' to match the above change.
18711         (quickurl-list-insert): Changed the `url' case so that it makes
18712         use of `quickurl-format-function', previous to this the format was
18713         hard wired.
18715 2000-03-22  Gerd Moellmann  <gerd@gnu.org>
18717         * startup.el: Change some spellings for the X Window System.
18719 2000-03-22  Stefan Monnier  <monnier@cs.yale.edu>
18721         * progmodes/make-mode.el (makefile-warn-suspicious-lines):
18722         Clean up the code and the regexp and make sure the cursor is
18723         temporarily moved to the suspicious line while querying the user.
18725 2000-03-22  Jason Rumney  <jasonr@gnu.org>
18727         * w32-fns.el (w32-charset-info-alist): Initialize.
18729 2000-03-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18731         * ps-print.el: N-up last page fix.
18732         (ps-print-version): New version number (5.1.1).
18733         (ps-end-file, ps-end-job, ps-generate): Code fix.
18735 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
18737         * files.el (find-file-run-dired): Update docstring.
18738         (find-directory-functions): New hook.
18739         (find-file-noselect): Run find-directory-functions rather than
18740         calling dired directly.
18742         * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
18744         * pcvs.el: Add a minimal leading commentary.
18745         (cvs-make-cvs-buffer): Change the header part by removing the startup
18746         message and adding a `Module' entry.  Also replace the FOOTER and
18747         HEADER special fileinfos with the new support in ewoc for updating
18748         its own footer and header.
18749         (cvs-update-header): Update to use the header/footer of the ewoc.
18750         (cvs-mode): Use define-derived-mode and set truncate-lines to t.
18751         (cvs-is-within-p): New function.
18752         (cvs-mode-run): Take advantage of `save-some-buffers's new ability
18753         to only examine some subset of the buffers.
18755         * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
18756         `format' instead of our own ad-hoc functions.
18757         Remove HEADER and FOOTER cases, now handled in the EWOC.
18758         (cvs-fileinfo<): Remove HEADER and FOOTER cases.
18760         * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
18761         output to avoid scaring the user.
18762         (cvs-parse-table): Catch message for non-up-to-date commits.
18764         * pcvs-defs.el (cvs-startup-message): Remove.
18765         (cvs-global-menu): New autoloaded menu.
18767         * pcvs-util.el (cvs-string-fill): Remove.
18769         * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
18770         (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
18771         PP part of it and also make it work for footers and headers.
18772         (ewoc-create): Drop POS and BUFFER arguments.
18773         Use the DLL's dummy node to store the end-of-footer position.
18774         (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
18775         (ewoc-refresh): Remove unused `header' variable.
18776         (ewoc-(get|set)-hf): New functions.
18778         * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
18779         log-view-*-(message|file) and use easy-mmode-define-navigation.
18780         (log-view-message-re): Match SCCS format as well.
18781         And match the revision line rather than the dashed separator line.
18782         (log-view-mode): Use the new define-derived-mode.
18783         (log-view-current-tag): Fill in with an actual implementation.
18785         * cvs-status.el (cvs-status-(prev|next)): Rename from
18786         cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
18787         (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
18788         to let the output "breathe" a little more (more readable).
18789         (cvs-status-mode): Use the new define-derived-mode.
18791         * smerge-mode.el (smerge-auto-leave): New function and variable.
18792         (smerge-basic-map): Rename from smerge-basic-keymap.
18793         Change the bindings for smerge-diff-*.
18794         (smerge-*-map): Use easy-mmode-defmap.
18795         (smerge-(next|prev)): Use easy-mmode-define-navigation.
18796         (smerge-keep-*): Use smerge-auto-leave.
18798 2000-03-21  Jason Rumney  <jasonr@gnu.org>
18800         * cus-edit.el (custom-button-face): Use 3D look for w32.
18801         (custom-button-pressed-face): Likewise.
18803 2000-03-21  Gerd Moellmann  <gerd@gnu.org>
18805         * progmodes/etags.el (tags-case-fold-search): New user-option.
18806         (tags-loop-eval): New function.  Bind case-fold-search around eval
18807         depending on the value of tags-case-fold-search.
18808         (tags-loop-continue): Use tags-loop-eval.
18809         (find-tag-in-order): Bind case-fold-search depending on the value
18810         of tags-case-fold-search.
18812 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
18814         * diff-mode.el (diff-mode-*-map): Use `easy-mmode-defmap'.
18815         (diff-end-of-hunk): Return the end position for use in
18816         `easy-mmode-define-navigation'.
18817         (diff-recenter): Remove.
18818         (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
18819         of `easy-mmode-define-navigation'.
18820         (diff-kill-*): Rename `diff-*-kill' (for consistency with the
18821         previous renaming) and fix to use new names.
18822         (diff-merge-strings): Use \n as separator: simpler, faster.
18823         (diff-mode): Use `define-derived-mode'.
18825         * derived.el (define-derived-mode): Don't autoload anymore.
18826         Prefer the macro-only version provided by easy-mmode.el.
18828         * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
18829         `easy-mmode-define-derived-mode'.  Use `combine-run-hooks'.
18830         (easy-mmode-define-navigation): New macro.
18832         * subr.el (combine-run-hooks): New function.
18834 2000-03-21  Kenichi HANDA  <handa@etl.go.jp>
18836         * term/x-win.el: Fontsets related initialization is simplified.
18838         * international/mule-diag.el (describe-font): Don't refer to
18839         global-fontset-alist, instead call font-list.
18840         (describe-fontset, list-fontsets, mule-diag): Likewise.
18841         (print-fontset): Adjusted for the change of fontset implementation.
18843         * international/fontset.el (x-charset-registries): Variable removed,
18844         instead the corresponding data is stored in the default fontset.
18845         (register-alternate-fontnames): Function removed.
18846         (resolved-ascii-font): Variable removed.
18847         (x-compose-font-name): Ignore the second argument REDOCE.
18848         (x-complement-fontset-spec): Complement only an ASCII font and
18849         element for those charsets than can use that ASCII font.
18850         (generate-fontset-menu): Don't refer to global-fontset-alist,
18851         instead call fontset-list.
18852         (uninstantiated-fontset-alist): Variable removed.
18853         (x-style-funcs-alist): Likewise.
18854         (fontset-default-styles): Likewise.
18855         (x-modify-font-name): Function removed.
18856         (create-fontset-from-fontset-spec): Ignore the argument STYLE-VARIANT.
18857         (create-fontset-from-ascii-font): Docsting adjusted for the above
18858         change.
18859         (instantiate-fontset, resolve-fontset-name): Functions removed.
18860         (fontset-list): Now implemented by C code.
18862         * faces.el (read-face-font): Fix TABLE arg to completing-read.
18863         (describe-face): Include `font' attribute in the description.
18865 2000-03-21  Kenichi Handa  <handa@etl.go.jp>
18867         * international/quail.el (quail-set-keyboard-layout): Typo fixed.
18869 2000-03-20  Gerd Moellmann  <gerd@gnu.org>
18871         * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
18872         ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
18873         zone-mode.el, snmp-mode.el: Moved to net subdirectory.
18875         * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
18876         about behavior of set-buffer-modified-p wrt redisplay.
18878 2000-03-19  Richard M. Stallman  <rms@gnu.org>
18880         * view.el (view-mode-disable): Kill local binding of view-read-only.
18882 2000-03-18  Gerd Moellmann  <gerd@gnu.org>
18884         * font-lock.el (font-lock-apply-syntactic-highlight): If VALUE
18885         is a string, convert it to a syntax cell using string-to-syntax.
18887         * simple.el (syntax-code-table, syntax-flag-table): New variables.
18888         (string-to-syntax): New function.
18890         * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
18891         (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
18892         try to use passive ftp mode.
18894 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
18896         * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
18898         * simple.el (append-to-buffer): Update point of windows after
18899         insertion.
18901         * abbrev.el (inverse-add-abbrev): Identify word by first moving
18902         forward then moving backward.  Reindent.
18904         * frame.el (other-frame): Call x-focus-frame only if
18905         focus-follows-mouse is off.
18907 2000-03-17  Dave Love  <fx@gnu.org>
18909         * pcvs-util.el (cvs-strings->string): Rename replace-regexps-in-string.
18911 2000-03-17  Stefan Monnier  <monnier@cs.yale.edu>
18913         * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
18914         regexp for labels cannot span several lines.
18916         * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
18917         `(setq :<key> ':<key>)' to the macro expansion.
18919 2000-03-16  Dave Love  <fx@gnu.org>
18921         * progmodes/f90.el (f90): Put custom group under `languages', not
18922         `fortran'.
18923         (f90-mode-hook): Customize.
18924         (f90-mode): Set add-log-current-defun-function.
18925         (f90-current-defun): New function.
18927 2000-03-16  Gerd Moellmann  <gerd@gnu.org>
18929         * cus-edit.el (custom-variable-tag-face): Handle case that
18930         default face's height is not a number.
18931         (custom-face-tag-face, custom-group-tag-face-1)
18932         (custom-group-tag-face): Ditto.
18933         (custom-group-tag-face-1): Add :group.
18935         * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
18937 2000-03-15  Gerd Moellmann  <gerd@gnu.org>
18939         * pcvs-defs.el (toplevel): Remove autoload cookie for form
18940         requiring easymenu.
18942 2000-03-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
18944         * ps-print.el: PostScript user-defined prologue, PostScript error
18945         handler, doc fix.
18946         (ps-print-version): New version number (5.1).
18947         (ps-user-defined-prologue, ps-error-handler-message)
18948         (ps-print-prologue-0, ps-error-handler-alist): New vars.
18949         (ps-setup, ps-begin-file, ps-begin-job): Code fix.
18950         (ps-insert-string): New function.
18952 2000-03-15  Kenichi Handa  <handa@etl.go.jp>
18954         * international/ccl.el (ccl-compile-expression): Don't generate
18955         invalid self-assignment code.
18957 2000-03-14  Dave Love  <fx@gnu.org>
18959         * subr.el (replace-regexp-in-string): Renamed from
18960         replace-regexps-in-string.  Doc fix.
18962 2000-03-12  Dave Love  <fx@gnu.org>
18964         * cus-edit.el: Doc fixes.
18965         (customize-set-variable, customize-save-variable): Rename args for doc.
18966         (custom-variable-tag-face, custom-face-tag-face)
18967         (custom-group-tag-face-1, custom-group-tag-face): Modify from
18968         style which user identify as hyperlink.
18969         (hook): Don't add undefined functions to the hook.
18970         (debug-ignored-errors): Transfer message from bindings.el.
18972 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
18974         * recentf.el (recentf-keep-non-readable-files-p):
18975         Remove double/nested definition.
18977 2000-03-12  Dave Love  <fx@gnu.org>
18979         * facemenu.el (facemenu-get-face): Use display-color-p.
18980         * enriched.el (enriched-decode-foreground): Likewise.
18981         (enriched-decode-background): Likewise.
18982         * isearch.el (isearch-highlight): Likewise.
18983         * info-look.el (info-lookup): Likewise.
18984         * simple.el (completion-setup-function): Likewise.
18986         * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
18987         :options.
18989         * bindings.el (mode-line-format): Fix line-number and
18990         column-number items.  Add help-echo for the background.
18991         (mode-line-mule-info): Modify help-echo.
18993         * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
18995         * files.el (load-file): Allow completion to .elc.
18997         * man.el: Doc fixes.
18998         (Man-init-defvars): Use display-color-p to set fontification.
19000         * play/hanoi.el (hanoi-internal): Don't use oddp.
19002 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
19004         * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
19006         * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
19008 2000-03-12  Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
19010         * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
19011         Fix comment.
19013 2000-03-10  Stefan Monnier  <monnier@cs.yale.edu>
19015         * font-lock.el (font-lock-keywords): Fix the doc now that
19016         regexp-opt-depth is unnecessary.
19017         (save-buffer-state): Set an edebug spec.
19018         (font-lock-fontify-anchored-keywords): Properly handle the case when
19019         the matcher goes past the limit.
19021         * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
19022         pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
19024         * emacs-lisp/ewoc.el: New file.  This is a merge of elib-node.el,
19025         dll.el and cookie.el (from Elib) with heavy renaming and other
19026         massaging.
19028         * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
19029         Autoload the functions used.
19030         (easy-mmode-define-syntax): Fix CL typo.
19031         (easy-mmode-define-derived-mode): Improve the docstring generation.
19033 2000-03-10  Gerd Moellmann  <gerd@gnu.org>
19035         * textmodes/texinfo.el (texinfo-version): Variable and function
19036         removed.
19038 2000-03-09  Stefan Monnier  <monnier@cs.yale.edu>
19040         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
19041         allow more flexibility.
19042         (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New fns.
19043         (easy-mmode-defmap, easy-mmode-defsyntax)
19044         (easy-mmode-define-derived-mode): New macros.
19046 2000-03-09  Didier Verna  <didier@xemacs.org>
19048         * rect.el (replace-rectangle): New function.
19050 2000-03-09  Dave Love  <fx@gnu.org>
19052         * progmodes/fortran.el (fortran-comment-line-start): Define as "C".
19053         (fortran-comment-line-start-skip): Don't match cpp stuff.
19054         (font-lock-keywords): Add * to comment-chars.  Grok cpp stuff.
19055         (fortran-mode-map): Remove over-eager custom-menu-create for now.
19056         (fortran-mode): Don't set fortran-comment-line-start-skip,
19057         fortran-comment-line-start here.  Set comment-start,
19058         add-log-current-defun.
19059         (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
19060         (fortran-current-defun): New function.
19062 2000-03-09  Gerd Moellmann  <gerd@gnu.org>
19064         * emacs-lisp/re-builder.el: New file.
19066         * mouse.el (mouse-drag-region): Don't run up-event handler
19067         if hscroll has changed.
19069         * octave-mod.el (octave-font-lock-keywords): To font-lock the
19070         builtin operators, use `font-lock-builtin-face' for Emacs and
19071         `font-lock-preprocessor-face' otherwise.
19073         * font-lock.el (lisp-font-lock-keywords-1): Highlight
19074         `(defun (setf foo)' differently.
19076 2000-03-08  Stefan Monnier  <monnier@cs.yale.edu>
19078         * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
19079         (regexp-opt): Update comment and adapt the code the new meaning of
19080         the `paren' argument of regex-opt-group for shy-groups.
19081         (regexp-opt-depth): Handle shy groups as well as backslashed
19082         backslashes.
19083         (regexp-opt-group): Turn the leading comment into a docstring.
19084         Allow `paren' to be a string (the string to use to open a group).
19085         Remove open-presuf and close-presuf.  Instead of checking for `all
19086         one-char' and then later on check for `several one-char', handle
19087         both cases close together.  Also apply a more generic algorithm
19088         for suffixes (the mirror image of the algorithm used for
19089         prefixes).  Use shy-groups.  Use nreverse rather than reverse.
19090         (regexp-opt-try-suffix): Removed.
19092         * cmuscheme.el (inferior-scheme-mode-map): Define it independently
19093         from comint-mode-map, so we can just inherit from it.  Also, move
19094         the initialization into the `defvar' since there's no docstring
19095         anyway and it's fairly short.
19096         (inferior-scheme-mode): Define it as derived-mode: the code is
19097         shorter and this way we inherit from comint-mode-map rather than
19098         copying it.
19100         * subr.el (replace-regexps-in-string): Properly handle the case
19101         where we match an empty string.
19103         * comint.el (comint-exec-1): Add the current-dir to the exec-path
19104         when the command has a directory component (such as "./testml").
19105         Also fix a typo in the comment.
19107 2000-03-08  Gerd Moellmann  <gerd@gnu.org>
19109         * Makefile (compile-files): Compile files one by one because
19110         that's the only way to ensure a clean compilation environment for
19111         each individual file.
19113         * frame.el (other-frame): Call x-focus-frame.
19115 2000-03-07  Dave Love  <fx@gnu.org>
19117         * recentf.el (recentf-keep-non-readable-files-p): Add :set,
19118         :require to defcustom.
19120         * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads lists.
19122         * files.el (auto-mode-alist): Add configure.in.
19124         * progmodes/autoconf.el: New file.
19126 2000-03-07  Gerd Moellmann  <gerd@gnu.org>
19128         * mail/mh-e.el: Change maintainer to `none'.
19130         * recentf.el (recentf-keep-non-readable-files-p): Quote args
19131         to remove-hook and add-hook.
19133 2000-03-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
19135         * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
19136         it as the default.
19137         (mail-send): Test mail-send-nonascii also for the new `mime' value.
19138         (sendmail-send-it): Conditionally add MIME headers specifying the
19139         used character set.
19141 2000-03-07  Dave Love  <fx@gnu.org>
19143         * winner.el: Fix keywords, autoload cookies.
19144         Split eval-when-compile form to avoid compilation failure.
19146 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
19148         * international/mule.el: Modify comment about coding system
19149         property `coding-category'.
19150         (make-coding-system): New argument EOL-TYPE.  Pay attention to
19151         coding-category property of PROPERTIES.
19153         * international/mule-conf.el (coding-category-utf-8)
19154         (coding-category-utf-16-be, coding-category-utf-16-le): New coding
19155         categories.  Include them in the argument for set-coding-priority.
19157         * international/mule-cmds.el (reset-language-environment):
19158         Include coding-category-utf-8, coding-category-utf-16-be, and
19159         coding-category-utf-16-le in the argument for set-coding-priority.
19160         (reset-language-environment): Initialize coding-category-utf-8,
19161         coding-category-utf-16-be, and coding-category-utf-16-le to nil.
19163 2000-03-06  Karl Fogel  <kfogel@red-bean.com>
19165         * bookmark.el (bookmark-file-or-variation-thereof): New func, for
19166         code abstracted out of `bookmark-jump-noselect'.  Now tries info
19167         extensions as well as compression extensions.
19168         (bookmark-jump-noselect): Use above new func.
19170 2000-03-03  Gerd Moellmann  <gerd@gnu.org>
19172         * strokes.el: Change maintainer's mail address.
19174 2000-03-03  Kenichi Handa  <handa@etl.go.jp>
19176         * international/mule-diag.el (list-character-sets): Make help-echo
19177         string by substitute-command-keys.
19178         (list-character-sets): Likewise.
19179         (sort-listed-character-sets): Call help-setup-xref.
19181 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
19183         * time.el (display-time-mail-file): Add `none' to the list of choices.
19185 2000-03-01  Dave Love  <fx@gnu.org>
19187         * help.el (help-xref-go-back): Don't try to set position.
19189         * international/mule-diag.el (list-character-sets):
19190         Call help-setup-xref.  Add help-echo to xrefs.
19191         (list-character-sets-1): Add help-echo to xrefs.
19193 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
19195         * frame.el (blink-cursor-mode): Switch cursor on when turning
19196         the mode off.
19198         * add-log.el (add-log-current-defun): Add support for
19199         Autoconf mode.
19201         * mail/rmail.el (rmail-quit-hook): New variable.
19203 2000-03-01  Dave Love  <fx@gnu.org>
19205         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
19207         * help.el (help-xref-button): Add help-echo arg.
19208         (describe-function-1, describe-variable, help-make-xrefs): Use it.
19210         * faces.el (list-faces-display): Supply help-echo with help-make-xrefs.
19212         * facemenu.el (list-text-properties-at): Set help-xref-stack to nil.
19214 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
19216         * image.el (defimage): Look for image files in load-path.
19218         * frame.el (busy-cursor-delay-seconds): Change type to `number'.
19220 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
19222         * recentf.el (recentf): Added version tag to the defgroup of recentf.
19224 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
19226         * recentf.el (recentf-cleanup): Changed to remove excluded file too.
19227         (recentf-edit-list-action): `recentf-edit-list' checkbox widget
19228         action to select/unselect a file.
19229         (recentf-edit-list): Code cleanup and improvement.
19230         (recentf-open-more-files-action): `recentf-open-more-files' button
19231         widget action to open a file.
19232         (recentf-open-more-files): No more use standard completion but widgets.
19233         (recentf-more-collection): Deleted.
19234         (recentf-more-history): Deleted.
19235         (recentf-setup-more-completion): Deleted.
19237 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
19239         * recentf.el (recentf-mode): No more needs that Emacs is running
19240         under a window-system.
19242 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
19244         * recentf.el (recentf-edit-list): New command to edit the recent
19245         list which allow the user to remove files.
19246         (recentf-edit-selected-items): New global variable, used by
19247         `recentf-edit-list' to hold the list of files to be removed from
19248         the recent list.
19249         (recentf-make-menu-items): Updated to display a "Edit list..."
19250         menu item.  Minor code cleanup.
19252 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
19254         * recentf.el (recentf-open-more-files): New command to open files
19255         that are not displayed in the menu.
19256         (recentf-more-collection): New global variable holding the set of
19257         permissible completions used by `recentf-open-more-files'.
19258         (recentf-more-history): New global variable holding the history list
19259         used by `recentf-open-more-files' completion.
19260         (recentf-setup-more-completion): New function to setup completion for
19261         `recentf-open-more-files'.
19262         (recentf-make-menu-items): Updated to display a "More..." menu item.
19264 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
19266         * recentf.el (recentf-menu-action): Doc fixed.
19268 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
19270         * recentf.el (recentf-menu-filter): Doc updated.
19271         (recentf-update-menu-hook): Allow menu filters to force menu update.
19272         (recentf-make-menu-items): New menu filter handling.
19273         (recentf-make-menu-item): New helper function.
19274         (recentf-menu-elements): New menu handling function.
19275         (recentf-sort-ascending): Updated to new menu filter handling.
19276         (recentf-sort-descending): Updated to new menu filter handling.
19277         (recentf-sort-basenames-ascending): New menu filter function.
19278         (recentf-sort-basenames-descending): New menu filter function.
19279         (recentf-show-basenames): New menu filter function.
19280         (recentf-show-basenames-ascending): New menu filter function.
19281         (recentf-show-basenames-descending): New menu filter function.
19283 2000-02-29  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
19285         * diary-lib.el (list-diary-entries): Don't try to go forward at
19286         the end of the buffer.
19288 2000-02-29  Kenichi Handa  <handa@etl.go.jp>
19290         * international/mule-diag.el (list-character-sets):
19291         Completely rewritten.
19292         (sort-listed-character-sets): New function.
19293         (list-character-sets-1): Completely rewritten.
19294         (list-character-sets-2): New function.
19295         (non-iso-charset-alist): New variable.
19296         (decode-codepage-char): New function.
19297         (charset-history): New variable.
19298         (read-charset) (list-block-of-chars)
19299         (list-iso-charset-chars)
19300         (list-non-iso-charset-chars)
19301         (list-charset-chars): New functions.
19302         (mule-diag): Call list-character-sets-2, not list-character-sets-2.
19303         (dump-charsets): Likewise.
19305 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
19307         * dired-x.el (dired-filename-at-point): Add `@' to valid
19308         file name characters.
19309         (dired-filename-at-point): Handle ange-ftp file names.
19311         * frame.el (frame-notice-user-settings): Use assq-delete-all
19312         instead of assoc-delete-all.
19313         (frame-notice-user-settings): Ditto.
19315         * subr.el (assq-delete-all): Renamed from assoc-delete-all.
19316         Don't copy alist.
19318 2000-02-28  Eli Barzilay  <eli@cs.cornell.edu>
19320         * calculator.el (calculator-use-menu): New option.
19321         (calculator-initial-bindings): Changed some bindings to work as macros.
19322         (calculator-forced-input): Removed.
19323         (calculator-restart-other-mode): New variable.
19324         (calculator-mode-map): Set up menu.
19326 2000-02-28  Jari Aalto  <jari.aalto@poboxes.com>
19328         * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc tags.
19330 2000-02-28  Michael Kifer  <kifer@cs.sunysb.edu>
19332         * viper-cmd.el (viper-envelop-ESC-key): Add the option to
19333         translate all ESC key sequences.
19334         (viper-goto-mark-subr): Restore markers for files for which
19335         they were saved.
19336         * viper-init.el (viper-translate-all-ESC-keysequences): New variable.
19337         * viper-util.el (viper-set-replace-overlay-glyphs)
19338         (viper-set-replace-overlay): Always check if the replacement
19339         overlay is live.
19340         * viper.el (viper-vi-state-mode-list): Add major modes.
19341         * ediff-wind.el: Minor comment changes.
19342         * ediff.el: Copyright notice date fix.
19344 2000-02-27  Jason Rumney  <jasonr@gnu.org>
19346         * faces.el (face-font-family-alternatives): Add arial to helv.
19347         (mode-line, header-line, tool-bar): Same default as x for w32.
19348         (fixed-pitch, variable-pitch): Remove wildcard as it prevents
19349         face-font-family-alternatives from working.
19350         * term/w32-win.el (mouse-set-font): Do not build fontset from
19351         chosen font.
19353 2000-02-25  Sam Steingold  <sds@goems.com>
19355         * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
19356         properly.
19358 2000-02-25  Richard M. Stallman  <rms@gnu.org>
19360         * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
19362 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
19364         * emacs-lisp/helper.el (Helper-describe-mode): Make buffer writable.
19366         * frame.el (busy-cursor-delay-seconds): New option.
19368 2000-02-24  Gerd Moellmann  <gerd@gnu.org>
19370         * frame.el (show-cursor-in-non-selected-windows): New option.
19372 2000-02-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
19374         * diary-lib.el (include-other-diary-files): Undo the selective
19375         display in any included file and don't kill it.
19377 2000-02-24  Eli Zaretskii  <eliz@is.elta.co.il>
19379         * dired.el (dired-mode-map): Don't remove "Edit" from the menu bar.
19380         Menu items converted to (menu-item format, help strings added.
19381         [downcase, upcase]: Don't enable on MS-DOS.
19382         [symlink, symlinks]: Don't show if make-symbolic-link is not bound.
19383         [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
19385 2000-02-23  Dave Love  <fx@gnu.org>
19387         * simple.el (zap-to-char, kill-line, kill-region, kill-word)
19388         (backward-kill-word): Revert addition of * to interactive spec --
19389         it's a feature.
19391         * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
19392         (backward-kill-sentence, kill-sentence): Likewise.
19394         * gud.el (gud-jdb-build-class-source-alist): Prepend space to
19395         scratch buffer name.
19396         (gud-format-command): Use int-to-string in ?l case.  Simplify slightly.
19398         * term/w32-win.el (internal-face-interactive): Update prompt for
19399         new read-face-name.
19401         * mail/footnote.el (footnote): Add :version to defgroup.
19402         (footnote-section-tag-regexp): Customize.
19403         (footnote-start-tag, footnote-end-tag): New option.
19404         (footnote-latin-regexp): New variable.
19405         (Footnote-latin): New function.
19406         (footnote-style-alist): Add element for latin style.
19407         (footnote-style): Moved.
19408         (Footnote-goto-footnote): Use eq to test arg.
19410         * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
19412         * emacs-lisp/byte-opt.el: Change old backquote syntax.
19413         (byte-compile-trueconstp): Include keywords.
19414         (byte-optimize-quote, byte-optimize-lapcode):
19415         Use byte-compile-const-symbol-p.
19416         (byte-optimize-char-before): New optimization.
19418         * emacs-lisp/bytecomp.el: Change old backquote syntax.
19419         (byte-compile-const-symbol-p): New function.
19420         (byte-compile-constp, byte-compile-out-toplevel)
19421         (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
19422         Use it.
19424         * subr.el (define-key-after): Default AFTER to t.  Doc fix.
19426 2000-02-23  Kenichi Handa  <handa@etl.go.jp>
19428         * international/encoded-kb.el: Be sure to update minor-mode-alist
19429         and minor-mode-map-alist.
19430         (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
19431         codes SS2 and SS3 correctly.
19432         (encoded-kbd-self-insert-ccl): New function.
19433         (encoded-kbd-setup-keymap): New function.
19434         (encoded-kbd-mode): Handle CCL based coding system.  Setup keymap
19435         by calling encoded-kbd-setup-keymap.
19437         * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte characters.
19438         (lisp-mode-variables): Set multibyte-syntax-as-symbol to t locally.
19440 2000-02-22  Dave Love  <fx@gnu.org>
19442         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
19443         (lisp-mode-map, lisp-interaction-mode-map): Define all inside defvar.
19444         (lisp-mode-syntax-table): Set up for #|...|# comments.
19445         (lisp-imenu-generic-expression): Purecopy strings.  Use syntax
19446         classes.  Match `defface'.
19447         (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
19448         (eval-defun-1): Fix for defcustom.
19449         (lisp-indent-region): Doc fix.
19451         * subr.el (when, unless, split-string): Doc fix.
19452         (read-passwd): Move call of clear-this-command-keys to the right place.
19453         (replace-regexps-in-string): New function.
19455 2000-02-22  Gerd Moellmann  <gerd@gnu.org>
19457         * help.el (describe-variable): Set syntax table to
19458         emacs-lisp-mode-syntax-table when moving forward over the
19459         symbol's name.
19461 2000-02-22  Dave Love  <fx@gnu.org>
19463         * xt-mouse.el: Doc fixes.
19464         (xterm-mouse-position-function): New function, replacing advice of
19465         mouse-position.
19466         (xterm-mouse-mode): Use it.  Don't turn on under a window system.
19468         * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
19470 2000-02-21  Gerd Moellmann  <gerd@gnu.org>
19472         * format.el (format-annotate-single-property-change):
19473         Handle properties.with dotted-list values.
19474         (format-proper-list-p): New function.
19476         * enriched.el (enriched-face-ans): Handle '(foreground-color
19477         . COLOR) and (background-color . COLOR).
19479 2000-02-20  Dave Love  <fx@gnu.org>
19481         * textmodes/flyspell.el (flyspell-mouse-map): Change definition
19482         and assignments to it.
19483         (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
19484         current local map.
19485         (make-flyspell-overlay): Use it.
19486         (flyspell-correct-word/mouse-keymap): Change XEmacs test.
19488         * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
19489         (lm-get-header-re): Defun, not defsubst.
19490         (lm-get-package-name): Defun, not defsubst.  Simplify.
19491         (lm-version): Doc fix.  Simplify.
19492         (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
19493         (lm-crack-address, lm-last-modified-date, lm-commentary)
19494         (lm-verify, lm-synopsis): Simplify.
19495         (lm-report-bug): Require emacsbug.  Use compose-mail.
19497 2000-02-20  Gerd Moellmann  <gerd@gnu.org>
19499         * dired.el (dired-mode): Call propertized-buffer-identification
19500         to set mode-line-buffer-identification to something having
19501         the right text properties.
19503         * bindings.el (propertized-buffer-identification): New function.
19505 2000-02-20  Dave Love  <fx@gnu.org>
19507         * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
19508         check for t-mouse too.
19510         * cus-start.el: Make echo-keystrokes `number'.
19512 2000-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
19514         * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
19515         Don't call ring-empty-p unless tags-location-ring is bound.
19516         From Noah Friedman <friedman@splode.com>.
19518 2000-02-18  Thien-Thi Nguyen  <ttn@gnu.org>
19520         * progmodes/hideshow.el (hs-flag-region): No longer use
19521         `intangible' overlay property.
19523         (hs-toggle-hiding): New command.
19524         (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
19526         (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
19527         Fix omission bug: Run `hs-minor-mode-hook' for both activation
19528         and deactivation.
19530 2000-02-18  Gerd Moellmann  <gerd@gnu.org>
19532         * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
19534 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
19536         * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
19538         * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
19539         of `*' to handle `(* ... *)' comments.
19541 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
19543         * faces.el (list-faces-display): Use display-mouse-p instead of
19544         window-system.
19546         * menu-bar.el (global-map): Menu-bar items converted to the new
19547         format (menu-item..., rearranged for better CUA compliance, and
19548         their names changed for better clarity.  Help strings added.
19550         * international/mule-cmds.el (mule-menu-keymap)
19551         (describe-language-environment-map, set-coding-system-map)
19552         (setup-language-environment-map): Convert to new (menu-item...
19553         form, add help strings.  Change names of menu items for better clarity.
19554         "Mule" menu-bar item removed (it's now in the "Options" submenu).
19556 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
19558         * dired-aux.el (dired-do-copy): Remove spurious character.`n'
19559         within the code.
19561 2000-02-16  Dave Love  <fx@gnu.org>
19563         * faces.el: Don't require custom.  Add more specific :groups to
19564         various deffaces.
19565         (set-face-attribute): Purecopy args.
19566         (read-face-name): Default to name at point and use it in prompt.
19567         Remove colon from arg in all callers.
19568         (list-faces-display): Hyperlink to face descriptions and customize
19569         buffers.
19571 2000-02-16  Per Abrahamsen  <abraham@dina.kvl.dk>
19573         * wid-edit.el (widget-match-inline): An atom never matches a list.
19575 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19577         * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
19578         at ':' characters by call to split-string.
19580 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19582         * textmodes/bibtex.el: Added RCS version identification.
19584 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19586         * textmodes/bibtex.el: Some temporary comments removed.
19587         (bibtex-field-name, bibtex-entry-type): Made the relationship explicit.
19588         (bibtex-field-const): Allow capital letters.
19589         (bibtex-start-of-string): Deleted because unused.
19591         * textmodes/bibtex.el: Unified some nomenclature.  We no longer
19592         use the term 'reference' to describe a bibtex entry as a whole.
19593         Further, reference keys are no longer called 'labels'.
19594         (bibtex-keys): Renamed to bibtex-reference-keys.
19595         (bibtex-reformat-previous-labels): Renamed to
19596         bibtex-reformat-previous-reference-keys.
19597         (bibtex-reference-type): Renamed to bibtex-entry-type.
19598         (bibtex-reference-head): Renamed to bibtex-entry-head.
19599         (bibtex-reference-maybe-empty-head): Renamed to
19600         bibtex-entry-maybe-empty-head.
19601         (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
19602         (bibtex-search-reference): Renamed to bibtex-search-entry.
19603         (bibtex-enclosing-reference-maybe-empty-head): Renamed to
19604         bibtex-enclosing-entry-maybe-empty-head.
19605         (bibtex-entry-field-alist, bibtex-entry-head)
19606         (bibtex-font-lock-keywords, bibtex-skip-to-valid-entry)
19607         (bibtex-map-entries, bibtex-search-entry)
19608         (bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry)
19609         (bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode)
19610         (bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message)
19611         (bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer)
19612         (bibtex-find-entry-location, bibtex-validate, bibtex-find-text)
19613         (bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat)
19614         (bibtex-complete-key, bibtex-String) : Use the new nomenclature.
19616 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19618         * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
19619         comment.
19620         (bibtex-format-field-delimiters): New function, functionality
19621         extracted from bibtex-format-entry.
19622         (bibtex-autokey-get-yearfield-digits): New function, functionality
19623         extracted from bibtex-autokey-get-yearfield.
19625         * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
19626         entries in order to avoid stack overflow in the regexp matcher if
19627         field contents become large.
19628         (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield)
19629         (bibtex-field-string-part-not-braced)
19630         (bibtex-field-string-part-no-inner-braces)
19631         (bibtex-field-string-part-1-inner-brace)
19632         (bibtex-field-string-part-2-inner-braces)
19633         (bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced)
19634         (bibtex-field-string-quoted, bibtex-field-string)
19635         (bibtex-field-string-or-const, bibtex-field-text, bibtex-field)
19636         (bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix)
19637         (bibtex-string, bibtex-key-in-string, bibtex-text-in-string):
19638         Deleted as parsing is now performed by the following functions.
19639         (bibtex-parse-nested-braces, bibtex-parse-field-string-braced)
19640         (bibtex-parse-quoted-string, bibtex-parse-field-string-quoted)
19641         (bibtex-parse-field-string, bibtex-search-forward-field-string)
19642         (bibtex-parse-association, bibtex-field-name-for-parsing)
19643         (bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field)
19644         (bibtex-search-forward-field, bibtex-search-backward-field)
19645         (bibtex-start-of-field, bibtex-end-of-field)
19646         (bibtex-start-of-name-in-field, bibtex-end-of-name-in-field)
19647         (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
19648         (bibtex-parse-string-prefix, bibtex-parse-string-postfix)
19649         (bibtex-parse-string, bibtex-search-forward-string)
19650         (bibtex-search-backward-string, bibtex-start-of-string)
19651         (bibtex-end-of-string, bibtex-start-of-reference-key-in-string)
19652         (bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string)
19653         (bibtex-end-of-text-in-string): New functions for the parsing of bibtex
19654         entries.  Instead of reporting the results of the parsing by
19655         match-beginning or match-end, these functions return data structures
19656         that hold the corresponding positions.
19657         (bibtex-enclosing-field): Changed to also report field boundaries by
19658         return values rather than by match-beginning or match-end.
19659         The following functions have been adapted to use the new
19660         parsing functions.
19661         (bibtex-skip-to-valid-entry, bibtex-search-reference)
19662         (bibtex-enclosing-field, bibtex-format-entry)
19663         (bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring)
19664         (bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode)
19665         (bibtex-print-help-message, bibtex-end-of-entry)
19666         (bibtex-ispell-abstract, bibtex-validate, bibtex-next-field)
19667         (bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
19668         (bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry):
19669         Use the new method for parsing.
19670         (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry)
19671         (bibtex-map-entries, bibtex-flash-head)
19672         (bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry)
19673         (bibtex-autokey-change, bibtex-autokey-get-namefield)
19674         (bibtex-autokey-get-names, bibtex-autokey-get-titlestring)
19675         (bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode)
19676         (bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer)
19677         (bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
19678         (bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
19679         order to make the new binding of case-fold-search immediately visible.
19681 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19683         * textmodes/bibtex.el: Copyright notice is up to date.
19684         Added constant 'bibtex-maintainer-salutation.
19686         * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
19687         than make-temp-name, use match-string-no-properties and eliminate
19688         a quadratic behavior when building bibtex-strings.
19690         * bibtex.el (bibtex-reference-key): Accept string entries whose
19691         reference key contains upper case letters.
19693 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19695         * bibtex.el (bibtex-reference-head): Allow entries to start with
19696         a new line.
19698 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19700         * bibtex.el: Hiding of entry bodies is not longer provided by
19701         bibtex.el directly.  Instead the hideshow package can be used.
19702         Added a special bibtex entry to hs-special-modes-alist.
19703         (bibtex-hs-forward-sexp): Added for hideshow.el.
19705 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
19707         * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
19708         proceedings entry type (for cross referencing). Thanks to Wagner
19709         Toledo Correa for the suggestion.
19711         * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
19713 2000-02-14  Kenichi Handa  <handa@etl.go.jp>
19715         * international/characters.el: Setup case table for Vietnamese.
19717 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
19719         * uniquify.el (toplevel): Require CL at compile time.
19720         (uniquify-push): Removed.
19722         * shadowfile.el (shadow-when): Removed.
19724         * tempo.el (tempo-dolist, tempo-mapc): Removed.
19725         (tempo-process-and-insert-string): Use dolist instead of tempo-dolist.
19727         * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
19728         regexp for paragraph-start.
19730         * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
19731         commas as well.
19733 2000-02-10  Dave Love  <fx@gnu.org>
19735         * wid-edit.el: (widgets) [defgroup]: Remove url link.
19736         (widget-color-choice-list, widget-color-history, widget-mouse-help):
19737         Deleted.
19738         (widget-specify-field, widget-specify-button): Don't use
19739         widget-mouse-help as help-echo property.
19740         (default): Use #'ignore for :validate and :mouse-down-action.
19741         (checkbox): Add help-echo.
19742         (widget-sexp-validate): Rewritten to clarify error messages.
19743         (character): Use char-valid-p in :match function.
19744         (widget-color-complete): Use facemenu-color-alist.
19745         (widget-color-action): Use facemenu-read-color.
19747         * emacs-lisp/cl-macs.el: Don't bother testing for defalias.  Don't
19748         set up `caar' &c that we now have.
19750 2000-02-09  Ray Blaak  <blaak@gnu.org>
19752         * delphi.el: Make resourcestring a declaration region, like const
19753         and var.
19755 2000-02-09  Dave Love  <fx@gnu.org>
19757         * bindings.el (mode-line-input-method-map): New variable.
19758         (mode-line-mule-info): Use it; fix last change.
19759         (mode-line-mode-menu): Move definition.
19760         (mode-line-mouse-sensitive-p): Deleted.
19761         (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
19762         (make-mode-line-mouse-sensitive): Deleted.  Body moved to top level.
19764         * startup.el (command-line-1): Don't call
19765         make-mode-line-mouse-sensitive.
19767 2000-02-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
19769         * mail/rmail.el (rmail-retry-failure): Use rmail-beginning-of-message
19770         before rmail-toggle-header, because the former toggles headers.
19772 2000-02-06  Stefan Monnier  <monnier@cs.yale.edu>
19774         * diff-mode.el (diff-kill-junk): New interactive function.
19775         (diff-reverse-direction): Use delete-and-extract-region.
19776         (diff-post-command-hook): Restrict the area so that the hook also works
19777         outside of any diff hunk.  This is necessary for the minor-mode.
19778         (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
19779         (diff-minor-mode): Setup the hooks for header-hunk rewriting.
19781         * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
19782         (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
19783         so that it can be used more easily in <foo>-mode-hook.  Also make sure
19784         to avoid duplicate entries.
19785         (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
19786         (font-lock-remove-keywords): Just as was done for `add', allow it to
19787         work even if font-lock-mode is nil.  Also make sure we don't modify
19788         any pre-existing list by forcing a copy-sequence.  Finally rename
19789         `major-mode' to `mode'.
19790         (font-lock-fontify-syntactic-anchored-keywords)
19791         (font-lock-fontify-anchored-keywords)
19792         (font-lock-fontify-keywords-region): Use line-end-position.
19793         Don't make `font-lock-multiline' local (it's now done in
19794         font-lock-set-defaults).
19795         (font-lock-set-defaults): Make `font-lock-multiline' local.
19796         Move the `font-lock-fontified' creation to inside the `unless'.
19798 2000-02-06  Andrew Innes  <andrewi@gnu.org>
19800         * term/w32-win.el (x-handle-args): Comment out call to message,
19801         which occurs before window system is initialized.
19803         * makefile.nt: Add support for recompiling lisp code.
19805 2000-02-04  Dave Love  <fx@gnu.org>
19807         * bindings.el (mode-line-mule-info): Fix/extend last change.
19809         * completion.el: Replace completion-dolist with dolist.
19811         * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, dotimes.
19813 2000-02-04  Carsten Dominik  <dominik@strw.leidenuniv.nl>
19815         * textmodes/reftex.el (reftex-compile-variables): Regexp-quote the
19816         environment names before they go into the section regexp.
19818         * textmodes/reftex-global.el (reftex-change-label): Add `A-Z' to
19819         char class in regexp.
19821         * textmodes/reftex-parse.el (reftex-with-special-syntax):
19822         Bind `case-fold-search' to nil.
19824         * progmodes/idlwave.el (idlwave-template):
19825         Respect `idlwave-abbrev-change-case'.
19826         (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for)
19827         (idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat)
19828         (idlwave-while): Respect `idlwave-reserved-word-upcase'.
19829         (idlwave-rw-case): New function.
19830         (idlwave-statement-match): Fixed problem with assignment regexp.
19831         (idlwave-font-lock-keywords): Improved regexp for keyword parameters.
19832         (idlwave-surround): New argument LENGTH to support padding of
19833         operators longer than 1 char.
19835         * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
19836         idlwave-shell-expression-overlay.  Implemented printing of
19837         expressions on higher levels of the calling stack.
19838         (idlwave-shell-display-level-in-calling-stack): Restore stack level.
19839         (idlwave-retrieve-expression-from-level): New function.
19840         (idlwave-shell-last-calling-stack): Variable removed.
19841         (idlwave-shell-reset): Argument action reversed (`visible' to
19842         `hidden').  Also remove stop-line overlay.
19843         (idlwave-shell-calling-stack-routine): New variable.
19844         (idlwave-shell-parse-stack-and-display): Messages now display
19845         negative level numbers.
19846         (idlwave-shell-mode): Set `modeline-format'.
19847         (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
19848         (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs 21.
19849         (idlwave-shell-print-expression-function): New option.
19851         * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere)
19852         (idlwave-toolbar-remove-everywhere): Keybindings prefix is now
19853         `tool-bar' instead of `toolbar'.
19855 2000-02-02  Dave Love  <fx@gnu.org>
19857         * emacs-lisp/cl.el: Use bytecomp-load-hook, not
19858         emacs-lisp-mode-hook.  Don't check for defalias being defined.
19860         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
19861         (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.
19862         Use the new builtins directly.
19864         * whitespace.el (whitespace): Add :version to defgroup.
19866         * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
19867         Doc fix.
19869         * thingatpt.el (sexp-at-point, symbol-at-point)
19870         (number-at-point, list-at-point): Add autoload cookie.
19872         * recentf.el (recentf): Add :version to defgroup.
19874         * quickurl.el (quickurl): Add :version to defgroup.
19876         * elide-head.el (elide-head): Use point-marker more.
19878         * bs.el (bs): Add :version to defgroup.
19880         * autorevert.el (global-auto-revert-mode): Add autoload cookie.
19882         * progmodes/delphi.el (delphi): Add :version to defgroup.
19884 2000-02-02  Gerd Moellmann  <gerd@gnu.org>
19886         * ange-ftp.el (ange-ftp-write-region): Handle case that
19887         succeeding process operation sets a different coding system.
19889         * calculator.el: New file.
19891 2000-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
19893         * frame.el (frames-on-display-list, framep-on-display): New functions.
19894         (display-mouse-p, display-popup-menus-p, display-graphic-p)
19895         (display-selections-p, display-screens, display-pixel-width)
19896         (display-pixel-height, display-mm-width, display-mm-height)
19897         (display-backing-store, display-save-under, display-planes)
19898         (display-color-cells, display-visual-class): New functions.
19900         * term/tty-colors.el (tty-color-gray-shades): New function.
19902         * faces.el (display-color-p): Use framep-on-display.
19903         (display-grayscale-p): New function.
19905 2000-01-31  Dave Love  <fx@gnu.org>
19907         * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
19908         (create-fontset-from-x-resource): Don't concat integers.
19910 2000-01-31  Inge Frick  <inge@nada.kth.se>
19912         * view.el: Some changes in documentation.  Removed some trailing
19913         whitespace. Changed some parameter names to agree with documentation.
19914         (view-mode-exit): Keep entry in `view-return-to-alist' only when a
19915         window is not deleted.  Modifies change 1998-04-26.
19917 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
19919         * windmove.el: New file.
19921         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
19922         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
19923         progmodes/ebnf-yac.el: Update copyright and license info.
19925         * jit-lock.el (jit-lock-function): Widen before calculating
19926         end position.
19927         (jit-lock-stealth-chunk-start): Rewritten.
19929         * info.el (Info-title-face-alist): Removed.
19930         (Info-title-1-face, Info-title-2-face, Info-title-3-face): New faces.
19931         (Info-fontify-node): Use these faces.
19933 2000-01-30  Gerd Moellmann  <gerd@gnu.org>
19935         * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
19936         (cl-macro-list1): Recognize `&allow-other-keys' instead of
19937         `&allow-other-keywords'.
19939         * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
19940         the list of directories scanned heuristically.
19942         * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to exist.
19944 2000-01-30  Jason Rumney  <jasonr@gnu.org>
19946         * w32-fns.el: Define w32-tty-standard-colors.
19948         * startup.el (command-line): Use w32-tty-standard-colors when in
19949         w32 console mode.
19951 2000-01-30  Dave Love  <fx@gnu.org>
19953         * jka-compr.el (jka-compr-load): Fix up load-history.
19955         * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
19957         * emacs-lisp/cl-macs.el: Revert previous change.
19959 2000-01-29  Dave Love  <fx@gnu.org>
19961         * facemenu.el: Purecopy various strings.
19963         * timezone.el (timezone-fix-time): Window against 69 for two-digit
19964         years.  Deal with three-digit years.
19966         * help.el (help-xref-symbol-regexp, help-xref-info-regexp):
19967         Use defconst, purecopy.
19968         (help-back-label): Purecopy it.
19970 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
19972         * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
19973         variable. If non-nil, order the buffer list according to the
19974         currently selected frame.
19975         (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
19976         non-nil, pass the selected frame to function buffer-list.
19978 2000-01-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
19980         * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
19982 2000-01-28  Dave Love  <fx@gnu.org>
19984         * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
19986         * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
19987         Don't use lisp-indent-hook property.
19988         (cl-abs): Remove.
19990         * subr.el: Move out indent and edebug specs for when and unless.
19992         * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
19993         when, unless.
19995         * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
19996         unless, when.
19998 2000-01-28  Gerd Moellmann  <gerd@gnu.org>
20000         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
20001         `collecting' as synonym for `collect'.
20003         * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
20004         for the case it contains spaces.
20006         * simple.el (what-cursor-position): Change formatting of messages.
20008         * frame.el (delete-other-frames): New function.
20009         (toplevel): Bind it to C-x 5 1.
20011         * sort.el (sort-numeric-base): New option.
20012         (sort-numeric-fields): If number starts with `0' or `0[xX[',
20013         interpret it as octal or hexadecimal.  Use sort-numeric-base
20014         as default base.
20016         * progmodes/glasses.el: New file.
20018 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
20020         * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
20021         userids differently.
20023         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
20024         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
20025         progmodes/ebnf-yac.el: New files.
20027 2000-01-26  Dave Love  <fx@gnu.org>
20029         * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
20030         on a function with an empty body.  [From Eric Ludlam.]
20032 2000-01-25  Andre Spiegel  <spiegel@gnu.org>
20034         * vc.el (vc-version-diff): Make sure file name is expanded.
20036 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
20038         * scroll-bar.el (scroll-bar-timer): Variable removed.
20039         (scroll-bar-toolkit-scroll): Don't use a timer.
20041 2000-01-25  Kenichi Handa  <handa@etl.go.jp>
20043         * language/thai-util.el (thai-composition-function):
20044         Delete superfluous `a'.
20046 2000-01-24  Dave Love  <fx@gnu.org>
20048         * fortran.el (fortran-mode): Use beginning-of-defun-function,
20049         end-of-defun-function.
20051         * font-lock.el (turn-on-font-lock): Don't depend on window-system &c.
20053 2000-01-22  Jason Rumney  <jasonr@gnu.org>
20055         * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
20056         conflicts with new face support.
20058 2000-01-22  Richard M. Stallman  <rms@gnu.org>
20060         * replace.el (query-replace): Rename last arg to DELIMITED.
20061         (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
20062         (query-replace-regexp): Likewise.
20064 2000-01-20  Richard M. Stallman  <rms@gnu.org>
20066         * subr.el (with-syntax-table): Use make-symbol, not gensym.
20068         * emacs-lisp/lisp.el (beginning-of-defun-function):
20069         Variable renamed from beginning-of-defun.
20070         Do not call make-variable-buffer-local.
20071         (beginning-of-defun-raw): Use new variable name; doc fix.
20072         (beginning-of-defun): Doc fix.
20073         (end-of-defun-function): Variable renamed from end-of-defun.
20074         Do not call make-variable-buffer-local.
20075         (end-of-defun): Use new variable name; doc fix.
20077         * subr.el (dolist, dotimes): Copied from cl-macs.el
20078         and made to work.
20080         * mail/undigest.el (rmail-digest-end-regexps):
20081         Variable replaces rmail-digest-end-regexp.
20082         Allows multiple regexps for detecting the end line.
20083         (undigestify-rmail-message): Corresponding changes.
20085 2000-01-19  Dave Love  <fx@gnu.org>
20087         * files.el (user-init-file): Don't declare here -- is primitive.
20089         * startup.el (command-line): Check for compiled user-init-file and
20090         set to uncompiled version if necessary.
20092 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
20094         * mail/undigest.el (rmail-digest-end-regexp): New user option.
20095         (undigestify-rmail-message): Use it.
20097         * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
20099 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
20101         * tmm.el (tmm-goto-completions): Adapt to prompt being part
20102         of mini-buffer.
20104 2000-01-14  Gerd Moellmann  <gerd@gnu.org>
20106         * emacs-lisp/copyright.el (copyright-update): Removed the
20107         requirement for a trailing space from `copyright-regexp', to
20108         support copyrights with owner specified on a separate line..
20110         * align.el: New file.
20112         * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
20114         * net/eudc.el (toplevel): Define EUDC menu for Emacs.
20116 2000-01-13  Dave Love  <fx@gnu.org>
20118         * ph.el: Removed.  (Obsoleted by EUDC.)
20120 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
20122         * net/eudc.el (toplevel): Remove autoloaded code installing
20123         menu with easymenu, because that causes build problems.
20125         * frame.el (frame-notice-user-settings): New variable.
20126         (frame-notice-user-settings): Don't modify frame parameters
20127         if called a second time.
20129 2000-01-13  Richard M. Stallman  <rms@gnu.org>
20131         * frame.el (frame-notice-user-settings):
20132         Notice default-frame-parameters even for non-window frames.
20134 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
20136         * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
20137         for Emacs.
20138         (eudc-bob-can-display-inline-images): Extend for Emacs.
20139         (eudc-bob-toggle-inline-display): Ditto.
20140         (eudc-bob-display-jpeg): Ditto.
20142 2000-01-12  Gerd Moellmann  <gerd@gnu.org>
20144         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
20145         net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
20146         net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
20148         * add-log.el (add-change-log-entry): Fix error trying an
20149         `(insert nil)'.
20151         * subdirs.el: Add `net' directory.
20153         * net: New directory.
20155         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
20156         eval-last-sexp.  Don't bind debug-on-error here.
20157         (eval-last-sexp): New function.  Bind debug-on-error if
20158         eval-expression-debug-on-error is non-nil.
20159         (eval-defun-2, eval-defun): Likewise.
20161         * simple.el (eval-expression): Don't bind debug-on-error if
20162         eval-expression-debug-on-error is nil.  Detect changed
20163         debug-on-error, and propagate new value to global binding, if
20164         eval-expression-debug-on-error is non-nil,
20165         (eval-expression-debug-on-error): Change doc string.
20167 2000-01-11  Richard M. Stallman  <rms@gnu.org>
20169         * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
20171         * emacs-lisp/lisp-mode.el (with-syntax-table):
20172         Set up lisp-indent-function property.
20174         * subr.el (with-syntax-table): Moved from simple.el.
20176         * simple.el (with-syntax-table): Moved to subr.el.
20178 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
20180         * tmm.el (tmm-shortcut): Delete region after prompt instead
20181         of erasing buffer.
20183         * textmodes/fill.el (fill-common-string-prefix): New function.
20184         (fill-context-prefix): Use the longest common prefix of first
20185         and second line fill prefix, if there is one.
20187 2000-01-11  Richard M. Stallman  <rms@gnu.org>
20189         * array.el (array-mode): Don't use make-variable-buffer-local.
20190         Use make-local-variable for `truncate-lines'.
20192 2000-01-11  Jari Aalto  <jari.aalto@poboxes.com>
20194         * add-log.el (add-log-current-defun): Handle user-defined
20195         add-log-current-function returning nil,
20197         * add-log.el (add-change-log-entry): Insert version number
20198         if having found a current function
20200         * add-log.el (add-log-current-defun):
20201         Call `add-log-current-defun-function'.  Try matches at level 0 and
20202         level 1.  Strip whitespace from defun found.
20204 2000-01-10  John Wiegley  <johnw@gnu.org>
20206         * allout.el (isearch-done/outline-provisions): Added `edit'
20207         argument to correspond with the current definition of `isearch-done'.
20209 2000-01-10  Dave Love  <fx@gnu.org>
20211         * elide-head.el (elide-head): Use point-marker, not point.
20213 2000-01-10  Gerd Moellmann  <gerd@gnu.org>
20215         * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
20216         before and after the year 2000.
20218         * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
20219         Add ispell- prefix.
20221 2000-01-10  Ken Stevens  <k.stevens@ieee.org>
20223         * ispell.el:  Only define dictionaries in menus when they exist.
20224         (version18p): New variable.
20225         (version20p): New variable.
20226         (xemacsp): New variable.
20227         (ispell-choices-win-default-height): Fix for XEmacs visibility.
20228         (ispell-dictionary-alist1): Added Brasileiro dictionary.
20229         (ispell-dictionary-alist6): Russian command lines no longer accept
20230         run-together words.
20231         (ispell-local-dictionary-alist): Add koi8-r to customize definition.
20232         (ispell-dictionary-alist): Add koi8-r to customize definition.
20233         (check-ispell-version): Added documentation string.  Return library
20234         path when called non-interactively.
20235         (ispell-menu-map-needed): Uses new variables.
20236         (ispell-library-path): New variable.
20237         (ispell-decode-string): XEmacs fix for bogus variable bindings.
20238         (ispell-word): Improved documentation string.  Test for valid
20239         character mappings.  Correctly check typed in word changes that can
20240         result in single words split into multiple words.
20241         Return replacement word.
20242         (ispell-command-loop): Fixes XEmacs display bugs.  Show word to
20243         replace in recursive query replace mode.  Help message for
20244         recursive edit mode.
20245         (ispell-show-choices): Protect against bad framepop bindings.
20246         (ispell-help): Fix to work with XEmacs.
20247         (ispell-highlight-spelling-error): Use new variables.
20248         (ispell-overlay-window): Fix to work with XEmacs.
20249         (ispell-parse-output): Passed and returns location information
20250         tracking spelling corrections.  Doesn't recheck same word on
20251         current line.
20252         (ispell-init-process): Protect against bogus XEmacs variable binding.
20253         Fix call to single argument in sleep-for.  Use new variables.
20254         (ispell-region): Passed and returns location information tracking
20255         spelling corrections.  Doesn't check same word on current line.
20256         Improved documentation string.  Doesn't resend a line already
20257         checked to the ispell process - fixes bug in LaTeX parsing.
20258         (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
20259         (ispell-skip-region): No longer skips <TT> in SGML.
20260         (ispell-process-line): Tracks location information with spelling
20261         corrections.  Added documentation string.  Accounts for words
20262         already accepted on this line.  Don't allow query-replace on line
20263         starting with math characters.  Doesn't resend a line already sent
20264         to ispell process.  Fixes alignment error bug.
20266 2000-01-10  Richard M. Stallman  <rms@gnu.org>
20268         * dired-x.el (dired-guess-shell-alist-default):
20269         Suggest xloadimage, which is free, not xv, which isn't.
20271         * ange-ftp.el (ange-ftp-file-name-nondirectory):
20272         Don't ever include the host name or user name in the value.
20274 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
20276         * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
20277         of a real newline.
20279 2000-01-09  Stephen Eglen  <stephen@gnu.org>
20281         * dired-x.el (dired-guess-shell-alist-default): Suggest xv
20282         for .png files.
20284 2000-01-09  Per Abrahamsen  <abraham@dina.kvl.dk>
20286         * cus-edit.el (custom-hook-convert-widget): Fix comment.
20288 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
20290         * progmodes/cperl-mode.el: Replace ^F with ^L.
20292         * sendmail.el (toplevel): Provide `sendmail' when compiling before
20293         `require'ing rmail and mailalias to prevent infinite recursion.
20295 2000-01-08  Dave Love  <fx@gnu.org>
20297         * emacs-lisp/backquote.el: Remove inappropriate customization
20298         (allowing custom.el to use backquote).
20300 2000-01-07  Dave Love  <fx@gnu.org>
20302         * add-log.el (add-log-debugging): Deleted.
20303         (add-change-log-entry): Treat a backup FILE-NAME as its parent
20304         file.  Remove debugging code.
20305         (change-log-get-method-definition, change-log-name): Add doc.
20306         (change-log-sortable-date-at): New function.
20307         (change-log-merge): New command.
20309         * time.el (display-time-string-forms): Make the Mail string active.
20310         (display-time-update): Provide help-echo for load average.
20312         * bindings.el (make-mode-line-mouse2-map): New function.
20313         (mode-line-modified): Use it and simplify.
20314         (mode-line-mule-info): Provide help-echo info.
20315         (minor-mode-alist): Activate the strings.
20316         (make-mode-line-mouse-sensitive): Simplify for
20317         mode-line-buffer-identification.
20319 2000-01-07  Gerd Moellmann  <gerd@gnu.org>
20321         * play/pong.el: New file.
20323 2000-01-06  Dave Love  <fx@gnu.org>
20325         * array.el: Assorted cleanups for compiler warnings, doc strings,
20326         `array-' prefix for symbols.
20328 2000-01-05  Dave Love  <fx@gnu.org>
20330         * textmodes/outline.el (outline-mode-menu-bar-map):
20331         Add outline-headers-as-kill.
20332         (outline-mode): Define imenu-generic-expression.
20333         (outline-headers-as-kill): New command.
20335         * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
20336         from paragraph-start.
20337         (paragraph-indent-minor-mode): New command.
20339         * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
20340         M-C-e, M-C-h, C-j, C-xnd, TAB.
20341         (fortran-mode): Set beginning-of-defun, end-of-defun.
20342         (fortran-column-ruler): Simplify.
20343         (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
20344         (fortran-with-subprogram-narrowing): Likewise.
20345         (fortran-indent-subprogram): Call mark-defun.
20346         (fortran-check-for-matching-do): Change narrowing.
20348         * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
20349         (cl-lucid-hash-tag): Delete.
20350         (cl-hash-table-p): Correct test for native table.
20351         (cl-hash-table-count): Use hash-table-count.
20353         * browse-url.el (browse-url): Fix case of
20354         browse-url-browser-function being an alist.
20356 2000-01-05  Carsten Dominik  <cd@gnu.org>
20358         * textmodes/reftex-vars.el (reftex-parse-file-extension)
20359         (reftex-index-phrase-file-extension): New options.
20361         * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
20362         Use new option `reftex-index-phrase-file-extension'.
20364         * textmodes/reftex.el (reftex-access-parse-file): Use new option
20365         `reftex-parse-file-extension'.
20367 2000-01-05  Dave Love  <fx@gnu.org>
20369         * emacs-lisp/lisp.el (beginning-of-defun): New variable.
20370         (beginning-of-defun-raw): Use it.
20371         (end-of-defun): New variable.
20372         (end-of-defun): Use it.
20373         (check-parens): New command.
20375 2000-01-05  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
20377         * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
20378         (hs-show-block): Don't use `mapcar' when not accumulating.
20380         Fix buglet in local variables initialization.
20382 2000-01-05  Andreas Schwab  <schwab@suse.de>
20384         * hscroll.el (hscroll): Doc fix.
20386 2000-01-05  Carsten Dominik  <cd@gnu.org>
20388         * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar):
20389         Require idlw-toolbar.
20391         * progmodes/idlwave.el (idlwave-load-system-rinfo): Load must read
20392         file idlw-rinfo.el.
20393         (idlwave-customize): Load must read file idlw-shell.el.
20394         (idlwave-create-customize-menu): Load must read file idlw-shell.el.
20396 2000-01-05  Carsten Dominik  <dominik@astro.uva.nl>
20398         * progmodes/idlw-shell.el: Also provide idlwave-shell
20399         * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
20400         * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
20402         * textmodes/reftex-dcr.el: Rename from reftex-vcr.el, provide
20403         both reftex-dcr and reftex-vcr.
20405         * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
20407 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
20409         * ps-print.el: PostScript code now is in separate files, doc fix.
20410         (ps-print-version): New version number (5.0.3).
20411         (ps-header-lines, ps-left-header, ps-right-header): No more buffer
20412         local.
20413         (ps-spool-config): Initialization fix.
20414         (ps-print-prologue-1, ps-print-prologue-2)
20415         (ps-print-duplex-feature): PostScript code moved to separated file.
20416         (ps-background-image): Little code reformating.
20417         (ps-begin-file, ps-begin-job): Fix code.
20418         (ps-postscript-code-directory, ps-mark-code-directory): New vars.
20419         (ps-prologue-file): New fun.
20421 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
20423         * ps-vars.el: Eliminated.
20425         * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
20426         `;;;###autoload'.
20428         * ps-print.el: ps-vars eliminated, doc fix.
20429         (ps-print-version): New version number (5.0.2).
20430         (ps-spool-config): Initialization fix.
20431         (ps-print-customize): New fun.
20433 2000-01-04  Gerd Moellmann  <gerd@gnu.org>
20435         * autorevert.el (auto-revert-mode): Return value of auto-revert-mode.
20437 2000-01-04  Dave Love  <fx@gnu.org>
20439         * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
20440         menu items.
20442 2000-01-03  Dave Love  <fx@gnu.org>
20444         * elide-head.el (elide-head) [defgroup]: Add :version.
20446         * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
20447         (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count):
20448         Use `cl-hash-table-p', not `hash-table-p'.
20449         (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
20451 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
20453         * faces.el (face-read-integer, read-face-attribute)
20454         (color-defined-p, color-values): Unspecified-{f,b}g are now strings.
20456 2000-01-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
20458         * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
20459         at comment end, and re-insert them after filling.
20461 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
20463         * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
20464         * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
20465         progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
20467 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
20469         * term/x-win.el (xw-defined-colors): Call color-supported-p,
20470         the new name of face-color-supported-p.
20472         * term/w32-win.el (xw-defined-colors): Likewise.
20474 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
20476         * simple.el (completion-setup-function): Count completion-size
20477         from minibuffer-prompt-end, not from point-min.
20479 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
20481         * faces.el (read-face-attribute, defined-colors, color-defined-p):
20482         Pass the frame to tty-color-* functions.
20483         (display-color-p, frame-set-background-mode): Pass the frame to
20484         tty-display-color-p.
20486         * term/tty-colors.el (tty-defined-color-alist): Renamed from
20487         tty-color-alist.
20488         (tty-color-alist, tty-modify-color-alist): New functions.
20489         (tty-color-define,  tty-color-clear, tty-color-approximate)
20490         (tty-color-translate, tty-color-by-index, tty-color-desc): Accept an
20491         optional parameter FRAME.
20493 2000-01-01  Gerd Moellmann  <gerd@gnu.org>
20495         * image.el (create-image, defimage): Don't assume image data is
20496         a string.
20498         * image.el (defimage): Handle specifications containing :data
20499         instead of :file.
20500         (image-type-from-data): New function.
20501         (image-type-from-file-header): Use it.
20502         (create-image): Add parameter DATA-P.
20504 See ChangeLog.8 for earlier changes.
20506 ;; Local Variables:
20507 ;; coding: iso-2022-7bit
20508 ;; End:
20510     Copyright (C) 2000, 2001 Free Software Foundation, Inc.
20511   Copying and distribution of this file, with or without modification,
20512   are permitted provided the copyright notice and this notice are preserved.