]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
See ChangeLog
[gnu-emacs] / lisp / ChangeLog
1 2000-08-28 John Wiegley <johnw@gnu.org>
2
3 * align.el: Test align-region-separate to see if it's a symbol.
4
5 2000-08-27 John Wiegley <johnw@gnu.org>
6
7 * eshell/esh-util.el (eshell-flatten-list): Made this function
8 into a defsubst form. It gets used very frequently, although
9 calls don't occur all that often.
10
11 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
12 examining it.
13
14 * eshell/esh-cmd.el (eshell-rewrite-while-command):
15 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
16 `eshell-protect'.
17 (eshell-copy-handles): Created a new macro for duplicating the
18 current set of open handles. This is needed by the looping
19 functions.
20 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
21 is not incorrectly stomped on.
22
23 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
24 declaration for pcomplete-use-paring.
25 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
26 value of eshell-cmpl-use-paring.
27 * pcomplete.el (pcomplete-use-paring): New config variable, to
28 indicate whether paring should be used.
29 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
30 completion alternatives that have already been used.
31
32 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
33 bound to C-c C-y, which will repeat the previous N arguments
34 (based on prefix argument).
35 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
36
37 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
38 if there is no *Help* buffer. This is for XEmacs, which renames
39 its help buffers uniquely. TODO: Find out what the current buffer
40 name to delete is.
41
42 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
43 first entry that correlates to a passwd/group number. Later
44 entries (used for group/user name aliasing to multiple IDs) are
45 ignored.
46
47 * eshell/em-xtra.el (eshell/expr):
48 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
49 (eshell-grep, eshell/diff, eshell/locate):
50 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
51 argument list, before passing it to the system command.
52
53 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
54 `find-tag' for use at final position in Eshell buffers (which
55 otherwise triggers an error on Emacs 21).
56 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
57 buffer, if it is currently bound to `find-tag'.
58
59 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
60 in the list of matched Makefile names.
61 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
62 directory, prefer its contents to Makefile.
63
64 * eshell/em-dirs.el (eshell/cd): cd commands that look up
65 directory parts (like "cd old new", or "cd =regexp"), are now case
66 sensitive on non-Windows/DOS platforms.
67
68 * eshell/esh-mode.el (eshell-parse-command-input): When a user
69 types RET after an open delimiter (like "), display a message
70 indicating that Eshell is waiting for the closing delimiter.
71
72 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
73 environment variables.
74
75 * eshell/em-unix.el (eshell/diff): Added logic to fail more
76 gracefully if the user enters incorrect arguments.
77
78 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
79 Eshell buffers.
80
81 * eshell/esh-var.el (eshell-interpolate-variable):
82 * eshell/esh-mode.el (eshell-move-argument):
83 * eshell/em-unix.el (eshell-du-sum-directory):
84 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
85 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
86 (not (= ...)).
87
88 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
89 to ensure the `preserve' flag gets propagated when doing recursive
90 directory copies.
91
92 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
93
94 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
95 Don't convert \n into \0177 in memory.
96 (eshell-read-history, eshell-write-history): Convert \n to \0177,
97 and back again, when reading and writing.
98
99 2000-07-06 Eli Zaretskii <eliz@is.elta.co.il>
100
101 * eshell/esh-util.el (eshell-processp): Added to relieve constant
102 testing of `fboundp' on `processp'.
103
104 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
105 (eshell/jobs): Don't call process-list if it is not bound.
106 (eshell-gather-process-output): Support systems where async
107 subprocesses aren't supported.
108 (eshell-scratch-buffer, eshell-last-sync-output-start): New
109 variables.
110
111 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
112 eshell-do-eval returns t.
113 (eshell-do-pipelines-synchronously): New defmacro.
114 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
115 when async subprocesses aren't supported.
116 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
117 if async subprocesses aren't supported.
118 (eshell-resume-command): Don't assume STATUS is a string.
119
120 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
121
122 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
123 (eshell-close-target, eshell-get-target): Use eshell-processp.
124 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
125 fix.
126 (eshell-get-target, eshell-create-handles): Doc fix.
127
128 2000-06-28 Miles Bader <miles@lsi.nec.co.jp>
129
130 * em-smart.el (eshell-smart-maybe-jump-to-end): Change the
131 criterion to include commands that output something, as long as it
132 leaves both the command and the end-of-buffer visible when the
133 command has exited.
134 (eshell-review-quick-commands): Adjust the help doc string
135 accordingly.
136
137 2000-08-28 Peter Breton <pbreton@ne.mediaone.net>
138
139 * locate.el (locate): Cleaned up locate command's interactive prompting
140 Thanks to François_Pinard <pinard@iro.umontreal.ca> for suggestions.
141
142 * filecache.el (file-cache-case-fold-search): New variable
143 (file-cache-assoc-function): New variable
144 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
145 Use file-cache-case-fold-search variable
146 (file-cache-add-file): Use file-cache-assoc-function
147 (file-cache-delete-file): likewise
148 (file-cache-directory-name): likewise
149 (file-cache-debug-read-from-minibuffer): likewise
150
151 2000-08-28 Gerd Moellmann <gerd@gnu.org>
152
153 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
154 (abbrev-table-name): New function.
155 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
156 If non-nil list local abbrev, only.
157
158 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
159
160 * uce.el (uce-reply-to-uce): Remove hard-coded "*Article*" from
161 Gnus support code, and use special article copy buffer
162 `(gnus-original-article-buffer)' instead. This allows to get rid
163 of article-hide-headers usage (which breaks in the latest Gnus
164 version). Thanks to Detlev Zundel.
165
166 2000-08-28 Kenichi Handa <handa@etl.go.jp>
167
168 * international/quail.el (quail-use-package): Hide "... loaded"
169 message.
170 (quail-start-translation, quail-start-conversion): Likewise.
171
172 * international/kkc.el (kkc-region): Hide "... loaded" message.
173
174 2000-08-27 Dave Love <fx@gnu.org>
175
176 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
177
178 2000-08-27 Miles Bader <miles@gnu.org>
179
180 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
181
182 2000-08-27 Kenichi Handa <handa@etl.go.jp>
183
184 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
185 'ja-dic-cnv), not (require 'skkdic-cnv).
186
187 2000-08-26 Miles Bader <miles@gnu.org>
188
189 * faces.el (face-x-resources): Add entry for :inherit.
190 * cus-face.el (custom-face-attributes): Add support for :inherit
191 attribute. Add support for relative face heights.
192 (custom-face-attributes-get): Treat `nil' as being a default value
193 for :inherit (as well as `unspecified').
194
195 * faces.el (set-face-attribute): Update doc string.
196 (face-attribute-name-alist): Add :inherit.
197 (face-valid-attribute-values): Handle :inherit.
198 (face-read-string): Rephrase prompt to be less confusing.
199 Assume that DEFAULT is a string, since we must return a string.
200 (face-read-integer): Use `format' to turn DEFAULT into an
201 acceptable default for face-read-string. Match NEW-VALUE against
202 the string "unspecified", not the symbol `unspecified', since
203 that's what face-read-string returns.
204 (read-face-attribute): Lookup a name for old-value in valid, and
205 use it as a default if we find one. Treat all values from
206 face-read-string as strings. If the default is used, don't do any
207 more processing on the value, just use the old value directly.
208 (read-face-and-attribute, modify-face): Tweak prompt.
209 (read-face-name): Don't assume prompt ends with a space.
210
211 * faces.el (describe-face): Add support for :inherit attribute.
212
213 2000-08-25 Kenichi Handa <handa@etl.go.jp>
214
215 * terminal.el (terminal-emulator): Fix args to `concat'. Now
216 concat doesn't accept interger.
217
218 * international/kkc.el: Remove SKK from Keywords. Require
219 ja-dic-utl instead of skkdic-utl.
220
221 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
222 Provide ja-dic-cnv instead of skkdic-cnv.
223 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
224 (iso-2022-7bit-short): Add safe-charsets property.
225 (skkdic-convert-postfix): Search Japanese chou-on character in
226 addition to Hiragana character.
227 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
228 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
229 (batch-skkdic-convert): Likewise.
230
231 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
232 Provide ja-dic-utl instead of skkdic-utl.
233 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
234
235 2000-08-24 Dave Love <fx@gnu.org>
236
237 * disp-table.el (standard-display-default): Make the test of `l'
238 useful.
239
240 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
241 mod sample text.
242
243 * international/iso-ascii.el: Make pilcrow convenient string
244 consistent with section.
245 (iso-ascii-display): Set up multibyte characters as well as
246 unibyte.
247
248 2000-08-24 Kenichi Handa <handa@etl.go.jp>
249
250 * international/mule-cmds.el (reset-language-environment): Set
251 default-process-coding-system to '(undecided . iso-latin-1), which
252 makes process I/O almost consistent with file I/O. Call this
253 function when mule-cmds.el[c] is loaded.
254
255 2000-08-22 Andrew Innes <andrewi@gnu.org>
256
257 * makefile.w32-in: New file.
258
259 2000-08-22 Miles Bader <miles@lsi.nec.co.jp>
260
261 * comint.el (comint-output-filter): Compare end of
262 comint-last-output-overlay with the start of the newly inserted
263 text, not the end, when deciding whether to extend it.
264 Set saved-point's insertion type to advance after insertion.
265
266 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
267 since this is now done independently of font-lock mode.
268
269 2000-08-21 Gerd Moellmann <gerd@gnu.org>
270
271 * server.el (server-kill-new-buffers): New user option.
272 (server-existing-buffer): New buffer-local variable.
273 (server-visit-files): When using an existing buffer, set
274 server-existing-buffer to t.
275 (server-buffer-done): If server-kill-new-buffers is t, kill the
276 buffer, unless it was already present before visiting it with
277 Emacs server.
278
279 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
280
281 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
282 even if the display doesn't support colors: some displays will
283 support bold/underline faces.
284
285 2000-08-21 Gerd Moellmann <gerd@gnu.org>
286
287 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
288
289 * startup.el (command-line): If user's init file had an error,
290 add explanatory text to *Messages*.
291
292 2000-08-21 Kenichi Handa <handa@etl.go.jp>
293
294 * man.el (Man-getpage-in-background): Decode the process output by
295 the system locale coding system.
296
297 2000-08-20 Dave Love <fx@gnu.org>
298
299 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
300 Don't test x-popup-menu.
301 (function) <complete-function>: Complete only fbound symbols.
302 <validate, value>: New.
303 (variable) <complete-function>: Complete only bound symbols.
304 (coding-system): Add :base-only, :complete-function, :validate,
305 :value, :prompt-match.
306 (widget-coding-system-prompt-value): Use read-coding-system and
307 act on :base-only.
308 (editable-field): Add :help-echo.
309 (widget-push-button-gui, widget-push-button-cache)
310 (widget-gui-action, widget-editable-list-gui): COmment out, along
311 with uses.
312 (widget-at): Make arg optional.
313 (widget-echo-help): Adjust for current help-echo calling sequence.
314 (widget-specify-field, widget-specify-button)
315 (widget-specify-insert, widget-get-sibling, widget-image-find)
316 (widget-convert, widget-insert, widget-leave-text)
317 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
318 (widget-setup, widget-field-find, widget-before-change)
319 (widget-after-change, widget-default-complete)
320 (widget-default-create, widget-default-delete)
321 (widget-push-button-value-create, editable-field)
322 (widget-field-prompt-value, widget-field-validate)
323 (widget-choice-value-create, widget-choice-action)
324 (widget-choice-validate, widget-checklist-add-item)
325 (widget-radio-add-item, widget-radio-chosen)
326 (widget-radio-value-inline, widget-editable-list-value-create)
327 (widget-editable-list-entry-create)
328 (widget-documentation-link-add)
329 (widget-documentation-string-value-create)
330 (widget-regexp-validate, widget-file-complete)
331 (widget-sexp-validate, widget-plist-convert-widget)
332 (widget-plist-convert-widget, widget-alist-convert-widget)
333 (widget-alist-convert-widget, widget-color-complete): Simplify,
334 particularly to avoid bindings which aren't optimized out.
335
336 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
337 Doc fix.
338 (down-list, backward-up-list, up-list, kill-sexp)
339 (backward-kill-sexp, mark-sexp): Make arg optional.
340 (lisp-complete-symbol): Add optional arg PREDICATE.
341
342 * cus-start.el: Add display-buffer-reuse-frames,
343 file-coding-system-alist.
344
345 2000-08-20 Gerd Moellmann <gerd@gnu.org>
346
347 * startup.el (command-line): Clear realized faces after
348 modifying TTY color mappings.
349
350 2000-08-20 Miles Bader <miles@gnu.org>
351
352 * faces.el (face-attr-match-p): Don't return true if ATTRS are
353 merely a subset of FACE's attributes.
354
355 2000-08-19 Miles Bader <miles@gnu.org>
356
357 * comint.el (comint-output-filter): Save the point with a marker,
358 not just a buffer position.
359
360 * international/mule.el (set-buffer-process-coding-system): Make
361 interactive prompt less confusing.
362
363 2000-08-19 Gerd Moellmann <gerd@gnu.org>
364
365 * hilit-chg.el: General cleanup of doc strings, comments and
366 code formatting.
367
368 2000-08-19 Miles Bader <miles@gnu.org>
369
370 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
371 Compiler macro removed; beginning-of-line is no longer always
372 equivalent to forward-line, in the presence of fields.
373
374 * comint.el (comint-output-filter): Remove ad-hoc saving of
375 restriction, and just use save-restriction, now that it works
376 correctly. Don't adjust comint-last-input-start to account for
377 our insertion; it shouldn't have moved because we don't use
378 insert-before-markers anymore. Comment out call to
379 `force-mode-line-update'; why is it here?
380
381 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
382 while checking for prompt to delete. Use `forward-line 0'
383 instead of beginning-of-line.
384 (gud-filter): Temporarily widen gud comint buffer while
385 examining output.
386
387 2000-08-18 Stefan Monnier <monnier@cs.yale.edu>
388
389 * progmodes/sh-script.el: Big bag of typos.
390
391 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
392 check since ispell-process is not bound when ispell is not yet loaded.
393
394 2000-08-18 Dave Love <fx@gnu.org>
395
396 * image.el (find-image): Copy `spec' before using plist-put.
397
398 2000-08-18 Gerd Moellmann <gerd@gnu.org>
399
400 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
401 `portugues'.
402
403 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
404 backward-kill-sexp, analogous to kill-sexp.
405
406 * progmodes/icon.el (icon-indent-line)
407 (icon-is-continuation-line): Handle comments specially.
408
409 2000-08-17 Ken Stevens <k.stevens@ieee.org>
410
411 * ispell.el: Set to standard author/maintainer/keyword fields.
412 Fine tuning to menu map appearance and operation, and added help.
413 Remove `start' and `end' error messages when compiling.
414 (ispell-choices-win-default-height): Fixed comment string.
415 (ispell-dictionary-alist-1): Fixed regexp in castellano and
416 castellano8 dictionaries.
417 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
418 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
419 dictionary, added italiano dictionary.
420 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
421 word character
422 (ispell-tex-skip-alists): Added psfig support.
423 (ispell-skip-html): Renamed from ispell-skip-sgml.
424 (ispell-begin-skip-region-regexp, ispell-skip-region)
425 (ispell-minor-check): Improved html skipping support to skip across
426 code, and recognize `&' commands without propper `;' syntax;
427 (ispell-process-line): Fix alignment error when manually
428 correcting spelling.
429 (ispell): Fix comment string.
430 (ispell-add-per-file-word-list): Always put word list on new line.
431
432 2000-08-17 Gerd Moellmann <gerd@gnu.org>
433
434 * format.el (format-encode-run-method): Fix error message to say
435 `encode' instead of `decode'. Use save-window-excursion around
436 shell-command-on-region as in format-decode-run-method because
437 shell-command-on-region can display a buffer with error output.
438 (format-decode): Don't record undo information for the decoding.
439 (format-annotate-function): Add parameter FORMAT-COUNT. Make
440 that number part of the temporary buffer name so that more than
441 one decoding using a temporary buffer can happen safely.
442
443 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
444 of `A-z' in the regexp.
445
446 * hilit-chg.el: Fix typos in commentary.
447
448 * help.el (view-emacs-news): Rewritten for new naming scheme
449 for old NEWS files.
450
451 * startup.el (command-line): Pop to *Messages* in case an error
452 is signaled while loading user-init-file.
453
454 2000-08-17 Andreas Schwab <schwab@suse.de>
455
456 * files.el (insert-directory): Don't lose original file name,
457 undoing an undocumented change.
458
459 2000-08-17 Alex Schroeder <alex@gnu.org>
460
461 * sql.el (sql-magic-go): Use comint-bol.
462 (sql-copy-column): Use comint-line-beginning-position.
463 (comint-line-beginning-position): Define a replacement for
464 comint-line-beginning-position if it is not fboundp.
465
466 2000-08-17 Alex Schroeder <alex@gnu.org>
467
468 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
469 it didn't have any effect anyway.
470
471 2000-08-17 Alex Schroeder <alex@gnu.org>
472
473 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
474 --pset and pager=off instead of sending \\o|cat at the beginning
475 of the session.
476
477 2000-08-17 Miles Bader <miles@gnu.org>
478
479 * progmodes/octave-inf.el: Add compatibility definition of
480 comint-line-beginning-position.
481
482 2000-08-17 Kenichi Handa <handa@etl.go.jp>
483
484 * startup.el (normal-top-level): Look in each dir in load-path for
485 a leim-list.el file too. This assures of loading leim-list.el
486 that is created at Emacs installation time even if a user have his
487 own leim-list.el.
488
489 2000-08-17 Miles Bader <miles@gnu.org>
490
491 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
492 foreground color to black if the background is dark.
493
494 2000-08-16 Stefan Monnier <monnier@cs.yale.edu>
495
496 * loadhist.el (unload-feature): Typo.
497
498 * finder.el (finder-compile-keywords):
499 * cus-dep.el (custom-make-dependencies): Add local-variable settings
500 to the generated file.
501
502 * mail/mh-e.el (mh-make-local-vars):
503 Replace make-variable-buffer-local with make-local-variable.
504
505 * play/landmark.el:
506 * options.el (Edit-options-{set,toggle,t,nil}):
507 * mail/mailabbrev.el (mail-abbrevs-mode):
508 * textmodes/tex-mode.el (tex-expand-files):
509 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
510
511 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
512
513 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
514 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
515 Allow going past the last element.
516 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
517 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
518 (cvs-mouse-toggle-mark): Don't move point.
519 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
520
521 * progmodes/compile.el (grep): Provide a default set of files.
522 (next-error): Docstring fix.
523 (compilation-find-file): Avoid find-file (fails in a dedicated window).
524
525 * emacs-lisp/easy-mmode.el (define-minor-mode):
526 Use `symbol-value' to keep the byte-compiler quiet.
527
528 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
529 (diff-find-source-location): New fun, extracted from diff-goto-source.
530 (diff-goto-source): Use it.
531 (diff-next-complex-hunk, diff-filter-lines): New function.
532 (diff-apply-hunk): New command.
533
534 * smerge-mode.el (smerge-mode-menu): Doc fix.
535
536 * msb.el (msb-mode): Define it in terms of define-minor-mode.
537
538 2000-08-16 Dave Love <fx@gnu.org>
539
540 * windmove.el (windmove) <defgroup>: Add :version.
541
542 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
543 (goto-address-fontify-p, goto-address-highlight-p)
544 (goto-address-url-face, goto-address-url-mouse-face)
545 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
546 (goto-address-url-regexp): Use thing-at-point-url-regexp.
547 (goto-address-fontify, goto-address-at-mouse): Simplify,
548 (goto-address-at-point): browse-url-url-at-point,
549 goto-address-find-address-at-point can return nil.
550 (goto-address-find-address-at-point): Return nil on failure.
551
552 * align.el (align) <defgroup>: Add :version.
553
554 * calculator.el (calculator): Add :version.
555 (calculator): Use two lines for calculator window if `modeline'
556 face is boxed.
557
558 * play/5x5.el: Doc fixes.
559 (5x5) <defgroup>: Add :version.
560
561 * play/fortune.el (fortune) <defgroup>: Add :version.
562 (fortune-append): Fix error message.
563 (fortune-from-region): Doc fix.
564
565 * play/pong.el (pong): Doc fix.
566
567 * play/morse.el: Keywords, commentary, autoloads.
568
569 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
570
571 * desktop.el (desktop-save): Don't look at symbol-value of a
572 member of minor-mode-alist, unless it is boundp.
573
574 2000-08-16 Sam Steingold <sds@gnu.org>
575
576 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
577 `while'; use `with-current-buffer' instead of `save-excursion'.
578 Removed unnecessary kludges now that "*Buffer List*" is excluded.
579
580 2000-08-16 Kenichi Handa <handa@etl.go.jp>
581
582 * international/ccl.el (declare-ccl-program): Docstring modified.
583 (ccl-execute-with-args): Likewise.
584
585 2000-08-16 Miles Bader <miles@gnu.org>
586
587 * progmodes/sql.el: Add compatibility definition of
588 comint-line-beginning-position.
589
590 2000-08-15 Gerd Moellmann <gerd@gnu.org>
591
592 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
593 'buffer-menu' property.
594 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
595 fails.
596 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
597 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
598 wasn't killed.
599
600 * buff-menu.el (list-buffers-noselect): Don't display the
601 *Buffer List* buffer.
602
603 * font-lock.el: Require jit-lock to prevent a very late
604 `Loading jit-lock' message.
605
606 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
607 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
608 mail address.
609
610 2000-08-15 Miles Bader <miles@gnu.org>
611
612 * textmodes/ispell.el (ispell-graphic-p): New constant.
613 (ispell-choices-win-default-height, ispell-help): Use
614 `ispell-graphic-p' instead of `xemacsp'.
615
616 2000-08-15 Dave Love <fx@gnu.org>
617
618 * simple.el: Autoload widget-convert when compiling.
619 (mail-user-agent): Doc fix.
620
621 * help.el (function-called-at-point, variable-at-point): Use
622 with-syntax-table.
623 (help-manyarg-func-alist): Add insert-and-inherit.
624
625 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
626
627 * delsel.el (delsel-unload-hook): New function.
628
629 * find-file.el: Doc fixes. Move provide to end.
630 (ff) <defgroup>: Add :link.
631 (ff-goto-click): Deleted.
632 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
633 Use mouse-set-point.
634
635 * textmodes/tildify.el: Doc fixes.
636 (tildify) <defgroup>: Add:version.
637
638 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
639 (glasses-custom-set): Use set-default, not set.
640 (minor-mode-alist): Propertize the lighter.
641 (glasses-mode): Provide optional arg.
642
643 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
644 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
645 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
646 option. Provide :type.
647 (cwarn-configuration): Provide :type.
648 (cwarn-mode): Doc fix.
649
650 * add-log.el (change-log-merge): Doc fix.
651 (change-log-redate): New command.
652
653 * net/browse-url.el (browse-url-filename-alist): Add a clause for
654 Doze and Dog.
655 (browse-url): Use dolist, not mapcar.
656 (browse-url-at-point): Check for null url.
657 (browse-url-event-buffer, browse-url-event-point): Functions
658 deleted.
659 (browse-url-at-mouse, browse-url-netscape): Simplify.
660
661 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
662 modes.
663 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
664 Fix previous change to mapcan.
665 (msb--init-file-alist, msb--add-separators)
666 (msb--make-keymap-menu): Simplify.
667 (msb--choose-file-menu): Use copy-sequence.
668 (msb-mode-map): Add title to keymap.
669 (msb-unload-hook): New function.
670
671 * bs.el: Fix indentation.
672 (bs) <defgroup>: Add :links.
673 (bs-show): Doc fix.
674 (bs-apply-sort-faces): Don't use window-system.
675 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
676
677 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
678
679 * calendar/timeclock.el (timeclock-file): Run .timelog through
680 convert-standard-filename.
681
682 2000-08-14 Gerd Moellmann <gerd@gnu.org>
683
684 * emacs-lisp/authors.el: New file.
685
686 * paren.el (show-paren-priority): New user option.
687 (show-paren-function): Set overlay priorities to
688 show-paren-priority.
689
690 2000-08-14 Miles Bader <miles@gnu.org>
691
692 * comint.el (comint-bol): Use `forward-line 0' instead of calling
693 beginning-of-line with inhibit-field-text-motion bound.
694
695 2000-08-14 Gerd Moellmann <gerd@gnu.org>
696
697 * calendar/timeclock.el: New file.
698
699 2000-08-14 David Ponce <david@dponce.com>
700
701 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
702 `widget-button-click'. so that one can use left mouse button to
703 click on dialog buttons.
704
705 2000-08-14 Emmanuel Briot <briot@gnat.com>
706
707 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
708 identifiers, since XML is case sensitive
709
710 2000-08-12 Miles Bader <miles@gnu.org>
711
712 * comint.el (comint-output-filter): Don't bother frobbing
713 window-start, it doesn't seem to be necessary.
714
715 * comint.el (comint-send-string, comint-send-region): Make into
716 real functions. Snapshot the prompt before sending.
717
718 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
719
720 * info.el (Info-find-emacs-command-nodes): Rewrite to use
721 technique similar to Info-index, instead of relying on specific
722 names of relevant Index nodes.
723 (Info-goto-emacs-command-node): Bind Info-history to nil when
724 going to the first node found by Info-find-emacs-command-nodes.
725
726 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
727
728 * menu-bar.el (menu-bar-help-menu): Add a :help string.
729
730 2000-08-10 Miles Bader <miles@gnu.org>
731
732 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
733
734 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
735
736 * info.el (Info-file-list-for-emacs): More elements for the
737 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
738 and woman manuals.
739
740 2000-08-10 Miles Bader <miles@lsi.nec.co.jp>
741
742 * comint.el (comint-send-input): Make the newline boundary overlay
743 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
744 (comint-output-filter): Use `insert' instead of
745 `insert-before-markers'. Extend comint-last-output-overlay when
746 necessary since we can't rely on insert-before-markers to do it.
747 * gud.el (gud-filter): Use `with-current-buffer' instead of
748 save-excursion when inserting the output, so that point gets
749 updated correctly; the old method relied on a rather dodgy
750 side-effect of comint-output-filter to avoid the effect of
751 save-excursion.
752
753 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
754
755 * files.el (recover-file): Call insert-directory instead of
756 invoking `ls' directly.
757
758 2000-08-10 Miles Bader <miles@gnu.org>
759
760 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
761 (comint-last-prompt-overlay): New variables.
762 (comint-output-filter): Implement prompt highlighting.
763 (comint-snapshot-last-prompt): New function.
764 (comint-send-input): Snapshot the last prompt.
765 Use comint-highlight-input-face.
766 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
767 Use defface instead of defcustom.
768 (send-invisible, comint-send-eof): Snapshot the last prompt.
769 (comint-delchar-or-maybe-eof): Use comint-send-eof.
770 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
771
772 2000-08-09 Stefan Monnier <monnier@cs.yale.edu>
773
774 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
775 (regexp-opt-group): Use a list of chars for `letters'.
776 (regexp-opt-charset): `chars' is now a list of chars.
777 Use a char-table rather than a vector so it works for multibyte chars.
778
779 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
780 Set cvs-minor-current-files to the selected fileinfo.
781 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
782 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
783
784 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
785
786 * files.el (insert-directory): Don't call access-file on
787 directories on DOS and Windows.
788
789 2000-08-09 Kenichi Handa <handa@etl.go.jp>
790
791 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
792 longer if necessary.
793 (ccl-embed-code): Call ccl-embed-data to store CODE in
794 ccl-program-vector.
795
796 2000-08-09 Miles Bader <miles@gnu.org>
797
798 * comint.el (comint-output-filter): Properly handle the case where
799 the text surrounded by comint-last-output-overlay was deleted.
800
801 2000-08-08 Gerd Moellmann <gerd@gnu.org>
802
803 * info.el (Info-insert-dir): Use Info-additional-directory-list if
804 non-nil.
805 (Info-file-list-for-emacs): Remove "info" from the list because
806 that leads to trying to use the documentation from file `info'
807 in various situations where it isn't appropriate, for instance
808 C-h C-k C-h i.
809
810 * ffap.el (ffap-read-file-or-url-internal): Handle case that
811 DIR and/or STRING are nil.
812
813 * progmodes/compile.el (compilation-setup): Make variable
814 compilation-error-screen-columns buffer-local, as some comment
815 in the code suggests it should be.
816
817 * files.el (auto-mode-interpreter-regexp): New variable.
818 (set-auto-mode): Use it.
819
820 * indent.el (indent-for-tab-command): Doc fix.
821
822 * mouse-sel.el (mouse-sel-mode): Doc fix.
823
824 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
825 labels.
826
827 * help.el (print-help-return-message): When
828 display-buffer-reuse-frames is set, let the help window been quit,
829 instead of deleting it, which might delete a reused frame.
830
831 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
832
833 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
834 rename a directory to a name that differs only by its letter case.
835
836 2000-08-08 Kenichi Handa <handa@etl.go.jp>
837
838 * international/quail.el (quail-define-rules): Handle Quail decode
839 map correctly. Add code for supporting annotations.
840 (quail-install-decode-map): New function.
841 (quail-defrule-internal): New optional arguments decode-map and
842 props.
843 (quail-advice): New function.
844
845 2000-08-07 Sam Steingold <sds@gnu.org>
846
847 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
848 `defconst', `define-condition', `with-slots'.
849 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
850
851 2000-08-03 Miles Bader <miles@gnu.org>
852
853 * comint.el (comint-use-prompt-regexp-instead-of-fields):
854 New variable.
855 (comint-prompt-regexp, comint-get-old-input): Document dependence on
856 comint-use-prompt-regexp-instead-of-fields.
857 (comint-send-input): Add `input' field property to stuff we send to
858 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
859 (comint-output-filter): Add `output' field property to process
860 output, if comint-use-prompt-regexp-instead-of-fields is nil.
861 (comint-replace-by-expanded-history)
862 (comint-get-old-input-default, comint-show-output)
863 (comint-backward-matching-input, comint-forward-matching-input)
864 (comint-next-prompt, comint-previous-prompt): Use field
865 properties if comint-use-prompt-regexp-instead-of-fields is nil.
866 (comint-line-beginning-position): New function.
867 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
868 (comint-replace-by-expanded-history-before-point): Use
869 comint-line-beginning-position and line-end-position.
870 (comint-last-output-overlay): New variable.
871 (comint-mode): Make `comint-last-output-overlay' buffer-local.
872
873 * shell.el (shell-prompt-pattern): Doc change.
874 (shell-backward-command): Use line-beginning-position.
875
876 * gud.el (gud-gdb-complete-command): Use
877 comint-line-beginning-position.
878
879 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
880 comint-bol doesn't actually go to the beginning of the line.
881
882 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
883 if comint-use-prompt-regexp-instead-of-fields is non-nil.
884 (try-expand-line-all-buffers): Likewise.
885
886 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
887 explicitly matching comint-prompt-regexp.
888 (sql-copy-column): Use comint-line-beginning-position instead of
889 explicitly matching comint-prompt-regexp.
890
891 * progmodes/octave-inf.el (inferior-octave-complete): Use
892 comint-line-beginning-position.
893
894 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
895
896 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
897 looking for a prompt, use `forward-line 0' instead of
898 `beginning-of-line', to avoid getting caught by an input field.
899
900 2000-08-07 Gerd Moellmann <gerd@gnu.org>
901
902 * files.el (shell-quote-wildcard-pattern): Make sure to return
903 PATTERN, in the Unix case.
904
905 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
906
907 * play/zone.el (zone): Discard any pending input before running
908 the randomly-chosen pgm.
909
910 2000-08-07 Kenichi Handa <handa@etl.go.jp>
911
912 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
913 checking the existence of any multibyte characters.
914
915 2000-08-06 Gerd Moellmann <gerd@gnu.org>
916
917 * help.el (describe-mode): Test minor-mode symbol for being
918 bound before testing its value for being nil.
919
920 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
921 `first', `second', and `third'.
922
923 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
924 (second): Make it an alias for `cadr'.
925
926 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
927
928 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
929 types of display support faces now.
930
931 2000-08-05 Gerd Moellmann <gerd@gnu.org>
932
933 * pcvs.el (require): Require `cl' during compilation, only.
934
935 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
936 (toplevel): Remove `remq' and `remove' from autoloads.
937 (cl-fake-autoloads): New variable. If set, arrange for an error
938 when CL functions etc. are autoloaded.
939
940 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
941
942 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
943
944 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
945 popped up, but the user clicks outside the menu, return an empty
946 regexp (that causes unhighlight-regexp to have no effect).
947
948 * menu-bar.el (menu-bar-games-menu): Add Zone.
949
950 * hi-lock.el (toplevel): Require font-lock.
951
952 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
953
954 * ebnf2ps.el: Get around a bug on skip-chars-forward.
955 (ebnf-8-bit-chars): New var for bug fix.
956 (ebnf-string): Bug fix.
957
958 2000-08-03 Sam Steingold <sds@gnu.org>
959
960 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
961 instead of `buffer-string'.
962 (require 'cl): Always, not just when compiling.
963 `ignore-errors' in `interactive', `list*', `defun*' &c make this
964 necessary.
965
966 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
967
968 * international/mule-cmds.el (select-safe-coding-system): Make
969 the message text about selecting a safe coding system more clear.
970
971 2000-08-02 Gerd Moellmann <gerd@gnu.org>
972
973 * hi-lock.el: New file.
974
975 * play/zone.el: New file.
976
977 * replace.el (occur): Set tab-width in the *Occur* buffer to the
978 value of tab-width in the original buffer. Choose a line number
979 format that's a multiple of the original buffer's tab width, so
980 that lines appear right.
981
982 * textmodes/ispell.el (ispell): New function, replacing an alias.
983 Spell-check active region if in transient-mark-mode and mark
984 is active; otherwise spell-check buffer.
985
986 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
987
988 * ps-mule.el: Fix a customization problem on
989 ps-mule-font-info-database-default.
990
991 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
992
993 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
994 display-mouse-p instead of window-system.
995 (ebrowse-member-mode-map): Ditto.
996
997 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
998
999 * ebnf2ps.el: Update ps-print functions call. Indentation fix. Doc
1000 fix.
1001 (ebnf-version): New version number (3.2).
1002 (ebnf-format-color, ebnf-begin-job): Code fix.
1003
1004 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
1005
1006 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
1007 font lock support on window-system.
1008 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
1009
1010 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
1011 display-color-p, if fboundp, instead of window-system.
1012
1013 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
1014
1015 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
1016 instead of window-system.
1017
1018 * wid-edit.el (widget-choose): Use display-mouse-p instead of
1019 window-system.
1020 (widget-choice-mouse-down-action): Use display-popup-menus-p
1021 instead of window-system.
1022
1023 * strokes.el (strokes-file): Run the file name through
1024 convert-standard-filename.
1025 (strokes-mode): Call display-mouse-p instead of looking at
1026 window-system. Change the error message accordingly.
1027
1028 * progmodes/cpp.el (toplevel): Support faces on tty's.
1029
1030 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
1031 (lm-plot-square, lm-init-display): Don't use window-system.
1032
1033 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
1034 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
1035
1036 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
1037 instead of looking at window-system.
1038
1039 2000-07-30 Gerd Moellmann <gerd@gnu.org>
1040
1041 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
1042 of testing if iswitchb-prepost-hooks is bound, because the
1043 latter will always be true when invoking a recursive minibuffer
1044 from an active Iswitchb buffer.
1045
1046 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
1047
1048 * files.el (shell-quote-wildcard-pattern): New function.
1049 (insert-directory): Call it. Only prepend "\" to command on Unix
1050 and GNU/Linux systems.
1051
1052 2000-07-30 Gerd Moellmann <gerd@gnu.org>
1053
1054 * eshell/esh-groups.el: Change custom :link file names
1055 from `eshell.info' to `eshell'.
1056
1057 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
1058
1059 * dired.el (dired-build-subdir-alist): Expand subdirectory names
1060 correctly in recursive ange-ftp listings.
1061
1062 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1063
1064 * ps-print.el: Fix bug 1: if ps-font-size-internal,
1065 ps-header-font-size-internal and
1066 ps-header-title-font-size-internal variables are not set,
1067 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
1068 face text property is (foreground-color . COLOR) or
1069 `(background-color . COLOR)', ps-print crashes. Doc fix.
1070 (ps-print-version): New version number (5.2.4).
1071 (ps-plot-region): Code fix.
1072 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
1073 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
1074 Bug fix 2.
1075
1076 2000-07-30 Milan Zamazal <pdm@freesoft.cz>
1077
1078 * glasses.el (glasses-make-readable): Fix uncapitalization of
1079 identifiers like `myXMLDocument'.
1080
1081 2000-07-28 Karl Fogel <kfogel@red-bean.com>
1082
1083 * mail/mail-hist.el (mail-hist-previous-input)
1084 (mail-hist-next-input): Do the obvious code factorization.
1085 (mail-hist-retrieve-and-insert): New func, contains common
1086 code of above two.
1087 If inserting a message body, leave point at top.
1088
1089 2000-07-28 Sam Steingold <sds@gnu.org>
1090
1091 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
1092 Use `<=', not `<' to compare times!
1093 (ange-ftp-ls): Remove.
1094
1095 2000-07-27 Gerd Moellmann <gerd@gnu.org>
1096
1097 * play/cookie1.el: Add explanation of how to make cookie.el
1098 compatible with strfile(1) to comment.
1099
1100 * subr.el (remove, remq): New functions.
1101
1102 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
1103 escape `*' in regexps.
1104 (midnight-find): Reverse order of arguments in the funcall of
1105 TEST.
1106
1107 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
1108 and `.class'.
1109
1110 * play/meese.el: Add Commentary section.
1111
1112 2000-07-27 Alex Schroeder <alex@gnu.org>
1113
1114 * sql.el (sql-ms): Added autoload cookie.
1115 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
1116 (sql-oracle): Ditto.
1117 (sql-help): Doc change.
1118
1119 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
1120 types and exceptions.
1121
1122 2000-07-27 Alex Schroeder <alex@gnu.org>
1123
1124 * sql.el (sql-placeholder-history): New variable.
1125 (sql-query-placeholders-and-send): New function that will query
1126 the user and replace placeholders with user input.
1127 (sql-oracle): If running on NT, set comint-input-sender to
1128 sql-query-placeholders-and-send.
1129
1130 (sql-stop): If in the SQLi buffer, insert stop notification, else
1131 present it as a message.
1132
1133 2000-07-27 Alex Schroeder <alex@gnu.org>
1134
1135 * sql.el (sql-input-ring-separator): Doc change.
1136 (sql-input-ring-file-name): Doc change.
1137 (sql-interactive-mode): Use `sql-input-ring-separator' and
1138 `sql-input-ring-file-name' to set the comint-mode equivalents
1139 without making them local variables.
1140 (sql-stop): Don't bind `sql-input-ring-separator' and
1141 `sql-input-ring-file-name' dynamically to their comint-mode
1142 equivalents.
1143
1144 2000-07-27 Kenichi Handa <handa@etl.go.jp>
1145
1146 * international/mule.el (register-char-codings): New function.
1147 (make-coding-system): Handle `safe-chars' specification in the arg
1148 PROPERTY.
1149
1150 * international/mule-cmds.el
1151 (find-coding-systems-region-subset-p): This function deleted.
1152 (sort-coding-systems-predicate): New variable.
1153 (sort-coding-systems): New function.
1154 (find-coding-systems-region): Use
1155 find-coding-systems-region-internal.
1156 (find-coding-systems-string): Use find-coding-systems-region.
1157 (find-coding-systems-for-charsets): Check
1158 char-coding-system-table.
1159 (select-safe-coding-system-accept-default-p): New variable.
1160 (select-safe-coding-system): Mostly rewritten. New argument
1161 ACCEPT-DEFAULT-P.
1162 (select-message-coding-system): Call select-safe-coding-system
1163 with ACCEPT-DEFAULT-P arg.
1164 (reset-language-environment): Reset default-sendmail-coding-system
1165 to the default value iso-latin-1.
1166 (set-language-environment): Don't set the obsolete variable
1167 charset-origin-alist.
1168
1169 * international/codepage.el (cp-coding-system-for-codepage-1):
1170 Give `safe-chars' property to make-coding-system.
1171
1172 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
1173 calling select-message-coding-system twice.
1174
1175 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
1176 instead of `safe-charsets'.
1177 (cyrillic-alternativnyj): Likewise.
1178 (ccl-encode-alternativnyj): Don't check the charset
1179 cyrillic-iso8859-5.
1180
1181 2000-07-27 Kenichi Handa <handa@etl.go.jp>
1182
1183 * composite.el (compose-chars-after): Preserve match data.
1184
1185 2000-07-26 Sam Steingold <sds@gnu.org>
1186
1187 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
1188 (ange-ftp-real-file-newer-than-file-p): New function.
1189 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
1190 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
1191
1192 * tooltip.el (tooltip-float-time): Removed (use `float-time').
1193 * midnight.el (midnight-float-time): Ditto.
1194
1195 2000-07-26 Andreas Schwab <schwab@suse.de>
1196
1197 * files.el (normal-backup-enable-predicate): Correct
1198 interpretation of the return value of compare-strings.
1199
1200 2000-07-26 Gerd Moellmann <gerd@gnu.org>
1201
1202 * isearch.el (isearch-resume): New function.
1203 (isearch-done): Add something to command-history to resume
1204 the search.
1205 (isearch-yank-line, isearch-yank-word): Use
1206 buffer-substring-no-properties instead of buffer-substring.
1207
1208 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
1209 of flyspell-mouse-map.
1210
1211 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
1212 duplicate definition.
1213 (makefile-mode): Remove duplicate setting of local-abbrev-table.
1214
1215 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
1216 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
1217
1218 2000-07-25 Sam Steingold <sds@gnu.org>
1219
1220 * net/ange-ftp.el: Get modtime over the net.
1221 (ange-ftp-file-modtime): New function.
1222 (ange-ftp-write-region, ange-ftp-insert-file-contents)
1223 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
1224 Use it.
1225 (ange-ftp-dot-to-slash): New function.
1226 (ange-ftp-fix-name-for-vms): Use it.
1227
1228 * midnight.el (midnight-buffer-display-time): Use
1229 `with-current-buffer'.
1230
1231 2000-07-25 Gerd Moellmann <gerd@gnu.org>
1232
1233 * find-dired.el: Update copyright notice.
1234 (find-dired): Offer to kill a running `find'.
1235
1236 * enriched.el (enriched-face-ans): For a `foreground-color'
1237 property, return '(("x-color" COLOR))' so that COLOR will be
1238 output as a parameter of the x-color annotation. Likewise for the
1239 `background-color' property. In the case of normal face
1240 properties, don't return annotations for unspecified foreground
1241 and background face attributes.
1242
1243 2000-07-25 Kenichi Handa <handa@etl.go.jp>
1244
1245 * language/japan-util.el (japanese-katakana-region): Fix handling
1246 HANKAKU argument.
1247
1248 2000-07-25 Miles Bader <miles@gnu.org>
1249
1250 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
1251 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
1252 constrain-to-field.
1253
1254 2000-07-24 Andrew Innes <andrewi@gnu.org>
1255
1256 * timer.el (timer-activate-when-idle): Add optional parameter
1257 DONT-WAIT. Update docstring.
1258 (run-with-idle-timer): Specify extra parameter to
1259 timer-activate-when-idle, so that timer will be activated
1260 immediately if Emacs is already idle.
1261
1262 * w32-fns.el (w32-using-nt): Fix docstring.
1263
1264 2000-07-24 Dave Love <fx@gnu.org>
1265
1266 * mouse.el (popup-menu): Set last-command-event.
1267 (mouse-major-mode-menu-prefix): Declare.
1268
1269 2000-07-24 Gerd Moellmann <gerd@gnu.org>
1270
1271 * textmodes/flyspell.el: Update to author's version 1.5d.
1272
1273 * progmodes/hideshow.el: Update copyright notice.
1274
1275 * vcursor.el: Set maintainer to FSF, since author cannot
1276 be reached.
1277
1278 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
1279
1280 * info.el (Info-goto-emacs-key-command-node): Leave a space after
1281 the prompt.
1282
1283 * mouse.el (popup-menu): Run the keymap through indirect-function,
1284 in case it was defined with define-prefix-key. If the menu is a
1285 list of keymaps, look up the binding of user's choice in each one
1286 of the keymaps.
1287 (mouse-popup-menubar): If the global and local menu-bar keymaps
1288 don't have a prompt string, create one and insert it into the
1289 keymap. Don't barf if current-local-map returns nil.
1290
1291 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
1292
1293 * dired.el (dired-sort-R-check): Added to allow recursive listing
1294 to be undone.
1295 (dired-sort-other): Use it.
1296
1297 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1298
1299 * Release of cc-mode 5.27
1300
1301 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1302
1303 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
1304 c-beginning-of-statement-1 that caused a bad case of recursion
1305 which could consume a lot of CPU in large classes in languages
1306 that have in-expression classes (i.e. Java and Pike).
1307
1308 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
1309 statements before top level constructs (i.e. case 6 is moved
1310 before case 5 and is now case 4) to catch in-expression
1311 classes in top level expressions correctly.
1312
1313 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1314
1315 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
1316 objc-method-intro. Case 4 removed and case 5I added.
1317
1318 * cc-langs.el (c-append-paragraph-start): New variable used by
1319 c-common-init to get paragraph-start correct.
1320 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
1321 initialize paragraph-start to make it correct both with and
1322 without the javadoc special case.
1323
1324 * cc-mode.el (java-mode): Use c-append-paragraph-start to
1325 initialize paragraph-start for javadoc markup.
1326
1327 * cc-vars.el (c-style-variables-are-local-p): Incompatible
1328 change by defaulting this to t. It's motivated by the
1329 confusing behavior that otherwise arise from the style system
1330 when editing both java and non-java files at the same time
1331 (see the comments about style setting in c-common-init).
1332
1333 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1334
1335 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
1336 similar to the one in c-fill-paragraph to check the fill
1337 prefix from the adaptive fill function for sanity.
1338
1339 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1340
1341 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
1342 defun block.
1343
1344 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1345
1346 * cc-mode.texi Documented the change of cpp-macro.
1347
1348 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1349
1350 * cc-align.el (c-lineup-multi-inher): Handle lines with
1351 leading comma nicely. Extended to handle member initializers
1352 too.
1353
1354 * cc-engine.el: (c-beginning-of-inheritance-list,
1355 c-guess-basic-syntax): Fixed recognition of inheritance lists
1356 when the lines begins with a comma.
1357
1358 * cc-mode.texi: Updated doc for c-lineup-multi-inher.
1359
1360 * cc-vars.el (c-offsets-alist): Changed default for
1361 member-init-cont to c-lineup-multi-inher since it now handles
1362 member initializers and indents better for leading commas.
1363
1364 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1365
1366 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
1367 handling that caused class open lines to be recognized as
1368 statement-conts in some cases.
1369
1370 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
1371 guessed by the adaptive fill function unless point is on the
1372 first line of a block comment.
1373
1374 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
1375 when the buffer ends with a macro continuation char.
1376
1377 * cc-engine.el (c-guess-basic-syntax): Added support for
1378 function definitions as statements in Pike. The first
1379 statement in a lambda block is now labeled defun-block-intro
1380 instead of statement-block-intro.
1381
1382 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
1383 so that the class surrounding point is selected, not the one
1384 innermost in the state.
1385
1386 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
1387 recognition of switch labels having hanging multiline
1388 statements.
1389
1390 * cc-engine.el (c-beginning-of-member-init-list): Broke out
1391 some code in c-guess-basic-syntax to a separate function.
1392 * cc-engine.el (c-just-after-func-arglist-p): Fixed
1393 recognition of member inits with multiple line arglists.
1394 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
1395 member-init-cont when the commas are in funny places.
1396
1397 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1398
1399 * cc-defs.el (c-auto-newline): Removed this macro since it's
1400 not used anymore.
1401
1402 * cc-engine.el (c-looking-at-bos): New helper function.
1403 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
1404 inexpr and toplevel classes apart in Pike.
1405
1406 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
1407 of case 9A.
1408
1409 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
1410 constant, since "class" can introduce an in-expression class
1411 in Pike nowadays.
1412
1413 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1414
1415 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
1416 indentation on cpp-macro lines.
1417
1418 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
1419 a syntax modifier like comment-intro, to make it possible to
1420 get syntactic indentation for preprocessor directives. It's
1421 incompatible wrt to lineup functions on cpp-macro, but it has
1422 no observable effect in the 99.9% common case where cpp-macro
1423 is set to -1000.
1424
1425 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1426
1427 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
1428 member-init-cont when the preceding arglist is several lines.
1429
1430 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1431
1432 * cc-styles.el (c-style-alist): The basic offset for the BSD
1433 style corrected to 8.
1434
1435 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1436
1437 * cc-styles.el (c-style-alist): Adjusted the indentation of
1438 brace list openers in the gnu style.
1439
1440 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1441
1442 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
1443
1444 * cc-cmds.el (c-electric-brace, c-electric-slash,
1445 c-electric-star, c-electric-semi&comma, c-electric-colon,
1446 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
1447 when c-syntactic-indentation is nil.
1448
1449 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
1450 we were left at comments preceding the first statement when
1451 reaching the beginning of the buffer.
1452
1453 * cc-vars.el (c-syntactic-indentation): New variable to turn
1454 off all syntactic indentation.
1455
1456 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1457
1458 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
1459 between the text and the block comment ender when it hangs,
1460 depending on how many there are before the fill.
1461
1462 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1463
1464 * cc-engine.el (c-beginning-of-closest-statement): New helper
1465 function to go back to the closest preceding statement start,
1466 which could be inside a conditional statement.
1467 * cc-engine.el (c-guess-basic-syntax): Use
1468 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
1469
1470 * cc-engine.el (c-guess-basic-syntax): Better handling of
1471 arglist-intro, arglist-cont-nonempty and arglist-close when
1472 the arglist is nested inside parens. Cases 7A, 7C and 7F
1473 changed.
1474
1475 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
1476 up-to-date with javadoc 1.2.
1477
1478 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1479
1480 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
1481 multiline Pike type decls.
1482
1483 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1484
1485 * cc-cmds.el (c-indent-new-comment-line): Always break
1486 multiline comments in multiline mode, regardless of
1487 comment-multi-line.
1488
1489 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1490
1491 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
1492 fully::qualified::names in C++ member init lists. Preamble in
1493 case 5D changed.
1494
1495 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1496
1497 * cc-langs.el (c-common-init): Handling of obsolete variables
1498 moved to c-initialize-cc-mode. More compatible style override
1499 when using global style variables.
1500 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
1501 variables moved here.
1502
1503 * cc-mode.texi: Documented the special behavior of
1504 c-special-indent-hook as a style variable. Don't talk about
1505 doing (c-make-styles-buffer-local t) in a mode hook, since
1506 that's already too late to work right.
1507
1508 * cc-styles.el (c-make-styles-buffer-local): Flag style
1509 variable localness in c-style-variables-are-local-p to make
1510 the compatibility measure in c-common-init work well.
1511
1512 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
1513 longer contain set-from-style.
1514 * cc-styles.el (c-initialize-builtin-style): Don't check for
1515 set-from-style on c-special-indent-hook.
1516 * cc-styles.el (c-copy-tree): Obsolete. The standard function
1517 copy-alist is sufficient now.
1518
1519 * cc-styles.el (c-set-style, c-set-style-1,
1520 c-get-style-variables): Fixes to variable initialization so
1521 that duplicate entries in styles have the same effect
1522 regardless of DONT-OVERRIDE.
1523
1524 * cc-styles.el (c-set-style-2): Fixed bug where the
1525 initialization of inheriting styles failed when the
1526 dont-override flag is set.
1527
1528 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
1529 on this.
1530
1531 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
1532
1533 * cc-defs.el (c-forward-comment): Removed the workaround
1534 introduced in 5.38 since it had worse side-effects. If a line
1535 contains the string "//\"", it regarded the // as a comment
1536 start since the \ temporarily doesn't have escape syntax.
1537
1538 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
1539
1540 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
1541 ada-xref.el before ada-prj.el, so that the Project menu is created
1542 when ada-prj tries to add to it.
1543 (ada-activate-keys-for-case): Suppress the characters that are not
1544 part of the Ada syntax. Better compatibility with else-mode
1545 (ada-adjust-case-interactive): When auto-casing is not active,
1546 correctly insert newlines (used to insert only ^M). Prevent the
1547 syntax table from being changed in case of an error
1548 (or '_' becomes part of a word and some commands are confused).
1549 Do nothing if ada-auto-case is nil.
1550 (ada-after-keyword-p): Ignore keywords that are also attributes
1551 (ada-batch-reformat): Update usage comment
1552 (ada-call-from-contextual-menu): New function
1553 (ada-case-read-exceptions): Reinitialize the casing exception list
1554 first to nil first, so that the casing exception file can be
1555 shared.
1556 (ada-check-defun-name): Handles "configure" keyword for gnatdist
1557 files.
1558 (ada-compile-goto-error): Fix regexp used to detect a file:line
1559 anywhere in the error message
1560 (ada-contextual-menu-last-point): New variable
1561 (ada-create-keymap): If the variable delete-key-deletes-forward is
1562 t on XEmacs, it means that DEL should delete one character
1563 forward.
1564 (ada-create-menu): Use :included instead of :visible for XEmacs.
1565 New submenu "Options".
1566 (ada-end-stmt-re): Correctly indent "select ... then abort"
1567 statements.
1568 (ada-fill-comment-paragraph): Correctly delete all leading '--'
1569 even if they don't match ada-fill-comment-prefix Fix handling of
1570 paragraphs on the first or last line of a file.
1571 (ada-format-paramlist): Fix handling of default parameter values.
1572 (ada-get-body-name): New function.
1573 (ada-get-current-indent): Optimized by searchling directly for an
1574 existing generic part or a statement outside of it. Handle
1575 ada-indent-align-comments when indenting comments Replaced some
1576 regexps by testing directly the next character. This results in a
1577 huge speedup on some files. New indentation scheme for renames
1578 statements. Stop looking for the 'while' or 'for' associated with
1579 a 'loop' at the first semicolon encountered. A "return" can also
1580 match an anonymous access subprogram declaration.
1581 (ada-get-indent-noindent): Ignore strings and comments when
1582 looking for the keywords "record" and "private".
1583 (ada-goto-matching-decl-start): When matching "if", make sure we
1584 are not in fact seeing "end if". Ignore "when" statements except
1585 when initial keyword was "begin". Fix handling of nested
1586 procedures. Add a recursive call to this function to skip over
1587 other 'end' statmts. Fix indentation for "when .. => begin"
1588 (ada-in-open-paren-p): Fix indentation for complex boolean
1589 expressions, where 'and then', 'or else' and parenthesis
1590 statements are mixed up.
1591 (ada-in-paramlist-p): Skip comments while searching for the
1592 beginning Fix handling of operator declarations.
1593 (ada-indent-align-comments): New variable
1594 (ada-indent-current): Change the syntax table only in the
1595 protected section, so that we are sure it is restored correctly.
1596 (ada-indent-on-previous-lines): Use ada-use-indent and
1597 ada-with-indent Correctly indent "select ... then"
1598 (ada-indent-region): Slight speedup.
1599 (ada-indent-renames): New variable.
1600 (ada-last-which-function-subprog, ada-last-which-function-line):
1601 New variables
1602 (ada-looking-at-semi-private): Correctly indent the 'private'
1603 keyword when it is the first word in a package declaration.
1604 (ada-loose-case-word): Stop searching if at the end of the buffer.
1605 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
1606 even if point is not initially at the end of the word.
1607 (ada-matching-decl-start-re): Add "when".
1608 (ada-mode): Add support for abbrev-mode, outline-mode and
1609 which-func-mode Override the old find-file.el entry in
1610 ff-special-constructs since it is using the obsolete
1611 ada-spec-suffix variable
1612 (ada-no-auto-case): New function
1613 (ada-scan-paramlist): When parsing the argument type, accept
1614 spaces (as in "X 'Class", generated by Rational Rose).
1615 (ada-other-file-name): No longer loads the other file.
1616 (ada-popup-menu): Save and restore the current buffer and cursor
1617 position before and after displaying the menu.
1618 (ada-search-ignore-complex-boolean): New function.
1619 (ada-uncomment-region): Emacs21 already knows how to delete
1620 comments not starting in the first column.
1621 (ada-use-indent): New variable
1622 (ada-which-function): New function.
1623 (ada-with-indent): New variable
1624 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
1625 can be batch-compiled from the command line.
1626
1627 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
1628 Add to the menu when the file is loaded, not in ada-mode-hook.
1629 Add -toolbar to the default ddd command Switches moved from
1630 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
1631 ada-prj-default-comp-opt
1632 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
1633 Reference Manual to the menu
1634 (ada-check-current): rewritten as a call to ada-compile-current
1635 (ada-compile): Removed.
1636 (ada-compile-application, ada-compile-current, ada-check-current):
1637 Set the compilation-search-path so that compile.el automatically
1638 finds the sources in src_dir. Automatic scrollong of the
1639 compilation buffer. C-uC-cC-c asks for confirmation before
1640 compiling
1641 (ada-compile-current): New parameter, prj-field
1642 (ada-complete-identifier): Load the .ali file before doing
1643 processing
1644 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
1645 conform to gnatmake's behavior.
1646 (ada-find-file-in-dir): New function
1647 (ada-find-references): Set the environment variables for gnatfind
1648 (ada-find-src-file-in-dir): New function.
1649 (ada-first-non-nil): Removed
1650 (ada-gdb-application): Add support for jdb, the java debugger.
1651 (ada-get-ada-file-name): Load the original-file first if not done
1652 yet.
1653 (ada-get-all-references): Handles the new ali syntax (parent types
1654 are found between <>).
1655 (ada-initialize-runtime-library): New function
1656 (ada-mode-hook): Always load a project file when a file is opened,
1657 so that the casing exceptions are correctly read.
1658 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
1659 (ada-parse-prj-file): Use find-file-noselect instead of find-file
1660 to open the project file, since the latter does not work with
1661 speedbar Get default values before loading the prj file, or the
1662 default executable file name is wrong. Use the absolute value of
1663 src_dir to initialize ada-search-directories and
1664 compilation-search-path,... Add the standard runtime library to
1665 the search path for find-file.
1666 (ada-prj-default-debugger): Was missing an opening '{'
1667 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
1668 variables.
1669 (ada-prj-default-gnatmake-opt): New variable
1670 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
1671 buffers, the project file is the default one Save the windows
1672 configuration before displaying the menu.
1673 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
1674 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
1675 ...) regexp-quote identifiers names to support operators +,
1676 -,... in regexps.
1677 (ada-remote): New function.
1678 (ada-run-application): Erase the output buffer before starting the
1679 run Support remote execution of the application. Use
1680 call-process, or the arguments are incorrectly parsed
1681 (ada-set-default-project-file): Reread the content of the active
1682 project file, not the one from the current buffer When a project
1683 file is set as the default project, all directories are
1684 automatically associated with it.
1685 (ada-set-environment): New function
1686 (ada-treat-cmd-string): New special variable ${current}
1687 (ada-treat-cmd-string): Revised. The substitution is now done for
1688 any ${...} substring
1689 (ada-xref-current): If no body was found, compiles the spec
1690 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
1691 compiler to get rid of command line length limitations.
1692 (ada-xref-get-project-field): New function
1693 (ada-xref-project-files): New variable
1694 (ada-xref-runtime-library-specs-path)
1695 (ada-xref-runtime-library-ali-path): New variables
1696 (ada-xref-set-default-prj-values): Default run command now does a
1697 cd to the build directory. New field: main_unit Provide a default
1698 file name even if the current buffer has no prj file.
1699
1700 * ada-prj.el:
1701 Rewritten to show a tabbed-dialog.
1702 (ada-prj-add-ada-menu): Remove the map and name parameters.
1703 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
1704 New function
1705 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
1706 (ada-prj-load-from-file): New function
1707 (ada-prj-save): Always save fields that depend on the current buffer
1708 (ada-prj-show-value): New function
1709
1710 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
1711 Ada mode. This will allow us to display the Ada menu in any buffer
1712 we want (for project items).
1713 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
1714 number of spaces in the header.
1715
1716 2000-07-24 Dave Love <fx@gnu.org>
1717
1718 * ediff-init.el (ediff-region-help-echo): Bind face-help.
1719
1720 2000-07-23 Noah Friedman <friedman@splode.com>
1721
1722 * type-break.el (type-break): perform autosave.
1723 Suggested by Stephen Gildea <gildea@intouchsys.com>.
1724 (type-break-do-query): Cancel query schedule while performing
1725 actual query, to avoid possibility of a second query being made
1726 while first one is already in progress.
1727 (type-break-time-stamp-format): New variable.
1728 (type-break-time-stamp): New function.
1729 (type-break-time-warning): Use it.
1730 (type-break-keystroke-warning): Use it.
1731 (type-break-noninteractive-query): Use it.
1732
1733 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
1734 cookie.
1735 Use add-minor-mode to set minor-mode-alist, if available.
1736 (eldoc-echo-area-use-multiline-p): New user option.
1737 (eldoc-echo-area-multiline-supported-p): New variable.
1738 (eldoc-docstring-format-sym-doc): Use them.
1739 (eldoc-mode): If not using idle timers, append to local post and
1740 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
1741 (eldoc-display-message-no-interference-p): Don't interfere with
1742 edebug.
1743 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
1744 (eldoc-function-arglist): New function.
1745 (eldoc-function-argstring): Use it.
1746
1747 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
1748 auto save directory exists before calling directory-files.
1749
1750 2000-07-23 Dave Love <fx@gnu.org>
1751
1752 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
1753 ^o, ^u.
1754
1755 2000-07-21 Dave Love <fx@gnu.org>
1756
1757 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
1758 now passed to the function. It now works properly.
1759
1760 * smerge-mode.el (smerge-mode-menu): Fill it out.
1761
1762 2000-07-20 Gerd Moellmann <gerd@gnu.org>
1763
1764 * info-look.el (info-lookup): If *info* is shown in another frame
1765 on the same display, select that frame, instead of switching to
1766 the Info buffer in another window of the selected frame.
1767
1768 * simple.el (universal-argument-map): Bind numeric keypad keys
1769 kp-0 to kp-9 and kp-subtract.
1770 (digit-argument): Handle these keys.
1771
1772 2000-07-20 Dave Love <fx@gnu.org>
1773
1774 * net/goto-addr.el (goto-address-fontify): Don't bother with
1775 buffer-modified and read-only stuff -- irrelevant with overlays.
1776 Put an extra property on the overlays and use it to clean up in
1777 case goto-address is re-run.
1778
1779 2000-07-19 Richard M. Stallman <rms@gnu.org>
1780
1781 * timer.el (run-with-idle-timer): Doc fix.
1782
1783 * mail/mail-utils.el (mail-strip-quoted-names):
1784 Handle case where <...> appears inside "...".
1785 Use replace-match to edit the string more simply.
1786 (rmail-dont-reply-to): Cope with an unmatched ".
1787
1788 2000-07-19 Dave Love <fx@gnu.org>
1789
1790 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
1791 implementation.
1792
1793 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
1794 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
1795 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
1796
1797 2000-07-19 Gerd Moellmann <gerd@gnu.org>
1798
1799 * textmodes/refer.el: Correct maintainer's email address.
1800
1801 * progmodes/hideif.el: Correct author's email address.
1802 Fix typo in comment.
1803
1804 * xml.el: New file.
1805
1806 * mail/mailheader.el: Correct author's mail address.
1807
1808 * gnus/parse-time.el: Correct author's mail address.
1809
1810 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
1811
1812 * comint.el (comint-highlight-input, comint-highlight-face):
1813 New user options.
1814 (comint-input-ring-file-name): Change custom type.
1815 (comint-mode-map): Bind mouse-2.
1816 (comint-insert-clicked-input): New function.
1817 (comint-send-input): Handle input highlighting.
1818
1819 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
1820
1821 * mouse.el (popup-menu): New function.
1822 (mouse-major-mode-menu): Use it.
1823
1824 2000-07-18 Dave Love <fx@gnu.org>
1825
1826 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
1827 improvements.
1828
1829 2000-07-18 Gerd Moellmann <gerd@gnu.org>
1830
1831 * faces.el (face-font-selection-order)
1832 (face-font-family-alternatives): Add custom type.
1833
1834 2000-07-18 Dave Love <fx@gnu.org>
1835
1836 * cus-edit.el (custom-variable-reset-saved)
1837 (custom-variable-reset-standard): Remove unused bindings.
1838
1839 * rect.el (open-rectangle-line): Remove unused let.
1840
1841 * hl-line.el (hl-line-highlight): Check hl-line-mode.
1842
1843 2000-07-18 Gerd Moellmann <gerd@gnu.org>
1844
1845 * cdl.el: Fix `Maintainer' keyword.
1846
1847 * play/pong.el: Add author's email address.
1848
1849 2000-07-17 Sam Steingold <sds@gnu.org>
1850
1851 * files.el (insert-directory): Call `split-string' instead of
1852 re-implementing it.
1853
1854 2000-07-18 Gerd Moellmann <gerd@gnu.org>
1855
1856 * mail/vms-pmail.el: Change maintainer to FSF.
1857
1858 * net/goto-addr.el: Change maintainer to FSF.
1859
1860 * recentf.el: Update from author.
1861
1862 * info.el (Info-title-face-alist): Removed.
1863
1864 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
1865
1866 * eshell/eshell.el (eshell): Replace links to eshell.info with
1867 links to eshell, to avoid problems on systems where the manual is
1868 installed as `eshell'.
1869 * eshell/esh-cmd.el (eshell-cmd): Ditto.
1870 * eshell/em-smart.el (eshell-smart): Ditto.
1871 * eshell/em-banner.el (eshell-banner): Ditto.
1872 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
1873
1874 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
1875 same-file check in the MS-DOS version (it does support inodes).
1876
1877 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
1878
1879 * eshell/eshell.el (eshell-directory-name):
1880 Run default directory name through convert-standard-filename.
1881
1882 2000-07-18 Kenichi Handa <handa@etl.go.jp>
1883
1884 * international/mule-cmds.el (select-safe-coding-system):
1885 Fix typo in the comment.
1886
1887 * language/european.el (compound-text):
1888 Force katakana-jisx0201 to be designated to G1.
1889
1890 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
1891 Don't translate some national variant characters of latin-jisx0201.
1892 (x-ctext): Force katakana-jisx0201 to be designated to G1.
1893
1894 * international/kkc.el (kkc-after-update-conversion-functions):
1895 New variable.
1896 (kkc-update-conversion): Run functions in it at the tail.
1897
1898 2000-07-16 John Wiegley <johnw@gnu.org>
1899
1900 * lisp/align.el (align-newline-and-indent):
1901 Adding new function. for auto-aligning blocks of code on RET.
1902 (align-region): Fixed badly formatted minibuffer message.
1903
1904 2000-07-17 Kenichi Handa <handa@etl.go.jp>
1905
1906 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
1907 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
1908 the conversion list at first if appropriate.
1909 (kkc-next): Don't update kkc-next-count here.
1910 (kkc-prev): Don't update kkc-prev-count here.
1911 (kkc-show-conversion-list-update): Fix setting up of conversion
1912 list message.
1913
1914 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
1915
1916 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
1917
1918 2000-07-16 Dave Love <fx@gnu.org>
1919
1920 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
1921 function to be more specific.
1922
1923 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
1924 non-string help-echo.
1925 (widget-types-convert-widget): Defsubst it.
1926 (widget-echo-help): Try to cope with a help-echo function of two
1927 possible sorts.
1928
1929 2000-07-15 Jason Rumney <jasonr@gnu.org>
1930
1931 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
1932 Declare as obsolete.
1933
1934 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
1935
1936 2000-07-14 Gerd Moellmann <gerd@gnu.org>
1937
1938 * hilit-chg.el: Fix typo.
1939
1940 2000-07-14 Dave Love <fx@gnu.org>
1941
1942 * info.el (Info-mode-menu): Fix use of :help, :enable.
1943
1944 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
1945
1946 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
1947
1948 2000-07-13 Dave Love <fx@gnu.org>
1949
1950 * emacs-lisp/easymenu.el: Doc fixes.
1951 (easy-menu-remove): Defalias to ignore.
1952
1953 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
1954 Call throw correctly.
1955
1956 2000-07-13 Gerd Moellmann <gerd@gnu.org>
1957
1958 * faces.el (frame-background-mode): Doc fix.
1959
1960 * simple.el (eval-expression-print-length): Change custom type to
1961 allow entering nil as value.
1962
1963 2000-07-13 Dave Love <fx@gnu.org>
1964
1965 * progmodes/fortran.el (fortran-imenu-generic-expression):
1966 Change definition layout.
1967 (fortran-mode-menu): Reinstate customize entries.
1968
1969 * cus-edit.el (custom-group-menu-create, customize-menu-create):
1970 Use :filter, per old XEmacs code.
1971
1972 2000-07-12 Gerd Moellmann <gerd@gnu.org>
1973
1974 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
1975 event when deciding what to send to the terminal.
1976
1977 2000-07-12 Dave Love <fx@gnu.org>
1978
1979 * cus-start.el: Add optional version as 4th element of specs and
1980 use it for several things new in v21. Remove load-path. Fix type
1981 of line-number-display-limit.
1982
1983 2000-07-11 Dave Love <fx@gnu.org>
1984
1985 * progmodes/fortran.el: Don't require easymenu.
1986 Use repeat counts in various regexps.
1987 (fortran-mode-syntax-table): Defvar directly.
1988 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
1989 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
1990 Use defvar, not defconst.
1991 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
1992 (fortran-mode): Set fortran-comment-line-start-skip,
1993 fortran-comment-line-start-skip, dabbrev-case-fold-search.
1994 (fortran-comment-indent): Use defsubst.
1995 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
1996 Use fortran-comment-indent, not fortran-comment-indent-function.
1997 (fortran-comment-region, fortran-electric-line-number): Simplify.
1998 (fortran-auto-fill): New function.
1999 (fortran-do-auto-fill): Deleted.
2000 (fortran-find-comment-start-skip):
2001 Check for non-null comment-start-skip.
2002 (fortran-auto-fill-mode, fortran-fill-statement):
2003 Use fortran-auto-fill.
2004 (fortran-fill): Use fortran-auto-fill. Check for null
2005 comment-start-skip. Simplify final clause and use end-of-line finally.
2006
2007 * widget.el (widget-plist-member): New alias.
2008
2009 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
2010
2011 * eshell/esh-module.el (toplevel): Reference
2012 byte-compile-current-file only if it is bound.
2013
2014 2000-07-10 Gerd Moellmann <gerd@gnu.org>
2015
2016 * dired.el: Don't require `dired-aux'.
2017
2018 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
2019
2020 * dired-aux.el (dired-show-file-type): New function.
2021 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
2022 (dired-show-file-type): Add autoload.
2023
2024 2000-07-10 Kenichi Handa <handa@etl.go.jp>
2025
2026 * international/mule-diag.el (describe-font): Adjusted for the
2027 change of fontset-info.
2028 (print-fontset): Likewise.
2029
2030 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
2031
2032 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
2033
2034 2000-07-07 Gerd Moellmann <gerd@gnu.org>
2035
2036 * bindings.el: Bind `[delete]' to delete-char.
2037
2038 * dired.el (dired-find-alternate-file): New function.
2039 (dired-mode-map): Bind `a' to dired-find-alternate-file.
2040 (toplevel): Require dired-aux when compiling.
2041 (dired-buffers): Move defvar within file to avoid compiler warning.
2042
2043 * info.el (Info-last-search): Variable removed.
2044 (Info-search-history): New variable.
2045 (Info-search): New Info-search-history.
2046
2047 * battery.el, info-look.el: Change author's mail address.
2048
2049 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
2050
2051 * mail/rmail.el (rmail-clear-headers): Don't throw an error
2052 if rmail-ignored-headers is nil.
2053 (rmail-retry-failure): Bind rmail-ignored-headers and
2054 rmail-displayed-headers to nil.
2055
2056 2000-07-06 Gerd Moellmann <gerd@gnu.org>
2057
2058 * lpr.el (lpr-page-header-switches): Add `-h' switch.
2059 (print-region-1): Don't hard code `-h' here.
2060
2061 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
2062
2063 2000-07-01 Francesco Potorti` <pot@gnu.org>
2064
2065 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
2066 exim can use "your message" instead of "the message".
2067
2068 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
2069
2070 * facemenu.el: Docstrings fixes.
2071 (facemenu-get-face): Don't use internal-find-face.
2072 (facemenu-iterate): Rename arg to match the docstring.
2073
2074 * newcomment.el (uncomment-region): Be more careful when skipping
2075 backwards over `=' not to bump into BOBP.
2076
2077 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
2078
2079 * ediff-diff.el (ediff-wordify): Use syntax table.
2080 * ediff-init.el (ediff-has-face-support-p): Use
2081 ediff-color-display-p.
2082 (ediff-color-display-p): Use display-color-p, changed to defun
2083 from defsubst.
2084 Got rid of special cases for NeXT and OS/2.
2085 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
2086 face.
2087
2088 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
2089
2090 * emacs-lisp/lucid.el: Require CL.
2091 (copy-tree, remprop): Remove, it's provided by CL.
2092 (map-keymap): Define in terms of cl-map-keymap.
2093 (extent-property, set-extent-end-glyph): New functions.
2094
2095 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
2096
2097 2000-07-05 Gerd Moellmann <gerd@gnu.org>
2098
2099 * Makefile.in (DONTCOMPILE): Add comment that the name may
2100 not be changed without changing the make-dist script.
2101
2102 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
2103 (cl-mapc): Use mapc instead of cl-old-mapc.
2104
2105 2000-07-05 Andrew Innes <andrewi@gnu.org>
2106
2107 * makefile.nt: Add support for `bootstrap' and related targets.
2108
2109 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
2110
2111 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
2112 (easy-menu-do-define): Use `menu-item' format.
2113 Handle case where easy-menu-create-menu returns a symbol.
2114 Manually call the potential top-level filter in the function binding.
2115 (easy-menu-filter-return): New arg NAME.
2116 Convert to a keymap if MENU is an XEmacs menu.
2117 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
2118 (easy-menu-converted-items-table, easy-menu-convert-item):
2119 New var and fun to memoize easy-menu-convert-item-1.
2120 (easy-menu-do-add-item): Use it.
2121 (easy-menu-create-menu): Use easy-menu-convert-item.
2122 Wrap easy-menu-filter-return around any :filter specification.
2123 Don't convert the menu if a filter was specified.
2124 Tell easy-menu-make-symbol not to check for MENU being an expression.
2125 (easy-menu-make-symbol): New arg NOEXP.
2126
2127 2000-07-05 Gerd Moellmann <gerd@gnu.org>
2128
2129 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
2130 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
2131 (eval-defun): If called with prefix arg, instrument code for
2132 Edebug.
2133
2134 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
2135 similar to that of eval-defun.
2136
2137 2000-07-04 Dave Love <fx@gnu.org>
2138
2139 * hl-line.el (hl-line-overlay): Make it permanent-local.
2140
2141 * calendar/todo-mode.el: Replaced with a working version, based on
2142 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
2143
2144 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
2145
2146 * paths.el (prune-directory-list): New function.
2147 (Info-default-directory-list): Rewritten to more methodically
2148 enumerate a big list of possible info directories (based on the
2149 list used by the standalone info reader).
2150
2151 * info.el (info-initialize): Use prune-directory-list to remove
2152 non-existent directories from Info-directory-list.
2153
2154 * paths.el (Info-default-directory-list): Try a list of possible
2155 info-directories instead of a single one. Add the possible
2156 info directory "/usr/share/info".
2157
2158 * woman.el (woman-man.conf-path): Explicitly include the debian
2159 man-db config file "/etc/manpath.config".
2160 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
2161 are present in `manpath.config'.
2162 (woman-manpath): Include "/usr/share/man".
2163
2164 2000-07-03 Gerd Moellmann <gerd@gnu.org>
2165
2166 * frame.el (blink-cursor-mode): Don't hide cursor initially.
2167
2168 * startup.el (command-line): Initialize blink-cursor based
2169 on window-system.
2170
2171 * frame.el (blink-cursor): Default to nil if not running under
2172 a window-system.
2173
2174 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
2175 (face-x-resources): Remove duplicate entry for :font.
2176
2177 * textmodes/refer.el (refer-find-entry-internal): Use some-window
2178 instead of cycling through windows with next-window.
2179
2180 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
2181 of cycling through windows with next-window.
2182
2183 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
2184 of cycling through windows with next-window.
2185
2186 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
2187 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
2188 instead of cycling through windows with next-window.
2189
2190 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
2191 instead of cycling through windows with next-window.
2192
2193 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
2194 of cycling through windows with next-window.
2195
2196 * terminal.el (te-process-output): Use walk-windows instead of
2197 cycling through windows with next-window.
2198
2199 * server.el (server-switch-buffer): Use some-window instead of
2200 cycling through windows with next-window.
2201
2202 * window.el (some-window): New function.
2203 (walk-windows): Remove reference to walk-windows-start.
2204
2205 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
2206
2207 2000-07-03 Richard Stallman <rms@gnu.org>
2208
2209 * window.el (walk-windows): Guarantee termination by keeping a list
2210 of all the windows already handled.
2211
2212 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
2213
2214 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
2215 window-system.
2216
2217 * man.el (Man-notify-when-ready): Don't use window-system. If
2218 Man-notify-method is newframe, and the display is not
2219 multi-frame, select the frame created for the man page.
2220 (Man-init-defvars): Doc fix.
2221
2222 2000-06-28 Gerd Moellmann <gerd@gnu.org>
2223
2224 * faces.el (region): Change background color for light background.
2225
2226 * ediff-wind.el (ediff-setup-control-frame): Remove :box
2227 attribute from mode-line face of Ediff control frame.
2228
2229 * replace.el (query-replace-map): Bind `e' like `E'.
2230
2231 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
2232
2233 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
2234 Change name to "Select All".
2235
2236 * dos-fns.el (convert-standard-filename): Fix last change.
2237
2238 2000-06-27 Gerd Moellmann <gerd@gnu.org>
2239
2240 * help.el (describe-variable): Don't insert a second `'s' in front
2241 of the string `value is shown below'. Since the syntax-table is
2242 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
2243 an existing `'s', so that this won't be deleted.
2244
2245 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
2246 * pcmpl-unix.el: New files.
2247
2248 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
2249
2250 * wid-edit.el (widget-member): Use the new plist-member.
2251
2252 2000-06-26 Gerd Moellmann <gerd@gnu.org>
2253
2254 * replace.el (perform-replace): Undo change of 2000-04-04.
2255 Instead, move backward 1 character at the end of the loop when
2256 necessary.
2257
2258 * faces.el (fringe): Change face for different backgrounds.
2259
2260 * eshell/esh-module.el (toplevel): Load defgroup's differently;
2261 patch from John.
2262
2263 * eshell/*.el: Change spelling of the Free Software Foundation.
2264
2265 * eshell/esh-toggle.el: Removed.
2266
2267 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
2268
2269 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
2270 interactively.
2271
2272 2000-06-26 Alex Schroeder <alex@gnu.org>
2273
2274 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
2275 `define-key'; instead of checking `(emacs-version)' check for
2276 `set-keymap-parent' and `set-keymap-name' directly. Add entries
2277 for `;' and `o' which might be electric.
2278
2279 (sql-electric-stuff): New user option.
2280 (sql-magic-go): New function which uses `sql-electric-stuff'.
2281 (sql-magic-semicolon): New function which uses
2282 `sql-electric-stuff'.
2283
2284 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
2285 is not fboundp.
2286
2287 (sql-oracle-options): New variable.
2288 (sql-oracle): Use it.
2289
2290 (sql-imenu-generic-expression): Doc change.
2291 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
2292 is used.
2293
2294 (sql-informix): Added command line parameter "-" to force
2295 sql-informix-program to use stdout.
2296
2297 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
2298
2299 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
2300 (cp864-decode-table): Doc fix.
2301 (cp720-decode-table): New variable, supports the Arabic OEM
2302 codepage used by Windows.
2303 (cp737-decode-table): New, Greek OEM codepage used by Windows.
2304
2305 2000-06-23 Dave Love <fx@gnu.org>
2306
2307 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
2308 (font-lock-fontify-anchored-keywords): Use
2309 line-beginning-position.
2310 (global-font-lock-mode): Use mapc.
2311
2312 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
2313
2314 * eshell/esh-module.el: Require CL when compiling.
2315
2316 2000-06-23 Gerd Moellmann <gerd@gnu.org>
2317
2318 * comint.el (comint-substitute-in-file-name): Call replace-match
2319 with second and third arg t.
2320
2321 * cus-edit.el (custom-button-face, custom-button-pressed-face):
2322 Specify foreground color.
2323
2324 * faces.el (tool-bar, mode-line, header-line): Specify foreground
2325 color.
2326
2327 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
2328
2329 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
2330 cddr instead of cdddr.
2331
2332 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
2333 instead of copy-list.
2334
2335 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
2336 of copy-list.
2337
2338 * subdirs.el: Add eshell subdirectory.
2339
2340 * eshell: New subdirectory containing the Eshell package.
2341
2342 * pcomplete.el: New file.
2343
2344 2000-06-23 Paul Eggert <eggert@twinsun.com>
2345
2346 * mail/mailpost.el (post-mail-send-it): Make sure file has
2347 proper permissions from birth.
2348
2349 * files.el (basic-save-buffer-2): When temporarily setting
2350 file modes, set them to current modes plus 0200, not to 0777.
2351
2352 * emerge.el (emerge-make-temp-file): Make sure file has proper
2353 permissions from birth.
2354
2355 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
2356
2357 * files.el (make-backup-file-name-1): On DOS/Windows, run the
2358 backup file name through convert-standard-filename.
2359
2360 * dos-fns.el (convert-standard-filename): Convert leading
2361 directories as well. When long file names are supported, convert
2362 characters that are invalid in Windows file names.
2363
2364 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2365
2366 * ps-print.el: Fix bug: if ^L is the very first buffer character,
2367 ps-print crashes. New feature: page selection for printing. Create
2368 raw-text-unix coding system for XEmacs. Doc fix.
2369 (ps-print-version): New version number (5.2.3).
2370 (ps-plot-region): Bug fix.
2371 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
2372 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
2373 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
2374 funs.
2375 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
2376 (ps-last-page): New vars.
2377
2378 2000-06-21 Gerd Moellmann <gerd@gnu.org>
2379
2380 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
2381 empty option string.
2382
2383 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
2384
2385 * man.el (man): Doc fix.
2386
2387 2000-06-21 Kenichi Handa <handa@etl.go.jp>
2388
2389 * international/mule-cmds.el (set-language-info-alist): Docstring
2390 fixed.
2391
2392 2000-06-20 Gerd Moellmann <gerd@gnu.org>
2393
2394 * version.el (emacs-version): Use ISO date format.
2395
2396 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
2397 instead of `M-backspace'.
2398
2399 * simple.el (turn-off-auto-fill): New function.
2400
2401 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
2402
2403 * jit-lock.el (with-buffer-prepared-for-jit-lock):
2404 Renamed from with-buffer-prepared-for-font-lock and use
2405 inhibit-modification-hooks rather than setting *-change-functions.
2406 Update all functions to use the new name.
2407 (jit-lock-first-unfontify-pos): New semantics (and doc).
2408 (jit-lock-mode): Make non-interactive.
2409 Don't automatically turn on font-lock.
2410 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
2411 Always use jit-lock-after-change.
2412 Remove and restore font-lock-after-change-function.
2413 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
2414 (jit-lock-after-unfontify-buffer): Remove.
2415 (jit-lock-stealth-fontify):
2416 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
2417 (jit-lock-after-change): Set the `fontified' text-prop to nil.
2418
2419 2000-06-20 Sam Steingold <sds@gnu.org>
2420
2421 * emacs-lisp/cl-indent.el (toplevel): Indent
2422 `print-unreadable-object' properly. Untabify.
2423
2424 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
2425
2426 * textmodes/reftex.el (reftex-find-citation-regexp-format):
2427 Support for bibentry.
2428 (reftex-compile-variables): Fixed problem with end of section-re.
2429
2430 * texmodes/reftex-dcr.el (reftex-view-crossref,
2431 reftex-view-crossref-from-bibtex):
2432 Deal with changed `reftex-find-citation-regexp-format'.
2433 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
2434 Replaced `remprop' with `put'.
2435 (reftex-view-crossref, reftex-view-crossref-when-idle):
2436 Support for bibentry.
2437
2438 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
2439 New entry for bibentry package.
2440
2441 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
2442 Regexp also matches "\nobibliography".
2443
2444 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
2445 Call `reftex-ensure-write-access' before doing anything.
2446 (reftex-ensure-write-access): New function.
2447
2448 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
2449
2450 * progmodes/idlwave.el: File re-installed (update to version 4.2)
2451
2452 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
2453
2454 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
2455
2456 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
2457
2458
2459 2000-06-20 Dave Love <fx@gnu.org>
2460
2461 * faces.el (frame-background-mode): Use set-default, not set, in
2462 setter.
2463 (frame-update-faces, frame-update-face-colors): Define with
2464 defalias.
2465
2466 * enriched.el (enriched-decode-foreground)
2467 (enriched-decode-background): Don't use internal-find-face.
2468
2469 * apropos.el: Doc fixes.
2470
2471 * cus-edit.el (customize-changed-options): Check arg.
2472 (customize-version-lessp): Don't require decimal point.
2473
2474 * custom.el (defcustom, defgroup): Doc fix.
2475
2476 * newcomment.el (comment) <defgroup>: Add :version.
2477 (comment-multi-line): Doc fix.
2478
2479 * emulation/mlsupport.el (define-hooked-local-abbrev,
2480 define-hooked-global-abbrev): Fix, using define-abbrev.
2481
2482 2000-06-19 Gerd Moellmann <gerd@gnu.org>
2483
2484 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
2485 the whole buffer.
2486
2487 2000-06-19 Dave Love <fx@gnu.org>
2488
2489 * menu-bar.el (menu-bar-options-save): New function.
2490 (menu-bar-options-menu): Use it.
2491 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
2492 Simplify.
2493
2494 2000-06-19 Andreas Schwab <schwab@suse.de>
2495
2496 * progmodes/etags.el (tags-query-replace): Put new parameters
2497 START and END at the end, for backward compatibility.
2498
2499 2000-06-19 Kenichi Handa <handa@etl.go.jp>
2500
2501 * international/codepage.el:
2502 (cp-coding-system-for-codepage-1): Delete special codes for
2503 generating xxx-dos coding system because now a CCL based coding
2504 system can handle EOL conversion by default.
2505
2506 * international/mule.el (make-coding-system): Generate subsidiary
2507 coding systems for EOL handling variants even for a CCL based
2508 coding system.
2509
2510 2000-06-19 Kenichi Handa <handa@etl.go.jp>
2511
2512 * international/isearch-x.el (isearch-minibuffer-input-method)
2513 (isearch-minibuffer-input-method-function): These variables
2514 deleted.
2515 (isearch-with-input-method): Don't use the above variables.
2516 (isearch-process-search-multibyte-characters): Likewise. Call
2517 read-string with the arg INHERIT-INPUT-METHOD t.
2518
2519 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
2520
2521 * font-lock.el (font-lock-after-fontify-buffer)
2522 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
2523
2524 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
2525 Use consistent make-local-variable style for font-lock-fontified.
2526 (jit-lock-fontify-buffer):
2527 Don't bother checking for font-lock-mode and jit-lock-mode.
2528
2529 * time.el: Remove trailing ^M that prevent CVS-merging.
2530
2531 2000-06-16 Gerd Moellmann <gerd@gnu.org>
2532
2533 * Makefile.in (distclean): New target.
2534
2535 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
2536
2537 * Makefile.in (srcdir): Define for update-subdirs.
2538
2539 2000-06-16 Gerd Moellmann <gerd@gnu.org>
2540
2541 * find-lisp.el: New file.
2542
2543 2000-06-16 Andrew Innes <andrewi@gnu.org>
2544
2545 * time.el (display-time-mail-function): New variable, to allow
2546 external packages to indicate when new mail is available.
2547 (display-time-update): Use it.
2548
2549 2000-06-16 Kenichi Handa <handa@etl.go.jp>
2550
2551 * international/mule.el (mule-version): Change version name to
2552 SAKAKI. AOI has already been used by Meadow.
2553
2554 * international/quail.el (quail-show-guidance-buf): To find the
2555 bottom window (but minibuffer), pay attention to the height of
2556 minibuffer.
2557
2558 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
2559
2560 * arc-mode.el (archive-mode-map): Use the new menu-item format for
2561 menu-bar menus. Add help strings. Don't remove the Edit menu
2562 from the menu bar, as the menu bar has enough space now.
2563
2564 * Makefile.in (SHELL): Make sure /bin/sh is used.
2565
2566 * woman.el (woman-man-buffer): Fix bold and underlined CJK
2567 characters, which use series of two ^H characters instead of one.
2568
2569 2000-06-15 Gerd Moellmann <gerd@gnu.org>
2570
2571 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
2572 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
2573 functions.
2574 (Info-find-node-2): Try a case-sensitive search first, then
2575 do a case-insensitive search.
2576
2577 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
2578 tutorials.
2579
2580 * complete.el (PC-env-vars-alist): New variable.
2581 (PC-complete-as-file-name): New function.
2582 (partial-completion-mode): Initialize PC-env-vars-alist from
2583 process-environment.
2584 (PC-do-completion): Handle completion of env vars.
2585
2586 * info.el (Info-set-mode-line): Show file name in mode line,
2587 use `*Info*' instead of `Info:'.
2588
2589 * startup.el (command-line-1): Change copyright messages to year
2590 2000.
2591
2592 2000-06-15 Dave Love <fx@gnu.org>
2593
2594 * net/goto-addr.el (goto-address-fontify): Use keymap property,
2595 not local-map.
2596
2597 2000-06-15 Kenichi Handa <handa@etl.go.jp>
2598
2599 * international/mule.el (set-buffer-file-coding-system): Almost
2600 rewritten to handle `undecided' as no-op.
2601
2602 2000-06-14 Gerd Moellmann <gerd@gnu.org>
2603
2604 * Makefile.in: New file.
2605
2606 * Makefile: Removed.
2607
2608 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
2609 (goto-address-highlight-keymap): Bind C-c RET.
2610
2611 2000-06-14 Kenichi Handa <handa@etl.go.jp>
2612
2613 * mail/sendmail.el (sendmail-send-it): The temporary buffer
2614 inherits buffer-file-coding-system of the current buffer.
2615
2616 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
2617 0. Give correct argument to set-auto-coding-function.
2618 (tar-expunge): For goto-char, use (point-min), not 0.
2619 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
2620 (tar-subfile-save-buffer): Likewize.
2621
2622 * international/mule.el
2623 (after-insert-file-set-buffer-file-coding-system): Call
2624 set-buffer-file-coding-system with the arg FORCE t.
2625
2626 2000-06-13 Gerd Moellmann <gerd@gnu.org>
2627
2628 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
2629 nil. Contemporary sendmails issue an X-Authentication-Warning if
2630 the sender is set with `-f'.
2631
2632 2000-06-13 Dave Love <fx@gnu.org>
2633
2634 * help.el (describe-function-1): Kluge around cases of functions
2635 fset to subrs whose doc doesn't match their symbol-name.
2636
2637 * image.el (insert-image): Default STRING to a space.
2638
2639 * info.el Doc fixes.
2640 (Info-build-node-completions): Match Ref tags.
2641
2642 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
2643
2644 * frame.el (display-multi-frame-p, display-multi-font-p): New
2645 defaliases for display-graphic-p.
2646
2647 * hl-line.el: Fixed a typo in commentary.
2648
2649 2000-06-13 Kenichi Handa <handa@etl.go.jp>
2650
2651 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
2652 fixed.
2653
2654 2000-06-12 Dave Love <fx@gnu.org>
2655
2656 * image.el (insert-image): Save a little consing.
2657
2658 2000-06-12 Kenichi Handa <handa@etl.go.jp>
2659
2660 * language/tibet-util.el: Convert all tibetan-1-column characters
2661 to the corresponding tibetan characters.
2662 (tibetan-add-components): Delete code for the special treatment of
2663 'a chung.
2664
2665 * language/tibetan.el (tibetan-composable-pattern): Fix previous
2666 change.
2667 (tibetan-vowel-transcription-alist): More rules added.
2668 (tibetan-composite-vowel-alist): New variable.
2669 (tibetan-precomposition-rule-alist): More rules added.
2670
2671 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
2672
2673 * startup.el (command-line): Only call menu-bar-mode if interactive.
2674
2675 * thingatpt.el (toplevel symbol-properties):
2676 * textmodes/makeinfo.el (makeinfo-compile):
2677 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
2678 * progmodes/hideif.el (hif-compress-define-list)
2679 (hide-ifdef-use-define-alist):
2680 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
2681 (ange-ftp-vms-add-file-entry):
2682 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
2683 * man.el (Man-build-man-command):
2684 * mail/rnewspost.el (news-reply-header-hook):
2685 * info.el (Info-insert-dir):
2686 * emulation/mlconvert.el (backward-word, forward-word, setq):
2687 * emacs-lisp/gulp.el (gulp-send-requests):
2688 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
2689 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
2690 (byte-optimize-apply, end of file):
2691 * emacs-lisp/advice.el (ad-advice-class-completion-table)
2692 (ad-make-freeze-definition):
2693 * startup.el (command-line, command-line-1): Don't quote lambdas.
2694
2695 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
2696 (cvs-cleanup-removed): New function.
2697 (cvs-cleanup-functions): New var.
2698 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
2699 some flexibility in specifying additional entries to auto-cleanup.
2700 (cvs-quickdir): New function.
2701 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
2702 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
2703 (cvs-mode-find-file): Check that we are on a filename or dirname
2704 when invoked through a mouse-click.
2705 (cvs-full-path): Remove.
2706 (cvs-dired-action): Re-introduced.
2707 (cvs-dired-noselect): Use it.
2708 (vc-post-command-functions): use this new hook if available.
2709
2710 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
2711 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
2712 (cvs-filename-map, cvs-dirname-map): Remove.
2713 (cvs-default-action): Remove.
2714 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
2715 if the arg is really a keymap.
2716 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
2717 Don't hardcode the mapping from state (aka type) to face, but check
2718 the var cvs-fi-<type>-face instead.
2719 (cvs-fileinfo-from-entries): New function.
2720
2721 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
2722 Docstring fix.
2723 (cvs-find-file-and-jump): Change default to be safer.
2724 (cvs-mode-diff-map): Define it as a function as well.
2725 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
2726 Bind mouse-2 in this global map rather than with text-properties.
2727
2728 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
2729 file to resolve the ambiguity between C(conflict) and C(need-merge).
2730
2731 2000-06-12 Kenichi Handa <handa@etl.go.jp>
2732
2733 * international/mule.el (set-buffer-file-coding-system): If
2734 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
2735 unconditionally.
2736
2737 2000-06-12 Dave Love <fx@gnu.org>
2738
2739 * wid-edit.el (widget-specify-button): Really suppress the face if
2740 required.
2741
2742 2000-06-11 Gerd Moellmann <gerd@gnu.org>
2743
2744 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
2745
2746 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
2747
2748 * imenu.el (imenu-generic-expression): Docstring fix.
2749
2750 * composite.el (composition-function-table): Move the `put'
2751 below the autoload cookie so we can load the file before loaddefs.
2752
2753 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
2754
2755 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
2756 Handle easy-mmode-define-global-mode.
2757 For complex macros like define-minor-mode that can generate
2758 several autoload entries, try to autoload entries in the
2759 macroexpanded code.
2760
2761 * emacs-lisp/easy-mmode.el (define-minor-mode):
2762 If KEYMAP is a symbol, just use it.
2763 Use byte-compile-current-file and load-file-name to infer the
2764 proper :require to pass to defcustom.
2765 Wrap the hook var into `progn' so as not to autoload it.
2766 Add a :autoload-end cookie.
2767 Be more careful about the evaluation of KEYMAP.
2768 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
2769 (define-derived-mode): Move define-abbrev-table outside of defvar.
2770
2771 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
2772
2773 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
2774 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
2775 (backup-compiled-files): Ignore errors during `tar'.
2776 (bootstrap): Make autoloads before elc files.
2777
2778 2000-06-10 Kenichi Handa <handa@etl.go.jp>
2779
2780 * international/mule.el (set-buffer-file-coding-system): If one of
2781 undecided-XXX is specified, change only EOL conversion.
2782
2783 * international/mule-conf.el (unix): New alias for the coding
2784 system undecided-unix.
2785
2786 2000-06-09 Dave Love <fx@gnu.org>
2787
2788 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
2789
2790 * progmodes/executable.el: Byte compile dynamic.
2791 (executable-insert): Change custom type.
2792 (executable-find): Add autoload cookie.
2793 (executable-make-buffer-file-executable-if-script-p): New
2794 function. After Noah Friedman.
2795
2796 * files.el (after-save-hook): Customize, with
2797 executable-make-buffer-file-executable-if-script-p as an option.
2798
2799 2000-06-09 Kenichi Handa <handa@etl.go.jp>
2800
2801 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
2802 "tib24p-mule.bdf" for Tibetan.
2803
2804 * composite.el (decompose-composite-char): Declare it as obsolete.
2805
2806 * man.el (Man-fontify-manpage): Pay attention to underline and
2807 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
2808
2809 2000-06-08 Gerd Moellmann <gerd@gnu.org>
2810
2811 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
2812 Set maintainer to FSF since author isn't reachable.
2813
2814 2000-06-08 Dave Love <fx@gnu.org>
2815
2816 * international/mule-cmds.el (select-safe-coding-system): If
2817 DEFAULT-CODING-SYSTEM is not specified, also check the most
2818 preferred coding-system if buffer-file-coding-system is
2819 `undecided'. From Handa.
2820
2821 2000-06-08 Kenichi Handa <handa@etl.go.jp>
2822
2823 * international/mule.el
2824 (after-insert-file-set-buffer-file-coding-system): If the buffer
2825 size is greater than INSERTED, judget that we are not visiting.
2826
2827 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
2828
2829 * whitespace.el (defgroup whitespace): Comment out `:version'.
2830 XEmacs 20.4 has problems defining the group with this present.
2831 We'll have this commented out till get resolve the problem.
2832
2833 2000-06-07 Gerd Moellmann <gerd@gnu.org>
2834
2835 * align.el: Update from author.
2836
2837 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
2838
2839 * apropos.el (apropos-mode-hook): New user variable.
2840 (apropos-mode): Run apropos-mode-hook.
2841
2842 2000-06-07 David Ponce <david@dponce.com>
2843
2844 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
2845 commands. Require `wid-edit' at run-time.
2846
2847 2000-06-07 David Ponce <david@dponce.com>
2848
2849 * recentf.el: Added some "Commentary".
2850 (recentf-open-more-files, recentf-edit-list): Minor changes to
2851 move the point at the top of the file list. This behaviour is
2852 consistent with the menu one when the list contains a lot of
2853 files.
2854 (recentf-cleanup): Now displays the number of items removed from
2855 the list.
2856 (recentf-relative-filter) New menu filter to show filenames
2857 relative to `default-directory'.
2858
2859 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2860
2861 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
2862 with/without giving an error if PostScript printer doesn't have this
2863 kind of page size. Zebra Stripe continues or restarts on next page.
2864 Manual/automatic paper feeding. Switch or not the header.
2865 (ps-print-version): New version number (5.2.2).
2866 (ps-windows-system): Include emx as a Windows system.
2867 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
2868 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
2869 (ps-background-text): Code fix.
2870 (ps-error-handler-message, ps-user-defined-prologue)
2871 (ps-print-prologue-header, ps-printer-name)
2872 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
2873 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
2874 (ps-use-face-background): Customization fix.
2875 (ps-n-up-database): Data fix.
2876 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
2877 (ps-switch-header): New vars.
2878 (ps-xemacs-color-name, ps-face-foreground-name)
2879 (ps-face-background-name, ps-boolean-constant): New funs.
2880
2881 2000-06-07 Dave Love <fx@gnu.org>
2882
2883 * allout.el: New version from Manheimer.
2884
2885 2000-06-07 Kenichi Handa <handa@etl.go.jp>
2886
2887 * textmodes/fill.el (fill-find-break-point): Check the validity of
2888 charset.
2889
2890 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
2891
2892 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
2893 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
2894 Call display-color-p and display-mouse-p instead of looking at
2895 window-system.
2896
2897 2000-06-06 Dave Love <fx@gnu.org>
2898
2899 * image.el (find-image): Doc fix. Return nil if image not found.
2900 (put-image, insert-image): Make STRING arg optional.
2901
2902 2000-06-06 Kenichi Handa <handa@etl.go.jp>
2903
2904 * language/vietnamese.el: Remove eval-when-compile.
2905 (viet-viscii-nonascii-translation-table): Define it as a
2906 translation table made from viet-viscii-decode-table.
2907 (viet-viscii-encode-table): Define it as a translation table made
2908 from the reverse map of above.
2909 (viet-vscii-nonascii-translation-table): Define it as a
2910 translation table made from viet-vscii-decode-table.
2911 (viet-vscii-encode-table): Define it as a translation table made
2912 from the reverse map of above.
2913 (ccl-decode-viscii): Use translate-character.
2914 (ccl-encode-viscii, ccl-encode-viscii-font)
2915 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
2916 Likewize.
2917
2918 * language/cyrillic.el: Remove eval-when-compile.
2919 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
2920 translation table made from cyrillic-koi8-r-decode-table.
2921 (cyrillic-koi8-r-encode-table): Define it as a translation table
2922 made from the reverse map of above.
2923 (ccl-decode-koi8): Use translate-character.
2924 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
2925 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
2926 a translation table made from cyrillic-alternativnyj-decode-table.
2927 (cyrillic-alternativnyj-encode-table): Define it as a translation
2928 table made from the reverse map of above.
2929 (ccl-decode-alternativnyj): Use translate-character.
2930 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
2931 Likewize
2932
2933 * international/mule-diag.el (non-iso-charset-alist): Specify
2934 translation table symbol instead of translation table itself.
2935 (list-block-of-chars): CHARSET may be a translation table symbol.
2936
2937 * international/mule.el (make-coding-system): If CODING-SYSTEM
2938 already exists, override it.
2939
2940 * international/fontset.el: Use family `proportional' for Tibetan
2941 fonts.
2942
2943 * international/ccl.el (ccl-compile-translate-character): Don't
2944 check if Rrr has property translation-table.
2945 (ccl-compile-map-multiple): Modified to avoid compiler warning.
2946
2947 2000-06-05 Gerd Moellmann <gerd@gnu.org>
2948
2949 * info.el: Bind case-fold-search to t when searching in case
2950 a user sets it to nil in a hook.
2951
2952 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
2953
2954 * autoarg.el (autoarg-mode, autoarg-kp-mode):
2955 * hl-line.el (hl-line-mode): Use the new :global key argument.
2956
2957 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
2958 (tar-clip-time-string): Prepend a space.
2959 (tar-grind-file-mode): Construct a string rather than modifying one.
2960 (tar-header-block-summarize): Fix docstring.
2961 Use `format' rather than an error-prone set of copy-loops.
2962
2963 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
2964 (diff-goto-source, diff-unified->context, diff-context->unified)
2965 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
2966 understand the format output by the `-p' argument to diff.
2967
2968 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
2969 (sh-re-done): Use defconst.
2970 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
2971 (sh-help-string-for-variable, sh-guess-basic-offset):
2972 Don't quote lambdas.
2973 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
2974 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
2975
2976 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
2977 (mh-letter-mode): Derive from text-mode.
2978 This implicitly means that it now calls kill-all-local-variables.
2979 Also remove the Emacs-18 compatibility code.
2980
2981 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
2982 Make use of symbol-property doc-string-elt.
2983 Use memq rather than a sequence of eq.
2984 (doc-string-elt): Fix the wrong or missing previously unused values.
2985 (autoload-print-form): New function extracted from
2986 generate-file-autoloads to allow recursion when handling progn
2987 so that defvar's and defun's docstrings are properly printed.
2988 (generate-file-autoloads): Use it.
2989
2990 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
2991 Use find-file-hooks in the minor-mode function.
2992 Be careful not to loop indefinitely in the post-command-hook function.
2993
2994 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
2995
2996 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
2997 tty's.
2998 * ediff-diff.el (ediff-exec-process): Use --binary for fine
2999 differences whenever appropriate.
3000 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
3001 * viper.el (find-file, find-file-other-window): Get viper to do
3002 wildcards.
3003
3004 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
3005
3006 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
3007 (jit-lock-fontify-buffer): New function for JIT refontification.
3008 (jit-lock-mode): Fix docstring.
3009 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
3010 Remove jit-lock-after-change from the _local_ hook.
3011 (jit-lock-function-1): Fix docstring.
3012
3013 * info.el (Info-on-current-buffer): Initialize info.
3014
3015 * newcomment.el (comment-indent): Ignore comment-indent-hook.
3016
3017 * progmodes/tcl.el (tcl-indent-for-comment):
3018 Ignore comment-indent-hook.
3019
3020 * emacs-lisp/easy-mmode.el: Require CL during compilation.
3021 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
3022 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
3023 and improve to use the lighter to guess the capitalization.
3024 (define-minor-mode): Inline code from easy-mmode-define-toggle.
3025 Add keyword arguments to specify global-ness or the custom group.
3026 Add local-map and help-echo properties to the lighter.
3027 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
3028 (easy-mmode-define-global-mode): New macro.
3029
3030 2000-06-02 Dave Love <fx@gnu.org>
3031
3032 * wid-edit.el: byte-compile-dynamic since we typically don't use
3033 all the widgets. Don't require cl or widget. Remove
3034 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
3035 (widget-read-event): Removed. Callers changed to use read-event.
3036 (widget-button-release-event-p): Renamed from
3037 button-release-event-p.
3038 (widget-field-add-space, widget-field-use-before-change):
3039 Uncustomize.
3040 (widget-specify-field): Use keymap property, not local-map.
3041 (widget-specify-button): Obey :suppress-face.
3042 (widget-specify-insert): Use modern backquote syntax.
3043 (widget-image-directory): Renamed from widget-glyph-directory.
3044 (widget-image-enable): Renamed from widget-glyph-enable.
3045 (widget-image-find): Replaces widget-glyph-find.
3046 (widget-button-pressed-face): Move defvar.
3047 (widget-image-insert): Replaces widget-glyph-insert.
3048 (widget-convert): Use keywordp.
3049 (widget-leave-text, widget-children-value-delete): Use mapc.
3050 (widget-keymap): Remove XEmacs stuff.
3051 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
3052 (widget-button-click): Don't set point at the click, but re-centre
3053 if we scroll out of window. Rewritten for images v. glyphs &c.
3054 (widget-tabable-at): Use POS arg, not point.
3055 (widget-beginning-of-line, widget-end-of-line)
3056 (widget-item-value-create, widget-sublist, widget-princ-to-string)
3057 (widget-sexp-prompt-value, widget-echo-help): Simplify.
3058 (widget-default-create): Use widget-image-insert; some rewriting.
3059 (widget-visibility-value-create)
3060 (widget-push-button-value-create, widget-toggle-value-create): Use
3061 widget-image-insert.
3062 (checkbox): Create on and off images dynamically.
3063 (documentation-link): Change :help-echo.
3064 (widget-documentation-link-echo-help): Remove.
3065
3066 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
3067
3068 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
3069
3070 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
3071 (easy-mmode-define-toggle, define-minor-mode): Use it.
3072 (easy-mmode-define-keymap): Docstring fix.
3073 (define-derived-mode): Default PARENT to fundamental-mode.
3074 Add the derived-mode-parent symbol-property.
3075 (easy-mmode-derived-mode-p): New function.
3076
3077 2000-06-02 Dave Love <fx@gnu.org>
3078
3079 * files.el (convert-standard-filename): Doc fix.
3080 (normal-backup-enable-predicate): New function.
3081 (backup-enable-predicate): Use it to replace the lambda form.
3082
3083 * calendar/todo-mode.el: [This needs more work on the outline
3084 stuff.] Doc fixes.
3085 (todo) <defgroup>: Add :version.
3086 (todo-add-category): Don't use pushnew.
3087 (todo-cmd-raise): Fix typo.
3088 (todo-top-priorities): Change temp buffer name.
3089 (todo-category-alist): Avoid redundant lambda.
3090 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
3091 Use outline-next-heading.
3092
3093 * autoarg.el: Rewritten to use define-minor-mode.
3094 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
3095 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
3096
3097 2000-06-02 Kenichi Handa <handa@etl.go.jp>
3098
3099 * isearch.el (isearch-other-meta-char): Fix previous change.
3100
3101 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
3102
3103 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
3104 (log-edit-done): Only add the comment to the ring if it's different
3105 from the last comment entered.
3106
3107 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
3108
3109 2000-06-01 Dave Love <fx@gnu.org>
3110
3111 * hl-line.el: Rewritten using define-minor-mode.
3112
3113 * help.el (describe-function-1): Distinguish special form from
3114 builtin function. Sanity-check presence of arglist for builtins.
3115
3116 2000-06-01 Kenichi Handa <handa@etl.go.jp>
3117
3118 * international/characters.el: Fix syntax/category setting of
3119 Tibetan characters.
3120
3121 * language/tibet-util.el (tibetan-add-components): Fixes for new
3122 encoding of Tibetan characters.
3123 (tibetan-decompose-precomposition-alist): New variable.
3124 (tibetan-decompose-region): Convert precomposed characters to
3125 non-precomposed characters.
3126 (tibetan-decompose-string): Likewise.
3127 (tibetan-composition-function): Fix args to
3128 thibetan-compose-string.
3129
3130 * language/tibetan.el (tibetan-composable-pattern): More
3131 characters included.
3132 (tibetan-consonant-transcription-alist): Rule for "R" added.
3133 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
3134 "+R" added.
3135 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
3136
3137 * language/lao-util.el (lao-composition-function): Fix args to
3138 compose-string.
3139
3140 * language/thai-util.el (thai-composition-function): Fix args to
3141 compose-string.
3142
3143 * isearch.el (isearch-update): Set disable-point-adjustment to t
3144 to prevent the point moving to the end of a composition when a
3145 part of a composition is searched.
3146 (isearch-other-meta-char): If the key invoking this command can be
3147 mapped by function-key-map to a printing char, call
3148 isearch-process-search-char directly.
3149
3150 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
3151
3152 * emacs-lisp/bytecomp.el:
3153 * frame.el:
3154 * international/mule-cmds.el:
3155 * international/mule-util.el:
3156 * international/mule.el:
3157 * mouse.el:
3158 * subr.el:
3159 * faces.el: Update calls to make-obsolete with a WHEN argument.
3160
3161 * byte-run.el (make-obsolete, make-obsolete-variable):
3162 Add an optional WHEN argument and change the format of the
3163 symbol-property information.
3164 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
3165 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
3166 new obsolete-symbol-property format and print WHEN if it is provided.
3167
3168 2000-05-31 Dave Love <fx@gnu.org>
3169
3170 * loadhist.el (loadhist-hook-functions): Remove
3171 before-change-function, after-change-function.
3172 (unload-feature): Deal with symbols which are both bound and
3173 fbound.
3174
3175 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
3176 before-change-function, after-change-function.
3177
3178 * simple.el (newline): Don't bind before-change-function,
3179 after-change-function.
3180
3181 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
3182
3183 * whitespace.el (whitespace-rescan-timer-time): Update interval
3184 set to 600 seconds (10 minutes) instead of 60 seconds since
3185 a large number of whitespace buffers causes emacs to `freeze'
3186 for a considerable amount of time.
3187
3188 * whitespace.el: Updated email address
3189
3190 2000-05-31 Dave Love <fx@gnu.org>
3191
3192 * add-log.el (change-log-font-lock-keywords) <function>: Add
3193 pattern for function of change.
3194 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
3195 acknowledgements patterns.
3196
3197 2000-05-31 Kenichi Handa <handa@etl.go.jp>
3198
3199 * isearch.el (isearch-printing-char): If keyboard coding system is
3200 being used, call isearch-process-search-multibyte-characters.
3201
3202 * international/isearch-x.el: Mostly rewritten.
3203
3204 * international/quail.el (quail-start-conversion): Don't include
3205 unhandled events in the returned events, but set them in
3206 unread-command-events. Exit if all inputs are deleted.
3207
3208 2000-05-30 Jason Rumney <jasonr@gnu.org>
3209
3210 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
3211
3212 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
3213 Reenable code to create initial fontsets.
3214 Use set-fontset-font in place of put-charset-property.
3215
3216 2000-05-30 Gerd Moellmann <gerd@gnu.org>
3217
3218 * progmodes/perl-mode.el (perl-indent-line): When looking for a
3219 label, ensure that the first colon isn't followed by another.
3220
3221 * paths.el (Info-default-directory-list): Doc fix.
3222
3223 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
3224 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
3225 send a query containing USER only, not USER@HOST.
3226
3227 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
3228 and rmail-msgend to compute the restriction at the end, instead of
3229 computing it.
3230
3231 2000-05-29 Gerd Moellmann <gerd@gnu.org>
3232
3233 * dabbrev.el (dabbrev-expand): Don't display messages in the
3234 echo area if the minibuffer window is active.
3235
3236 * jit-lock.el (jit-lock-mode): Add after change function to
3237 local hook.
3238
3239 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
3240
3241 * antlr-mode.el: New commands: hide/unhide actions,
3242 upcase/downcase literals.
3243 (antlr-tiny-action-length): New user option.
3244 (antlr-hide-actions): New command. Suggested by
3245 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
3246 (antlr-mode-map): New binding [C-c C-v].
3247 (antlr-mode-menu): New entries.
3248 (antlr-downcase-literals): New command.
3249 (antlr-upcase-literals): Ditto.
3250
3251 * antlr-mode.el: Minor changes: indendation, mode-name.
3252 (antlr-indent-line): Indent cpp directive at column 0.
3253 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
3254
3255 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
3256 (antlr-font-lock-additional-keywords): Workaround for intentional
3257 bug in XEmacs version of font-lock.
3258 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
3259 be used by a smarter version of `buffers-menu-grouping-function'.
3260
3261 2000-05-29 Gerd Moellmann <gerd@gnu.org>
3262
3263 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
3264 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
3265
3266 2000-05-29 Kenichi Handa <handa@etl.go.jp>
3267
3268 * international/encoded-kb.el
3269 (encoded-kbd-iso2022-designation-map): Pay attention to that
3270 charset-iso-final-char return -1 for eight-bit-control and
3271 eight-bit-graphic.
3272
3273 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
3274
3275 * speedbar.el (speedbar-use-images, speedbar-update-flag)
3276 (speedbar-easymenu-definition-base): Use display-graphic-p where
3277 available, instead of window-system.
3278
3279 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
3280
3281 * international/codepage.el (cp-coding-system-for-codepage-1): Add
3282 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
3283 coding systems.
3284
3285 2000-05-26 Dave Love <fx@gnu.org>
3286
3287 * disp-table.el (standard-display-underline): Don't use
3288 internal-find-face.
3289
3290 * mail/reporter.el: Maintainer change. Doc fixes.
3291 (reporter-version): Deleted.
3292
3293 * emacs-lisp/elp.el: Maintainer change.
3294 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
3295
3296 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
3297
3298 * add-log.el (add-change-log-entry): Merge the current entry with the
3299 previous one if the previous one is empty.
3300
3301 2000-05-26 Dave Love <fx@gnu.org>
3302
3303 * loadhist.el (unload-feature): Fix interactive spec [from
3304 lijnzaad@ebi.ac.uk].
3305
3306 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
3307 subr-arity to check primitives.
3308 (byte-compile-flush-pending, byte-compile-file-form-progn)
3309 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
3310 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
3311 mapcar.
3312
3313 2000-05-26 Kenichi Handa <handa@etl.go.jp>
3314
3315 * international/fontset.el: Set family names of non-latin charsets
3316 in default fontset to "*".
3317
3318 * international/mule-diag.el (print-fontset): Combine family part
3319 and registry part of the fontname by "-*-" instead of "-".
3320
3321 * international/mule-cmds.el (encode-coding-char): Make strings
3322 multibyte before calling encode-coding-string.
3323
3324 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
3325
3326 * derived.el: Fix keywords.
3327 (define-derived-mode): Only define if needed.
3328
3329 * simple.el (fill-comment, comment-column, comment-start)
3330 (comment-start-skip, comment-end, comment-indent-function)
3331 (block-comment-start, block-comment-end, indent-for-comment)
3332 (set-comment-column, kill-comment, comment-padding, comment-region)
3333 (comment-multi-line, indent-new-comment-line): Remove.
3334
3335 * bindings.el (esc-map): Change ; to comment-dwim and use the new
3336 function names for comment operations.
3337
3338 * newcomment.el: Add abundant autoload cookies.
3339 (comment-style): Don't depend on runtime data at compile-time.
3340 (comment-indent-hook): Remove.
3341 (comment-indent): Check if comment-indent-hook is bound.
3342 (comment-region): Docstring fix.
3343
3344 2000-05-25 Dave Love <fx@gnu.org>
3345
3346 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
3347 byte-code-function-p.
3348
3349 * mail/rmailsum.el: Add provide.
3350
3351 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
3352
3353 * smerge-mode.el (smerge-diff-switches): Don't use list* in
3354 defcustom.
3355
3356 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
3357
3358 * ediff-diff.el (ediff-exec-process): delete --binary option from
3359 non-buffer ediff jobs.
3360
3361 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
3362
3363 * hilit-chg.el (highlight-changes-mode): Ask about color or
3364 grayscale support, not about window-system.
3365
3366 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
3367 window-system.
3368 (ffap-highlight): Always default to t.
3369
3370 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
3371 display-popup-menus-p instead of looking at window-system.
3372
3373 * disp-table.el (standard-display-g1, standard-display-graphic):
3374 Only refuse to use string glyphs on X and MS-Windows.
3375
3376 * avoid.el: Remove window-system from commentary, suggest to use
3377 display-*-p instead.
3378
3379 * apropos.el (apropos-print): Use display-mouse-p instead of
3380 window-system.
3381
3382 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
3383
3384 * international/codepage.el (cp-decoding-vector-for-codepage):
3385 Fill up unsupported characters with their own codes. From Kenichi
3386 Handa.
3387
3388 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
3389
3390 * international/mule-diag.el (describe-char-after): Use
3391 display-graphic-p instead of window-system, so that this function
3392 works on MS-DOS.
3393
3394 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
3395
3396 * international/codepage.el (cp-make-coding-systems-for-codepage):
3397 Remove the eight-bit-graphic and eight-bit-control charsets from
3398 the list of charsets which we convert into `?'.
3399
3400 2000-05-25 Kenichi Handa <handa@etl.go.jp>
3401
3402 * international/mule-conf.el: Specify CHARSET-ID explicitely for
3403 private charsets.
3404 (mule-unicode-0100-24ff, japanese-jisx0213-1,
3405 japanese-jisx0213-2): New charsets.
3406
3407 * international/fontset.el: Setup default fontset for new charsets.
3408
3409 2000-05-24 Dave Love <fx@gnu.org>
3410
3411 * info.el (Info-find-node-2): Restructure [following "Vadim
3412 S. Solomin" <sovs@uic.nnov.ru>].
3413
3414 * icomplete.el: Fix header for Finder.
3415
3416 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
3417
3418 * rmailout.el (rmail-output-to-rmail-file): Added optional param
3419 STAY.
3420
3421 * rmail.el (rmail-automatic-folder-directives): New user variable.
3422 (rmail-show-message): Add call to `rmail-auto-file' during
3423 display.
3424 (rmail-auto-file): New function.
3425
3426 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
3427
3428 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
3429 account.
3430 (ediff-test-utility,ediff-diff-mandatory-option)
3431 (ediff-reset-diff-options): Utilities for proper initialization of
3432 ediff-diff-options and ediff-diff3-options on Windows.
3433
3434 * ediff-init.el (ediff-merge-filename-prefix): New customizable
3435 variable.
3436
3437 * ediff-mult.el (ediff-filegroup-action): Use
3438 ediff-merge-filename-prefix.
3439
3440 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
3441
3442 * viper-ex.el (ex-write): Set selective display to nil.
3443
3444 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
3445
3446 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
3447 aliases for hebrew-iso-8bit.
3448
3449 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
3450
3451 * woman.el: New version from Francis J. Wright
3452 <F.J.Wright@Maths.QMW.ac.uk>.
3453 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
3454 names in environment variables regardless of the path separator.
3455 (woman-topic-all-completions-1): Don't call file-name-directory-p
3456 on all files, since woman-file-regexp already filters out any
3457 directories.
3458
3459 2000-05-24 Kenichi Handa <handa@etl.go.jp>
3460
3461 * international/quail.el (quail-start-translation): Don't change
3462 modified-p of the current buffer.
3463 (quail-start-conversion): Likewise.
3464
3465 * international/kkc.el (kkc-region): Don't change modified-p of
3466 the current buffer.
3467
3468 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
3469 conform to RFC1468.
3470 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
3471
3472 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
3473
3474 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
3475 (speedbar-insert-button): Invisible text property fix.
3476 (speedbar-directory-plus): Renamed from speedbar-directory-+
3477 (speedbar-directory-minus): Renamed from speedbar-directory--
3478 (speedbar-page-plus): Renamed from speedbar-file-+
3479 (speedbar-page-minus): Renamed from speedbar-file--
3480 (speedbar-page): Renamed from speedbar-file-
3481 (speedbar-tag): Renamed from speedbar-tag-
3482 (speedbar-tag-plus): Renamed from speedbar-tag-+
3483 (speedbar-tag-minus): Renamed from speedbar-tag--
3484 (speedbar-expand-image-button-alist): Use above renames.
3485
3486 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
3487 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
3488 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
3489 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
3490 * sb-pg.xpm: Renamed from sb-file.xpm
3491 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
3492 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
3493
3494 2000-05-24 Kenichi Handa <handa@etl.go.jp>
3495
3496 * international/quail.el (quail-show-guidance-buf): Set
3497 current-input-method of the guidance buffer to the name of the
3498 curren input method.
3499
3500 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
3501
3502 * progmodes/compile.el (compile-internal): Style typo.
3503
3504 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
3505 quote vars and functions in the docstring.
3506
3507 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
3508
3509 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
3510 Don't quote lambdas.
3511
3512 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
3513
3514 2000-05-23 Gerd Moellmann <gerd@gnu.org>
3515
3516 * startup.el (command-line): Determine source file of compiled
3517 user init file differently. Warn if compiled user init file
3518 is older than its source file.
3519
3520 * ffap.el (ffap-url-regexp): Add `https'.
3521
3522 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
3523
3524 * files.el (make-backup-file-name-1): Replace slashes with `!'
3525 rather than `|' (which is not allowed on Windows). Replace the
3526 drive letters with a string "drive_X".
3527
3528 2000-05-23 Gerd Moellmann <gerd@gnu.org>
3529
3530 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
3531
3532 * files.el (interpreter-mode-alist): Add `bash2'.
3533
3534 2000-05-22 Dave Love <fx@gnu.org>
3535
3536 * loadhist.el (feature-symbols, file-provides, file-requires): Use
3537 mapc.
3538 (feature-file): Avoid calling symbol-name. Doc fix.
3539 (file-set-intersect, file-dependents): Use dolist, not mapcar.
3540 (loadhist-hook-functions): Add mouse-position-function.
3541 (unload-feature): Change uses of mapcar.
3542
3543 * files.el (parse-colon-path): Doc fix.
3544 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
3545 (set-auto-mode): Use mapc.
3546
3547 * complete.el (PC-look-for-include-file): Use :alnum: character
3548 class.
3549 (partial-completion-mode): Add autoload cookie.
3550
3551 2000-05-22 Sam Steingold <sds@gnu.org>
3552
3553 * info.el (Info-fontify-node): Fixed the call to
3554 `add-text-properties' (bug introduced on 2000-05-18).
3555
3556 2000-05-22 Dave Love <fx@gnu.org>
3557
3558 * bindings.el: Remove debug-ignored-errors set in other files.
3559
3560 * progmodes/etags.el: Add to debug-ignored-errors.
3561 (visit-tags-table-buffer): Clear out buffers holding old tables
3562 when making a new list.
3563 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
3564 mapc.
3565
3566 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
3567 quote keywords.
3568 (cmpl-string-case-type): Use character classes.
3569
3570 * comint.el:
3571 * textmodes/ispell.el:
3572 * imenu.el:
3573 * mail/mh-e.el:
3574 * progmodes/compile.el: Add to debug-ignored-errors.
3575
3576 * dabbrev.el: Add to debug-ignored-errors.
3577 (dabbrev-completion): Use mapc.
3578
3579 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
3580
3581 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
3582 (woman-mapcan, woman-parse-man.conf)
3583 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
3584 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
3585 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
3586 path syntax better.
3587 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
3588 (woman-manpath): Call woman-parse-man.conf.
3589 (woman-emulation): New defcustom, defaults to nroff.
3590 (woman-font-support): New defconst.
3591 (woman-use-symbol-font): New defcustom.
3592 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
3593 "Emulation".
3594 Many functions: Doc fix.
3595
3596 2000-05-22 Kenichi Handa <handa@etl.go.jp>
3597
3598 * international/quail.el (quail-simple-translation-keymap): Map
3599 128..255 to quail-self-insert-command.
3600 (quail-keyboard-layout-alist): Add definition for "pc102-de".
3601
3602 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
3603
3604 * help.el (help-manyarg-func-alist): Typo.
3605
3606 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
3607 intervals which makes it heaps simpler.
3608
3609 * newcomment.el (comment-region-internal): Go back to BEG after quoting
3610 the nested comment markers.
3611
3612 * subr.el (remove-hook): Don't turn the hook's value into a list.
3613
3614 2000-05-21 Dave Love <fx@gnu.org>
3615
3616 * edmacro.el (edmacro-parse-keys): Return vector if any elements
3617 are invalid characters.
3618
3619 * international/mule-util.el (detect-coding-with-priority): Use
3620 mapc. Remove redundant lambda.
3621
3622 * international/mule-diag.el (list-non-iso-charset-chars)
3623 (describe-fontset): Remove redundant lambda.
3624
3625 * emulation/crisp.el (brief-mode): New alias.
3626
3627 * emacs-lisp/ring.el (ring-elements): New function.
3628
3629 * emacs-lisp/easymenu.el (easy-menu-create-menu)
3630 (easy-menu-do-add-item): Use keywordp.
3631
3632 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
3633
3634 * replace.el: Doc and error message fixes.
3635 (replace-highlight): Use facep, not internal-find-face.
3636
3637 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
3638
3639 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
3640
3641 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
3642 (log-edit-insert-changelog): Drop `:' as well.
3643
3644 * log-view.el: Fix file description.
3645 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
3646 available.
3647 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
3648 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
3649
3650 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
3651 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
3652 Print a status message if the toggle is called interactively.
3653 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
3654 for global minor modes and use `defcustom' for them.
3655 Use add-minor-mode.
3656 (easy-mmode-define-derived-mode): Remove.
3657 (define-derived-mode): Fancier default docstring.
3658 (easy-mmode-define-navigation): Signal an error rather than (ding).
3659
3660 * newcomment.el (comment-styles): New `box-multi'.
3661 (comment-normalize-vars): Better default for comment-continue to
3662 avoid whitespace-only continuations.
3663 (comment-search-forward): Always move even in the no-syntax case.
3664 (comment-padright): Only obey N if it's only obeyed for padleft.
3665 (comment-make-extra-lines): Better handling of empty continuations.
3666 Use `=' for the filler if comment-start has only one character.
3667 (uncomment-region): Try handling the special `=' filler.
3668 (comment-region): Allow LINES even if MULTI is nil.
3669 (comment-box): Choose box style based on comment-style.
3670
3671 2000-05-20 Kenichi Handa <handa@etl.go.jp>
3672
3673 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
3674 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
3675
3676 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
3677
3678 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
3679 and insert, not subst-char-in-region.
3680
3681 * international/mule-diag.el (list-character-sets-1): Handle
3682 charsets eight-bit-control and eight-bit-graphic.
3683 (list-iso-charset-chars): Likewise.
3684 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
3685 charactes as is. Use indent-to to align characters.
3686
3687 * international/mule-cmds.el (find-multibyte-characters): Never
3688 exclude charsets eight-bit-control and eight-bit-graphic.
3689
3690 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
3691
3692 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
3693 Don't quote lambdas.
3694
3695 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
3696
3697 2000-05-19 Gerd Moellmann <gerd@gnu.org>
3698
3699 * gud.el (gud-jdb-directories): Doc fix.
3700
3701 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
3702
3703 * newcomment.el: New file.
3704
3705 2000-05-19 Gerd Moellmann <gerd@gnu.org>
3706
3707 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
3708
3709 2000-05-18 Andreas Schwab <schwab@suse.de>
3710
3711 * dired.el (dired-between-files): Also skip lines beginning with
3712 `used'.
3713
3714 2000-05-18 Gerd Moellmann <gerd@gnu.org>
3715
3716 * msb.el (msb-menu-cond): Add choice `user'.
3717
3718 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3719
3720 * ps-print.el: Compatibility, customization and doc fix.
3721 (ps-printer-name-option): Replace defconst by defvar.
3722 (ps-postscript-code-directory): XEmacs compatibility.
3723 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
3724 fix.
3725 (ps-user-defined-prologue, ps-print-prologue-header)
3726 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
3727 compatibility and code fix.
3728 (ps-print-background-image, ps-print-background-text):
3729 Customization fix.
3730 (ps-line-number-start, ps-n-up-on): New vars.
3731
3732 2000-05-18 Espen Skoglund <esk@ira.uka.de>
3733
3734 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
3735 the indent-comment function to just return the appropriate indent.
3736
3737 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
3738
3739 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
3740 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
3741 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
3742
3743 2000-05-18 Dave Love <fx@gnu.org>
3744
3745 * info.el (Info-fontify-node): Add intangible property as well as
3746 invisible.
3747
3748 * calendar/appt.el (appt-make-list): Match all lines of entry.
3749 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
3750
3751 2000-05-18 Kenichi Handa <handa@etl.go.jp>
3752
3753 * international/mule-diag.el (describe-char-after): Call
3754 internal-char-font, not char-font. If internal-char-font returns
3755 nil, display "-- none --".
3756
3757 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
3758
3759 * image.el (image-type-available-p): Don't reference image-types
3760 if it isn't bound.
3761
3762 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
3763
3764 * autoarg.el (autoarg-mode): Typo in the :set argument.
3765
3766 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
3767
3768 * startup.el (command-line-1): Don't signal an error if the
3769 directory for auto-save-list files does not yet exist.
3770
3771 2000-05-17 Kenichi Handa <handa@etl.go.jp>
3772
3773 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
3774
3775 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
3776
3777 * subr.el (remove-hook): `setq' hook-value, not `set'.
3778
3779 2000-05-16 Sam Steingold <sds@gnu.org>
3780
3781 * info.el (debug-ignored-errors): More errors to ignore.
3782
3783 2000-05-16 Dave Love <fx@gnu.org>
3784
3785 * cus-edit.el: Don't require cl or easymenu.
3786 (custom-variable-prompt): Test standard-value property, not
3787 user-variable-p.
3788
3789 2000-05-16 Sam Steingold <sds@gnu.org>
3790
3791 * subr.el (add-hook): `setq' hook-value, not `set'.
3792
3793 2000-05-16 Gerd Moellmann <gerd@gnu.org>
3794
3795 * startup.el (command-line-1): Mention the FAQ in the startup
3796 message.
3797
3798 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
3799
3800 * progmodes/compile.el (compilation-parse-errors): Collect
3801 `nomessage' regexps last.
3802
3803 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
3804
3805 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
3806 to the function name.
3807
3808 2000-05-15 Dave Love <fx@gnu.org>
3809
3810 * speedbar.el (speedbar-recenter): Typo.
3811 (speedbar-expand-line): Make arg optional.
3812 (speedbar-mode): Avoid a compiler warning.
3813
3814 2000-05-15 Gerd Moellmann <gerd@gnu.org>
3815
3816 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
3817 user-specified option string is empty.
3818
3819 * mouse.el (mouse-yank-at-click): Doc fix.
3820
3821 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
3822
3823 * term/internal.el (IT-character-translations): More updates of
3824 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
3825 documents.
3826
3827 2000-05-15 Gerd Moellmann <gerd@gnu.org>
3828
3829 * env.el (getenv): New function, interactively callable.
3830 (setenv, getenv): Remove autoload cookies.
3831
3832 * loadup.el: Load `env'.
3833
3834 * progmodes/f90.el: Change author's mail address.
3835
3836 2000-05-14 Dave Love <fx@gnu.org>
3837
3838 * mail/rmail.el (rmail-show-message-hook): Customize and offer
3839 goto-addr as an option.
3840
3841 * help.el (help-xref-stack): Doc fix.
3842 (help-xref-following): New variable.
3843 (help-make-xrefs): Use it.
3844 (help-xref-go-back): Use position information from stack element.
3845 (help-follow): Make position in stack element a pair. Use
3846 help-xref-following.
3847
3848 * autoarg.el: New file.
3849
3850 * faces.el: Declare more functions obsolete.
3851
3852 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
3853 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
3854 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
3855 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
3856 Remove all the setup-...-environment functions.
3857
3858 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
3859
3860 * speedbar.el: Updated the commentary section. xemacs20p now uses
3861 >= when detecting. Require `defimage' safely.
3862 (speedbar-easymenu-definition-base): Add toggle for images.
3863 (speedbar-easymenu-definition-special): Add flush cache & expand.
3864 (speedbar-visiting-tag-hook): Set new defaults. Added options.
3865 (speedbar-reconfigure-keymaps-hook): New variable.
3866 (speedbar-frame-parameters): Updated documentation.
3867 (speedbar-use-imenu-flag): Updated custom tag
3868 (speedbar-dynamic-tags-function-list): New variable.
3869 (speedbar-tag-hierarchy-method): Updated doc & custom.
3870 (speedbar-indentation-width, speedbar-indentation-width) New
3871 variables.
3872 (speedbar-hide-button-brackets-flag): Customizable.
3873 (speedbar-vc-indicator): Doc update.
3874 (speedbar-ignored-path-expressions): Updated default value.
3875 (speedbar-supported-extension-expressions): Updated default value.
3876 (speedbar-syntax-table): Remove {} paren status.
3877 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
3878 as "+". Added overlay aliases.
3879 (speedbar-mode): Use `speedbar-mode-line-update' instead of
3880 `force-mode-line-update'.
3881 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
3882 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
3883 `mouse-set-point'
3884 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
3885 (speedbar-item-info-tag-helper): Revamped to handle a wider range
3886 of arbitrary text, and new helper functions.
3887 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
3888 filename finder.
3889 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
3890 (speedbar-directory-buttons): Update path search/expansion.
3891 (speedbar-make-tag-line): Pay attention to
3892 `speedbar-indentation-width'. Use more care w/ invisible
3893 properties.
3894 (speedbar-change-expand-button-char): Call
3895 `speedbar-insert-image-button-maybe'.
3896 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
3897 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
3898 (speedbar-trim-words-tag-hierarchy)
3899 (speedbar-simple-group-tag-hierarchy): New functions
3900 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
3901 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
3902 functions.
3903 (speedbar-mouse-set-point): New function
3904 (speedbar-power-click): Updated documentation.
3905 (speedbar-line-token, speedbar-goto-this-file): Handle more types
3906 of tag prefix text.
3907 (speedbar-expand-line, speedbar-contract-line): Make more robust
3908 to strange text.
3909 (speedbar-expand-line): Takes universal argument to flush the
3910 cache.
3911 (speedbar-flush-expand-line): New function.
3912 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
3913 Use new generator insertion method.
3914 (speedbar-fetch-dynamic-tags): New function.
3915 (speedbar-fetch-dynamic-imenu): Removed code now handled in
3916 `speedbar-fetch-dynamic-imenu'.
3917 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
3918 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
3919 "Revert Buffer" menu items.
3920 (speedbar-buffer-buttons-engine): Be smarter when creating a
3921 filename tag (for expansion purposes.).
3922 (speedbar-highlight-one-tag-line,
3923 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
3924 (speedbar-recenter): New functions.
3925 (defimage-speedbar): Image loading abstraction.
3926 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
3927 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
3928 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
3929 (speedbar-tag-type, speedbar-tag-mail): New images.
3930 (speedbar-expand-image-button-alist): New variable.
3931 (speedbar-insert-image-button-maybe): Insert an image over some
3932 buttons.
3933
3934 2000-05-13 Kenichi Handa <handa@etl.go.jp>
3935
3936 * international/mule-cmds.el (encode-coding-char): An ASCII
3937 character is always encodable.
3938
3939 * international/mule-conf.el: Add more information in descriptions
3940 of character sets.
3941
3942 * international/mule-diag.el (describe-char-after): New function.
3943 (describe-font-internal): Adjusted for the change of font-info.
3944 (describe-font): Likewise.
3945 (print-fontset): Rewritten for the new fontset implementation.
3946 (describe-fontset): Include fontset alias names in completion.
3947 (list-fontsets): Adjusted for the change of print-fontset.
3948
3949 * simple.el (what-cursor-position): If DETAIL is non-nil, call
3950 describe-char-after instead of displaying the detail in the echo
3951 area.
3952 (syntax-code-table): Format changed.
3953 (string-to-syntax): Adjusted for the above change.
3954
3955 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
3956
3957 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
3958
3959 2000-05-12 Dave Love <fx@gnu.org>
3960
3961 * calendar/todo-mode.el: Remove some compatibility stuff and CL
3962 dependence. Use line-{beginning,end}-position, not
3963 point-at{b,e}ol. Some doc fixes.
3964 (todo-position): New function. Fix callers of position to use it.
3965 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
3966
3967 2000-05-12 Gerd Moellmann <gerd@gnu.org>
3968
3969 * time.el (display-time-mail-icon): Use `:ascent center'.
3970
3971 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
3972 handling FTP security extensions.
3973
3974 2000-05-11 Dave Love <fx@gnu.org>
3975
3976 * calendar/todo-mode.el: New file.
3977
3978 2000-05-11 Gerd Moellmann <gerd@gnu.org>
3979
3980 * comint.el (comint-read-input-ring): Move reference to
3981 comint-input-ring-size outside of the save-excursion. It was
3982 causing the default value to be the only one ever seen.
3983
3984 * font-lock.el: Update copyright. Remove Simon Marshall's email
3985 address on request from him.
3986
3987 * subr.el (substitute-key-definition): Add comment describing
3988 the meaning of PREFIX.
3989
3990 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
3991
3992 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
3993
3994 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
3995 (add-minor-mode): Don't make the variable buffer-local and add a
3996 reference to define-minor-mode in the docstring.
3997
3998 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
3999 HEADER/FOOTER and fix bug with trailing empty directory.
4000 (cvs-append-to-ignore): Use vc-editable-p if available.
4001 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
4002 (vc-do-command): Tweak advice to handle the new VC.
4003
4004 * log-view.el (log-view-goto-rev): New function for the new VC.
4005 (log-view-minor-wrap): Use mark-active.
4006
4007 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
4008 (log-edit-changelog-full-paragraphs): New var.
4009 (log-edit-insert-changelog): Remove a lonely leading `* file'.
4010 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
4011 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
4012 (log-edit-changelog-ours-p, log-edit-changelog-entries)
4013 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
4014 Replace the `cvs' prefix with `log-edit'.
4015
4016 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
4017
4018 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
4019 (diff-font-lock-defaults): Explicitly turn off multiline.
4020 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
4021 (diff-ediff-patch): Fix call to ediff-patch-file.
4022 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
4023 Handle comments.
4024
4025 * frame.el (automatic-hscrolling): Typo.
4026
4027 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
4028
4029 2000-05-09 Sam Steingold <sds@goems.com>
4030
4031 * apropos.el (apropos-print): use `describe-face' instead of
4032 `customize-face-other-window'.
4033
4034 2000-05-09 Dave Love <fx@gnu.org>
4035
4036 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
4037
4038 * help.el (describe-variable): Have customize button pop the
4039 help-xref stack when invoked.
4040 (help-xref-symbol-regexp): Add `face'.
4041 (help-make-xrefs): Check for quoted face names and adapt regexp
4042 submatch numbers to cope.
4043 (help-xref-interned): Maybe insert face doc too. Separate
4044 sections with a line of hyphens.
4045
4046 * faces.el: Some doc fixes. Declare some functions obsolete.
4047 (describe-face): Add customize button. Return the help
4048 text. Fix prompt.
4049
4050 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
4051
4052 * term/internal.el (IT-character-translations): Fix last change.
4053
4054 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
4055
4056 * woman.el: New file
4057 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
4058
4059 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
4060
4061 * term/internal.el (IT-character-translations): Update ASCII
4062 simulations for greek-iso8859-7, add latin-iso8859-14 and
4063 latin-iso8859-15.
4064
4065 * international/mule-cmds.el (set-language-info-alist): Call
4066 define-prefix-command with 3 arguments, to make the map suitable
4067 for a menu.
4068
4069 2000-05-07 Dave Love <fx@gnu.org>
4070
4071 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
4072
4073 2000-05-05 Dave Love <fx@gnu.org>
4074
4075 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
4076 list in doc string. Don't quote keyword symbols.
4077 * emacs-lisp/cl.el: Likewise
4078 * emacs-lisp/cl-seq.el: Likewise
4079
4080 2000-05-05 Gerd Moellmann <gerd@gnu.org>
4081
4082 * abbrev.el (abbrev-mode): Make ARG optional.
4083
4084 2000-05-04 Gerd Moellmann <gerd@gnu.org>
4085
4086 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
4087
4088 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
4089
4090 * subr.el (substitute-key-definition): Clarify documentation.
4091
4092 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
4093
4094 * glasses.el (glasses-convert-to-unreadable): Use
4095 `glasses-separator' instead of the hard-wired "_".
4096 (glasses-mode): Call `glasses-make-unreadable' only in a single
4097 place.
4098
4099 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
4100
4101 * term/internal.el (cjk-codepages-alist): Add associations for
4102 Chinese and Korean codepages. Remove FIXME comment.
4103
4104 2000-05-03 Dave Love <fx@gnu.org>
4105
4106 * time.el (display-time-mail-face, display-time-use-mail-icon):
4107 New option.
4108 (display-time-mail-icon): New variable.
4109 (display-time-string-forms): Use the above. Fix the local-map.
4110
4111 2000-05-03 Gerd Moellmann <gerd@gnu.org>
4112
4113 * replace.el (query-replace-map): Add binding for `E'.
4114 (query-replace-help): Extend help text.
4115 (perform-replace): Allow editing the replacement string.
4116
4117 * make-mode.el (makefile-mode-abbrev-table): New variable.
4118 (makefile-mode): Set local abbrev table to
4119 makefile-mode-abbrev-table.
4120 (makefile-font-lock-keywords): Fontify includes and conditionals.
4121
4122 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
4123 set TOGGLE's value.
4124
4125 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
4126 mail-interactive-insert-alias.
4127 (mail-abbrev-complete-alias): New command.
4128 (mail-mode-map): Bind it to `M-TAB'.
4129
4130 2000-05-03 Kenichi Handa <handa@etl.go.jp>
4131
4132 * language/lao-util.el (lao-compose-region): New function.
4133
4134 2000-05-02 Gerd Moellmann <gerd@gnu.org>
4135
4136 * files.el (recover-session): Make directories as necessary
4137 if they don't exist yet.
4138
4139 * calendar/cal-french.el
4140 (french-calendar-multibyte-special-days-array)
4141 (french-calendar-special-days-array): Change French text.
4142 (calendar-french-date-string): Change output.
4143 (calendar-goto-french-date): Likewise.
4144
4145 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
4146
4147 * wid-edit.el (widget-default-active): Obey `:always-active'.
4148 (widget-documentation-string-value-create): Set `:always-active'.
4149
4150 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
4151
4152 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
4153 default prefix to `~/_emacs.d/auto-save.list/_s'.
4154 (normal-top-level): Create the directory for auto-save files, if
4155 it doesn't already exist (in the ms-dos case only).
4156
4157 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
4158
4159 * international/mule-cmds.el (set-language-environment): Don't
4160 concat an integer (dos-codepage), use format instead.
4161
4162 2000-05-02 Dave Love <fx@gnu.org>
4163
4164 * help.el (help-xref-on-pp): Check for constant symbols.
4165
4166 2000-04-29 Gerd Moellmann <gerd@gnu.org>
4167
4168 * startup.el (normal-top-level): Put a condition-case around
4169 the code loading subdirs.el.
4170
4171 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4172
4173 * ps-print.el: Upside-down and face background color printing,
4174 line number step, doc fix.
4175 (ps-print-version): New version number (5.2).
4176 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
4177 (ps-face-attribute-list, ps-plot-with-face): Code fix.
4178 (ps-spool-config): Var fix.
4179 (ps-printer-name-option): Const fix.
4180 (ps-print-upside-down, ps-use-face-background)
4181 (ps-line-number-step): New vars.
4182 (ps-window-system, ps-lp-system): New consts.
4183 (ps-face-background): New fun.
4184
4185 2000-04-28 Richard Stallman <rms@gnu.org>
4186
4187 * files.el (make-auto-save-file-name):
4188 Apply auto-save-file-name-transforms to visited file name
4189 before generating auto save file name.
4190 (auto-save-file-name-transforms): New variable.
4191
4192 * files.el (backup-enable-predicate):
4193 Correctly test for a file under a temporary directory.
4194
4195 2000-04-28 Gerd Moellmann <gerd@gnu.org>
4196
4197 * subr.el (add-minor-mode): Rewritten.
4198
4199 2000-04-28 Kenichi Handa <handa@etl.go.jp>
4200
4201 * mail/sendmail.el (sendmail-send-it): Set
4202 buffer-file-coding-system to the selected coding system for MIME
4203 header.
4204
4205 2000-04-27 Gerd Moellmann <gerd@gnu.org>
4206
4207 * dired.el (dired-move-to-filename-regexp): Allow format where
4208 YYYY is followed by two spaces.
4209
4210 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
4211 in the second character class of the regexp.
4212
4213 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
4214 mh-etc, too.
4215
4216 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
4217 nil.
4218
4219 * subr.el (add-minor-mode): Use `set' instead of `setq'.
4220
4221 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
4222 argument.
4223
4224 2000-04-27 Sen Nagata <sen@eccosys.com>
4225
4226 * emacs-lisp/crm.el (crm-completion-table): New variable.
4227 (crm-collection-fn, crm-test-completion)
4228 (completing-read-multiple): Use it.
4229
4230 2000-04-27 Dave Love <fx@gnu.org>
4231
4232 * help.el (locate-library): Use mapc.
4233 (help-manyarg-func-alist): Add call-process-region.
4234
4235 2000-04-26 Gerd Moellmann <gerd@gnu.org>
4236
4237 * subr.el (add-minor-mode): Make argument MAP optional.
4238
4239 * desktop.el (desktop-save): Save list of minor modes.
4240 (desktop-create-buffer): Restore minor modes.
4241 (desktop-minor-mode-table): New user-option.
4242
4243 * subr.el (add-minor-mode): New function.
4244
4245 * image.el (find-image): New function.
4246 (defimage): Rewritten to find image at load time.
4247
4248 * startup.el (normal-top-level-add-to-load-path): Handle
4249 case that the default directory is not in load-path.
4250
4251 * help.el: Old patch from Stefan Monnier.
4252 (help-xref-on-pp): New function.
4253 (describe-variable): Use it to display xrefs in a symbol's value.
4254
4255 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
4256
4257 * cus-edit.el (custom-face): Fix parenthesis.
4258
4259 2000-04-26 Kenichi Handa <handa@etl.go.jp>
4260
4261 * mail/rmail.el (rmail-expunge): When there are no deleted
4262 messages, do nothing.
4263
4264 2000-04-26 Dave Love <fx@gnu.org>
4265
4266 * international/mule-cmds.el (locale-translation-file-name):
4267 Defvar to nil.
4268 (set-locale-environment): Set it here (at runtime).
4269
4270 2000-04-25 Gerd Moellmann <gerd@gnu.org>
4271
4272 * replace.el (perform-replace): Add parameters START and END. Use
4273 them instead of the check for a region in Transient Mark mode.
4274 (query-replace-read-args): Return two more list elements for the
4275 start and end of the region in Transient Mark mode.
4276 (query-replace, query-replace-regexp, query-replace-regexp-eval)
4277 (map-query-replace-regexp, replace-string, replace-regexp): Add
4278 optional last arguments START and END and pass them to
4279 perform-replace.
4280
4281 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
4282 form with additional arguments for perform-replace.
4283
4284 * progmodes/etags.el (tags-query-replace): Add parameters START
4285 and END. Construct a form with additional arguments for
4286 perform-replace.
4287
4288 * simple.el (shell-command): Set default directory for "*Shell
4289 Command Output" buffer.
4290
4291 * language/european.el (iso-latin-4): Fix typo.
4292
4293 * emacs-lisp/crm.el: New file.
4294
4295 2000-04-24 Dave Love <fx@gnu.org>
4296
4297 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
4298 (Custom-reset-saved, Custom-reset-standard)
4299 (custom-group-value-create, custom-group-set, custom-group-save)
4300 (custom-group-reset-current, custom-group-reset-saved)
4301 (custom-group-reset-standard): Use mapc.
4302 (custom-buffer-create-internal): Disable undo when creating items.
4303 Use mapc.
4304 (custom-face): Avoid redundant lambda.
4305
4306 2000-04-24 Gerd Moellmann <gerd@gnu.org>
4307
4308 * startup.el (auto-save-list-file-prefix): Set default to
4309 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
4310
4311 2000-04-24 Sam Steingold <sds@gnu.org>
4312
4313 * time-stamp.el (time-stamp-string-preprocess): Always convert
4314 `field-result' to a string.
4315
4316 2000-04-24 Gerd Moellmann <gerd@gnu.org>
4317
4318 * frame.el (scrolling): New group.
4319 (automatic-hscrolling): New user-option.
4320
4321 * startup.el (command-line-x-option-alist): Add `-lsp' and
4322 `--line-spacing'.
4323
4324 2000-04-19 Dave Love <fx@gnu.org>
4325
4326 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
4327 (cl-mapc): Rename from mapc. Fix the funcall.
4328
4329 2000-04-19 Gerd Moellmann <gerd@gnu.org>
4330
4331 * simple.el (clone-indirect-buffer-other-window): New command.
4332 (clone-indirect-buffer): Add optional arg NORECROD.
4333 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
4334
4335 * help.el (resize-temp-buffer-window): Use count-screen-lines.
4336
4337 * window.el (count-screen-lines): New function.
4338 (shrink-window-if-larger-than-buffer): Use count-screen-lines
4339 instead of window-buffer-height.
4340
4341 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
4342 non-existing variable comint-input-sentinel.
4343 (inferior-lisp-args-to-list): Removed.
4344 (inferior-lisp): Use split-string instead of
4345 inferior-lisp-args-to-list.
4346
4347 * hexl.el (hexl-insert-hex-string): New command.
4348
4349 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
4350 instead of concat.
4351
4352 2000-04-18 Gerd Moellmann <gerd@gnu.org>
4353
4354 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
4355 at the start of an existing but empty folder.
4356
4357 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4358
4359 * ps-mule.el: Customization fix, doc fix.
4360 (ps-multibyte-buffer): Customization fix.
4361
4362 2000-04-17 Richard M. Stallman <rms@gnu.org>
4363
4364 * subr.el (read-passwd): Use read-char-exclusive.
4365
4366 2000-04-17 Gerd Moellmann <gerd@gnu.org>
4367
4368 * textmodes/texinfo.el (texinfo-insert-@email)
4369 (texinfo-insert-@emph, texinfo-insert-@quotation)
4370 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
4371 (texinfo-mode-map): Add key bindings for them.
4372
4373 * files.el (basic-save-buffer-2): Use a template with `$'
4374 instead of `#' for VMS.
4375
4376 * simple.el (clone-indirect-buffer): New function.
4377
4378 2000-04-16 Stephen Eglen <stephen@gnu.org>
4379
4380 * iswitchb.el (iswitchb-case): New function. If the user input
4381 contains any upper-case characters, the search is made
4382 case-sensitive.
4383
4384 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
4385
4386 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
4387 comment-end.
4388 (texinfo-font-lock-syntactic-keywords): New var.
4389 (texinfo-font-lock-keywords): Remove comment regexp.
4390 (texinfo-insert-block): New function.
4391 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
4392 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
4393 and font-lock-defaults. Use regexp-opt for outline-regexp.
4394 (texinfo-environments): New var.
4395 (texinfo-environment-regexp): Use regexp-opt and
4396 texinfo-environments.
4397
4398 * textmodes/ispell.el (ispell-menu-map-needed): Check that
4399 ispell-process is bound since this might be eval'd before ispell
4400 is loaded.
4401 (ispell-message): Use a tiny bit less magic and a bit more hard
4402 data to figure out what kind of sc-cite-regexp to use.
4403
4404 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
4405
4406 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
4407 (insert-cyclic-diary-entry): Unquote the lambda.
4408
4409 * gud.el (gud-jdb-build-source-files-list): Fix typo.
4410
4411 * files.el (backup-enable-predicate): Unquote the lambda.
4412
4413 * cus-edit.el (custom-face, face): Unquote the lambda.
4414
4415 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4416
4417 * ps-print.el: Check for line-beginning-position definition.
4418
4419 * ps-print.el: Fix counting lines in a region.
4420 (ps-print-version): New version number (5.1.5).
4421 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
4422 (ps-printing-region): Fun code fix.
4423
4424 2000-04-15 Gerd Moellmann <gerd@gnu.org>
4425
4426 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
4427 to file-directory-p.
4428
4429 2000-04-14 Gerd Moellmann <gerd@gnu.org>
4430
4431 * gud.el (gud-jdb-build-source-files-list): Check that directory
4432 exists before calling directory-files.
4433
4434 2000-04-13 Dave Love <fx@gnu.org>
4435
4436 * emacs-lisp/trace.el: Change maintainer. Use new backquote
4437 syntax.
4438
4439 * emacs-lisp/cl-specs.el: Remove when, unless.
4440
4441 * emacs-lisp/cl-extra.el: Don't quote keywords.
4442 (cl-old-mapc): New variable.
4443 (mapc): Use it.
4444 (cl-map-intervals): Use with-current-buffer. Don't check for
4445 next-property-change.
4446 (cl-map-overlays): Use with-current-buffer.
4447 (cl-expt): Remove.
4448 (copy-tree, remprop): Define unconditionally.
4449
4450 * emacs-lisp/cl-compat.el (keywordp): Remove.
4451
4452 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
4453 to use keywordp.
4454 (edebug-spec): Enable keywordp.
4455
4456 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
4457 string-lessp.
4458
4459 * cus-start.el: Use keywordp.
4460
4461 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4462
4463 * diary-lib.el (include-other-diary-files): Fix the fix of
4464 2000-02-18 by doing a save-excursion.
4465
4466 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4467
4468 * ps-print.el: Customization fix, doc fix.
4469 (ps-print-version): New version number (5.1.4).
4470 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
4471 (ps-print-preprint): Adjust code.
4472 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
4473 (ps-print-prologue-header, ps-print-control-characters)
4474 (ps-spool-config): Customization fix.
4475
4476 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
4477
4478 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
4479 converted to the new menu-item format, names silightly changed,
4480 help strings added.
4481
4482 Support for spelling without async subprocesses:
4483
4484 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
4485 (ispell-session-buffer): New variables.
4486 (ispell-start-process, ispell-process-status,
4487 ispell-accept-output, ispell-send-string): New functions, for
4488 Ispell invocation when async subprocesses aren't supported.
4489 (ispell-word, ispell-pdict-save, ispell-command-loop,
4490 ispell-process-line, ispell-buffer-local-parsing): Replace calls
4491 to process-send-string with calls to ispell-send-string, and
4492 accept-process-output with ispell-accept-output.
4493 (ispell-init-process): Call ispell-process-status instead of
4494 process-status with.
4495 (ispell-init-process): Call ispell-start-process. Call
4496 ispell-accept-output and ispell-send-string. Don't call
4497 process-kill-without-query and kill-process if they are unbound.
4498 (ispell-async-processp): New function.
4499
4500 2000-04-12 Dave Love <fx@gnu.org>
4501
4502 * info.el: Add debug-ignored-errors.
4503 (Info-mode-menu): Add some items.
4504 (Info-directory): Add autoload cookie.
4505
4506 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
4507 Modify `truncate-lines'. Make `describe-language-environment'
4508 always visible and add help. Modify `describe-key' help. Invoke
4509 Info-directory from `info'. New entry `emacs-manual'.
4510
4511 2000-04-10 Gerd Moellmann <gerd@gnu.org>
4512
4513 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
4514 propertized-buffer-identification.
4515 (ebrowse-update-member-buffer-mode-line): Likewise.
4516 (ebrowse--mode-strings): Removed.
4517 (ebrowse--mode-line-props): Removed.
4518
4519 * files.el (auto-mode-alist): Add `EBROWSE'.
4520
4521 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
4522 space before testing for end of buffer.
4523 (ebrowse-load): Removed.
4524 (ebrowse-revert-tree-buffer-from-file): Rewritten.
4525 (ebrowse-create-tree-buffer): Rewritten.
4526 (ebrowse-tree-mode): Read tree from buffer.
4527
4528 * progmodes/ebrowse-ffh.el: Removed.
4529
4530 2000-04-10 Kenichi Handa <handa@etl.go.jp>
4531
4532 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
4533
4534 2000-04-10 Gerd Moellmann <gerd@gnu.org>
4535
4536 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
4537 at the wrong place.
4538
4539 2000-04-09 Dave Love <fx@gnu.org>
4540
4541 * files.el (backup-enable-predicate): Use
4542 temporary-file-directory, small-temporary-file-directory.
4543 (make-backup-file-name-function, backup-directory-alist): New
4544 variables.
4545 (make-backup-file-name-1): New function.
4546 (make-backup-file-name): Use it.
4547 (find-backup-file-name): Likewise. Use format for clarity, not
4548 concat.
4549 (file-newest-backup): Use make-backup-file-name.
4550
4551 2000-04-09 Gerd Moellmann <gerd@gnu.org>
4552
4553 * progmodes/ebrowse-ffh.el: New file.
4554
4555 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
4556 to ebrowse-ffh.el.
4557 (ebrowse-load): Add autoload.
4558
4559 * finder.el (finder-commentary): Add autoload cookie.
4560
4561 * mail/rfc2368.el: Correct author's email address.
4562
4563 * progmodes/ebrowse.el: New file.
4564
4565 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
4566 item help string.
4567 (easy-menu-do-add-item): Ditto.
4568 (easy-menu-define): Extend doc string.
4569
4570 * jit-lock.el (with-buffer-unmodified): Use
4571 restore-buffer-modified-p.
4572 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
4573 (jit-lock-function, jit-lock-stealth-fontify): Don't use
4574 with-buffer-unmodified.
4575
4576 2000-04-08 Dave Love <fx@gnu.org>
4577
4578 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
4579 unless, when.
4580
4581 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
4582
4583 * viper-util.el (viper-put-on-search-overlay): New subroutine.
4584 (viper-flash-search-pattern): No operation when using Emacs
4585 doesn't support face.
4586 Use `viper-put-on-search-overlay'.
4587
4588 2000-04-04 Gerd Moellmann <gerd@gnu.org>
4589
4590 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
4591 like C-r.
4592
4593 * progmodes/make-mode.el: Some doc fixes.
4594 (makefile-mode-abbrev-table): New variable.
4595 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
4596 (makefile-font-lock-keywords): Fontify includes and conditionals.
4597 (toplevel): Require `dabbrev' and `add-log' when compiling.
4598
4599 * replace.el (perform-replace): Don't move forward one char
4600 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
4601 to do that because it leaves point 1 position after the last
4602 replacement, after everything has been replaced.
4603
4604 * jit-lock.el (with-buffer-unmodified): New macro.
4605 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
4606 modified state.
4607 (jit-lock-function-1): Extracted from jit-lock-function; not
4608 preserving buffer's modified state.
4609 (jit-lock-function, jit-lock-stealth-fontify): Call
4610 jit-lock-function-1.
4611
4612 * mail/rfc2368.el: Remove supernumerary copyright line.
4613
4614 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
4615
4616 * glasses.el: Provide facilities for inserting space before left
4617 parentheses and uncapitalization of identifiers.
4618 (glasses-mode): Try to remove old overlays in all cases.
4619
4620 2000-04-03 Gerd Moellmann <gerd@gnu.org>
4621
4622 * progmodes/compile.el (compile-internal): Display the compilation
4623 buffer in a different frame, if it's already displayed there.
4624
4625 * mail/rfc2368.el: New file.
4626
4627 * simple.el (sendmail-user-agent-compose): Recognize a `body'
4628 header and insert its value as mail body.
4629
4630 * subr.el (member-ignore-case): New function.
4631
4632 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
4633 (dabbrev--find-expansion): Ignore buffers matching a regexp
4634 from dabbrev-ignored-regexps.
4635
4636 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
4637 to extensions handled by gzip.
4638
4639 2000-04-03 Richard M. Stallman <rms@gnu.org>
4640
4641 * files.el (insert-directory): List the total free space
4642 along with the used space.
4643
4644 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
4645 line is followed by one that matches CITATION-REGEXP, end the
4646 paragraph.
4647
4648 2000-04-03 Markus Rost <rost@delysid.gnu.org>
4649
4650 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
4651 (rmail-make-basic-summary-line): Use that option.
4652
4653 2000-04-03 Kenichi Handa <handa@etl.go.jp>
4654
4655 * international/mule-cmds.el (encoded-string-description):
4656 Rewritten. Try pretty description for ISO 2022 escape sequences
4657 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
4658 for hexadecimal format.
4659
4660 2000-04-01 Dave Love <fx@gnu.org>
4661
4662 * cpp.el: Change customization group to `c' from `C'.
4663
4664 * vcursor.el (vcursor-move): Use display-color-p.
4665
4666 * international/mule-util.el: Provide mule-utils.
4667 (string-to-sequence): Simplify and speed up.
4668
4669 * international/mule.el (make-coding-system): Purecopy doc-string.
4670
4671 * international/mule-cmds.el: Various menu changes.
4672 (describe-specified-language-support): Handle `Default'.
4673 (set-language-info): Purecopy `info'.
4674
4675 2000-03-31 Andrew Innes <andrewi@gnu.org>
4676
4677 * vc.el (vc-backend-diff): Return the correct status if we had to
4678 retry the rcsdiff command without the --brief option.
4679
4680 2000-03-31 Dave Love <fx@gnu.org>
4681
4682 * help.el (help-manyarg-func-alist): Correct several omissions.
4683
4684 * add-log.el: Don't require cl, fortran.
4685 (add-log-current-defun-function): Doc fix.
4686 (change-log-version-number-regexp-list): Remove SCCS part. Doc
4687 fix.
4688 (change-log-version-rcs): Function deleted.
4689 (change-log-version-number-search): Doc fix. Use
4690 vc-workfile-version. Avoid CL dolist.
4691 (add-change-log-entry): Just call add-log-current-defun to get
4692 defun. Simplify somewhat.
4693 (change-log-get-method-definition-1): Likewise.
4694 (add-log-current-defun): Return nil if calling
4695 add-log-current-defun-function does so. Move Fortran stuff to
4696 fortran.el. Return string without properties.
4697
4698 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
4699 and :alpha: char classes.
4700
4701 * mail/supercite.el: Defvar curline when compiling.
4702 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
4703 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
4704 rather than a-zA-Z0-9 to allow non-ASCII characters.
4705
4706 2000-03-31 Gerd Moellmann <gerd@gnu.org>
4707
4708 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
4709
4710 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
4711 Re-enable new code.
4712
4713 * lpr.el (print-region-1): Use -d to specify printer name for
4714 systems `usg-unix-v*, `dgux', `hpux', `irix'.
4715
4716 2000-03-31 Dave Love <fx@gnu.org>
4717
4718 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
4719 for function definition in symbol's function value slot first
4720 instead of first consulting byte-compile-function-environment.
4721
4722 2000-03-31 Kenichi Handa <handa@etl.go.jp>
4723
4724 * language/european.el ("Polish"): New language environment.
4725 (setup-polish-environment): New function.
4726
4727 2000-03-30 Gerd Moellmann <gerd@gnu.org>
4728
4729 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
4730 Disable new code.
4731
4732 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
4733 trying to `load' the symbol of an autoload instead of the file
4734 recorded in the autoload. Fix error messages.
4735
4736 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4737
4738 * ps-print.el: PostScript programming fix for ghostview, doc fix.
4739 (ps-print-version): New version number (5.1.3).
4740 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
4741 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
4742 (ps-generate-postscript-with-faces): Code fix.
4743 (ps-color-values): XEmacs compatibility.
4744 (ps-print-background-image, ps-print-background-text, ps-printer-name)
4745 (ps-default-fg, ps-default-bg): Adjust customization.
4746 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
4747 (ps-color-scale): Renaming old ps-color-value fun.
4748 (ps-print-headers): Replace ps-print-header group to avoid conflict
4749 with ps-print-header variable.
4750 (ps-print-miscellany): New group.
4751 (ps-format-color, ps-rgb-color): New funs.
4752 (ps-default-foreground): New var.
4753 (ps-printer-name-option): New const.
4754
4755 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
4756
4757 * net/net-utils.el:
4758 (network-connection-host, network-connection-service): New variables
4759 (network-connection-mode): New mode, derived from comint-mode
4760 (network-connection-mode-setup): New function, saves host and
4761 service information in local variables.
4762
4763 * lisp/locate.el:
4764 (locate-word-at-point): Added this function
4765 (locate): Default to using locate-word-at-point as input
4766 Run dired-mode-hook
4767
4768 2000-03-29 Dave Love <fx@gnu.org>
4769
4770 * calendar/appt.el: Doc fixes.
4771 (appt-check): Convert min-to-app to a string before passing to
4772 appt-disp-window-function or concat.
4773 (appt-delete-window): Remove test for frame-root-window.
4774 (appt-select-lowest-window, appt-convert-time): Simplify.
4775
4776 * emacs-lisp/bytecomp.el: Doc fixes.
4777 (byte-compile-file-form-autoload): Update
4778 byte-compile-function-environment.
4779
4780 2000-03-29 Andreas Schwab <schwab@suse.de>
4781
4782 * emacs-lisp/autoload.el: Also print defsubst doc string
4783 specially.
4784
4785 * dired.el (dired-insert-directory): If dired-free-space-program
4786 failed just delete its output.
4787
4788 2000-03-29 Dave Love <fx@gnu.org>
4789
4790 * international/iso-cvt.el: Move provide to end. Doc fixes.
4791 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
4792 (iso-iso2sgml, iso-sgml2iso): New functions.
4793 (iso-cvt-define-menu): Fix some entries and use backquote for
4794 clarity.
4795
4796 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
4797
4798 2000-03-28 Gerd Moellmann <gerd@gnu.org>
4799
4800 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
4801 ISO-DATE. If non-nil, return date in ISO 8601 format.
4802
4803 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
4804
4805 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
4806 if it ever becomes used.
4807 (log-edit-mode-hook): Default to vc-log-mode-hook.
4808 (log-edit-mode): Fix the docstring.
4809
4810 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
4811 the code.
4812
4813 2000-03-26 Dave Love <fx@gnu.org>
4814
4815 * net/browse-url.el (browse-url): Re-fix case of
4816 browse-url-browser-function being an alist.
4817 (browse-url): Add :link to defgroup.
4818
4819 * files.el: Doc fixes.
4820 (file-truename): Include `[' in wildcard characters.
4821 (automount-dir-prefix): Customize.
4822 (find-file-wildcards): Add :version.
4823 (find-file-noselect): Simplify a mapcar call.
4824
4825 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
4826 compatible with inf-lisp version.
4827 (eval-defun-1): Fix custom-declare-variable case.
4828
4829 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
4830
4831 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
4832
4833 2000-03-24 Gerd Moellmann <gerd@gnu.org>
4834
4835 * Makefile (COMPILE_FIRST): New macro.
4836 (compile-files): Compile files from COMPILE_FIRST first.
4837
4838 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
4839 code.
4840
4841 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
4842 matching open parenthesis in column 0 to defun-prompt-regexp
4843 only if open-paren-in-column-0-is-defun-start is set.
4844
4845 * sun-curs.el: Require CL at compile-time only.
4846
4847 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
4848 instead of copy-list which is a function from CL.
4849 (msb--choose-menu, msb--mode-menu-cond)
4850 (msb--create-buffer-menu-2): Use dolist instead of mapc.
4851 (msb--init-file-alist): Use mapcar instead of mapcan.
4852 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
4853 `(' in column 0 in doc string.
4854 (msb--add-separators): Use mapcar instead of mapcan.
4855
4856 * cus-dep.el: Require CL at compile-time only.
4857
4858 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
4859
4860 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
4861 (byte-compile-warnings): New warning `noruntime'.
4862 (byte-compile-constants, byte-compile-variables): Fix docstring.
4863 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
4864 execute `eval-whenc-compile's body.
4865 (byte-compile-unresolved-functions): Fix docstring.
4866 (byte-compile-eval): New function.
4867 (byte-compile-callargs-warn): Check if the function will be available
4868 at runtime (via property `byte-compile-noruntime').
4869 (byte-compile-print-syms): New function.
4870 (byte-compile-warn-about-unresolved-functions): Also warn about
4871 `noruntime' functions (and use `byte-compile-print-syms').
4872 (byte-compile-file): Capitalize the message.
4873
4874 2000-03-24 Gerd Moellmann <gerd@gnu.org>
4875
4876 * mail/rmail.el (rmail-confirm-expunge): New user-option.
4877 (rmail-expunge): Ask for confirmation depending on the setting
4878 of rmail-confirm-expunge.
4879
4880 2000-03-23 Gerd Moellmann <gerd@gnu.org>
4881
4882 * Makefile (bootstrap-clean): If $(emacs) exists, build
4883 loaddefs.el first. A loaddefs.el that's not up-to-date might
4884 cause a bootstrap failure because things don't autoload as
4885 expected.
4886
4887 2000-03-23 Dave Love <fx@gnu.org>
4888
4889 * net/browse-url.el: Restore previous use of
4890 browse-url-maybe-new-window.
4891
4892 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4893
4894 * ps-print.el: Skip banner page fix.
4895 (ps-print-version): New version number (5.1.2).
4896 (ps-begin-file, ps-end-file, ps-generate): Code fix.
4897
4898 2000-03-23 Dave Pearson <davep@davep.org>
4899
4900 * net/quickurl.el Changed the type of parameter passed to the
4901 function defined by `quickurl-format-function'. Before only the
4902 text of the URL was passed. Now the whole URL structure is passed
4903 and the function is responsible for extracting the parts it
4904 requires. Changed the default of `quickurl-format-function'
4905 accordingly.
4906 (quickurl-insert): Changed the `funcall' of
4907 `quickurl-format-function' to match the above change.
4908 (quickurl-list-insert): Changed the `url' case so that it makes
4909 use of `quickurl-format-function', previous to this the format was
4910 hard wired.
4911
4912 2000-03-22 Gerd Moellmann <gerd@gnu.org>
4913
4914 * startup.el: Change some spellings for the X Window System.
4915
4916 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
4917
4918 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
4919 up the code and the regexp and make sure the cursor is temporarily
4920 moved to the suspicious line while querying the user.
4921
4922 2000-03-22 Jason Rumney <jasonr@gnu.org>
4923
4924 * w32-fns.el (w32-charset-info-alist): Initialize.
4925
4926 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4927
4928 * ps-print.el: N-up last page fix.
4929 (ps-print-version): New version number (5.1.1).
4930 (ps-end-file, ps-end-job, ps-generate): Code fix.
4931
4932 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
4933
4934 * files.el (find-file-run-dired): Update docstring.
4935 (find-directory-functions): New hook.
4936 (find-file-noselect): Run find-directory-functions rather than
4937 calling dired directly.
4938
4939 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
4940
4941 * pcvs.el: Add a minimal leading commentary.
4942 (cvs-make-cvs-buffer): Change the header part by removing the startup
4943 message and adding a `Module' entry. Also replace the FOOTER and
4944 HEADER special fileinfos with the new support in ewoc for updating
4945 its own footer and header.
4946 (cvs-update-header): Update to use the header/footer of the ewoc.
4947 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
4948 (cvs-is-within-p): New function.
4949 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
4950 to only examine some subset of the buffers.
4951
4952 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
4953 `format' instead of our own ad-hoc functions.
4954 Remove HEADER and FOOTER cases, now handled in the EWOC.
4955 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
4956
4957 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
4958 output to avoid scaring the user.
4959 (cvs-parse-table): Catch message for non-up-to-date commits.
4960
4961 * pcvs-defs.el (cvs-startup-message): Remove.
4962 (cvs-global-menu): New autoloaded menu.
4963
4964 * pcvs-util.el (cvs-string-fill): Remove.
4965
4966 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
4967 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
4968 PP part of it and also make it work for footers and headers.
4969 (ewoc-create): Drop POS and BUFFER arguments.
4970 Use the DLL's dummy node to store the end-of-footer position.
4971 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
4972 (ewoc-refresh): Remove unused `header' variable.
4973 (ewoc-(get|set)-hf): New functions.
4974
4975 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
4976 log-view-*-(message|file) and use easy-mmode-define-navigation.
4977 (log-view-message-re): Match SCCS format as well.
4978 And match the revision line rather than the dashed separator line.
4979 (log-view-mode): Use the new define-derived-mode.
4980 (log-view-current-tag): Fill in with an actual implementation.
4981
4982 * cvs-status.el (cvs-status-(prev|next)): Rename from
4983 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
4984 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
4985 to let the output "breathe" a little more (more readable).
4986 (cvs-status-mode): Use the new define-derived-mode.
4987
4988 * smerge-mode.el (smerge-auto-leave): New function and variable.
4989 (smerge-basic-map): Rename from smerge-basic-keymap.
4990 Change the bindings for smerge-diff-*.
4991 (smerge-*-map): Use easy-mmode-defmap.
4992 (smerge-(next|prev)): Use easy-mmode-define-navigation.
4993 (smerge-keep-*): Use smerge-auto-leave.
4994
4995 2000-03-21 Jason Rumney <jasonr@gnu.org>
4996
4997 * cus-edit.el (custom-button-face): Use 3D look for w32.
4998 (custom-button-pressed-face): Likewise.
4999
5000 2000-03-21 Gerd Moellmann <gerd@gnu.org>
5001
5002 * progmodes/etags.el (tags-case-fold-search): New user-option.
5003 (tags-loop-eval): New function. Bind case-fold-search around eval
5004 depending on the value of tags-case-fold-search.
5005 (tags-loop-continue): Use tags-loop-eval.
5006 (find-tag-in-order): Bind case-fold-search depending on the value
5007 of tags-case-fold-search.
5008
5009 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
5010
5011 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
5012 (diff-end-of-hunk): Return the end position for use in
5013 `easy-mmode-define-navigation'.
5014 (diff-recenter): Remove.
5015 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
5016 of `easy-mmode-define-navigation'.
5017 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
5018 previous renaming) and fix to use new names.
5019 (diff-merge-strings): Use \n as separator: simpler, faster.
5020 (diff-mode): Use `define-derived-mode'.
5021
5022 * derived.el (define-derived-mode): Don't autoload anymore.
5023 Prefer the macro-only version provided by easy-mmode.el.
5024
5025 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
5026 `easy-mmode-define-derived-mode'.
5027 Use `combine-run-hooks'.
5028 (easy-mmode-define-navigation): New macro.
5029
5030 * subr.el (combine-run-hooks): New function.
5031
5032 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
5033
5034 * term/x-win.el: Fontsets related initialization is simplified.
5035
5036 * international/mule-diag.el (describe-font): Don't refer to
5037 global-fontset-alist, instead call font-list.
5038 (describe-fontset, list-fontsets, mule-diag): Likewise.
5039 (print-fontset): Adjusted for the change of fontset
5040 implementation.
5041
5042 * international/fontset.el (x-charset-registries): Variable
5043 removed, instead the corresponding data is stored in the default
5044 fontset.
5045 (register-alternate-fontnames): Function removed.
5046 (resolved-ascii-font): Variable removed.
5047 (x-compose-font-name): Ignore the second argument REDOCE.
5048 (x-complement-fontset-spec): Complement only an ASCII font and
5049 element for those charsets than can use that ASCII font.
5050 (generate-fontset-menu): Don't refer to global-fontset-alist,
5051 instead call fontset-list.
5052 (uninstantiated-fontset-alist): Variable removed.
5053 (x-style-funcs-alist): Likewise.
5054 (fontset-default-styles): Likewise.
5055 (x-modify-font-name): Function removed.
5056 (create-fontset-from-fontset-spec): Ignore the argument
5057 STYLE-VARIANT.
5058 (create-fontset-from-ascii-font): Docsting adjusted for the above
5059 change.
5060 (instantiate-fontset, resolve-fontset-name): Functions removed.
5061 (fontset-list): Now implemented by C code.
5062
5063 * faces.el (read-face-font): Fix TABLE arg to completing-read.
5064 (describe-face): Include `font' attribute in the description.
5065
5066 2000-03-21 Kenichi Handa <handa@etl.go.jp>
5067
5068 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
5069
5070 2000-03-20 Gerd Moellmann <gerd@gnu.org>
5071
5072 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
5073 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
5074 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
5075
5076 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
5077 about behavior of set-buffer-modified-p wrt redisplay.
5078
5079 2000-03-19 Richard M. Stallman <rms@gnu.org>
5080
5081 * view.el (view-mode-disable): Kill local binding of view-read-only.
5082
5083 2000-03-18 Gerd Moellmann <gerd@gnu.org>
5084
5085 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
5086 is a string, convert it to a syntax cell using string-to-syntax.
5087
5088 * simple.el (syntax-code-table, syntax-flag-table): New variables.
5089 (string-to-syntax): New function.
5090
5091 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
5092 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
5093 try to use passive ftp mode.
5094
5095 2000-03-17 Gerd Moellmann <gerd@gnu.org>
5096
5097 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
5098
5099 * simple.el (append-to-buffer): Update point of windows after
5100 insertion.
5101
5102 * abbrev.el (inverse-add-abbrev): Identify word by first moving
5103 forward then moving backward. Reindent.
5104
5105 * frame.el (other-frame): Call x-focus-frame only if
5106 focus-follows-mouse is off.
5107
5108 2000-03-17 Dave Love <fx@gnu.org>
5109
5110 * pcvs-util.el (cvs-strings->string): Rename
5111 replace-regexps-in-string.
5112
5113 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
5114
5115 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
5116 regexp for labels cannot span several lines.
5117
5118 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
5119 `(setq :<key> ':<key>)' to the macro expansion.
5120
5121 2000-03-16 Dave Love <fx@gnu.org>
5122
5123 * progmodes/f90.el (f90): Put custom group under `languages', not
5124 `fortran'.
5125 (f90-mode-hook): Customize.
5126 (f90-mode): Set add-log-current-defun-function.
5127 (f90-current-defun): New function.
5128
5129 2000-03-16 Gerd Moellmann <gerd@gnu.org>
5130
5131 * cus-edit.el (custom-variable-tag-face): Handle case that
5132 default face's height is not a number.
5133 (custom-face-tag-face, custom-group-tag-face-1)
5134 (custom-group-tag-face): Ditto.
5135 (custom-group-tag-face-1): Add :group.
5136
5137 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
5138
5139 2000-03-15 Gerd Moellmann <gerd@gnu.org>
5140
5141 * pcvs-defs.el (toplevel): Remove autoload cookie for form
5142 requiring easymenu.
5143
5144 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5145
5146 * ps-print.el: PostScript user-defined prologue, PostScript error
5147 handler, doc fix.
5148 (ps-print-version): New version number (5.1).
5149 (ps-user-defined-prologue, ps-error-handler-message)
5150 (ps-print-prologue-0, ps-error-handler-alist): New vars.
5151 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
5152 (ps-insert-string): New function.
5153
5154 2000-03-15 Kenichi Handa <handa@etl.go.jp>
5155
5156 * international/ccl.el (ccl-compile-expression): Don't generate
5157 invalid self-assignment code.
5158
5159 2000-03-14 Dave Love <fx@gnu.org>
5160
5161 * subr.el (replace-regexp-in-string): Renamed from
5162 replace-regexps-in-string. Doc fix.
5163
5164 2000-03-12 Dave Love <fx@gnu.org>
5165
5166 * cus-edit.el: Doc fixes.
5167 (customize-set-variable, customize-save-variable): Rename args for
5168 doc.
5169 (custom-variable-tag-face, custom-face-tag-face)
5170 (custom-group-tag-face-1, custom-group-tag-face): Modify from
5171 style which user identify as hyperlink.
5172 (hook): Don't add undefined functions to the hook.
5173 (debug-ignored-errors): Transfer message from bindings.el.
5174
5175 2000-03-12 Gerd Moellmann <gerd@gnu.org>
5176
5177 * recentf.el (recentf-keep-non-readable-files-p): Remove
5178 double/nested definition.
5179
5180 2000-03-12 Dave Love <fx@gnu.org>
5181
5182 * facemenu.el (facemenu-get-face): Use display-color-p.
5183 * enriched.el (enriched-decode-foreground): Likewise.
5184 (enriched-decode-background): Likewise.
5185 * isearch.el (isearch-highlight): Likewise.
5186 * info-look.el (info-lookup): Likewise.
5187 * simple.el (completion-setup-function): Likewise.
5188
5189 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
5190 :options.
5191
5192 * bindings.el (mode-line-format): Fix line-number and
5193 column-number items. Add help-echo for the background.
5194 (mode-line-mule-info): Modify help-echo.
5195
5196 * avoid.el (mouse-avoidance-mode): Add autoload cookie to
5197 defcustom.
5198
5199 * files.el (load-file): Allow completion to .elc.
5200
5201 * man.el: Doc fixes.
5202 (Man-init-defvars): Use display-color-p to set fontification.
5203
5204 * play/hanoi.el (hanoi-internal): Don't use oddp.
5205
5206 2000-03-12 Gerd Moellmann <gerd@gnu.org>
5207
5208 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
5209
5210 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
5211
5212 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
5213
5214 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
5215 Fix comment.
5216
5217 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
5218
5219 * font-lock.el (font-lock-keywords): Fix the doc now that
5220 regexp-opt-depth is unnecessary.
5221 (save-buffer-state): Set an edebug spec.
5222 (font-lock-fontify-anchored-keywords): Properly handle the case when
5223 the matcher goes past the limit.
5224
5225 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
5226 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
5227
5228 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
5229 dll.el and cookie.el (from Elib) with heavy renaming and other
5230 massaging.
5231
5232 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
5233 Autoload the functions used.
5234 (easy-mmode-define-syntax): Fix CL typo.
5235 (easy-mmode-define-derived-mode): Improve the docstring generation.
5236
5237 2000-03-10 Gerd Moellmann <gerd@gnu.org>
5238
5239 * textmodes/texinfo.el (texinfo-version): Variable and function
5240 removed.
5241
5242 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
5243
5244 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
5245 allow more flexibility.
5246 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
5247 fns.
5248 (easy-mmode-defmap, easy-mmode-defsyntax)
5249 (easy-mmode-define-derived-mode): New macros.
5250
5251 2000-03-09 Didier Verna <didier@xemacs.org>
5252
5253 * rect.el (replace-rectangle): New function.
5254
5255 2000-03-09 Dave Love <fx@gnu.org>
5256
5257 * progmodes/fortran.el (fortran-comment-line-start): Define as
5258 "C".
5259 (fortran-comment-line-start-skip): Don't match cpp stuff.
5260 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
5261 (fortran-mode-map): Remove over-eager custom-menu-create for now.
5262 (fortran-mode): Don't set fortran-comment-line-start-skip,
5263 fortran-comment-line-start here. Set comment-start,
5264 add-log-current-defun.
5265 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
5266 (fortran-current-defun): New function.
5267
5268 2000-03-09 Gerd Moellmann <gerd@gnu.org>
5269
5270 * emacs-lisp/re-builder.el: New file.
5271
5272 * mouse.el (mouse-drag-region): Don't run up-event handler
5273 if hscroll has changed.
5274
5275 * octave-mod.el (octave-font-lock-keywords): To font-lock the
5276 builtin operators, use `font-lock-builtin-face' for Emacs and
5277 `font-lock-preprocessor-face' otherwise.
5278
5279 * font-lock.el (lisp-font-lock-keywords-1): Highlight
5280 `(defun (setf foo)' differently.
5281
5282 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
5283
5284 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
5285 (regexp-opt): Update comment and adapt the code the new meaning of
5286 the `paren' argument of regex-opt-group for shy-groups.
5287 (regexp-opt-depth): Handle shy groups as well as backslashed
5288 backslashes.
5289 (regexp-opt-group): Turn the leading comment into a docstring.
5290 Allow `paren' to be a string (the string to use to open a group).
5291 Remove open-presuf and close-presuf. Instead of checking for `all
5292 one-char' and then later on check for `several one-char', handle
5293 both cases close together. Also apply a more generic algorithm
5294 for suffixes (the mirror image of the algorithm used for
5295 prefixes). Use shy-groups. Use nreverse rather than reverse.
5296 (regexp-opt-try-suffix): Removed.
5297
5298 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
5299 from comint-mode-map, so we can just inherit from it. Also, move
5300 the initialization into the `defvar' since there's no docstring
5301 anyway and it's fairly short.
5302 (inferior-scheme-mode): Define it as derived-mode: the code is
5303 shorter and this way we inherit from comint-mode-map rather than
5304 copying it.
5305
5306 * subr.el (replace-regexps-in-string): Properly handle the case
5307 where we match an empty string.
5308
5309 * comint.el (comint-exec-1): Add the current-dir to the exec-path
5310 when the command has a directory component (such as "./testml").
5311 Also fix a typo in the comment.
5312
5313 2000-03-08 Gerd Moellmann <gerd@gnu.org>
5314
5315 * Makefile (compile-files): Compile files one by one because
5316 that's the only way to ensure a clean compilation environment for
5317 each individual file.
5318
5319 * frame.el (other-frame): Call x-focus-frame.
5320
5321 2000-03-07 Dave Love <fx@gnu.org>
5322
5323 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
5324 :require to defcustom.
5325
5326 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
5327 lists.
5328
5329 * files.el (auto-mode-alist): Add configure.in.
5330
5331 * progmodes/autoconf.el: New file.
5332
5333 2000-03-07 Gerd Moellmann <gerd@gnu.org>
5334
5335 * mail/mh-e.el: Change maintainer to `none'.
5336
5337 * recentf.el (recentf-keep-non-readable-files-p): Quote args
5338 to remove-hook and add-hook.
5339
5340 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
5341
5342 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
5343 it as the default.
5344 (mail-send): Test mail-send-nonascii also for the new `mime' value.
5345 (sendmail-send-it): Conditionally add MIME headers specifying the
5346 used character set.
5347
5348 2000-03-07 Dave Love <fx@gnu.org>
5349
5350 * winner.el: Fix keywords, autoload cookies. Split
5351 eval-when-compile form to avoid compilation failure.
5352
5353 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
5354
5355 * international/mule.el: Modify comment about coding system
5356 property `coding-category'.
5357 (make-coding-system): New argument EOL-TYPE. Pay attention to
5358 coding-category property of PROPERTIES.
5359
5360 * international/mule-conf.el (coding-category-utf-8,
5361 coding-category-utf-16-be, coding-category-utf-16-le): New coding
5362 categories. Include them in the argument for set-coding-priority.
5363
5364 * international/mule-cmds.el (reset-language-environment): Include
5365 coding-category-utf-8, coding-category-utf-16-be, and
5366 coding-category-utf-16-le in the argument for set-coding-priority.
5367 (reset-language-environment): Initialize coding-category-utf-8,
5368 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
5369
5370 2000-03-06 Karl Fogel <kfogel@red-bean.com>
5371
5372 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
5373 code abstracted out of `bookmark-jump-noselect'. Now tries info
5374 extensions as well as compression extensions.
5375 (bookmark-jump-noselect): Use above new func.
5376
5377 2000-03-03 Gerd Moellmann <gerd@gnu.org>
5378
5379 * strokes.el: Change maintainer's mail address.
5380
5381 2000-03-03 Kenichi Handa <handa@etl.go.jp>
5382
5383 * international/mule-diag.el (list-character-sets): Make help-echo
5384 string by substitute-command-keys.
5385 (list-character-sets): Likewise.
5386 (sort-listed-character-sets): Call help-setup-xref.
5387
5388 2000-03-02 Gerd Moellmann <gerd@gnu.org>
5389
5390 * time.el (display-time-mail-file): Add `none' to the list of
5391 choices.
5392
5393 2000-03-01 Dave Love <fx@gnu.org>
5394
5395 * help.el (help-xref-go-back): Don't try to set position.
5396
5397 * international/mule-diag.el (list-character-sets): Call
5398 help-setup-xref. Add help-echo to xrefs.
5399 (list-character-sets-1): Add help-echo to xrefs.
5400
5401 2000-03-02 Gerd Moellmann <gerd@gnu.org>
5402
5403 * frame.el (blink-cursor-mode): Switch cursor on when turning
5404 the mode off.
5405
5406 * add-log.el (add-log-current-defun): Add support for
5407 Autoconf mode.
5408
5409 * mail/rmail.el (rmail-quit-hook): New variable.
5410
5411 2000-03-01 Dave Love <fx@gnu.org>
5412
5413 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
5414
5415 * help.el (help-xref-button): Add help-echo arg.
5416 (describe-function-1, describe-variable, help-make-xrefs): Use it.
5417
5418 * faces.el (list-faces-display): Supply help-echo with
5419 help-make-xrefs.
5420
5421 * facemenu.el (list-text-properties-at): Set help-xref-stack to
5422 nil.
5423
5424 2000-03-01 Gerd Moellmann <gerd@gnu.org>
5425
5426 * image.el (defimage): Look for image files in load-path.
5427
5428 * frame.el (busy-cursor-delay-seconds): Change type to
5429 `number'.
5430
5431 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
5432
5433 * recentf.el (recentf): Added version tag to the defgroup of
5434 recentf.
5435
5436 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
5437
5438 * recentf.el (recentf-cleanup): Changed to remove excluded file
5439 too.
5440 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
5441 action to select/unselect a file.
5442 (recentf-edit-list): Code cleanup and improvement.
5443 (recentf-open-more-files-action): `recentf-open-more-files' button
5444 widget action to open a file.
5445 (recentf-open-more-files): No more use standard completion but
5446 widgets.
5447 (recentf-more-collection): Deleted.
5448 (recentf-more-history): Deleted.
5449 (recentf-setup-more-completion): Deleted.
5450
5451 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
5452
5453 * recentf.el (recentf-mode): No more needs that Emacs is running
5454 under a window-system.
5455
5456 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
5457
5458 * recentf.el (recentf-edit-list): New command to edit the recent
5459 list which allow the user to remove files.
5460 (recentf-edit-selected-items): New global variable, used by
5461 `recentf-edit-list' to hold the list of files to be removed from
5462 the recent list.
5463 (recentf-make-menu-items): Updated to display a "Edit list..."
5464 menu item. Minor code cleanup.
5465
5466 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
5467
5468 * recentf.el (recentf-open-more-files): New command to open files
5469 that are not displayed in the menu.
5470 (recentf-more-collection): New global variable holding the set of
5471 permissible completions used by `recentf-open-more-files'.
5472 (recentf-more-history): New global variable holding the history list
5473 used by `recentf-open-more-files' completion.
5474 (recentf-setup-more-completion): New function to setup completion for
5475 `recentf-open-more-files'.
5476 (recentf-make-menu-items): Updated to display a "More..." menu item.
5477
5478 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
5479
5480 * recentf.el (recentf-menu-action): Doc fixed.
5481
5482 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
5483
5484 * recentf.el (recentf-menu-filter): Doc updated.
5485 (recentf-update-menu-hook): Allow menu filters to force menu update.
5486 (recentf-make-menu-items): New menu filter handling.
5487 (recentf-make-menu-item): New helper function.
5488 (recentf-menu-elements): New menu handling function.
5489 (recentf-sort-ascending): Updated to new menu filter handling.
5490 (recentf-sort-descending): Updated to new menu filter handling.
5491 (recentf-sort-basenames-ascending): New menu filter function.
5492 (recentf-sort-basenames-descending): New menu filter function.
5493 (recentf-show-basenames): New menu filter function.
5494 (recentf-show-basenames-ascending): New menu filter function.
5495 (recentf-show-basenames-descending): New menu filter function.
5496
5497 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5498
5499 * diary-lib.el (list-diary-entries): Don't try to go forward at
5500 the end of the buffer.
5501
5502 2000-02-29 Kenichi Handa <handa@etl.go.jp>
5503
5504 * international/mule-diag.el (list-character-sets): Completely
5505 rewritten.
5506 (sort-listed-character-sets): New function.
5507 (list-character-sets-1): Completely rewritten.
5508 (list-character-sets-2): New function.
5509 (non-iso-charset-alist): New variable.
5510 (decode-codepage-char): New function.
5511 (charset-history): New variable.
5512 (read-charset) (list-block-of-chars)
5513 (list-iso-charset-chars)
5514 (list-non-iso-charset-chars)
5515 (list-charset-chars): New functions.
5516 (mule-diag): Call list-character-sets-2, not
5517 list-character-sets-2.
5518 (dump-charsets): Likewise.
5519
5520 2000-02-29 Gerd Moellmann <gerd@gnu.org>
5521
5522 * dired-x.el (dired-filename-at-point): Add `@' to valid
5523 file name characters.
5524 (dired-filename-at-point): Handle ange-ftp file names.
5525
5526 * frame.el (frame-notice-user-settings): Use assq-delete-all
5527 instead of assoc-delete-all.
5528 (frame-notice-user-settings): Ditto.
5529
5530 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
5531 Don't copy alist.
5532
5533 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
5534
5535 * calculator.el (calculator-use-menu): New option.
5536 (calculator-initial-bindings): Changed some bindings to work as
5537 macros.
5538 (calculator-forced-input): Removed.
5539 (calculator-restart-other-mode): New variable.
5540 (calculator-mode-map): Set up menu.
5541
5542 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
5543
5544 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
5545 tags.
5546
5547 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
5548
5549 * viper-cmd.el (viper-envelop-ESC-key): added the option to
5550 translate all ESC key sequences.
5551 (viper-goto-mark-subr): restore markers for files for which
5552 they were saved.
5553 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
5554 * viper-util.el (viper-set-replace-overlay-glyphs,
5555 viper-set-replace-overlay): always check if the replacement
5556 overlay is live.
5557 * viper.el (viper-vi-state-mode-list): added major modes.
5558 * ediff-wind.el: minor comment changes.
5559 * ediff.el: copyright notice date fix.
5560
5561 2000-02-27 Jason Rumney <jasonr@gnu.org>
5562
5563 * faces.el (face-font-family-alternatives): Add arial to helv.
5564 (mode-line, header-line, tool-bar): Same default as x for w32.
5565 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
5566 face-font-family-alternatives from working.
5567 * term/w32-win.el (mouse-set-font): Do not build fontset from
5568 chosen font.
5569
5570 2000-02-25 Sam Steingold <sds@goems.com>
5571
5572 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
5573 properly.
5574
5575 2000-02-25 Richard M. Stallman <rms@gnu.org>
5576
5577 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
5578
5579 2000-02-25 Gerd Moellmann <gerd@gnu.org>
5580
5581 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
5582 writable.
5583
5584 * frame.el (busy-cursor-delay-seconds): New option.
5585
5586 2000-02-24 Gerd Moellmann <gerd@gnu.org>
5587
5588 * frame.el (show-cursor-in-non-selected-windows): New option.
5589
5590 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5591
5592 * diary-lib.el (include-other-diary-files): Undo the selective
5593 display in any included file and don't kill it.
5594
5595 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
5596
5597 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
5598 bar. Menu items converted to (menu-item format, help strings
5599 added.
5600 [downcase, upcase]: Don't enable on MS-DOS.
5601 [symlink, symlinks]: Don't show if make-symbolic-link is not
5602 bound.
5603 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
5604
5605 2000-02-23 Dave Love <fx@gnu.org>
5606
5607 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
5608 (backward-kill-word): Revert addition of * to interactive spec --
5609 it's a feature.
5610
5611 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
5612 (backward-kill-sentence, kill-sentence): Likewise.
5613
5614 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
5615 scratch buffer name.
5616 (gud-format-command): Use int-to-string in ?l case. Simplify
5617 slightly.
5618
5619 * term/w32-win.el (internal-face-interactive): Update prompt for
5620 new read-face-name.
5621
5622 * mail/footnote.el (footnote): Add :version to defgroup.
5623 (footnote-section-tag-regexp): Customize.
5624 (footnote-start-tag, footnote-end-tag): New option.
5625 (footnote-latin-regexp): New variable.
5626 (Footnote-latin): New function.
5627 (footnote-style-alist): Add element for latin style.
5628 (footnote-style): Moved.
5629 (Footnote-goto-footnote): Use eq to test arg.
5630
5631 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
5632
5633 * emacs-lisp/byte-opt.el: Change old backquote syntax.
5634 (byte-compile-trueconstp): Include keywords.
5635 (byte-optimize-quote, byte-optimize-lapcode): Use
5636 byte-compile-const-symbol-p.
5637 (byte-optimize-char-before): New optimization.
5638
5639 * emacs-lisp/bytecomp.el: Change old backquote syntax.
5640 (byte-compile-const-symbol-p): New function.
5641 (byte-compile-constp, byte-compile-out-toplevel)
5642 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
5643 Use it.
5644
5645 * subr.el (define-key-after): Default AFTER to t. Doc fix.
5646
5647 2000-02-23 Kenichi Handa <handa@etl.go.jp>
5648
5649 * international/encoded-kb.el: Be sure to update minor-mode-alist
5650 and minor-mode-map-alist.
5651 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
5652 codes SS2 and SS3 correctly.
5653 (encoded-kbd-self-insert-ccl): New function.
5654 (encoded-kbd-setup-keymap): New function.
5655 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
5656 by calling encoded-kbd-setup-keymap.
5657
5658 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
5659 characters.
5660 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
5661 locally.
5662
5663 2000-02-22 Dave Love <fx@gnu.org>
5664
5665 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
5666 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
5667 defvar.
5668 (lisp-mode-syntax-table): Set up for #|...|# comments.
5669 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
5670 classes. Match `defface'.
5671 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
5672 (eval-defun-1): Fix for defcustom.
5673 (lisp-indent-region): Doc fix.
5674
5675 * subr.el (when, unless, split-string): Doc fix.
5676 (read-passwd): Move call of clear-this-command-keys to the right
5677 place.
5678 (replace-regexps-in-string): New function.
5679
5680 2000-02-22 Gerd Moellmann <gerd@gnu.org>
5681
5682 * help.el (describe-variable): Set syntax table to
5683 emacs-lisp-mode-syntax-table when moving forward over the
5684 symbol's name.
5685
5686 2000-02-22 Dave Love <fx@gnu.org>
5687
5688 * xt-mouse.el: Doc fixes.
5689 (xterm-mouse-position-function): New function, replacing advice of
5690 mouse-position.
5691 (xterm-mouse-mode): Use it. Don't turn on under a window system.
5692
5693 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
5694
5695 2000-02-21 Gerd Moellmann <gerd@gnu.org>
5696
5697 * format.el (format-annotate-single-property-change): Handle
5698 properties.with dotted-list values.
5699 (format-proper-list-p): New function.
5700
5701 * enriched.el (enriched-face-ans): Handle '(foreground-color
5702 . COLOR) and (background-color . COLOR).
5703
5704 2000-02-20 Dave Love <fx@gnu.org>
5705
5706 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
5707 and assignments to it.
5708 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
5709 current local map.
5710 (make-flyspell-overlay): Use it.
5711 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
5712
5713 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
5714 (lm-get-header-re): Defun, not defsubst.
5715 (lm-get-package-name): Defun, not defsubst. Simplify.
5716 (lm-version): Doc fix. Simplify.
5717 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
5718 (lm-crack-address, lm-last-modified-date, lm-commentary)
5719 (lm-verify, lm-synopsis): Simplify.
5720 (lm-report-bug): Require emacsbug. Use compose-mail.
5721
5722 2000-02-20 Gerd Moellmann <gerd@gnu.org>
5723
5724 * dired.el (dired-mode): Call propertized-buffer-identification
5725 to set mode-line-buffer-identification to something having
5726 the right text properties.
5727
5728 * bindings.el (propertized-buffer-identification): New function.
5729
5730 2000-02-20 Dave Love <fx@gnu.org>
5731
5732 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
5733 check for t-mouse too.
5734
5735 * cus-start.el: Make echo-keystrokes `number'.
5736
5737 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
5738
5739 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
5740 Don't call ring-empty-p unless tags-location-ring is bound.
5741 From Noah Friedman <friedman@splode.com>.
5742
5743 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
5744
5745 * progmodes/hideshow.el (hs-flag-region): No longer use
5746 `intangible' overlay property.
5747
5748 (hs-toggle-hiding): New command.
5749 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
5750
5751 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
5752 Fix omission bug: Run `hs-minor-mode-hook' for both activation
5753 and deactivation.
5754
5755 2000-02-18 Gerd Moellmann <gerd@gnu.org>
5756
5757 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
5758
5759 2000-02-17 Gerd Moellmann <gerd@gnu.org>
5760
5761 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
5762
5763 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
5764 of `*' to handle `(* ... *)' comments.
5765
5766 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
5767
5768 * faces.el (list-faces-display): Use display-mouse-p instead of
5769 window-system.
5770
5771 * menu-bar.el (global-map): Menu-bar items converted to the new
5772 format (menu-item..., rearranged for better CUA compliance, and
5773 their names changed for better clarity. Help strings added.
5774
5775 * international/mule-cmds.el (mule-menu-keymap)
5776 (describe-language-environment-map, set-coding-system-map)
5777 (setup-language-environment-map): Convert to new (menu-item...
5778 form, add help strings. Change names of menu items for better
5779 clarity. "Mule" menu-bar item removed (it's now in the "Options"
5780 submenu).
5781
5782 2000-02-17 Gerd Moellmann <gerd@gnu.org>
5783
5784 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
5785 within the code.
5786
5787 2000-02-16 Dave Love <fx@gnu.org>
5788
5789 * faces.el: Don't require custom. Add more specific :groups to
5790 various deffaces.
5791 (set-face-attribute): Purecopy args.
5792 (read-face-name): Default to name at point and use it in prompt.
5793 Remove colon from arg in all callers.
5794 (list-faces-display): Hyperlink to face descriptions and customize
5795 buffers.
5796
5797 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
5798
5799 * wid-edit.el (widget-match-inline): An atom never matches a
5800 list.
5801
5802 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5803
5804 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
5805 at ':' characters by call to split-string.
5806
5807 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5808
5809 * textmodes/bibtex.el: Added RCS version identification.
5810
5811 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5812
5813 * textmodes/bibtex.el: Some temporary comments removed.
5814 (bibtex-field-name, bibtex-entry-type): Made the relationship
5815 explicit.
5816 (bibtex-field-const): Allow capital letters.
5817 (bibtex-start-of-string): Deleted because unused.
5818
5819 * textmodes/bibtex.el: Unified some nomenclature. We no longer
5820 use the term 'reference' to describe a bibtex entry as a whole.
5821 Further, reference keys are no longer called 'labels'.
5822 (bibtex-keys): Renamed to bibtex-reference-keys.
5823 (bibtex-reformat-previous-labels): Renamed to
5824 bibtex-reformat-previous-reference-keys.
5825 (bibtex-reference-type): Renamed to bibtex-entry-type.
5826 (bibtex-reference-head): Renamed to bibtex-entry-head.
5827 (bibtex-reference-maybe-empty-head): Renamed to
5828 bibtex-entry-maybe-empty-head.
5829 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
5830 (bibtex-search-reference): Renamed to bibtex-search-entry.
5831 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
5832 bibtex-enclosing-entry-maybe-empty-head.
5833 (bibtex-entry-field-alist, bibtex-entry-head,
5834 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
5835 bibtex-map-entries, bibtex-search-entry,
5836 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
5837 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
5838 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
5839 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
5840 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
5841 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
5842 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
5843
5844 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5845
5846 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
5847 comment.
5848 (bibtex-format-field-delimiters): New function, functionality
5849 extracted from bibtex-format-entry.
5850 (bibtex-autokey-get-yearfield-digits): New function, functionality
5851 extracted from bibtex-autokey-get-yearfield.
5852
5853 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
5854 entries in order to avoid stack overflow in the regexp matcher if
5855 field contents become large.
5856 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
5857 bibtex-field-string-part-not-braced,
5858 bibtex-field-string-part-no-inner-braces,
5859 bibtex-field-string-part-1-inner-brace,
5860 bibtex-field-string-part-2-inner-braces,
5861 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
5862 bibtex-field-string-quoted, bibtex-field-string,
5863 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
5864 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
5865 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
5866 as parsing is now performed by the following functions.
5867 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
5868 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
5869 bibtex-parse-field-string, bibtex-search-forward-field-string,
5870 bibtex-parse-association, bibtex-field-name-for-parsing,
5871 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
5872 bibtex-search-forward-field, bibtex-search-backward-field,
5873 bibtex-start-of-field, bibtex-end-of-field,
5874 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
5875 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
5876 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
5877 bibtex-parse-string, bibtex-search-forward-string,
5878 bibtex-search-backward-string, bibtex-start-of-string,
5879 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
5880 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
5881 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
5882 entries. Instead of reporting the results of the parsing by
5883 match-beginning or match-end, these functions return data structures
5884 that hold the corresponding positions.
5885 (bibtex-enclosing-field): Changed to also report field boundaries by
5886 return values rather than by match-beginning or match-end. The
5887 following functions have been adapted to use the new parsing
5888 functions.
5889 (bibtex-skip-to-valid-entry, bibtex-search-reference,
5890 bibtex-enclosing-field, bibtex-format-entry,
5891 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
5892 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
5893 bibtex-print-help-message, bibtex-end-of-entry,
5894 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
5895 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
5896 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
5897 method for parsing.
5898 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
5899 bibtex-map-entries, bibtex-flash-head,
5900 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
5901 bibtex-autokey-change, bibtex-autokey-get-namefield,
5902 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
5903 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
5904 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
5905 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
5906 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
5907 order to make the new binding of case-fold-search immediately
5908 visible.
5909
5910 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5911
5912 * textmodes/bibtex.el: Copyright notice is up to date.
5913 Added constant 'bibtex-maintainer-salutation.
5914
5915 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
5916 than make-temp-name, use match-string-no-properties and eliminate
5917 a quadratic behavior when building bibtex-strings.
5918
5919 * bibtex.el (bibtex-reference-key): Accept string entries whose
5920 reference key contains upper case letters.
5921
5922 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5923
5924 * bibtex.el (bibtex-reference-head): Allow entries to start with
5925 a new line.
5926
5927 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5928
5929 * bibtex.el: Hiding of entry bodies is not longer provided by
5930 bibtex.el directly. Instead the hideshow package can be used.
5931 Added a special bibtex entry to hs-special-modes-alist.
5932 (bibtex-hs-forward-sexp): Added for hideshow.el.
5933
5934 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5935
5936 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
5937 at ':' characters by call to split-string.
5938
5939 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5940
5941 * textmodes/bibtex.el: Added RCS version identification.
5942
5943 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5944
5945 * textmodes/bibtex.el: Some temporary comments removed.
5946 (bibtex-field-name, bibtex-entry-type): Made the relationship
5947 explicit.
5948 (bibtex-field-const): Allow capital letters.
5949 (bibtex-start-of-string): Deleted because unused.
5950
5951 * textmodes/bibtex.el: Unified some nomenclature. We no longer
5952 use the term 'reference' to describe a bibtex entry as a whole.
5953 Further, reference keys are no longer called 'labels'.
5954 (bibtex-keys): Renamed to bibtex-reference-keys.
5955 (bibtex-reformat-previous-labels): Renamed to
5956 bibtex-reformat-previous-reference-keys.
5957 (bibtex-reference-type): Renamed to bibtex-entry-type.
5958 (bibtex-reference-head): Renamed to bibtex-entry-head.
5959 (bibtex-reference-maybe-empty-head): Renamed to
5960 bibtex-entry-maybe-empty-head.
5961 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
5962 (bibtex-search-reference): Renamed to bibtex-search-entry.
5963 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
5964 bibtex-enclosing-entry-maybe-empty-head.
5965 (bibtex-entry-field-alist, bibtex-entry-head,
5966 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
5967 bibtex-map-entries, bibtex-search-entry,
5968 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
5969 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
5970 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
5971 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
5972 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
5973 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
5974 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
5975
5976 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5977
5978 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
5979 comment.
5980 (bibtex-format-field-delimiters): New function, functionality
5981 extracted from bibtex-format-entry.
5982 (bibtex-autokey-get-yearfield-digits): New function, functionality
5983 extracted from bibtex-autokey-get-yearfield.
5984
5985 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
5986 entries in order to avoid stack overflow in the regexp matcher if
5987 field contents become large.
5988 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
5989 bibtex-field-string-part-not-braced,
5990 bibtex-field-string-part-no-inner-braces,
5991 bibtex-field-string-part-1-inner-brace,
5992 bibtex-field-string-part-2-inner-braces,
5993 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
5994 bibtex-field-string-quoted, bibtex-field-string,
5995 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
5996 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
5997 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
5998 as parsing is now performed by the following functions.
5999 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
6000 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
6001 bibtex-parse-field-string, bibtex-search-forward-field-string,
6002 bibtex-parse-association, bibtex-field-name-for-parsing,
6003 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
6004 bibtex-search-forward-field, bibtex-search-backward-field,
6005 bibtex-start-of-field, bibtex-end-of-field,
6006 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
6007 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
6008 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
6009 bibtex-parse-string, bibtex-search-forward-string,
6010 bibtex-search-backward-string, bibtex-start-of-string,
6011 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
6012 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
6013 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
6014 entries. Instead of reporting the results of the parsing by
6015 match-beginning or match-end, these functions return data structures
6016 that hold the corresponding positions.
6017 (bibtex-enclosing-field): Changed to also report field boundaries by
6018 return values rather than by match-beginning or match-end. The
6019 following functions have been adapted to use the new parsing
6020 functions.
6021 (bibtex-skip-to-valid-entry, bibtex-search-reference,
6022 bibtex-enclosing-field, bibtex-format-entry,
6023 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
6024 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
6025 bibtex-print-help-message, bibtex-end-of-entry,
6026 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
6027 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
6028 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
6029 method for parsing.
6030 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
6031 bibtex-map-entries, bibtex-flash-head,
6032 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
6033 bibtex-autokey-change, bibtex-autokey-get-namefield,
6034 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
6035 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
6036 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
6037 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
6038 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
6039 order to make the new binding of case-fold-search immediately
6040 visible.
6041
6042 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
6043
6044 * textmodes/bibtex.el: Copyright notice is up to date.
6045 Added constant 'bibtex-maintainer-salutation.
6046
6047 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
6048 than make-temp-name, use match-string-no-properties and eliminate
6049 a quadratic behavior when building bibtex-strings.
6050
6051 * bibtex.el (bibtex-reference-key): Accept string entries whose
6052 reference key contains upper case letters.
6053
6054 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
6055
6056 * bibtex.el (bibtex-reference-head): Allow entries to start with
6057 a new line.
6058
6059 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
6060
6061 * bibtex.el: Hiding of entry bodies is not longer provided by
6062 bibtex.el directly. Instead the hideshow package can be used.
6063 Added a special bibtex entry to hs-special-modes-alist.
6064 (bibtex-hs-forward-sexp): Added for hideshow.el.
6065
6066 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
6067
6068 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
6069 proceedings entry type (for cross referencing). Thanks to Wagner
6070 Toledo Correa for the suggestion.
6071
6072 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
6073
6074 2000-02-14 Kenichi Handa <handa@etl.go.jp>
6075
6076 * international/characters.el: Setup case table for Vietnamese.
6077
6078 2000-02-12 Gerd Moellmann <gerd@gnu.org>
6079
6080 * uniquify.el (toplevel): Require CL at compile time.
6081 (uniquify-push): Removed.
6082
6083 * shadowfile.el (shadow-when): Removed.
6084
6085 * tempo.el (tempo-dolist, tempo-mapc): Removed.
6086 (tempo-process-and-insert-string): Use dolist instead of
6087 tempo-dolist.
6088
6089 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
6090 regexp for paragraph-start.
6091
6092 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
6093 commas as well.
6094
6095 2000-02-10 Dave Love <fx@gnu.org>
6096
6097 * wid-edit.el: (widgets) [defgroup]: Remove url link.
6098 (widget-color-choice-list, widget-color-history, widget-mouse-help):
6099 Deleted.
6100 (widget-specify-field, widget-specify-button): Don't use
6101 widget-mouse-help as help-echo property.
6102 (default): Use #'ignore for :validate and :mouse-down-action.
6103 (checkbox): Add help-echo.
6104 (widget-sexp-validate): Rewritten to clarify error messages.
6105 (character): Use char-valid-p in :match function.
6106 (widget-color-complete): Use facemenu-color-alist.
6107 (widget-color-action): Use facemenu-read-color.
6108
6109 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
6110 set up `caar' &c that we now have.
6111
6112 2000-02-09 Ray Blaak <blaak@gnu.org>
6113
6114 * delphi.el: Make resourcestring a declaration region, like const
6115 and var.
6116
6117 2000-02-09 Dave Love <fx@gnu.org>
6118
6119 * bindings.el (mode-line-input-method-map): New variable.
6120 (mode-line-mule-info): Use it; fix last change.
6121 (mode-line-mode-menu): Move definition.
6122 (mode-line-mouse-sensitive-p): Deleted.
6123 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
6124 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
6125 level.
6126
6127 * startup.el (command-line-1): Don't call
6128 make-mode-line-mouse-sensitive.
6129
6130 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6131
6132 * mail/rmail.el (rmail-retry-failure): Use
6133 rmail-beginning-of-message before rmail-toggle-header, because the
6134 former toggles headers.
6135
6136 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
6137
6138 * diff-mode.el (diff-kill-junk): New interactive function.
6139 (diff-reverse-direction): Use delete-and-extract-region.
6140 (diff-post-command-hook): Restrict the area so that the hook also works
6141 outside of any diff hunk. This is necessary for the minor-mode.
6142 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
6143 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
6144
6145 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
6146 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
6147 so that it can be used more easily in <foo>-mode-hook. Also make sure
6148 to avoid duplicate entries.
6149 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
6150 (font-lock-remove-keywords): Just as was done for `add', allow it to
6151 work even if font-lock-mode is nil. Also make sure we don't modify
6152 any pre-existing list by forcing a copy-sequence. Finally rename
6153 `major-mode' to `mode'.
6154 (font-lock-fontify-syntactic-anchored-keywords)
6155 (font-lock-fontify-anchored-keywords)
6156 (font-lock-fontify-keywords-region): Use line-end-position.
6157 Don't make `font-lock-multiline' local (it's now done in
6158 font-lock-set-defaults).
6159 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
6160 move the `font-lock-fontified' creation to inside the `unless'.
6161
6162 2000-02-06 Andrew Innes <andrewi@gnu.org>
6163
6164 * term/w32-win.el (x-handle-args): Comment out call to message,
6165 which occurs before window system is initialized.
6166
6167 * makefile.nt: Add support for recompiling lisp code.
6168
6169 2000-02-04 Dave Love <fx@gnu.org>
6170
6171 * bindings.el (mode-line-mule-info): Fix/extend last change.
6172
6173 * completion.el: Replace completion-dolist with dolist.
6174
6175 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
6176 dotimes.
6177
6178 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
6179
6180 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
6181 environment names before they go into the section regexp.
6182
6183 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
6184 char class in regexp.
6185
6186 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
6187 `case-fold-search' to nil.
6188
6189 * progmodes/idlwave.el (idlwave-template): Respect
6190 `idlwave-abbrev-change-case'.
6191 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
6192 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
6193 idlwave-while): respect `idlwave-reserved-word-upcase'.
6194 (idlwave-rw-case): New function.
6195 (idlwave-statement-match): Fixed problem with assignment regexp.
6196 (idlwave-font-lock-keywords): Improved regexp for keyword
6197 parameters.
6198 (idlwave-surround): New argument LENGTH to support padding of
6199 operators longer than 1 char.
6200
6201 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
6202 idlwave-shell-expression-overlay. Implemented printing of
6203 expressions on higher levels of the calling stack.
6204 (idlwave-shell-display-level-in-calling-stack): Restore stack
6205 level.
6206 (idlwave-retrieve-expression-from-level): New function.
6207 (idlwave-shell-last-calling-stack): Variable removed.
6208 (idlwave-shell-reset): Argument action reversed (`visible' to
6209 `hidden'). Also remove stop-line overlay.
6210 (idlwave-shell-calling-stack-routine): New variable.
6211 (idlwave-shell-parse-stack-and-display): Messages now display
6212 negative level numbers.
6213 (idlwave-shell-mode): Set `modeline-format'.
6214 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
6215 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
6216 21.
6217 (idlwave-shell-print-expression-function): New option.
6218
6219 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
6220 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
6221 `tool-bar' instead of `toolbar'.
6222
6223 2000-02-02 Dave Love <fx@gnu.org>
6224
6225 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
6226 emacs-lisp-mode-hook. Don't check for defalias being defined.
6227
6228 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
6229 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
6230 the new builtins directly.
6231
6232 * whitespace.el (whitespace): Add :version to defgroup.
6233
6234 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
6235 Doc fix.
6236
6237 * thingatpt.el (sexp-at-point, symbol-at-point)
6238 (number-at-point, list-at-point): Add autoload cookie.
6239
6240 * recentf.el (recentf): Add :version to defgroup.
6241
6242 * quickurl.el (quickurl): Add :version to defgroup.
6243
6244 * elide-head.el (elide-head): Use point-marker more.
6245
6246 * bs.el (bs): Add :version to defgroup.
6247
6248 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
6249
6250 * progmodes/delphi.el (delphi): Add :version to defgroup.
6251
6252 2000-02-02 Gerd Moellmann <gerd@gnu.org>
6253
6254 * ange-ftp.el (ange-ftp-write-region): Handle case that
6255 succeeding process operation sets a different coding system.
6256
6257 * calculator.el: New file.
6258
6259 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
6260
6261 * frame.el (frames-on-display-list, framep-on-display): New
6262 functions.
6263 (display-mouse-p, display-popup-menus-p, display-graphic-p)
6264 (display-selections-p, display-screens, display-pixel-width)
6265 (display-pixel-height, display-mm-width, display-mm-height)
6266 (display-backing-store, display-save-under, display-planes)
6267 (display-color-cells, display-visual-class): New functions.
6268
6269 * term/tty-colors.el (tty-color-gray-shades): New function.
6270
6271 * faces.el (display-color-p): Use framep-on-display.
6272 (display-grayscale-p): New function.
6273
6274 2000-01-31 Dave Love <fx@gnu.org>
6275
6276 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
6277 (create-fontset-from-x-resource): Don't concat integers.
6278
6279 2000-01-31 Inge Frick <inge@nada.kth.se>
6280
6281 * view.el: Some changes in documentation. Removed some trailing
6282 whitespace. Changed some parameter names to agree with
6283 documentation.
6284 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
6285 window is not deleted. Modifies change 1998-04-26.
6286
6287 2000-01-31 Gerd Moellmann <gerd@gnu.org>
6288
6289 * windmove.el: New file.
6290
6291 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
6292 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
6293 progmodes/ebnf-yac.el: Update copyright and license info.
6294
6295 * jit-lock.el (jit-lock-function): Widen before calculating end
6296 position.
6297 (jit-lock-stealth-chunk-start): Rewritten.
6298
6299 * info.el (Info-title-face-alist): Removed.
6300 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
6301 faces.
6302 (Info-fontify-node): Use these faces.
6303
6304 2000-01-30 Gerd Moellmann <gerd@gnu.org>
6305
6306 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
6307 (cl-macro-list1): Recognize `&allow-other-keys' instead of
6308 `&allow-other-keywords'.
6309
6310 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
6311 the list of directories scanned heuristically.
6312
6313 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
6314 exist.
6315
6316 2000-01-30 Jason Rumney <jasonr@gnu.org>
6317
6318 * w32-fns.el: Define w32-tty-standard-colors.
6319
6320 * startup.el (command-line): Use w32-tty-standard-colors when in
6321 w32 console mode.
6322
6323 2000-01-30 Dave Love <fx@gnu.org>
6324
6325 * jka-compr.el (jka-compr-load): Fix up load-history.
6326
6327 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
6328
6329 * emacs-lisp/cl-macs.el: Revert previous change.
6330
6331 2000-01-29 Dave Love <fx@gnu.org>
6332
6333 * facemenu.el: Purecopy various strings.
6334
6335 * timezone.el (timezone-fix-time): Window against 69 for two-digit
6336 years. Deal with three-digit years.
6337
6338 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
6339 defconst, purecopy.
6340 (help-back-label): Purecopy it.
6341
6342 2000-01-18 Gerd Moellmann <gerd@gnu.org>
6343
6344 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
6345 variable. If non-nil, order the buffer list according to the
6346 currently selected frame.
6347 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
6348 non-nil, pass the selected frame to function buffer-list.
6349
6350 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6351
6352 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
6353
6354 2000-01-28 Dave Love <fx@gnu.org>
6355
6356 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
6357
6358 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
6359 Don't use lisp-indent-hook property.
6360 (cl-abs): Remove.
6361
6362 * subr.el: Move out indent and edebug specs for when and unless.
6363
6364 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
6365 when, unless.
6366
6367 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
6368 unless, when.
6369
6370 2000-01-28 Gerd Moellmann <gerd@gnu.org>
6371
6372 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
6373 `collecting' as synonym for `collect'.
6374
6375 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
6376 for the case it contains spaces.
6377
6378 * simple.el (what-cursor-position): Change formatting of
6379 messages.
6380
6381 * frame.el (delete-other-frames): New function.
6382 (toplevel): Bind it to C-x 5 1.
6383
6384 * sort.el (sort-numeric-base): New option.
6385 (sort-numeric-fields): If number starts with `0' or `0[xX[',
6386 interpret it as octal or hexadecimal. Use sort-numeric-base
6387 as default base.
6388
6389 * progmodes/glasses.el: New file.
6390
6391 2000-01-27 Gerd Moellmann <gerd@gnu.org>
6392
6393 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
6394 userids differently.
6395
6396 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
6397 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
6398 progmodes/ebnf-yac.el: New files.
6399
6400 2000-01-26 Dave Love <fx@gnu.org>
6401
6402 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
6403 on a function with an empty body. [From Eric Ludlam.]
6404
6405 2000-01-25 Andre Spiegel <spiegel@gnu.org>
6406
6407 * vc.el (vc-version-diff): Make sure file name is expanded.
6408
6409 2000-01-25 Gerd Moellmann <gerd@gnu.org>
6410
6411 * scroll-bar.el (scroll-bar-timer): Variable removed.
6412 (scroll-bar-toolkit-scroll): Don't use a timer.
6413
6414 2000-01-25 Kenichi Handa <handa@etl.go.jp>
6415
6416 * language/thai-util.el (thai-composition-function): Delete
6417 superfluous `a'.
6418
6419 2000-01-24 Dave Love <fx@gnu.org>
6420
6421 * fortran.el (fortran-mode): Use beginning-of-defun-function,
6422 end-of-defun-function.
6423
6424 * font-lock.el (turn-on-font-lock): Don't depend on window-system
6425 &c.
6426
6427 2000-01-22 Jason Rumney <jasonr@gnu.org>
6428
6429 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
6430 conflicts with new face support.
6431
6432 2000-01-22 Richard M. Stallman <rms@gnu.org>
6433
6434 * replace.el (query-replace): Rename last arg to DELIMITED.
6435 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
6436 (query-replace-regexp): Likewise.
6437
6438 2000-01-20 Richard M. Stallman <rms@gnu.org>
6439
6440 * subr.el (with-syntax-table): Use make-symbol, not gensym.
6441
6442 * emacs-lisp/lisp.el (beginning-of-defun-function):
6443 Variable renamed from beginning-of-defun.
6444 Do not call make-variable-buffer-local.
6445 (beginning-of-defun-raw): Use new variable name; doc fix.
6446 (beginning-of-defun): Doc fix.
6447 (end-of-defun-function): Variable renamed from end-of-defun.
6448 Do not call make-variable-buffer-local.
6449 (end-of-defun): Use new variable name; doc fix.
6450
6451 * subr.el (dolist, dotimes): Copied from cl-macs.el
6452 and made to work.
6453
6454 * mail/undigest.el (rmail-digest-end-regexps):
6455 Variable replaces rmail-digest-end-regexp.
6456 Allows multiple regexps for detecting the end line.
6457 (undigestify-rmail-message): Corresponding changes.
6458
6459 2000-01-19 Dave Love <fx@gnu.org>
6460
6461 * files.el (user-init-file): Don't declare here -- is primitive.
6462
6463 * startup.el (command-line): Check for compiled user-init-file and
6464 set to uncompiled version if necessary.
6465
6466 2000-01-18 Gerd Moellmann <gerd@gnu.org>
6467
6468 * mail/undigest.el (rmail-digest-end-regexp): New user option.
6469 (undigestify-rmail-message): Use it.
6470
6471 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
6472
6473 2000-01-17 Gerd Moellmann <gerd@gnu.org>
6474
6475 * tmm.el (tmm-goto-completions): Adapt to prompt being part
6476 of mini-buffer.
6477
6478 2000-01-14 Gerd Moellmann <gerd@gnu.org>
6479
6480 * emacs-lisp/copyright.el (copyright-update): Removed the
6481 requirement for a trailing space from `copyright-regexp', to
6482 support copyrights with owner specified on a separate line..
6483
6484 * align.el: New file.
6485
6486 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
6487
6488 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
6489
6490 2000-01-13 Dave Love <fx@gnu.org>
6491
6492 * ph.el: Removed. (Obsoleted by EUDC.)
6493
6494 2000-01-13 Gerd Moellmann <gerd@gnu.org>
6495
6496 * net/eudc.el (toplevel): Remove autoloaded code installing
6497 menu with easymenu, because that causes build problems.
6498
6499 * frame.el (frame-notice-user-settings): New variable.
6500 (frame-notice-user-settings): Don't modify frame parameters
6501 if called a second time.
6502
6503 2000-01-13 Richard M. Stallman <rms@gnu.org>
6504
6505 * frame.el (frame-notice-user-settings):
6506 Notice default-frame-parameters even for non-window frames.
6507
6508 2000-01-13 Gerd Moellmann <gerd@gnu.org>
6509
6510 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
6511 for Emacs.
6512 (eudc-bob-can-display-inline-images): Extend for Emacs.
6513 (eudc-bob-toggle-inline-display): Ditto.
6514 (eudc-bob-display-jpeg): Ditto.
6515
6516 2000-01-12 Gerd Moellmann <gerd@gnu.org>
6517
6518 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
6519 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
6520 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
6521
6522 * add-log.el (add-change-log-entry): Fix error trying an `(insert
6523 nil)'.
6524
6525 * subdirs.el: Add `net' directory.
6526
6527 * net: New directory.
6528
6529 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
6530 eval-last-sexp. Don't bind debug-on-error here.
6531 (eval-last-sexp): New function. Bind debug-on-error if
6532 eval-expression-debug-on-error is non-nil.
6533 (eval-defun-2, eval-defun): Likewise.
6534
6535 * simple.el (eval-expression): Don't bind debug-on-error if
6536 eval-expression-debug-on-error is nil. Detect changed
6537 debug-on-error, and propagate new value to global binding, if
6538 eval-expression-debug-on-error is non-nil,
6539 (eval-expression-debug-on-error): Change doc string.
6540
6541 2000-01-11 Richard M. Stallman <rms@gnu.org>
6542
6543 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
6544
6545 * emacs-lisp/lisp-mode.el (with-syntax-table):
6546 Set up lisp-indent-function property.
6547
6548 * subr.el (with-syntax-table): Moved from simple.el.
6549
6550 * simple.el (with-syntax-table): Moved to subr.el.
6551
6552 2000-01-11 Gerd Moellmann <gerd@gnu.org>
6553
6554 * tmm.el (tmm-shortcut): Delete region after prompt instead
6555 of erasing buffer.
6556
6557 * textmodes/fill.el (fill-common-string-prefix): New function.
6558 (fill-context-prefix): Use the longest common prefix of first
6559 and second line fill prefix, if there is one.
6560
6561 2000-01-11 Richard M. Stallman <rms@gnu.org>
6562
6563 * array.el (array-mode): Don't use make-variable-buffer-local.
6564 Use make-local-variable for `truncate-lines'.
6565
6566 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
6567
6568 * add-log.el (add-log-current-defun): Handle user-defined
6569 add-log-current-function returning nil,
6570
6571 * add-log.el (add-change-log-entry): Insert version number
6572 if having found a current function
6573
6574 * add-log.el (add-log-current-defun): Call
6575 `add-log-current-defun-function'. Try matches at level 0 and
6576 level 1. Strip whitespace from defun found.
6577
6578 2000-01-10 John Wiegley <johnw@gnu.org>
6579
6580 * allout.el (isearch-done/outline-provisions): Added `edit'
6581 argument to correspond with the current definition of
6582 `isearch-done'.
6583
6584 2000-01-10 Dave Love <fx@gnu.org>
6585
6586 * elide-head.el (elide-head): Use point-marker, not point.
6587
6588 2000-01-10 Gerd Moellmann <gerd@gnu.org>
6589
6590 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
6591 before and after the year 2000.
6592
6593 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
6594 Add ispell- prefix.
6595
6596 2000-01-10 Ken Stevens <k.stevens@ieee.org>
6597
6598 * ispell.el: Only define dictionaries in menus when they exist.
6599 (version18p): New variable.
6600 (version20p): New variable.
6601 (xemacsp): New variable.
6602 (ispell-choices-win-default-height): Fix for XEmacs visibility.
6603 (ispell-dictionary-alist1): Added Brasileiro dictionary.
6604 (ispell-dictionary-alist6): Russian command lines no longer accept
6605 run-together words.
6606 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
6607 (ispell-dictionary-alist): Add koi8-r to customize definition.
6608 (check-ispell-version): Added documentation string. Returns
6609 library path when called non-interactively.
6610 (ispell-menu-map-needed): Uses new variables.
6611 (ispell-library-path): New variable.
6612 (ispell-decode-string): XEmacs fix for bogus variable bindings.
6613 (ispell-word): Improved documentation string. Test for valid
6614 character mappings. Correctly check typed in word changes that can
6615 result in single words split into multiple words. Returns
6616 replacement word.
6617 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
6618 replace in recursive query replace mode. Help message for
6619 recursive edit mode.
6620 (ispell-show-choices): Protect against bad framepop bindings.
6621 (ispell-help): Fix to work with XEmacs.
6622 (ispell-highlight-spelling-error): Use new variables.
6623 (ispell-overlay-window): Fix to work with XEmacs.
6624 (ispell-parse-output): Passed and returns location information
6625 tracking spelling corrections. Doesn't recheck same word on
6626 current line.
6627 (ispell-init-process): Protect against bogus XEmacs variable binding.
6628 Fix call to single argument in sleep-for. Use new variables.
6629 (ispell-region): Passed and returns location information tracking
6630 spelling corrections. Doesn't check same word on current line.
6631 Improved documentation string. Doesn't resend a line already
6632 checked to the ispell process - fixes bug in LaTeX parsing.
6633 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
6634 (ispell-skip-region): No longer skips <TT> in SGML.
6635 (ispell-process-line): Tracks location information with spelling
6636 corrections. Added documentation string. Accounts for words
6637 already accepted on this line. Don't allow query-replace on line
6638 starting with math characters. Doesn't resend a line already sent
6639 to ispell process. Fixes alignment error bug.
6640
6641 2000-01-10 Richard M. Stallman <rms@gnu.org>
6642
6643 * dired-x.el (dired-guess-shell-alist-default):
6644 Suggest xloadimage, which is free, not xv, which isn't.
6645
6646 * ange-ftp.el (ange-ftp-file-name-nondirectory):
6647 Don't ever include the host name or user name in the value.
6648
6649 2000-01-09 Gerd Moellmann <gerd@gnu.org>
6650
6651 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
6652 of a real newline.
6653
6654 2000-01-09 Stephen Eglen <stephen@gnu.org>
6655
6656 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
6657 for .png files.
6658
6659 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
6660
6661 * cus-edit.el (custom-hook-convert-widget): Fix comment.
6662
6663 2000-01-09 Gerd Moellmann <gerd@gnu.org>
6664
6665 * progmodes/cperl-mode.el: Replace ^F with ^L.
6666
6667 * sendmail.el (toplevel): Provide `sendmail' when compiling
6668 before `require'ing rmail and mailalias to prevent infinite
6669 recursion.
6670
6671 2000-01-08 Dave Love <fx@gnu.org>
6672
6673 * emacs-lisp/backquote.el: Remove inappropriate customization
6674 (allowing custom.el to use backquote).
6675
6676 2000-01-07 Dave Love <fx@gnu.org>
6677
6678 * add-log.el (add-log-debugging): Deleted.
6679 (add-change-log-entry): Treat a backup FILE-NAME as its parent
6680 file. Remove debugging code.
6681 (change-log-get-method-definition, change-log-name): Add doc.
6682 (change-log-sortable-date-at): New function.
6683 (change-log-merge): New command.
6684
6685 * time.el (display-time-string-forms): Make the Mail string active.
6686 (display-time-update): Provide help-echo for load average.
6687
6688 * bindings.el (make-mode-line-mouse2-map): New function.
6689 (mode-line-modified): Use it and simplify.
6690 (mode-line-mule-info): Provide help-echo info.
6691 (minor-mode-alist): Activate the strings.
6692 (make-mode-line-mouse-sensitive): Simplify for
6693 mode-line-buffer-identification.
6694
6695 2000-01-07 Gerd Moellmann <gerd@gnu.org>
6696
6697 * play/pong.el: New file.
6698
6699 2000-01-06 Dave Love <fx@gnu.org>
6700
6701 * array.el: Assorted cleanups for compiler warnings, doc strings,
6702 `array-' prefix for symbols.
6703
6704 2000-01-05 Dave Love <fx@gnu.org>
6705
6706 * textmodes/outline.el (outline-mode-menu-bar-map): Add
6707 outline-headers-as-kill.
6708 (outline-mode): Define imenu-generic-expression.
6709 (outline-headers-as-kill): New command.
6710
6711 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
6712 from paragraph-start.
6713 (paragraph-indent-minor-mode): New command.
6714
6715 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
6716 M-C-e, M-C-h, C-j, C-xnd, TAB.
6717 (fortran-mode): Set beginning-of-defun, end-of-defun.
6718 (fortran-column-ruler): Simplify.
6719 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
6720 (fortran-with-subprogram-narrowing): Likewise.
6721 (fortran-indent-subprogram): Call mark-defun.
6722 (fortran-check-for-matching-do): Change narrowing.
6723
6724 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
6725 (cl-lucid-hash-tag): Delete.
6726 (cl-hash-table-p): Correct test for native table.
6727 (cl-hash-table-count): Use hash-table-count.
6728
6729 * browse-url.el (browse-url): Fix case of
6730 browse-url-browser-function being an alist.
6731
6732 2000-01-05 Carsten Dominik <cd@gnu.org>
6733
6734 * textmodes/reftex-vars.el (reftex-parse-file-extension)
6735 (reftex-index-phrase-file-extension): New options.
6736
6737 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
6738 Use new option `reftex-index-phrase-file-extension'.
6739
6740 * textmodes/reftex.el (reftex-access-parse-file): Use new option
6741 `reftex-parse-file-extension'.
6742
6743 2000-01-05 Dave Love <fx@gnu.org>
6744
6745 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
6746 (beginning-of-defun-raw): Use it.
6747 (end-of-defun): New variable.
6748 (end-of-defun): Use it.
6749 (check-parens): New command.
6750
6751 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
6752
6753 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
6754 (hs-show-block): Don't use `mapcar' when not accumulating.
6755
6756 Fix buglet in local variables initialization.
6757
6758 2000-01-05 Andreas Schwab <schwab@suse.de>
6759
6760 * hscroll.el (hscroll): Doc fix.
6761
6762 2000-01-05 Carsten Dominik <cd@gnu.org>
6763
6764 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
6765 idlw-toolbar.
6766
6767 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
6768 file idlw-rinfo.el.
6769 (idlwave-customize): load must read file idlw-shell.el.
6770 (idlwave-create-customize-menu): load must read file idlw-shell.el.
6771
6772 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
6773
6774 * progmodes/idlw-shell.el: Also provide idlwave-shell
6775 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
6776 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
6777
6778 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
6779 both reftex-dcr and reftex-vcr.
6780
6781 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
6782
6783 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6784
6785 * ps-print.el: PostScript code now is in separate files, doc fix.
6786 (ps-print-version): New version number (5.0.3).
6787 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
6788 local.
6789 (ps-spool-config): Initialization fix.
6790 (ps-print-prologue-1, ps-print-prologue-2)
6791 (ps-print-duplex-feature): PostScript code moved to separated file.
6792 (ps-background-image): Little code reformating.
6793 (ps-begin-file, ps-begin-job): Fix code.
6794 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
6795 (ps-prologue-file): New fun.
6796
6797 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6798
6799 * ps-vars.el: Eliminated.
6800
6801 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
6802 `;;;###autoload'.
6803
6804 * ps-print.el: ps-vars eliminated, doc fix.
6805 (ps-print-version): New version number (5.0.2).
6806 (ps-spool-config): Initialization fix.
6807 (ps-print-customize): New fun.
6808
6809 2000-01-04 Gerd Moellmann <gerd@gnu.org>
6810
6811 * autorevert.el (auto-revert-mode): Return value of
6812 auto-revert-mode.
6813
6814 2000-01-04 Dave Love <fx@gnu.org>
6815
6816 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
6817 menu items.
6818
6819 2000-01-03 Dave Love <fx@gnu.org>
6820
6821 * elide-head.el (elide-head) [defgroup]: Add :version.
6822
6823 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
6824 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
6825 `cl-hash-table-p', not `hash-table-p'.
6826 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
6827
6828 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
6829
6830 * faces.el (face-read-integer, read-face-attribute)
6831 (color-defined-p, color-values): unspecified-{f,b}g are now
6832 strings.
6833
6834 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
6835
6836 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
6837 at comment end, and re-insert them after filling.
6838
6839 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
6840
6841 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
6842 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
6843 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
6844
6845 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
6846
6847 * term/x-win.el (xw-defined-colors): Call color-supported-p,
6848 the new name of face-color-supported-p.
6849
6850 * term/w32-win.el (xw-defined-colors): Likewise.
6851
6852 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
6853
6854 * simple.el (completion-setup-function): Count completion-size
6855 from minibuffer-prompt-end, not from point-min.
6856
6857 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
6858
6859 * faces.el (read-face-attribute, defined-colors, color-defined-p):
6860 Pass the frame to tty-color-* functions.
6861 (display-color-p, frame-set-background-mode): Pass the frame to
6862 tty-display-color-p.
6863
6864 * term/tty-colors.el (tty-defined-color-alist): Renamed from
6865 tty-color-alist.
6866 (tty-color-alist, tty-modify-color-alist): New functions.
6867 (tty-color-define, tty-color-clear, tty-color-approximate)
6868 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
6869 an optional parameter FRAME.
6870
6871 2000-01-01 Gerd Moellmann <gerd@gnu.org>
6872
6873 * image.el (create-image, defimage): Don't assume image data is a
6874 string.
6875
6876 * image.el (defimage): Handle specifications containing :data
6877 instead of :file.
6878 (image-type-from-data): New function.
6879 (image-type-from-file-header): Use it.
6880 (create-image): Add parameter DATA-P.
6881
6882 See ChangeLog.8 for earlier changes.
6883
6884 ;; Local Variables:
6885 ;; coding: iso-2022-7bit
6886 ;; End: